Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
shvaikalesh authored and pull[bot] committed Aug 8, 2023
1 parent ff34ff2 commit 1265587
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<title>
Testing AudioContext.getOutputTimestamp() method (cross-realm)
</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/webaudio/resources/audit.js"></script>
</head>
<body>
<script id="layout-test-code">
const audit = Audit.createTaskRunner();

audit.define("getoutputtimestamp-cross-realm", function(task, should) {
const mainContext = new AudioContext();
return task.timeout(() => {
const iframe = document.createElement("iframe");
document.body.append(iframe);
const iframeContext = new iframe.contentWindow.AudioContext();

should(mainContext.getOutputTimestamp().performanceTime, "mainContext's performanceTime")
.beGreaterThan(iframeContext.getOutputTimestamp().performanceTime, "iframeContext's performanceTime");
should(iframeContext.getOutputTimestamp.call(mainContext).performanceTime, "mainContext's performanceTime (via iframeContext's method)")
.beCloseTo(mainContext.getOutputTimestamp().performanceTime, "mainContext's performanceTime", { threshold: 0.01 });
}, 1000);
});

audit.run();
</script>
</body>
</html>

0 comments on commit 1265587

Please sign in to comment.