summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests/resources
diff options
context:
space:
mode:
authorHaijian Wang <haijian@vaadin.com>2013-02-11 20:50:29 +0200
committerHaijian Wang <haijian@vaadin.com>2013-02-11 20:50:29 +0200
commitcb09f781707f8ede79aaaaacff8618955f6d4c2a (patch)
treeacae6d24c5377d6d03c4c630a094e9fa8004abf7 /theme-compiler/tests/resources
parent8959135e3054fe0de1d36f705195b224df3d67d8 (diff)
downloadvaadin-framework-cb09f781707f8ede79aaaaacff8618955f6d4c2a.tar.gz
vaadin-framework-cb09f781707f8ede79aaaaacff8618955f6d4c2a.zip
pseudo-class css selector fails the parser. (Ticket 10316)
Change-Id: I6548c31aaf01ac75fb0668c4c28acbee952e6c6f
Diffstat (limited to 'theme-compiler/tests/resources')
-rw-r--r--theme-compiler/tests/resources/automatic/css/selector-with-parenthesis.css5
-rw-r--r--theme-compiler/tests/resources/automatic/scss/selector-with-parenthesis.scss11
2 files changed, 16 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/selector-with-parenthesis.css b/theme-compiler/tests/resources/automatic/css/selector-with-parenthesis.css
new file mode 100644
index 0000000000..5b9066b7f0
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/css/selector-with-parenthesis.css
@@ -0,0 +1,5 @@
+@charset "UTF-8";
+
+.foo .v-button:not(.link) {
+ color: #323232;
+} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/automatic/scss/selector-with-parenthesis.scss b/theme-compiler/tests/resources/automatic/scss/selector-with-parenthesis.scss
new file mode 100644
index 0000000000..8bc6271e29
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/selector-with-parenthesis.scss
@@ -0,0 +1,11 @@
+@charset "UTF-8";
+
+@mixin buttons {
+ .v-button:not(.link) {
+ color: #323232;
+ }
+}
+
+.foo {
+ @include buttons;
+} \ No newline at end of file