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

Side by Side Diff: chrome/test/data/window_open_and_navigate.html

Issue 1881023003: Do not create pending NavigationEntry when a transient one is present. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes based on review. Created 4 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 <script>
2 var win = null;
3
4 function openWin() {
5 win = window.open();
6 }
7
8 function navigate(url) {
9 setTimeout(function() {
10 win.location = url;
11 }, 10);
12 }
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698