OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Touch Adjustment : Event triggered widgets - bug 78801</title> | 4 <title>Touch Adjustment : Event triggered widgets - bug 78801</title> |
5 <script src="../fast/js/resources/js-test-pre.js"></script> | 5 <script src="../fast/js/resources/js-test-pre.js"></script> |
6 <script src="resources/touchadjustment.js"></script> | 6 <script src="resources/touchadjustment.js"></script> |
7 <style> | 7 <style> |
8 .box { border: 1px solid black; border-radius: 5px 5px; margin: 1em; wid
th: 40em; } | 8 .box { border: 1px solid black; border-radius: 5px 5px; margin: 1em; wid
th: 40em; } |
9 </style> | 9 </style> |
10 </head> | 10 </head> |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 if (window.testRunner && window.internals && internals.touchNodeAdjusted
ToBestClickableNode) { | 146 if (window.testRunner && window.internals && internals.touchNodeAdjusted
ToBestClickableNode) { |
147 description('Test various ways to trigger input-widgets. On a touch
interface, all the actions should be triggerable with either a touch down or a t
ouch tap.'); | 147 description('Test various ways to trigger input-widgets. On a touch
interface, all the actions should be triggerable with either a touch down or a t
ouch tap.'); |
148 testDirectTouches(); | 148 testDirectTouches(); |
149 testDirectFatFingers(); | 149 testDirectFatFingers(); |
150 testIndirectFatFingers(); | 150 testIndirectFatFingers(); |
151 document.getElementById('sandbox').style.display = 'none'; | 151 document.getElementById('sandbox').style.display = 'none'; |
152 } | 152 } |
153 } | 153 } |
154 runTests(); | 154 runTests(); |
155 </script> | 155 </script> |
156 <script src="../fast/js/resources/js-test-post.js"></script> | |
157 </body> | 156 </body> |
158 </html> | 157 </html> |
OLD | NEW |