mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
s/isnot/is_not/ in harness.js
For sake of harness.js interface harmony.
This commit is contained in:
parent
3933d17262
commit
c9716df7ed
10 changed files with 22 additions and 22 deletions
|
@ -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");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue