Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / elements / highlight / highlight-svg-root.html
blob58c79200357563086ce7cc262b50ee0d18088b5d
1 <!DOCTYPE html>
2 <html>
3 <head>
5 <style>
7 body {
8 margin: 0;
10 #svg-root {
11 margin: 5px;
12 border: solid 10px aqua;
13 padding: 15px;
14 background-color: blue;
17 </style>
19 <script src="../../../http/tests/inspector/inspector-test.js"></script>
20 <script src="../../../http/tests/inspector/elements-test.js"></script>
21 <script>
23 function test()
25 InspectorTest.dumpInspectorHighlightJSON("svg-root", InspectorTest.completeTest.bind(InspectorTest));
28 </script>
29 </head>
31 <body onload="runTest()">
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 rectangles overlayed on an SVG root element.</p>
36 </body>
37 </html>