OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Touch Adjustment : content editable div - bug 97576</title> | 4 <title>Touch Adjustment : content editable div - bug 97576</title> |
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 <style> | 7 <style> |
8 body { | 8 body { |
9 font-size: 12px; | 9 font-size: 12px; |
10 line-height: 14px; | 10 line-height: 14px; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 // Touches centered on the blank line should not be adjusted a neighbori
ng text line. | 66 // Touches centered on the blank line should not be adjusted a neighbori
ng text line. |
67 for (var row = 0; row < 3; row++) { | 67 for (var row = 0; row < 3; row++) { |
68 for (var offset = -touchOffset; offset <= touchOffset; offset += tou
chOffset) { | 68 for (var offset = -touchOffset; offset <= touchOffset; offset += tou
chOffset) { |
69 testTouchOnRow(row, offset); | 69 testTouchOnRow(row, offset); |
70 } | 70 } |
71 } | 71 } |
72 } | 72 } |
73 | 73 |
74 function testTouchOnBoundary(position) { | 74 function testTouchOnBoundary(position) { |
75 var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), position,
touchOffset, touchRadius, touchRadius); | 75 var touchpoint = offsetTouchPoint(findAbsoluteBounds(element), position,
touchOffset, touchRadius, touchRadius); |
76 testTouchPoint(touchpoint, element); | 76 testTouchPoint(touchpoint, element, /* allowTextNodes */ false, /* disal
lowShadowDOM */ true); |
77 } | 77 } |
78 | 78 |
79 function testIndirectTouches() { | 79 function testIndirectTouches() { |
80 debug('test indirect touches'); | 80 debug('test indirect touches'); |
81 testTouchOnBoundary('bottom'); | 81 testTouchOnBoundary('bottom'); |
82 testTouchOnBoundary('left'); | 82 testTouchOnBoundary('left'); |
83 testTouchOnBoundary('right'); | 83 testTouchOnBoundary('right'); |
84 testTouchOnBoundary('top'); | 84 testTouchOnBoundary('top'); |
85 } | 85 } |
86 | 86 |
(...skipping 10 matching lines...) Expand all Loading... |
97 element = document.getElementById('rich-text'); | 97 element = document.getElementById('rich-text'); |
98 rowHeight = 14; | 98 rowHeight = 14; |
99 testDirectTouches(); | 99 testDirectTouches(); |
100 testIndirectTouches(); | 100 testIndirectTouches(); |
101 } | 101 } |
102 } | 102 } |
103 runTests(); | 103 runTests(); |
104 </script> | 104 </script> |
105 </body> | 105 </body> |
106 </html> | 106 </html> |
OLD | NEW |