This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 81c2796eb9cfd8277e6698bdb91932fcb6b2bb6e Author: Alex Harui <[email protected]> AuthorDate: Mon Oct 1 17:48:57 2018 -0700 handle more complex CSS from Jewel --- .../Core/src/main/royale/org/apache/royale/core/AllCSSValuesImpl.as | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/AllCSSValuesImpl.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/AllCSSValuesImpl.as index bbf151c..8c36cac 100644 --- a/frameworks/projects/Core/src/main/royale/org/apache/royale/core/AllCSSValuesImpl.as +++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/core/AllCSSValuesImpl.as @@ -201,8 +201,10 @@ package org.apache.royale.core conditionCombiners = {}; conditionCombiners["class"] = "."; conditionCombiners["id"] = "#"; - conditionCombiners["pseudo"] = ':'; - } + conditionCombiners["pseudo"] = ':'; + conditionCombiners["pseudo_element"] = '::'; + conditionCombiners["attribute"] = '['; + } var conditionType:String = arr[++i]; var conditionName:String = arr[++i]; segmentName = segmentName + conditionCombiners[conditionType] + conditionName;
