gecko-dev/content/media/webaudio/test/layouttest-glue.js
Ehsan Akhgari 7af104bee8 Bug 815643 - Part 9: Port Blink's LayoutTest for ConvolverNode to mochitest-plain; r=roc
--HG--
extra : rebase_source : b829991957f0349a6c2541fcc99d4214e701a2ae
2013-06-10 16:10:07 -04:00

20 lines
344 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);
}