mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
7af104bee8
--HG-- extra : rebase_source : b829991957f0349a6c2541fcc99d4214e701a2ae
20 lines
344 B
JavaScript
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);
|
|
}
|
|
|