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

Side by Side Diff: LayoutTests/inspector/elements/highlight-svg-root.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 <!DOCTYPE html>
2 <html>
3 <head>
4
5 <style>
6
7 body {
8 margin: 0;
9 }
10 #svg-root {
11 margin: 5px;
12 border: solid 10px aqua;
13 padding: 15px;
14 background-color: blue;
15 }
16
17 </style>
18
19 <script src="../../http/tests/inspector/inspector-test.js"></script>
20 <script src="../../http/tests/inspector/elements-test.js"></script>
21 <script>
22
23 function test()
24 {
25 InspectorTest.dumpInspectorHighlightJSON("svg-root", InspectorTest.completeT est.bind(InspectorTest));
26 }
27
28 </script>
29 </head>
30
31 <body onload="runTest()">
32
33 <svg id="svg-root" width="100" height="100" viewbox="0 0 50 50"></svg>
34 <p id="description">This test verifies the position and size of the highlight re ctangles overlayed on an SVG root element.</p>
35
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698