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