OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <script src="../resources/text-based-repaint.js"></script> | |
3 <script> | |
4 function repaintTest() { | |
5 target.style.backgroundColor = 'lightBlue'; | |
6 } | |
7 onload = runRepaintAndPixelTest; | |
8 </script> | |
9 <style> | |
10 td { | |
11 padding: 0 24px; | |
12 height: 64px; | |
13 } | |
14 </style> | |
15 Test passes if all of the cells in the second row of the table have a blue backg round. | |
16 <table> | |
wkorman
2016/11/16 20:15:46
This test is intended to validate your comment fro
| |
17 <tr> | |
18 <td>A</td> | |
19 <td>B</td> | |
20 <td>C</td> | |
21 </tr> | |
22 <tr id="target" style="will-change: transform; background-color: red"> | |
23 <td>D</td> | |
24 <td style="will-change: transform;">E</td> | |
25 <td>F</td> | |
26 </tr> | |
27 </table> | |
OLD | NEW |