Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/history/resources/navigation-with-user-gesture.html

Issue 2780953002: When historyEntryRequiresUserGesture is enabled, exempt docs that have been committed for 5 seconds (Closed)
Patch Set: Address ojan's comments Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <body onload="setTimeout(loaded, 0)">
2 <a id="a" href="../../resources/notify-done.html">Finish</a>
3 <script>
4 function loaded() {
5 if (window.eventSender) {
6 var a = document.getElementById("a");
7 eventSender.mouseMoveTo(a.offsetLeft + 2, a.offsetTop + 2);
8 eventSender.mouseDown();
9 eventSender.mouseUp();
10 }
11 }
12 </script>
13 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698