OLD | NEW |
| (Empty) |
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <style> | |
5 #content { -webkit-flow-into: flow; font: 50px/1 Ahem; } | |
6 #region { -webkit-flow-from: flow; position: absolute; top: 200px; } | |
7 .regionWidth { width: 150px; } | |
8 .regionWidth2 { width: 100px; } | |
9 </style> | |
10 </head> | |
11 <script src="../../../resources/check-layout.js"></script> | |
12 <body onload="checkLayout('#region')"> | |
13 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=103738"> [C
SS Regions] min-max height will not trigger a relayout when set on a region with
auto-height</a>.</p> | |
14 <p>On success you should see PASS below.</p> | |
15 <div id="content"> | |
16 a a a a a a | |
17 </div> | |
18 <div id="region" class="regionWidth" data-expected-height=300></div> | |
19 <script> | |
20 document.body.offsetTop; // force layout | |
21 document.getElementById("region").className = "regionWidth2"; | |
22 </script> | |
23 </body> | |
24 </html> | |
OLD | NEW |