Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / svg / overflow / overflow-on-outermost-svg-element-in-xhtml-visible.xhtml
1 <!-- 
2  Verify default overflow rules for the outermost <svg> element in non-standalone documents.
3  The green rectangle should cover the entire screen, since no clipping is done for overflow:visible.
4
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: visible" width="400" height="400">
14     <rect width="4000" height="4000" fill="green"/>
15 </svg>
16 </body>
17 </html>