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

Side by Side Diff: trunk/LayoutTests/fast/css/variables/redefinition.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 body { 5 body {
3 -webkit-var-a: red; 6 -webkit-var-a: red;
4 } 7 }
5 #a { 8 #a {
6 -webkit-var-a: green; 9 -webkit-var-a: green;
7 } 10 }
8 #b { 11 #b {
9 -webkit-var-a: blue; 12 -webkit-var-a: blue;
10 } 13 }
11 div { 14 div {
12 color: -webkit-var(a); 15 color: -webkit-var(a);
13 } 16 }
14 </style> 17 </style>
15 <div> 18 <div>
16 This text should be red. 19 This text should be red.
17 </div> 20 </div>
18 <div id="a"> 21 <div id="a">
19 This text should be green. 22 This text should be green.
20 </div> 23 </div>
21 <div id="b"> 24 <div id="b">
22 This text should be blue. 25 This text should be blue.
23 </div> 26 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698