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

Unified Diff: LayoutTests/fast/css/variables/variable-chain.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
Index: LayoutTests/fast/css/variables/variable-chain.html
diff --git a/LayoutTests/fast/css/variables/variable-chain.html b/LayoutTests/fast/css/variables/variable-chain.html
index a15d5bce4e882248f4a109c9ea5e9143b6be44a6..be41eb2f08b5c6320bff99f50220e33d2042c2c7 100644
--- a/LayoutTests/fast/css/variables/variable-chain.html
+++ b/LayoutTests/fast/css/variables/variable-chain.html
@@ -1,12 +1,12 @@
<style>
body {
- -webkit-var-c: green;
- -webkit-var-b: -webkit-var(c);
+ var-c: green;
+ var-b: var(c);
}
div {
color: red;
- -webkit-var-a: -webkit-var(b);
- color: -webkit-var(a);
+ var-a: var(b);
+ color: var(a);
}
</style>
<div>

Powered by Google App Engine
This is Rietveld 408576698