summaryrefslogtreecommitdiffstats
path: root/theme-compiler/tests
diff options
context:
space:
mode:
authorHaijian Wang <haijian@vaadin.com>2013-02-13 13:46:34 +0200
committerHaijian Wang <haijian@vaadin.com>2013-02-13 13:46:34 +0200
commitcafd136f6f36725201d5250343ea591f64a8f512 (patch)
treeedd6b7d094b4b192d5ba29bccae94f4baba7d33f /theme-compiler/tests
parent29a2d56ad60abdf185268aab30dfaf7d2a3c790e (diff)
downloadvaadin-framework-cafd136f6f36725201d5250343ea591f64a8f512.tar.gz
vaadin-framework-cafd136f6f36725201d5250343ea591f64a8f512.zip
Paser doesn't know CSS 'lem' and 'rem'. (Ticket #11024)
Change-Id: I6ca39f5c97ffce610faafb8e172f290405409dc7
Diffstat (limited to 'theme-compiler/tests')
-rw-r--r--theme-compiler/tests/resources/automatic/css/negative-rem-value.css5
-rw-r--r--theme-compiler/tests/resources/automatic/scss/negative-rem-value.scss5
2 files changed, 10 insertions, 0 deletions
diff --git a/theme-compiler/tests/resources/automatic/css/negative-rem-value.css b/theme-compiler/tests/resources/automatic/css/negative-rem-value.css
new file mode 100644
index 0000000000..fdb638c61c
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/css/negative-rem-value.css
@@ -0,0 +1,5 @@
+* {
+ top: -0.0625rem;
+ bottom: -0.0625lem;
+ margin-top: -1px;
+} \ No newline at end of file
diff --git a/theme-compiler/tests/resources/automatic/scss/negative-rem-value.scss b/theme-compiler/tests/resources/automatic/scss/negative-rem-value.scss
new file mode 100644
index 0000000000..20c001fc42
--- /dev/null
+++ b/theme-compiler/tests/resources/automatic/scss/negative-rem-value.scss
@@ -0,0 +1,5 @@
+* {
+ top: -.0625rem;
+ bottom: -.0625lem;
+ margin-top: -1px;
+} \ No newline at end of file