OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Touch Adjustment : Improved targetting for small controls - bug 92293</ti
tle> | 4 <title>Touch Adjustment : Improved targetting for small controls - bug 92293</ti
tle> |
5 <script src="../resources/js-test.js"></script> | 5 <script src="../resources/js-test.js"></script> |
6 <script src="resources/touchadjustment.js"></script> | 6 <script src="resources/touchadjustment.js"></script> |
7 | 7 |
8 <style> | 8 <style> |
9 body { | 9 body { |
10 -webkit-margin-start: 20px; | 10 -webkit-margin-start: 20px; |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 testTouch(id, 'top-right'); | 110 testTouch(id, 'top-right'); |
111 testTouch(id, 'bottom-left'); | 111 testTouch(id, 'bottom-left'); |
112 testTouch(id, 'bottom-right'); | 112 testTouch(id, 'bottom-right'); |
113 testTouch(id, 'top'); | 113 testTouch(id, 'top'); |
114 testTouch(id, 'bottom'); | 114 testTouch(id, 'bottom'); |
115 } | 115 } |
116 | 116 |
117 function testTouch(id, relativePosition) | 117 function testTouch(id, relativePosition) |
118 { | 118 { |
119 var element = document.getElementById(id); | 119 var element = document.getElementById(id); |
120 testTouchPoint(offsetTouchPoint(findAbsoluteBounds(element), relativePos
ition, touchOffset, touchRadius), element); | 120 testTouchPoint(offsetTouchPoint(findAbsoluteBounds(element), relativePos
ition, touchOffset, touchRadius), element, /* allowTextNodes */ false, /* disall
owShadowDOM */ true); |
121 } | 121 } |
122 | 122 |
123 function testDirectTouches() | 123 function testDirectTouches() |
124 { | 124 { |
125 debug('Testing small direct hits.'); | 125 debug('Testing small direct hits.'); |
126 | 126 |
127 testDirectTouch('check'); | 127 testDirectTouch('check'); |
128 testDirectTouch('task'); | 128 testDirectTouch('task'); |
129 testDirectTouch('item-label'); | 129 testDirectTouch('item-label'); |
130 testDirectTouch('remove-button'); | 130 testDirectTouch('remove-button'); |
(...skipping 16 matching lines...) Expand all Loading... |
147 description('Tests if small clickable targets adjacent to larger cli
ckable controls are properly targetted with touch adjustment.'); | 147 description('Tests if small clickable targets adjacent to larger cli
ckable controls are properly targetted with touch adjustment.'); |
148 testDirectTouches(); | 148 testDirectTouches(); |
149 testIndirectTouches(); | 149 testIndirectTouches(); |
150 document.getElementById('sandbox').style.display = 'none'; | 150 document.getElementById('sandbox').style.display = 'none'; |
151 } | 151 } |
152 } | 152 } |
153 runTests(); | 153 runTests(); |
154 </script> | 154 </script> |
155 </body> | 155 </body> |
156 </html> | 156 </html> |
OLD | NEW |