Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Unified Diff: LayoutTests/fast/css/variables/complex-cycle.html

Issue 16183002: Unprefix CSS Variables (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased and updated prefix test Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/fast/css/variables/colors-test.html ('k') | LayoutTests/fast/css/variables/computed-style.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/variables/complex-cycle.html
diff --git a/LayoutTests/fast/css/variables/complex-cycle.html b/LayoutTests/fast/css/variables/complex-cycle.html
index 01a76990e48db72205449f42446c849b38f7b02d..1df02b33044d894cdb0d43f82d5c9b26acc833c1 100644
--- a/LayoutTests/fast/css/variables/complex-cycle.html
+++ b/LayoutTests/fast/css/variables/complex-cycle.html
@@ -1,12 +1,12 @@
<style>
body {
- -webkit-var-a: -webkit-var(f);
- -webkit-var-b: -webkit-var(a);
- -webkit-var-c: -webkit-var(b);
- -webkit-var-d: -webkit-var(c);
- -webkit-var-e: -webkit-var(d);
- -webkit-var-f: -webkit-var(e);
- color: -webkit-var(a);
+ var-a: var(f);
+ var-b: var(a);
+ var-c: var(b);
+ var-d: var(c);
+ var-e: var(d);
+ var-f: var(e);
+ color: var(a);
}
</style>
This test is successful if it does not result in a crash.
« no previous file with comments | « LayoutTests/fast/css/variables/colors-test.html ('k') | LayoutTests/fast/css/variables/computed-style.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698