OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .paintroot { | 3 .paintroot { |
4 transform: translateZ(0); | 4 transform: translateZ(0); |
5 position: absolute; | 5 position: absolute; |
6 left: 5px; | 6 left: 5px; |
7 top: 50px; | 7 top: 50px; |
8 } | 8 } |
9 </style> | 9 </style> |
10 Tests that we paint area outline properly when the paintroot is shifted. | 10 Tests that we paint area outline properly when the paintroot is shifted. |
11 <div class=paintroot> | 11 <div class=paintroot> |
12 <img src="./resources/green.jpg" width=50 height=50 usemap="#map"/> | 12 <img src="./resources/green.jpg" width=50 height=50 usemap="#map"/> |
13 <map name="map"><area id=area shape="rectangle" coords="5, 5, 25, 25" href="#"
></map> | 13 <map name="map"><area id=area shape="rectangle" coords="5, 5, 25, 25" href="#"
></map> |
14 </div> | 14 </div> |
15 <script> | 15 <script> |
16 area.focus(); | 16 area.focus(); |
17 </script> | 17 </script> |
OLD | NEW |