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

Side by Side Diff: LayoutTests/inspector/elements/highlight-svg-content-inside-iframe.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 #container {
11 position: absolute;
12 overflow: hidden;
13 left: 100px;
14 top: 200px;
15 }
16
17 iframe {
18 width: 200px;
19 height: 200px;
20 border: none;
21 }
22
23 </style>
24
25 <script src="../../http/tests/inspector/inspector-test.js"></script>
26 <script src="../../http/tests/inspector/elements-test.js"></script>
27 <script>
28
29 function test()
30 {
31 InspectorTest.dumpInspectorHighlightJSON("svg-rect", InspectorTest.completeT est.bind(InspectorTest), "svg-iframe");
32 }
33
34 </script>
35 </head>
36
37 <body onload="runTest()">
38 <div id="container">
39 <iframe id="svg-iframe" src="resources/highlight-svg-content-iframe.html"></ iframe>
40 </div>
41 </body>
42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698