blob: b6703dc8f09cd150601543155b42bca8f0de6b5d [file] [log] [blame]
(async () => {
if (!window.testRunner)
return;
testRunner.waitUntilDone();
const script = document.createElement("script");
script.src = "../resources/ui-helper.js";
script.addEventListener("load", async event => {
await UIHelper.ensureStablePresentationUpdate();
testRunner.notifyDone();
});
document.body.appendChild(script);
})();