Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / overflow / overflow-on-inner-svg-element-defaults.svg
blobc88089a14afca84ab2d537663042cfed12e8d281
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
3 <!--
4 Verify default overflow rules for inner <svg> elements.
5 You should see no scrollbars on the inner <svg> element, and no scrollbars for the whole document as long as
6 the window size is larger or equal than 500x500 (800x600 is default for DRT -> no scrollbars should appear)
8 Spec reference:
9 When an outermost 'svg' element is embedded inline within a parent XML grammar which uses CSS layout [CSS2-LAYOUT]
10 or XSL formatting [XSL], if the 'overflow' property has the value hidden or scroll, then the user agent will
11 establish an initial clipping path equal to the bounds of the initial viewport; otherwise, the initial clipping
12 path is set according to the clipping rules as defined in [CSS2-overflow].
13 -->
14 <svg xmlns="http://www.w3.org/2000/svg" width="500" height="500">
15 <svg x="10" y="10" width="480" height="480">
16 <rect width="4000" height="4000" fill="green"/>
17 </svg>
18 </svg>