summaryrefslogtreecommitdiff
path: root/vendor/leafo/lessphp/tests/inputs/scopes.less
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-05-01 15:32:59 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-05-01 15:32:59 -0400
commit6dc1997577fab2c366781fd7048144935afa0012 (patch)
tree8918d28c7ab4342f0738985e37af1dfc42d0e93a /vendor/leafo/lessphp/tests/inputs/scopes.less
parent150f94f051128f367bc89f6b7e5f57eb2a69fc62 (diff)
parentfa89acd685cb09cdbe1c64cbb721ec64975bbbc1 (diff)
Merge commit 'fa89acd'
# Conflicts: # .gitignore # extensions/ArchInterWiki.sql
Diffstat (limited to 'vendor/leafo/lessphp/tests/inputs/scopes.less')
-rw-r--r--vendor/leafo/lessphp/tests/inputs/scopes.less40
1 files changed, 0 insertions, 40 deletions
diff --git a/vendor/leafo/lessphp/tests/inputs/scopes.less b/vendor/leafo/lessphp/tests/inputs/scopes.less
deleted file mode 100644
index 42e46969..00000000
--- a/vendor/leafo/lessphp/tests/inputs/scopes.less
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-@a: 10;
-@some {
- @b: @a + 10;
- div {
- @c: @b + 10;
- other {
- @d: @c + 10;
- world {
- @e: @d + 10;
- height: @e;
- }
- }
- }
-}
-
-
-body {
- @some;
-}
-
-@some;
-
-.test(@x: 10) {
- height: @x;
- .test(@y: 11) {
- height: @y;
- .test(@z: 12) {
- height: @z;
- }
- .test;
- }
- .test;
-}
-
-pre {
- .test;
-}
-