Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / svg / in-html / overflow-svg-root-attr.html
1 <!doctype html>
2 <style>
3 div {
4     height:100px; width:100px;
5 }
6 </style>
7 <div><svg id="svg1" height="100" width="100" viewbox="0 0 100 100" overflow="hidden">
8   <path d="M210 10 L90 10 L90 90" fill="blue"/>
9 </svg></div>
10
11 <div><svg id="svg2" height="100" width="100" viewbox="0 0 100 100" overflow="scroll">
12   <path d="M210 10 L90 10 L90 90" fill="blue"/>
13 </svg></div>
14
15 <div><svg id="svg3" height="100" width="100" viewbox="0 0 100 100" overflow="visible">
16   <path d="M210 10 L90 10 L90 90" fill="blue"/>
17 </svg></div>