Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / in-html / overflow-svg-root-style.html
blob02d5ad363586b7191e42eb9afac6f6777c9bb15b
1 <!doctype html>
2 <style>
3 div {
4 height:100px; width:100px;
7 #svg1 { overflow:hidden }
8 #svg2 { overflow:scroll }
9 #svg3 { overflow:visible }
11 </style>
12 <div><svg id="svg1" height="100" width="100" viewbox="0 0 100 100">
13 <path d="M210 10 L90 10 L90 90" fill="blue"/>
14 </svg></div>
16 <div><svg id="svg2" height="100" width="100" viewbox="0 0 100 100">
17 <path d="M210 10 L90 10 L90 90" fill="blue"/>
18 </svg></div>
20 <div><svg id="svg3" height="100" width="100" viewbox="0 0 100 100">
21 <path d="M210 10 L90 10 L90 90" fill="blue"/>
22 </svg></div>