blob: 0ed0b9dc90e9e7d8af2cfe571b185f813effef7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// 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);
}
|