Skip to content

Commit

Permalink
Bug 1574884 [wpt PR 18536] - HTML: window.open()'s url parameter defa…
Browse files Browse the repository at this point in the history
…ult, a=testonly

Automatic update from web-platform-tests
HTML: window.open()'s url parameter default

For whatwg/html#4851.

--

wpt-commits: 539b160b7ff726968281bab083189bd76dce2c33
wpt-pr: 18536

UltraBlame original commit: 351e0b961b79af4e37fc77910aeb6ddee4010ef0
  • Loading branch information
marco-c committed Oct 4, 2019
1 parent 609dc5e commit f7b81ab
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
async_test(t => {
const frame = document.createElement("iframe");
t.add_cleanup(() => frame.remove());
frame.name = "foo";
frame.src = "/common/blank.html";
frame.onload = t.step_func(() => {
frame.onload = t.unreached_func();
t.step_timeout(() => t.done(), 500);
assert_equals(window[0], window.open(undefined, "foo"));
});
document.body.append(frame);
}, "window.open()'s url parameter default");

0 comments on commit f7b81ab

Please sign in to comment.