Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 Tests overflow recalc when container changes position but no layout is scheduled for descendants. | |
| 3 Passes if the blue square has black box shadow. | |
| 4 <div id="container" style="width: 200px; height: 200px"> | |
| 5 <div id="target" style="width: 200px; height: 200px; background-color: blue">< /div> | |
| 6 </div> | |
| 7 <script src="../../resources/run-after-layout-and-paint.js"></script> | |
| 8 <script> | |
| 9 runAfterLayoutAndPaint(function() { | |
| 10 container.style.position = 'fixed'; | |
| 11 target.style.boxShadow = '50px 50px black'; | |
| 12 }, true); | |
| 13 </script> | |
| OLD | NEW |