| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <script src="../repaint/resources/text-based-repaint.js"></script> | 3 <script src="../repaint/resources/text-based-repaint.js"></script> |
| 4 <script> | 4 <script> |
| 5 if (window.testRunner) | |
| 6 testRunner.overridePreference("WebKitCSSGridLayoutEnabled", 1); | |
| 7 | |
| 8 function repaintTest() | 5 function repaintTest() |
| 9 { | 6 { |
| 10 var gridItem = document.getElementsByClassName("sizedToGridArea")[0]; | 7 var gridItem = document.getElementsByClassName("sizedToGridArea")[0]; |
| 11 gridItem.style.gridRow = "2"; | 8 gridItem.style.gridRow = "2"; |
| 12 } | 9 } |
| 13 window.addEventListener("load", runRepaintTest, false); | 10 window.addEventListener("load", runRepaintTest, false); |
| 14 </script> | 11 </script> |
| 15 <link href="resources/grid.css" rel="stylesheet"> | 12 <link href="resources/grid.css" rel="stylesheet"> |
| 16 <style> | 13 <style> |
| 17 body { | 14 body { |
| (...skipping 10 matching lines...) Expand all Loading... |
| 28 background-color: purple; | 25 background-color: purple; |
| 29 } | 26 } |
| 30 </style> | 27 </style> |
| 31 <body> | 28 <body> |
| 32 <div>This test checks that changing the grid-row on a grid item properly repaint
. The final grid item should be 100px * 100px. There should be no trace of the g
rid item at the old position.</div> | 29 <div>This test checks that changing the grid-row on a grid item properly repaint
. The final grid item should be 100px * 100px. There should be no trace of the g
rid item at the old position.</div> |
| 33 <div class="grid"> | 30 <div class="grid"> |
| 34 <div class="sizedToGridArea"></div> | 31 <div class="sizedToGridArea"></div> |
| 35 </div> | 32 </div> |
| 36 </body> | 33 </body> |
| 37 </html> | 34 </html> |
| OLD | NEW |