s/isnot/is_not/ in harness.js

For sake of harness.js interface harmony.
This commit is contained in:
Bruno de Oliveira Abinader 2014-03-13 12:25:35 -04:00
parent 3933d17262
commit c9716df7ed
10 changed files with 22 additions and 22 deletions

View file

@ -4,7 +4,7 @@
<script>
// test1: basic test
{
isnot(document.implementation, null, "test1-0, basic test");
is_not(document.implementation, null, "test1-0, basic test");
is_a(document.implementation, DOMImplementation, "test1-1, basic test");
var implementation = document.implementation;
@ -25,7 +25,7 @@
// test3: createHTMLDocument
{
var htmldoc = document.implementation.createHTMLDocument("example title");
isnot(htmldoc, null, "test3-0, createHTMLDocument");
is_not(htmldoc, null, "test3-0, createHTMLDocument");
is_a(htmldoc, Document, "test3-1, createHTMLDocument");
is(htmldoc.childNodes.length, 2, "test3-3, createHTMLDocument");