Index: third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-variable-references.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-variable-references.html b/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-variable-references.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a134b8d2d6637d448c1b82cffe1978a88822add5 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-variable-references.html |
@@ -0,0 +1,24 @@ |
+<!doctype html> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+<style> |
+#e { |
+ --green: green; |
+ --width: 100px; |
+ --foo: { |
+ background-color: var(--green, red); |
+ width: var(--width); |
+ height: var(--unknown, 200px); |
+ }; |
+ @apply --foo; |
+} |
+</style> |
+<div id=e> |
+</div> |
+<script> |
+test(function(){ |
+ assert_equals(getComputedStyle(e).backgroundColor, "rgb(0, 128, 0)"); |
+ assert_equals(getComputedStyle(e).width, "100px"); |
+ assert_equals(getComputedStyle(e).height, "200px"); |
+}, "Tests that variables can be referenced inside @apply rules"); |
+</script> |