forked from web-platform-tests/wpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add optional test for cloning of error stacks
Supplements web-platform-tests#17095. Follows whatwg/html#4665 and whatwg/webidl#732.
- Loading branch information
1 parent
f44b2cc
commit a77cab6
Showing
8 changed files
with
100 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
85
...ure/safe-passing-of-structured-data/structured-cloning-error-stack-optional.sub.window.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// META: script=/common/utils.js | ||
|
||
// .stack properties on errors are unspecified, but are present in most | ||
// browsers, most of the time. https://github.com/tc39/proposal-error-stacks/ tracks standardizing them. | ||
// Tests will pass automatically if the .stack property isn't present. | ||
|
||
stackTests(() => { | ||
return new Error('some message'); | ||
}, 'page-created Error'); | ||
|
||
stackTests(() => { | ||
return new DOMException('InvalidStateError', 'some message'); | ||
}, 'page-created DOMException'); | ||
|
||
stackTests(() => { | ||
try { | ||
Object.defineProperty(); | ||
} catch (e) { | ||
return e; | ||
} | ||
}, 'JS-engine-created TypeError'); | ||
|
||
stackTests(() => { | ||
try { | ||
HTMLParagraphElement.prototype.align; | ||
} catch (e) { | ||
return e; | ||
} | ||
}, 'web API-created TypeError'); | ||
|
||
stackTests(() => { | ||
try { | ||
document.createElement(''); | ||
} catch (e) { | ||
return e; | ||
} | ||
}, 'web API-created DOMException'); | ||
|
||
function stackTests(errorFactory, description) { | ||
async_test(t => { | ||
const error = errorFactory(); | ||
const originalStack = error.stack; | ||
|
||
if (!originalStack) { | ||
t.done(); | ||
return; | ||
} | ||
|
||
const worker = new Worker('resources/echo-worker.js'); | ||
worker.onmessage = t.step_func_done(e => { | ||
assert_equals(e.data.stack, originalStack); | ||
}); | ||
|
||
worker.postMessage(error); | ||
}, description + ' (worker)'); | ||
|
||
async_test(t => { | ||
const thisTestId = token(); | ||
|
||
const error = errorFactory(); | ||
const originalStack = error.stack; | ||
|
||
if (!originalStack) { | ||
t.done(); | ||
return; | ||
} | ||
|
||
const iframe = document.createElement('iframe'); | ||
window.addEventListener('message', t.step_func(e => { | ||
if (e.data.testId === thisTestId) { | ||
assert_equals(e.data.error.stack, originalStack); | ||
t.done(); | ||
} | ||
})); | ||
|
||
iframe.onload = t.step_func(() => { | ||
iframe.contentWindow.postMessage({ error, testId: thisTestId }, "*"); | ||
}); | ||
|
||
const crossSiteEchoIFrame = new URL('resources/echo-iframe.html', location.href); | ||
crossSiteEchoIFrame.hostname = '{{hosts[alt][www1]}}'; | ||
iframe.src = crossSiteEchoIFrame; | ||
document.body.append(iframe); | ||
}, description + ' (cross-site iframe)'); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters