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

Side by Side Diff: LayoutTests/fast/css/variables/var-inside-quad.html

Issue 14987004: Switching CSS Variables over to RuntimeEnabledFeatures (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <script>
4 if (window.internals)
5 internals.settings.setCSSVariablesEnabled(true);
6 </script>
7 <style> 3 <style>
8 body { 4 body {
9 border-color: green; 5 border-color: green;
10 border-width: -webkit-var(a) -webkit-var(b) -webkit-var(c) -webkit-var(d); 6 border-width: -webkit-var(a) -webkit-var(b) -webkit-var(c) -webkit-var(d);
11 border-style: solid; 7 border-style: solid;
12 -webkit-var-a: 1px; 8 -webkit-var-a: 1px;
13 -webkit-var-b: 2px; 9 -webkit-var-b: 2px;
14 -webkit-var-c: 3px; 10 -webkit-var-c: 3px;
15 -webkit-var-d: 4px; 11 -webkit-var-d: 4px;
16 } 12 }
17 </style> 13 </style>
18 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.
19 </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