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

Unified Diff: LayoutTests/fast/css/variables/inherited-values.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/inherited-values.html
diff --git a/LayoutTests/fast/css/variables/inherited-values.html b/LayoutTests/fast/css/variables/inherited-values.html
index 59bfaca2ce4884409af1fc30b8a35c44b0ab9456..ff942cd6c38291e1c62dae2606b0551925987d38 100644
--- a/LayoutTests/fast/css/variables/inherited-values.html
+++ b/LayoutTests/fast/css/variables/inherited-values.html
@@ -1,12 +1,12 @@
<style>
body {
- -webkit-var-foreground: green;
- -webkit-var-background: rgb(255, 255, 255);
+ var-foreground: green;
+ var-background: rgb(255, 255, 255);
}
div {
- color: -webkit-var(foreground);
+ color: var(foreground);
background-color: red;
- background-color: -webkit-var(background);
+ background-color: var(background);
}
</style>
<div>

Powered by Google App Engine
This is Rietveld 408576698