--- /dev/null
+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+layer at (0,0) size 800x600
+ RenderBlock {HTML} at (0,0) size 800x600
+ RenderBody {BODY} at (8,8) size 784x584
+ RenderBlock (floating) {P} at (252,16) size 532x18
+ RenderText {#text} at (0,0) size 532x18
+ text run at (0,0) width 532: "The 'hr' below should span the width of the page, not just to the left edge of this text."
+ RenderBlock {HR} at (0,50) size 784x2 [border: (1px inset #000000)]
+ RenderBlock (floating) {P} at (241,76) size 543x18
+ RenderText {#text} at (0,0) size 543x18
+ text run at (0,0) width 543: "The table below should span the width of the page, not just to the left edge of this text."
+ RenderTable {TABLE} at (0,110) size 784x64 [border: (10px outset #808080)]
+ RenderTableSection {TBODY} at (10,10) size 764x44
+ RenderTableRow {TR} at (0,2) size 764x40
+ RenderTableCell {TD} at (2,2) size 760x40 [border: (1px inset #808080)] [r=0 c=0 rs=1 cs=1]
+ RenderText {#text} at (2,2) size 720x36
+ text run at (2,2) width 365: "This is a table that should fill the entire width of the page. "
+ text run at (367,2) width 355: "It should clear the float and then take up the width of the"
+ text run at (2,20) width 203: "page. If it doesn't then it's a bug."
+ RenderBlock (floating) {P} at (356,190) size 428x18
+ RenderText {#text} at (0,0) size 428x18
+ text run at (0,0) width 428: "The overflow auto section below should span the width of the page."
+layer at (8,232) size 784x36
+ RenderBlock {DIV} at (0,224) size 784x36
+ RenderText {#text} at (0,0) size 774x36
+ text run at (0,0) width 355: "This is a div that should fill the entire width of the page. "
+ text run at (355,0) width 419: "It should clear the float and then take up the width of the page. If it"
+ text run at (0,18) width 139: "doesn't then it's a bug."
--- /dev/null
+<html>
+<head>
+<title>Width Updating after Clear</title>
+<style type="text/css">
+p {
+ float: right;
+}
+
+hr, div, table {
+ clear: both;
+}
+
+div {
+ overflow:auto;
+}
+</style>
+</head>
+<body>
+<p>The 'hr' below should span the width of the page, not just to the left edge of this text.</p>
+<hr>
+<p>The table below should span the width of the page, not just to the left edge of this text.</p>
+<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.
+If it doesn't then it's a bug.</td></tr></table>
+<p>The overflow auto section below should span the width of the page.</p>
+<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.
+If it doesn't then it's a bug.</div>
+</body>
+</html>
\ No newline at end of file