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

Side by Side Diff: LayoutTests/css3/css-variable-definition-expected.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 <html> 1 <html>
2 <style> 2 <style>
3 :root { 3 :root {
4 -webkit-var-mycolor: red; 4 var-mycolor: red;
5 } 5 }
6 div { 6 div {
7 color: -webkit-var(mycolor); 7 color: var(mycolor);
8 } 8 }
9 </style> 9 </style>
10 <body> 10 <body>
11 <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>
12 <div>This text should be red</div> 12 <div>This text should be red</div>
13 </body> 13 </body>
14 </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