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

Side by Side Diff: LayoutTests/inspector/elements/highlight-node-transformed.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
4 <style>
5
6 body {
7 margin: 0;
8 }
9
10 iframe {
11 position: absolute;
12 left: 83px;
13 top: 53px;
14 width: 200px;
15 height: 200px;
16 }
17
18 </style>
19
20 <script src="../../http/tests/inspector/inspector-test.js"></script>
21 <script src="../../http/tests/inspector/elements-test.js"></script>
22 <script src="../../http/tests/inspector/console-test.js"></script>
23 <script>
24
25 function onload()
26 {
27 runTest();
28 }
29
30 function test()
31 {
32 InspectorTest.dumpInspectorHighlightJSON("div", InspectorTest.completeTest.b ind(InspectorTest));
33 }
34
35 </script>
36 </head>
37
38 <body onload="onload()">
39 <iframe id="transform-iframe" src="resources/highlight-node-transformed-iframe.h tml"></iframe>
40 </body>
41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698