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

Side by Side Diff: LayoutTests/fast/css/variables/border-width.html

Issue 16183002: Unprefix CSS Variables (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « no previous file | LayoutTests/fast/css/variables/calc.html » ('j') | Source/core/css/CSSParser.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <style> 1 <style>
2 div { 2 div {
3 border-color: green; 3 border-color: green;
4 border-style: solid; 4 border-style: solid;
5 border-width: -webkit-var(a) -webkit-var(b); 5 border-width: var(a) var(b);
6 -webkit-var-a: 3px; 6 var-a: 3px;
7 -webkit-var-b: 10px 7 var-b: 10px
8 } 8 }
9 </style> 9 </style>
10 <div>This text should have top and bottom borders of 3px and left and right bord ers of 10px</div> 10 <div>This text should have top and bottom borders of 3px and left and right bord ers of 10px</div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/variables/calc.html » ('j') | Source/core/css/CSSParser.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698