summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/scripting-1/the-script-element/microtasks/resources/resolve-then-throw.js
blob: a841eb780a050a82acb3cd496f4f7ad04a8f3a5b (plain)
1
2
3
self.log.push('importScripts()ed script');
Promise.resolve().then(() => self.log.push('promise'));
throw new Error('foo');