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

Unified Diff: LayoutTests/css3/css-variable-definition.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 | « no previous file | LayoutTests/css3/css-variable-definition-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/css-variable-definition.html
diff --git a/LayoutTests/css3/css-variable-definition.html b/LayoutTests/css3/css-variable-definition.html
index 23371c6fc5c348672e966130d75ce5a96e9f1926..d7b047b3652c29ef075dde19f3123ce6d8f713b5 100644
--- a/LayoutTests/css3/css-variable-definition.html
+++ b/LayoutTests/css3/css-variable-definition.html
@@ -1,10 +1,10 @@
<html>
<style>
:root {
- -webkit-var-mycolor : red;
+ var-mycolor : red;
}
div {
- color: -webkit-var(mycolor);
+ color: var(mycolor);
}
</style>
<body>
« no previous file with comments | « no previous file | LayoutTests/css3/css-variable-definition-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698