Repository: flex-falcon Updated Branches: refs/heads/develop bbdf07b61 -> fd115a7e9
FLEX-35172 handle url format Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/fd115a7e Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/fd115a7e Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/fd115a7e Branch: refs/heads/develop Commit: fd115a7e9a842034f07de0ad336b98cad1216b89 Parents: bbdf07b Author: Alex Harui <[email protected]> Authored: Sun Nov 13 23:46:02 2016 -0800 Committer: Alex Harui <[email protected]> Committed: Sun Nov 13 23:46:02 2016 -0800 ---------------------------------------------------------------------- .../internal/driver/js/flexjs/JSCSSCompilationSession.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/fd115a7e/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java ---------------------------------------------------------------------- diff --git a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java index 86e44c4..c2b1c90 100644 --- a/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java +++ b/compiler-jx/src/main/java/org/apache/flex/compiler/internal/driver/js/flexjs/JSCSSCompilationSession.java @@ -301,6 +301,10 @@ public class JSCSSCompilationSession extends CSSCompilationSession { result.append(new Double(((CSSNumberPropertyValue)val).getNumber().doubleValue())); } + else if (val instanceof CSSURLAndFormatPropertyValue) + { + result.append(((CSSURLAndFormatPropertyValue)val).toString()); + } else { result.append("unexpected value type: " + val.toString());
