OLD | NEW |
| (Empty) |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> | |
5 <script type="text/javascript"> | |
6 window.onload = function() { | |
7 runRepaintAndPixelTest(); | |
8 }; | |
9 | |
10 function repaintTest() { | |
11 var target = document.getElementById('target'); | |
12 target.style.visibility = 'visible'; | |
13 getComputedStyle(target).color; | |
14 target.style.top = '300px'; | |
15 } | |
16 </script> | |
17 </head> | |
18 <body> | |
19 <div id="target" | |
20 style="visibility:hidden; | |
21 position: absolute; | |
22 top: 200px; left: 200px; | |
23 width: 200px; height: 200px; | |
24 background-color: redl "></div> | |
25 </body> | |
26 </html> | |
OLD | NEW |