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

Unified Diff: LayoutTests/fast/css/variables/use-before-defined.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/use-before-defined.html
diff --git a/LayoutTests/fast/css/variables/use-before-defined.html b/LayoutTests/fast/css/variables/use-before-defined.html
index bba41be8ea21e5c0e515647692e5c7985cff8ea0..556e4647e7a7770e03e30dff43db3b50025e75f9 100644
--- a/LayoutTests/fast/css/variables/use-before-defined.html
+++ b/LayoutTests/fast/css/variables/use-before-defined.html
@@ -1,11 +1,11 @@
<style>
div {
- color: -webkit-var(a);
- -webkit-var-a: -webkit-var(b);
+ color: var(a);
+ var-a: var(b);
}
body {
- -webkit-var-b: -webkit-var(c);
- -webkit-var-c: green;
+ var-b: var(c);
+ var-c: green;
}
</style>
<div>
« no previous file with comments | « LayoutTests/fast/css/variables/undefined.html ('k') | LayoutTests/fast/css/variables/value-case-sensitive.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698