A new web view should be created when a link with target=_blank is clicked, or when window.open() is called in response to a user's click event. When target is _self the content should be loaded in the current webview
The above link has a target=_blank attribute and should load a new page in a separate web view when clicked.
The above link has a target=_self attribute and should load the child page in this webview
The above link has a target=_top attribute and should load the child page in this webview
The above link has a target=_parent attribute and should load the child page in this webview
1a. The above link has a click handler which calls window.open() and should load a new page in a separate web view when clicked.
1b. After closing the window, you should see a reference to the opened window inside the following grey box:
Note! window.open() does not work without an actual user click due to popup blocking.
2a. The above link has a click handler which calls window.open() and should load a new page in a separate web view when clicked.
2b. After closing the window, you should see a reference to the opened window inside the following grey box:
Note! window.open() does not work without an actual user click due to popup blocking.
3a. The above link has a click handler which calls window.open() and should load a new page in a separate web view when clicked.
3b. After closing the window, you should see a reference to the opened window inside the following grey box:
Note! window.open() does not work without an actual user click due to popup blocking.
4a. The above link has a click handler which calls window.open() and should load a new page in a separate web view when clicked.
4b. After closing the window, you should see a reference to the opened window inside the following grey box:
Note! window.open() does not work without an actual user click due to popup blocking.
5a. The above link has a click handler which calls window.open() and should load a new page in a separate web view when clicked.
5b. After closing the window, you should see a reference to the opened window inside the following grey box:
Note! window.open() does not work without an actual user click due to popup blocking.