| OLD | NEW |
| (Empty) |
| 1 <!-- Based on fast/repaint/selection-clear-after-move.html --> | |
| 2 <!DOCTYPE html> | |
| 3 <script src="../../../fast/repaint/../../resources/run-after-layout-and-paint.js
"></script> | |
| 4 <script src="resources/paint-invalidation-test.js"></script> | |
| 5 <script> | |
| 6 function paintInvalidationTest() { | |
| 7 getSelection().removeAllRanges(); | |
| 8 } | |
| 9 onload = function() { | |
| 10 getSelection().selectAllChildren(document.getElementById('div')); | |
| 11 runAfterLayoutAndPaint(function() { | |
| 12 document.getElementById('div').style.top = '300px'; | |
| 13 runPaintInvalidationTest(); | |
| 14 }); | |
| 15 }; | |
| 16 </script> | |
| 17 <style> | |
| 18 img { | |
| 19 vertical-align: text-bottom; | |
| 20 width: 50px; | |
| 21 height: 50px; | |
| 22 } | |
| 23 div { | |
| 24 position: absolute; | |
| 25 top: 100px; | |
| 26 left: 100px; | |
| 27 } | |
| 28 </style> | |
| 29 Tests paint invalidation of selection when its cleared after the container is mo
ved.<br> | |
| 30 Passes if no selection left. | |
| 31 <div id="div"> | |
| 32 <img></img> | |
| 33 </div> | |
| OLD | NEW |