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

Unified Diff: LayoutTests/fast/css/variables/redefinition.html

Issue 16183002: Unprefix CSS Variables (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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/redefinition.html
diff --git a/LayoutTests/fast/css/variables/redefinition.html b/LayoutTests/fast/css/variables/redefinition.html
index e438f5a5a25b1818f68e797b532db0781b6abdbe..681ad60560f5224addef59e86bd6a8976b53eb06 100644
--- a/LayoutTests/fast/css/variables/redefinition.html
+++ b/LayoutTests/fast/css/variables/redefinition.html
@@ -1,15 +1,15 @@
<style>
body {
- -webkit-var-a: red;
+ var-a: red;
}
#a {
- -webkit-var-a: green;
+ var-a: green;
}
#b {
- -webkit-var-a: blue;
+ var-a: blue;
}
div {
- color: -webkit-var(a);
+ color: var(a);
}
</style>
<div>

Powered by Google App Engine
This is Rietveld 408576698