OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Touch Adjustment : HTML Label and form fields - bug 78801</title> | 4 <title>Touch Adjustment : HTML Label and form fields - bug 78801</title> |
| 5 <script src="../resources/ahem.js"></script> |
5 <script src="../resources/js-test.js"></script> | 6 <script src="../resources/js-test.js"></script> |
6 <script src="resources/touchadjustment.js"></script> | 7 <script src="resources/touchadjustment.js"></script> |
7 <style> | 8 <style> |
8 #sandbox { | 9 #sandbox { |
9 position: absolute; | 10 position: absolute; |
10 left: 0px; | 11 left: 0px; |
11 top: 0px; | 12 top: 0px; |
12 font: 16px Ahem; | 13 font: 16px Ahem; |
13 } | 14 } |
14 </style> | 15 </style> |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 description('Tests if labels are treated as clickable if the input t
hey control is.'); | 80 description('Tests if labels are treated as clickable if the input t
hey control is.'); |
80 testDirectTouches(); | 81 testDirectTouches(); |
81 testIndirectTouches(); | 82 testIndirectTouches(); |
82 e.sandbox.style.display = 'none'; | 83 e.sandbox.style.display = 'none'; |
83 } | 84 } |
84 } | 85 } |
85 runTests(); | 86 runTests(); |
86 </script> | 87 </script> |
87 </body> | 88 </body> |
88 </html> | 89 </html> |
OLD | NEW |