Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <div id="parent" style="margin: 20px; transform: scale3d(1, 1, 1);"> | |
| 3 <div id="test" style="height: 100px; width: 100px;"></div> | |
| 4 </div> | |
| 5 <script src="resources/text-based-repaint.js"></script> | |
| 6 <p>crbug.com/621612: Change overflow on the child of a composited layer should a llow the layer to resize and contain the overflow, just like it would in a layou t. There should be a white box with black outline below.</p> | |
| 7 <script> | |
| 8 function repaintTest() { | |
| 9 test.style.outline = "1px solid black"; | |
| 10 } | |
| 11 onload = function() { | |
| 12 runRepaintAndPixelTest(); | |
| 13 } | |
| 14 </script> | |
| 15 | |
| 16 | |
| OLD | NEW |