summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/performance-timeline/not-clonable.html
blob: d651776e5f4b945328e9de2651b8a59f11b53426 (plain)
1
2
3
4
5
6
7
8
9
10
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
  const t = async_test("Test that a postMessage of a performance entry fails");
  addEventListener("message", t.step_func_done(e => {
    assert_equals(e.data, "PASS");
  }));
</script>
<iframe src="resources/postmessage-entry.html"></iframe>