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

Side by Side Diff: LayoutTests/inspector/styles/variables/css-variables.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 <head> 2 <head>
3 <style> 3 <style>
4 #inspected { 4 #inspected {
5 -webkit-var-a: green; 5 var-a: green;
6 color: -webkit-var(a); 6 color: var(a);
7 } 7 }
8 8
9 </style> 9 </style>
10 <script src="../../../http/tests/inspector/inspector-test.js"></script> 10 <script src="../../../http/tests/inspector/inspector-test.js"></script>
11 <script src="../../../http/tests/inspector/elements-test.js"></script> 11 <script src="../../../http/tests/inspector/elements-test.js"></script>
12 <script> 12 <script>
13 13
14 function test() 14 function test()
15 { 15 {
16 WebInspector.showPanel("elements"); 16 WebInspector.showPanel("elements");
(...skipping 11 matching lines...) Expand all
28 28
29 <body onload="runTest()"> 29 <body onload="runTest()">
30 <p> 30 <p>
31 Tests that webkit css variables can be loaded correctly. 31 Tests that webkit css variables can be loaded correctly.
32 </p> 32 </p>
33 33
34 <div id="inspected">Text</div> 34 <div id="inspected">Text</div>
35 35
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698