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

Side by Side Diff: trunk/LayoutTests/inspector/styles/variables/css-variables.html

Issue 14706011: Revert 150468 "Switching CSS Variables over to RuntimeEnabledFea..." (Closed) Base URL: svn://svn.chromium.org/blink/
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
Property Changes:
Deleted: svn:eol-style
- LF
Deleted: svn:mime-type
- text/html
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script>
4 internals.settings.setCSSVariablesEnabled(true);
5 </script>
3 <style> 6 <style>
4 #inspected { 7 #inspected {
5 -webkit-var-a: green; 8 -webkit-var-a: green;
6 color: -webkit-var(a); 9 color: -webkit-var(a);
7 } 10 }
8 11
9 </style> 12 </style>
10 <script src="../../../http/tests/inspector/inspector-test.js"></script> 13 <script src="../../../http/tests/inspector/inspector-test.js"></script>
11 <script src="../../../http/tests/inspector/elements-test.js"></script> 14 <script src="../../../http/tests/inspector/elements-test.js"></script>
12 <script> 15 <script>
(...skipping 15 matching lines...) Expand all
28 31
29 <body onload="runTest()"> 32 <body onload="runTest()">
30 <p> 33 <p>
31 Tests that webkit css variables can be loaded correctly. 34 Tests that webkit css variables can be loaded correctly.
32 </p> 35 </p>
33 36
34 <div id="inspected">Text</div> 37 <div id="inspected">Text</div>
35 38
36 </body> 39 </body>
37 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698