summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/infrastructure/safe-passing-of-structured-data/resources/post-parent-type-error.html
blob: d6713c4192e5721f7ad07bf5de1d14ced934f8cc (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<meta charset="utf-8">
<title>Helper that posts its parent a TypeError</title>

<script>
window.doIt = () => {
  parent.postMessage(new TypeError("!!"), "*");
};
</script>