Rubber-stamped by Brady Eidson.
[webbrowser.git] / LayoutTests / svg / custom / svg-overflow-types.svg
blobac765f9071e728ae6637cba37add072a3e4bb6c6
1 <?xml version="1.0" ?>
2 <svg xmlns="http://www.w3.org/2000/svg" width="400" height="400">
4 <rect x='0' y='0' width='200' height='200' fill="green" />
5 <svg x='0' y='0' width="100" height="100" style="overflow: hidden">
6 <rect x='0' y='0' width='200' height='200' fill="red" />
7 <rect x='0' y='0' width='100' height='100' fill="green" />
8 </svg>
9 <text x='50' y='100'>overflow: hidden</text>
12 <rect x='200' y='0' width='200' height='200' fill="green" />
13 <svg x='200' y='0' width="100" height="100" style="overflow: scroll">
14 <rect x='0' y='0' width='200' height='200' fill="red" />
15 <rect x='0' y='0' width='100' height='100' fill="green" />
16 </svg>
17 <text x='250' y='100'>overflow: scroll</text>
20 <rect x='0' y='200' width='200' height='200' fill="red" />
21 <svg x='0' y='200' width="100" height="100" style="overflow: auto">
22 <rect x='0' y='0' width='200' height='200' fill="green" />
23 </svg>
24 <text x='50' y='300'>overflow: auto</text>
27 <rect x='200' y='200' width='200' height='200' fill="red" />
28 <svg x='200' y='200' width="100" height="100" style="overflow: visible">
29 <rect x='0' y='0' width='200' height='200' fill="green" />
30 </svg>
31 <text x='250' y='300'>overflow: visible</text>
33 </svg>