1
0
Fork 0
firefox/dom/media/webaudio/test/layouttest-glue.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 lines
343 B
JavaScript

// Reimplementation of the LayoutTest API from Blink so we can easily port
// WebAudio tests to Simpletest, without touching the internals of the test.
function testFailed(msg) {
ok(false, msg);
}
function testPassed(msg) {
ok(true, msg);
}
function finishJSTest() {
SimpleTest.finish();
}
function description(str) {
info(str);
}