use new source in client-side-url-redirect test

This commit is contained in:
Erik Krogh Kristensen
2020-09-14 16:46:58 +02:00
parent cb7de2714a
commit f4f96ce04d

View File

@@ -43,6 +43,10 @@ function foo() {
var el = document.createElement("script");
el.src = payload;
document.body.appendChild(el); // NOT OK
importScripts(payload); // NOT OK
}
(function () {
self.onmessage = function (e) {
importScripts(e); // NOT OK
}
})();