| Index: third_party/WebKit/LayoutTests/html/text-level-semantics/a-click.html
|
| diff --git a/third_party/WebKit/LayoutTests/html/text-level-semantics/a-click.html b/third_party/WebKit/LayoutTests/html/text-level-semantics/a-click.html
|
| index e829228332eb0e3e365ee8127cc331db15363190..888ec267424e2a5c8815def23ae84466737e28dd 100644
|
| --- a/third_party/WebKit/LayoutTests/html/text-level-semantics/a-click.html
|
| +++ b/third_party/WebKit/LayoutTests/html/text-level-semantics/a-click.html
|
| @@ -4,10 +4,10 @@
|
| <script src="../../resources/testharnessreport.js"></script>
|
| <a id="target" href="#abc" title="This should appear as a tooltip">Hello.</a>
|
| <script>
|
| -function doubleClickNoNavigation() {
|
| +function doubleClickNavigation() {
|
| document.getElementById('target').dispatchEvent(new MouseEvent("click", {detail: 2}));
|
| - assert_equals(window.location.hash, "", "There should be no navigation on double click");
|
| + assert_equals(window.location.hash, "#abc", "Click will navigate on double click");
|
| }
|
|
|
| -test(doubleClickNoNavigation, "Double Click No Navigation");
|
| +test(doubleClickNavigation, "Double Click Navigation");
|
| </script>
|
|
|