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

Side by Side Diff: LayoutTests/fast/css/variables/multi-level-cycle.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 .a { 2 .a {
3 -webkit-var-a: -webkit-var(b); 3 var-a: var(b);
4 -webkit-var-b: red; 4 var-b: red;
5 } 5 }
6 .b { 6 .b {
7 -webkit-var-b: -webkit-var(a); 7 var-b: var(a);
8 } 8 }
9 .c { 9 .c {
10 -webkit-var-c: -webkit-var(a); 10 var-c: var(a);
11 color: -webkit-var(c); 11 color: var(c);
12 } 12 }
13 </style> 13 </style>
14 <div id="a"> 14 <div id="a">
15 <div id="b"> 15 <div id="b">
16 <div id="c"> 16 <div id="c">
17 This test is successful if this text is black, and the test does not result in a crash. 17 This test is successful if this text is black, and the test does not result in a crash.
18 </div> 18 </div>
19 </div> 19 </div>
20 </div> 20 </div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/variables/invalid-variable-value.html ('k') | LayoutTests/fast/css/variables/name-case-sensitive.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698