Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype HTML> | |
| 2 <script src="../../resources/run-after-layout-and-paint.js"></script> | |
| 3 <div id="target" style="overflow:scroll; width: 300px; height: 300px;"> | |
| 4 <div style="height: 1000px; width: 100px;"></div> | |
| 5 </div> | |
| 6 <div style="position: absolute; top: 200px; width: 100px; height: 100px; backgro und: red"></div> | |
| 7 <script> | |
| 8 // Test that a non-stacking-context scroller does not scroll an absolutely posit ioned child. | |
| 9 function test() { | |
| 10 runAfterLayoutAndPaint(function() { | |
| 11 target.scrollTop += 100; | |
| 12 }, true); | |
| 13 } | |
| 14 window.onload = test; | |
| 15 </script> | |
| OLD | NEW |