| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <title>Tests that server-side image maps with zooms and transforms produce the r
ight click coordinates.</title> | 2 <title>Tests that server-side image maps with zooms and transforms produce the r
ight click coordinates.</title> |
| 3 <script src="../../resources/testharness.js"></script> | 3 <script src="../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> | 4 <script src="../resources/testharnessreport.js"></script> |
| 5 <style> | 5 <style> |
| 6 img { | 6 img { |
| 7 position: absolute; | 7 position: absolute; |
| 8 left: 50px; | 8 left: 50px; |
| 9 top: 60px; | 9 top: 60px; |
| 10 width: 100px; | 10 width: 100px; |
| 11 height: 50px; | 11 height: 50px; |
| 12 border-left: 13px solid; | 12 border-left: 13px solid; |
| 13 border-top: 13px solid; | 13 border-top: 13px solid; |
| 14 border-right: 10px solid; | 14 border-right: 10px solid; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 40 testClick(539, 662, '#?105,54'); // lower right padding | 40 testClick(539, 662, '#?105,54'); // lower right padding |
| 41 testClick(540, 714, '#?115,63'); // lower right border | 41 testClick(540, 714, '#?115,63'); // lower right border |
| 42 testClick(179, 350, '#?0,63'); // lower left border | 42 testClick(179, 350, '#?0,63'); // lower left border |
| 43 testClick(248, 362, '#?0,52'); // lower left padding | 43 testClick(248, 362, '#?0,52'); // lower left padding |
| 44 testClick(695, 488, '#?102,0'); // upper right padding | 44 testClick(695, 488, '#?102,0'); // upper right padding |
| 45 testClick(759, 479, '#?112,0'); // upper right border | 45 testClick(759, 479, '#?112,0'); // upper right border |
| 46 } | 46 } |
| 47 }); | 47 }); |
| 48 }); | 48 }); |
| 49 </script> | 49 </script> |
| OLD | NEW |