Index: third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-override-custom-property.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-override-custom-property.html b/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-override-custom-property.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..646c0ff9ac8f184d2e234db5f7fbeea1f3353002 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/css/atapply/at-apply-override-custom-property.html |
@@ -0,0 +1,30 @@ |
+<!doctype html> |
+<script src="../../../resources/testharness.js"></script> |
+<script src="../../../resources/testharnessreport.js"></script> |
+<style> |
+#e { |
+ width: 100px; |
+ |
+ --foo: { |
+ --before: green; |
+ --after: 0px; |
+ }; |
+ |
+ --before: red; |
+ @apply --foo; |
+ --after: 200px; |
+ |
+ height: var(--after); |
+ background-color: var(--before); |
+} |
+</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"); |
+}, "@apply can override custom properties"); |
+</script> |
+ |