| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <html> | 2 <html> |
| 3 <body> | 3 <body> |
| 4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../fast/js/resources/js-test-pre.js"></script> |
| 5 | 5 |
| 6 <div id="container" style="position: relative; top: 100px; left: 600px; width:40
0px; height: 400px;" role="group" tabindex="0"> | 6 <div id="container" style="position: relative; top: 100px; left: 600px; width:40
0px; height: 400px;" role="group" tabindex="0"> |
| 7 | 7 |
| 8 <svg role="group" id="svgroot"> | 8 <svg role="group" id="svgroot"> |
| 9 | 9 |
| 10 <circle role="button" aria-label="face" id="face" r="200" cx="200" cy="200" st
roke="red" stroke-width="1" fill="yellow" /> | 10 <circle role="button" aria-label="face" id="face" r="200" cx="200" cy="200" st
roke="red" stroke-width="1" fill="yellow" /> |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 var image = container.childAtIndex(6); | 83 var image = container.childAtIndex(6); |
| 84 debug('Image role: ' + image.role); | 84 debug('Image role: ' + image.role); |
| 85 debug('Image label: ' + image.description); | 85 debug('Image label: ' + image.description); |
| 86 debug('ImageX: ' + (pageX(image) - x)); | 86 debug('ImageX: ' + (pageX(image) - x)); |
| 87 debug('ImageY: ' + Math.abs(pageY(image) - y)); | 87 debug('ImageY: ' + Math.abs(pageY(image) - y)); |
| 88 } | 88 } |
| 89 | 89 |
| 90 </script> | 90 </script> |
| 91 | 91 |
| 92 <script src="../fast/js/resources/js-test-post.js"></script> | |
| 93 </body> | 92 </body> |
| 94 </html> | 93 </html> |
| 95 | 94 |
| OLD | NEW |