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

Side by Side Diff: LayoutTests/inspector/elements/styles-1/empty-background-url.html

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 <script src="../../../http/tests/inspector/inspector-test.js"></script> 3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../../http/tests/inspector/elements-test.js"></script> 4 <script src="../../../http/tests/inspector/elements-test.js"></script>
5 <link rel="stylesheet" href="resources/empty-background-url.css"> 5 <link rel="stylesheet" href="../styles/resources/empty-background-url.css">
6 <script> 6 <script>
7 function test() 7 function test()
8 { 8 {
9 InspectorTest.selectNodeAndWaitForStylesWithComputed("inspected", step1); 9 InspectorTest.selectNodeAndWaitForStylesWithComputed("inspected", step1);
10 10
11 function step1() 11 function step1()
12 { 12 {
13 InspectorTest.dumpSelectedElementStyles(true, false); 13 InspectorTest.dumpSelectedElementStyles(true, false);
14 InspectorTest.completeTest(); 14 InspectorTest.completeTest();
15 } 15 }
16 } 16 }
17 </script> 17 </script>
18 </head> 18 </head>
19 <body onload="runTest()"> 19 <body onload="runTest()">
20 <p>Tests that empty url in the property value does not break inspector.</p> 20 <p>Tests that empty url in the property value does not break inspector.</p>
21 <div id="inspected"></div> 21 <div id="inspected"></div>
22 </body> 22 </body>
23 </html> 23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698