diff -r 000000000000 -r 6474c204b198 content/media/webaudio/test/layouttest-glue.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/media/webaudio/test/layouttest-glue.js Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,19 @@ +// 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); +} +