Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / block / float / width-update-after-clear.html
blobbafe3ab74c7da03e919154f3af7249c1f4465426
1 <html>
2 <head>
3 <title>Width Updating after Clear</title>
4 <style type="text/css">
5 p {
6 float: right;
9 hr, div, table {
10 clear: both;
13 div {
14 overflow:auto;
16 </style>
17 </head>
18 <body>
19 <p>The 'hr' below should span the width of the page, not just to the left edge of this text.</p>
20 <hr>
21 <p>The table below should span the width of the page, not just to the left edge of this text.</p>
22 <table border=10><tr><td>This is a table that should fill the entire width of the page. It should clear the float and then take up the width of the page.
23 If it doesn't then it's a bug.</td></tr></table>
24 <p>The overflow auto section below should span the width of the page.</p>
25 <div>This is a div that should fill the entire width of the page. It should clear the float and then take up the width of the page.
26 If it doesn't then it's a bug.</div>
27 </body>
28 </html>