summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources
diff options
context:
space:
mode:
authorMika Murtojarvi <mika@vaadin.com>2013-11-07 13:28:53 +0200
committerMika Murtojärvi <mika@vaadin.com>2013-11-07 12:16:39 +0000
commitbc0d55197a2b7fd8a6ac163688026d92203f2618 (patch)
tree7668d8cce3e305f45756b1a4818cca2ea62e8b49 /theme-compiler/tests/resources
parenta5412c02746a2cddc289b002cb6667bfc7028950 (diff)
downloadvaadin-framework-bc0d55197a2b7fd8a6ac163688026d92203f2618.tar.gz
vaadin-framework-bc0d55197a2b7fd8a6ac163688026d92203f2618.zip
A fix for handling nested parentheses in sass (#12833)
Selectors such as *:not(:lang(fr)) are now allowed. Nested parentheses were identified as the cause of the problem. Now skipping is done to the matching right parenthesis instead of the first right parenthesis. Change-Id: I2e83cac14796b739c6b6550642417b12dab752f2
Diffstat (limited to 'theme-compiler/tests/resources')
-rw-r--r--theme-compiler/tests/resources/w3ctests/scss/css3-modsel-67.0.scss3
1 files changed, 3 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/w3ctests/scss/css3-modsel-67.0.scss b/theme-compiler/tests/resources/w3ctests/scss/css3-modsel-67.0.scss
new file mode 100644
index 0000000000..4e177b1149
--- /dev/null
+++ b/theme-compiler/tests/resources/w3ctests/scss/css3-modsel-67.0.scss
@@ -0,0 +1,3 @@
+/* Source: http://www.w3.org/Style/CSS/Test/CSS3/Selectors/current/html/tests/css3-modsel-67.html */
+div.stub * { background-color : red }
+div.stub *:not(:lang(fr)) { background-color : green }