| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html><body> | 2 <html><body> |
| 3 <script src="../../js/resources/js-test-pre.js"></script> | 3 <script src="../../js/resources/js-test-pre.js"></script> |
| 4 | 4 |
| 5 <p>When selecting from non-anchor Node to anchor node in ShadowDOM, client shoul
d not cause page jump.</p> | 5 <p>When selecting from non-anchor Node to anchor node in ShadowDOM, client shoul
d not cause page jump.</p> |
| 6 | 6 |
| 7 <div id="host"></div> | 7 <div id="host"></div> |
| 8 <pre id="console"></pre> | 8 <pre id="console"></pre> |
| 9 | 9 |
| 10 <script> | 10 <script> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 debug('Clicking a node in ShadowDOM.'); | 37 debug('Clicking a node in ShadowDOM.'); |
| 38 clickEventShouldNotBeFired = false; | 38 clickEventShouldNotBeFired = false; |
| 39 mouseMoveTo(shadowRoot.firstChild); | 39 mouseMoveTo(shadowRoot.firstChild); |
| 40 eventSender.mouseDown(); | 40 eventSender.mouseDown(); |
| 41 eventSender.mouseUp(); | 41 eventSender.mouseUp(); |
| 42 debug(''); | 42 debug(''); |
| 43 | 43 |
| 44 </script> | 44 </script> |
| 45 | 45 |
| 46 <script src="../../js/resources/js-test-post.js"></script> | |
| 47 </body></body> | 46 </body></body> |
| OLD | NEW |