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

Side by Side Diff: trunk/LayoutTests/fast/css/variables/multi-level-cycle.html

Issue 14706011: Revert 150468 "Switching CSS Variables over to RuntimeEnabledFea..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 7 years, 7 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
Property Changes:
Deleted: svn:mime-type
- text/html
Deleted: svn:eol-style
- LF
OLDNEW
1 <script>
2 internals.settings.setCSSVariablesEnabled(true);
3 </script>
1 <style> 4 <style>
2 .a { 5 .a {
3 -webkit-var-a: -webkit-var(b); 6 -webkit-var-a: -webkit-var(b);
4 -webkit-var-b: red; 7 -webkit-var-b: red;
5 } 8 }
6 .b { 9 .b {
7 -webkit-var-b: -webkit-var(a); 10 -webkit-var-b: -webkit-var(a);
8 } 11 }
9 .c { 12 .c {
10 -webkit-var-c: -webkit-var(a); 13 -webkit-var-c: -webkit-var(a);
11 color: -webkit-var(c); 14 color: -webkit-var(c);
12 } 15 }
13 </style> 16 </style>
14 <div id="a"> 17 <div id="a">
15 <div id="b"> 18 <div id="b">
16 <div id="c"> 19 <div id="c">
17 This test is successful if this text is black, and the test does not result in a crash. 20 This test is successful if this text is black, and the test does not result in a crash.
18 </div> 21 </div>
19 </div> 22 </div>
20 </div> 23 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698