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

Side by Side Diff: LayoutTests/css3/css-variable-definition-expected.html

Issue 15687004: Switching CSS Variables over to RuntimeEnabledFeatures (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased 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 <html> 1 <html>
2 <script>
3 internals.settings.setCSSVariablesEnabled(true);
4 </script>
5 <style> 2 <style>
6 :root { 3 :root {
7 -webkit-var-mycolor: red; 4 -webkit-var-mycolor: red;
8 } 5 }
9 div { 6 div {
10 color: -webkit-var(mycolor); 7 color: -webkit-var(mycolor);
11 } 8 }
12 </style> 9 </style>
13 <body> 10 <body>
14 <p>Check that a CSS variable definition accepts spaces before the ':'</p> 11 <p>Check that a CSS variable definition accepts spaces before the ':'</p>
15 <div>This text should be red</div> 12 <div>This text should be red</div>
16 </body> 13 </body>
17 </html> 14 </html>
OLDNEW
« no previous file with comments | « LayoutTests/css3/css-variable-definition.html ('k') | LayoutTests/css3/filters/reference-filter-update-after-remove.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698