Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / svg-root-padding-border-margin.html
blob18f57db63c910c654016fd3b483b4f34de7f9ac6
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 #svgRoot {
6 padding: 15px;
7 border: 10px solid grey;
8 margin: 5px;
9 background-color: blue;
11 </style>
12 </head>
13 <body>
14 <p>This test checks that SVG elements are rendered with the correct dimensions under an SVG root element with paddings, borders, and margins.</p>
15 <svg id="svgRoot" width="400" height="400" viewbox="0 0 200 200">
16 <rect id="svgRect" x="0" y="0" width="100" height="100" fill="green"/>
17 </svg>
18 </body>
19 </html>