| Index: third_party/WebKit/LayoutTests/http/tests/history/resources/navigation-with-user-gesture.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/history/resources/navigation-with-user-gesture.html b/third_party/WebKit/LayoutTests/http/tests/history/resources/navigation-with-user-gesture.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d75d058c71537f0c0d611bfe3ae096cd39c4b28b
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/history/resources/navigation-with-user-gesture.html
|
| @@ -0,0 +1,13 @@
|
| +<body onload="setTimeout(loaded, 0)">
|
| +<a id="a" href="../../resources/notify-done.html">Finish</a>
|
| +<script>
|
| +function loaded() {
|
| + if (window.eventSender) {
|
| + var a = document.getElementById("a");
|
| + eventSender.mouseMoveTo(a.offsetLeft + 2, a.offsetTop + 2);
|
| + eventSender.mouseDown();
|
| + eventSender.mouseUp();
|
| + }
|
| +}
|
| +</script>
|
| +</body>
|
|
|