| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <body/> | 2 <body/> |
| 3 <script src="../../resources/testharness.js"></script> | 3 <script src="../../resources/testharness.js"></script> |
| 4 <script src="../../resources/testharnessreport.js"></script> | 4 <script src="../../resources/testharnessreport.js"></script> |
| 5 <a id="target" href="#abc" title="This should appear as a tooltip">Hello.</a> | 5 <a id="target" href="#abc" title="This should appear as a tooltip">Hello.</a> |
| 6 <script> | 6 <script> |
| 7 function doubleClickNavigation() { | 7 function doubleClickNavigation() { |
| 8 document.getElementById('target').dispatchEvent(new MouseEvent("click", {detai
l: 2})); | 8 document.getElementById('target').dispatchEvent(new MouseEvent("click", {detai
l: 2})); |
| 9 assert_equals(window.location.hash, "#abc", "Click will navigate on double cli
ck"); | 9 assert_equals(window.location.hash, "#abc", "Click will navigate on double cli
ck"); |
| 10 } | 10 } |
| 11 | 11 |
| 12 test(doubleClickNavigation, "Double Click Navigation"); | 12 test(doubleClickNavigation, "Double Click Navigation"); |
| 13 </script> | 13 </script> |
| OLD | NEW |