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="../resources/js-test.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" /> |
11 <ellipse role="button" aria-label="left-eye" id="left-eye" cx="120" cy="180" r
x="18" ry="33" fill="black"/> | 11 <ellipse role="button" aria-label="left-eye" id="left-eye" cx="120" cy="180" r
x="18" ry="33" fill="black"/> |
12 <ellipse role="button" aria-label="right-eye" id="right-eye" cx="280" cy="120"
rx="18" ry="33" fill="black"/> | 12 <ellipse role="button" aria-label="right-eye" id="right-eye" cx="280" cy="120"
rx="18" ry="33" fill="black"/> |
13 <ellipse role="button" aria-label="nose" id="nose" cx="200" cy="220" rx="8" ry
="15" fill="black"/> | 13 <ellipse role="button" aria-label="nose" id="nose" cx="200" cy="220" rx="8" ry
="15" fill="black"/> |
14 <path role="button" aria-label="smile" id="smile" stroke-width="10" stroke="bl
ack" fill="none" stroke-linecap="round" d="M120,280 Q200,330 290,280"/> | 14 <path role="button" aria-label="smile" id="smile" stroke-width="10" stroke="bl
ack" fill="none" stroke-linecap="round" d="M120,280 Q200,330 290,280"/> |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 </body> | 92 </body> |
93 </html> | 93 </html> |
94 | 94 |
OLD | NEW |