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

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

Issue 14987004: Switching CSS Variables over to RuntimeEnabledFeatures (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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
OLDNEW
1 <script>
2 internals.settings.setCSSVariablesEnabled(true);
3 </script>
4 <style> 1 <style>
5 .a { 2 .a {
6 -webkit-var-a: -webkit-var(b); 3 -webkit-var-a: -webkit-var(b);
7 -webkit-var-b: red; 4 -webkit-var-b: red;
8 } 5 }
9 .b { 6 .b {
10 -webkit-var-b: -webkit-var(a); 7 -webkit-var-b: -webkit-var(a);
11 } 8 }
12 .c { 9 .c {
13 -webkit-var-c: -webkit-var(a); 10 -webkit-var-c: -webkit-var(a);
14 color: -webkit-var(c); 11 color: -webkit-var(c);
15 } 12 }
16 </style> 13 </style>
17 <div id="a"> 14 <div id="a">
18 <div id="b"> 15 <div id="b">
19 <div id="c"> 16 <div id="c">
20 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.
21 </div> 18 </div>
22 </div> 19 </div>
23 </div> 20 </div>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/variables/invalid-variable-value.html ('k') | LayoutTests/fast/css/variables/redefinition.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698