Bug 1842773 - Part 5: Add ArrayBuffer.prototype.{maxByteLength,resizable} getters...
[gecko.git] / testing / mochitest / tests / browser / browser_fail.js
blobf6b439fb0d445c366170deaf1e6aaca6699f4e16
1 setExpectedFailuresForSelfTest(6);
3 function test() {
4   ok(false, "fail ok");
5   is(true, false, "fail is");
6   isnot(true, true, "fail isnot");
7   todo(true, "fail todo");
8   todo_is(true, true, "fail todo_is");
9   todo_isnot(true, false, "fail todo_isnot");