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

Side by Side Diff: LayoutTests/inspector/elements/styles/styles-source-lines-inline.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
6 <style>
7 .foo {
8 color: blue;
9 }
10 </style>
11
12 <script>
13
14 function test()
15 {
16 InspectorTest.selectNodeAndWaitForStyles("foo", step2);
17
18 function step2()
19 {
20 InspectorTest.dumpSelectedElementStyles(true, false, true);
21 InspectorTest.completeTest();
22 }
23 }
24
25 </script>
26 </head>
27
28 <body onload="runTest()">
29 <p>
30 Tests that elements panel shows proper inline style locations in the sidebar pan el.
31 </p>
32
33 <div id="foo" class="foo" style="display:none">Foo</div>
34 <iframe src="resources/styles-source-lines-inline-iframe.html">
35
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698