| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 <!DOCTYPE html> | 
|  | 2 <p>There should be a blue square below.</p> | 
|  | 3 <div id="root" style="width:fit-content;" data-expected-width="100"> | 
|  | 4     <div style="width:100%; height:10em; overflow:hidden;" data-expected-width="
    100"> | 
|  | 5         <div id="child" style="width:20px; height:100px; background:blue;"></div
    > | 
|  | 6     </div> | 
|  | 7 </div> | 
|  | 8 <script src="../../resources/testharness.js"></script> | 
|  | 9 <script src="../../resources/testharnessreport.js"></script> | 
|  | 10 <script src="../../resources/check-layout-th.js"></script> | 
|  | 11 <script> | 
|  | 12     document.body.offsetTop; | 
|  | 13     document.getElementById("child").style.width = "100px"; | 
|  | 14     checkLayout("#root"); | 
|  | 15 </script> | 
| OLD | NEW | 
|---|