Index: third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-nested.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-nested.html b/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-nested.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..afad3a2ff3358a2d070e2e99445b4a7d7bb428fc |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-nested.html |
@@ -0,0 +1,27 @@ |
+<!doctype html> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+<style> |
+#e { |
+ width: 100px; |
+ height: 200px; |
+ --bar: { |
+ background-color: green; |
+ }; |
+ --foo: { |
+ background-color: red; |
+ @apply --bar; |
+ }; |
+ @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"); |
+ assert_equals(getComputedStyle(e).getPropertyValue("--foo"), " { background-color: red; background-color: green; }"); |
+}, "@apply rules can be used inside variables"); |
+</script> |