blob: 0e4cfaf00183ff1a19d05041474b152d2bfe0074 [file] [log] [blame]
<body>
<script>
function navigate(e) {
// double-nested setTimeout() to ensure that the UserGesturToken
// isn't active when the navigation is triggered.
setTimeout(function() {
setTimeout(function() {
top.location = "http://127.0.0.1:8000/navigation/resources/pass-and-notify-done.html";
}, 0);
}, 0);
}
window.addEventListener("message", navigate, false);
</script>
</body>