summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/attributes-common-to-form-controls/resources/dirname.js
blob: f0e97bc30142bcf4ee0429283486091203b2c220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
function onIframeLoadedDone(t, cb, selector="iframe") {
  const iframe = document.querySelector(selector);
  iframe.addEventListener("load", function() {
    // 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; }

    const params = new URLSearchParams(iframe.contentWindow.location.search);
    t.step(() => cb(params))
    t.done();
  });
}