OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style type="text/css" media="screen"> | 3 <style type="text/css" media="screen"> |
4 body { | 4 body { |
5 margin: 10px; | 5 margin: 10px; |
6 } | 6 } |
7 #square { | 7 #square { |
8 width: 100px; | 8 width: 100px; |
9 height: 100px; | 9 height: 100px; |
10 } | 10 } |
11 #overlay { | 11 #overlay { |
12 position: absolute; | 12 position: absolute; |
13 left: 35px; | 13 left: 35px; |
14 top: 35px; | 14 top: 35px; |
15 width: 50px; | 15 width: 50px; |
16 height: 50px; | 16 height: 50px; |
17 background: green | 17 background: green |
18 } | 18 } |
19 </style> | 19 </style> |
20 </head> | 20 </head> |
21 <body> | 21 <body> |
22 <div id="square"></div> | 22 <div id="square"></div> |
23 <div id="overlay"></div> | 23 <div id="overlay"></div> |
24 | 24 |
25 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=19623">https://bugs.webkit.o
rg/show_bug.cgi?id=19623</a></p> | 25 <p><a href="https://bugs.webkit.org/show_bug.cgi?id=19623">https://bugs.webkit.o
rg/show_bug.cgi?id=19623</a></p> |
26 <p>Test for incomplete repaint when a non-layer object gains a transform. You sh
ould see a green square above. If you see any red, the test has failed.</p> | 26 <p>Test for incomplete repaint when a non-layer object gains a transform. You sh
ould see a green square above. If you see any red, the test has failed.</p> |
27 </body> | 27 </body> |
28 </html> | 28 </html> |
OLD | NEW |