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

Side by Side Diff: LayoutTests/inspector/elements/styles/styles-with-spaces-in-sourceURL.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
(Empty)
1 <html>
2 <head>
3 <script src="../../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../../http/tests/inspector/elements-test.js"></script>
5 <link rel="stylesheet" href="resources/style-with-spaces-in-sourceURL.css">
6
7 <script>
8
9 function test()
10 {
11 InspectorTest.selectNodeAndWaitForStyles("inspected", onNodeSelected);
12
13 function onNodeSelected()
14 {
15 InspectorTest.dumpSelectedElementStyles(true);
16 InspectorTest.completeTest();
17 }
18 }
19 </script>
20
21 </head>
22
23 <body onload="runTest()">
24 <p>
25 Verifies that links for URLs with spaces displayed properly for matched styles.
26 </p>
27
28 <div id="inspected"></div>
29
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698