From befa3fe32effffc2ef616aca63761c321d8144c5 Mon Sep 17 00:00:00 2001 From: Henri Sara Date: Mon, 26 Nov 2012 14:46:26 +0200 Subject: Imported tests from the sass-lang project (#9751) Change-Id: I9acd28e13718a0f78b0f91af5161e94599193a15 --- .../sasslang/css/194-update_stylesheet.css | 79 ++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 theme-compiler/tests/resources/sasslang/css/194-update_stylesheet.css (limited to 'theme-compiler/tests/resources/sasslang/css/194-update_stylesheet.css') diff --git a/theme-compiler/tests/resources/sasslang/css/194-update_stylesheet.css b/theme-compiler/tests/resources/sasslang/css/194-update_stylesheet.css new file mode 100644 index 0000000000..f5e45c8df5 --- /dev/null +++ b/theme-compiler/tests/resources/sasslang/css/194-update_stylesheet.css @@ -0,0 +1,79 @@ +@import url(basic.css); +@import url(../results/complex.css); +imported { + otherconst: hello; + myconst: goodbye; + pre-mixin: here; +} + +body { + font: Arial; + background: blue; +} + +#page { + width: 700px; + height: 100; +} +#page #header { + height: 300px; +} +#page #header h1 { + font-size: 50px; + color: blue; +} + +#content.user.show #container.top #column.left { + width: 100px; +} +#content.user.show #container.top #column.right { + width: 600px; +} +#content.user.show #container.bottom { + background: brown; +} + +midrule { + inthe: middle; +} + +scss { + imported: yes; +} + +body { + font: Arial; + background: blue; +} + +#page { + width: 700px; + height: 100; +} +#page #header { + height: 300px; +} +#page #header h1 { + font-size: 50px; + color: blue; +} + +#content.user.show #container.top #column.left { + width: 100px; +} +#content.user.show #container.top #column.right { + width: 600px; +} +#content.user.show #container.bottom { + background: brown; +} + +#foo { + background-color: #bbaaff; +} + +nonimported { + myconst: hello; + otherconst: goodbye; + post-mixin: here; +} -- cgit v1.2.3