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

Side by Side Diff: LayoutTests/fast/css/variables/var-inside-quad.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <style> 3 <style>
4 body { 4 body {
5 border-color: green; 5 border-color: green;
6 border-width: -webkit-var(a) -webkit-var(b) -webkit-var(c) -webkit-var(d); 6 border-width: var(a) var(b) var(c) var(d);
7 border-style: solid; 7 border-style: solid;
8 -webkit-var-a: 1px; 8 var-a: 1px;
9 -webkit-var-b: 2px; 9 var-b: 2px;
10 -webkit-var-c: 3px; 10 var-c: 3px;
11 -webkit-var-d: 4px; 11 var-d: 4px;
12 } 12 }
13 </style> 13 </style>
14 This text should be surrounded by a green border with 1px top, 2px right, 3px bo ttom, 4px left. 14 This text should be surrounded by a green border with 1px top, 2px right, 3px bo ttom, 4px left.
15 </html> 15 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/variables/var-inside-pair.html ('k') | LayoutTests/fast/css/variables/var-inside-shape.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698