Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / overflow / overflow-on-outermost-svg-element-in-xhtml-hidden.xhtml
blob7742937183239cb01a408eb7caefd82a1a86a0a2
1 <!--
2 Verify default overflow rules for the outermost <svg> element in non-standalone documents.
3 You should see a 400x400 green rectangle, not covering the whole screen size.
5 Spec reference:
6 When an outermost 'svg' element is embedded inline within a parent XML grammar which uses CSS layout [CSS2-LAYOUT]
7 or XSL formatting [XSL], if the 'overflow' property has the value hidden or scroll, then the user agent will establish
8 an initial clipping path equal to the bounds of the initial viewport; otherwise, the initial clipping path is set
9 according to the clipping rules as defined in [CSS2-overflow].
10 -->
11 <html>
12 <body>
13 <svg xmlns="http://www.w3.org/2000/svg" style="overflow: hidden" width="400" height="400">
14 <rect width="4000" height="4000" fill="green"/>
15 </svg>
16 </body>
17 </html>