Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / body-propagation / overflow / 005-declarative.xhtml
blobb9903092d1a4b5772959fa317cec7b77c74446cc
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <title>overflow on body should propagate to the viewport even when it has bogus siblings</title>
5 <style>
6 html { overflow:visible; }
7 body { display:block; overflow:scroll; width:10em; height:10em; border:thin solid; color:navy; }
8 .filler { color:gray; }
9 </style>
10 </head>
11 <body xmlns="urn:foo:bogus"/><body>
12 <p>There should be scrollbars for the viewport -- not for this box. (Additionally, there should be a box above that does have scrollbars.)</p>
13 <p class="filler">This is filler text.</p>
14 <p class="filler">This is filler text.</p>
15 <p class="filler">This is filler text.</p>
16 <p class="filler">This is filler text.</p>
17 </body>
18 </html>