OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <table style="collapse-border: collapse"> | |
wkorman
2016/11/28 21:21:25
Doesn't it have to be border-collapse: rather than
Xianzhu
2016/11/28 21:34:00
Good catch. Fixed.
| |
3 <tr> | |
4 <td id="target" style="width: 100px; height: 100px; border: 1px solid blue"> </td> | |
5 </tr> | |
6 </table> | |
7 <script src="../resources/text-based-repaint.js"></script> | |
8 <script> | |
9 function repaintTest() { | |
10 target.style.height = '200px'; | |
11 } | |
12 onload = runRepaintAndPixelTest; | |
13 </script> | |
OLD | NEW |