Files
Kmake/test/fixtures/wpt/performance-timeline/resources/postmessage-entry.html
2026-05-26 23:36:42 -07:00

18 lines
453 B
HTML

<!doctype html>
<script>
addEventListener("load", () => {
const entry = performance.getEntriesByType("navigation")[0];
try {
window.top.postMessage(entry, "*");
} catch(error) {
if (error.name == "DataCloneError") {
window.top.postMessage("PASS", "*");
} else {
window.top.postMessage("FAIL - Wrong exception name: " + error.name, "*");
}
}
window.top.postMessage("FAIL - No exception thrown", "*");
});
</script>