OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../resources/ahem.js"></script> | 2 <script src="../../resources/ahem.js"></script> |
3 <script src="resources/text-based-repaint.js"></script> | 3 <script src="resources/text-based-repaint.js"></script> |
4 <script> | 4 <script> |
5 function repaintTest() { | 5 function repaintTest() { |
6 document.getElementById('box').style.transform = 'rotate(30deg)'; | 6 document.getElementById('box').style.transform = 'rotate(30deg)'; |
7 } | 7 } |
8 onload = runRepaintTest; | 8 onload = runRepaintAndPixelTest; |
9 </script> | 9 </script> |
10 <style> | 10 <style> |
11 #box { | 11 #box { |
12 position: absolute; | 12 position: absolute; |
13 top: 100px; | 13 top: 100px; |
14 left: 100px; | 14 left: 100px; |
15 width: 100px; | 15 width: 100px; |
16 } | 16 } |
17 #child { | 17 #child { |
18 position: relative; | 18 position: relative; |
19 left: 200px; | 19 left: 200px; |
20 top: 200px; | 20 top: 200px; |
21 font-family: Ahem; | 21 font-family: Ahem; |
22 } | 22 } |
23 </style> | 23 </style> |
24 Tests if the inline layered child is correctly repainted when container's transf
orm changes. | 24 Tests if the inline layered child is correctly repainted when container's transf
orm changes. |
25 Succeeds if the text is completely rotated leaving no residue at the original lo
cation. | 25 Succeeds if the text is completely rotated leaving no residue at the original lo
cation. |
26 <div id="box"> | 26 <div id="box"> |
27 <span id="child">A B C D E F G H I J K L M N O P Q R S T U V W X Y Z</span> | 27 <span id="child">A B C D E F G H I J K L M N O P Q R S T U V W X Y Z</span> |
28 </div> | 28 </div> |
OLD | NEW |