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

Side by Side Diff: LayoutTests/fast/css/variables/redefinition.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <style> 1 <style>
2 body { 2 body {
3 -webkit-var-a: red; 3 var-a: red;
4 } 4 }
5 #a { 5 #a {
6 -webkit-var-a: green; 6 var-a: green;
7 } 7 }
8 #b { 8 #b {
9 -webkit-var-a: blue; 9 var-a: blue;
10 } 10 }
11 div { 11 div {
12 color: -webkit-var(a); 12 color: var(a);
13 } 13 }
14 </style> 14 </style>
15 <div> 15 <div>
16 This text should be red. 16 This text should be red.
17 </div> 17 </div>
18 <div id="a"> 18 <div id="a">
19 This text should be green. 19 This text should be green.
20 </div> 20 </div>
21 <div id="b"> 21 <div id="b">
22 This text should be blue. 22 This text should be blue.
23 </div> 23 </div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/variables/prefix-expected.html ('k') | LayoutTests/fast/css/variables/root-background-size.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698