| OLD | NEW |
| (Empty) |
| 1 <!doctype html> | |
| 2 <div id="target" style="width: 100px; height: 100px; background: lightblue"></di
v> | |
| 3 <script src="../../resources/run-after-display.js"></script> | |
| 4 <script> | |
| 5 if (testRunner) { | |
| 6 testRunner.dumpAsText(); | |
| 7 testRunner.waitUntilDone(); | |
| 8 } | |
| 9 | |
| 10 runAfterDisplay(function() { | |
| 11 if (internals) | |
| 12 window.internals.startTrackingRepaints(document); | |
| 13 | |
| 14 document.getElementById('target').style.opacity = 0.5; | |
| 15 | |
| 16 if (testRunner) | |
| 17 testRunner.setCustomTextOutput(window.internals.layerTreeAsText(document
, internals.LAYER_TREE_INCLUDES_REPAINT_RECTS)); | |
| 18 | |
| 19 testRunner.notifyDone(); | |
| 20 }); | |
| 21 </script> | |
| OLD | NEW |