Skip to content

Commit

Permalink
Make a workaround for the test with about:blank onload
Browse files Browse the repository at this point in the history
As jdm mentioned in servo#22660 (comment), the initial about:blank load event can be fired before the form navigation occurs.
  • Loading branch information
CYBAI authored and gterzian committed Jan 30, 2019
1 parent 2f8ccdf commit c96cae3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/wpt/metadata/MANIFEST.json
Original file line number Diff line number Diff line change
Expand Up @@ -631362,7 +631362,7 @@
"testharness"
],
"html/semantics/forms/form-submission-0/constructing-form-data-set.html": [
"914d61b07898867f2728c2d3cf9d7ad7bdd6aa1b",
"8dad6cdd01a43fa17694c67939e8e5a05ab529e2",
"testharness"
],
"html/semantics/forms/form-submission-0/contains.json": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@

[The button cannot be setted if it is not a submitter.]
expected: FAIL

[Entries added to "formData" IDL attribute should be submitted.]
expected: FAIL
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,12 @@
e.formData.append('h1', 'vh1');
});
let iframe = form.previousSibling;
iframe.onload = t1.step_func_done(() => {
iframe.onload = t1.step_func(() => {
// The initial about:blank load event can be fired before the form navigation occurs.
// See https://github.com/whatwg/html/issues/490 for more information.
if (iframe.contentWindow.location.href == "about:blank") { return; }
assert_true(iframe.contentWindow.location.search.indexOf('n1=v1&h1=vh1') != -1);
t1.done();
});
form.submit();
});
Expand Down

0 comments on commit c96cae3

Please sign in to comment.