|
1234567891011121314 |
- var testDocument = require("./test-document")
- var testDomElement = require("./test-dom-element")
- var testDomComment = require("./test-dom-comment")
- var document = require("../index")
-
- testDocument(document)
- testDomElement(document)
- testDomComment(document)
-
- if (typeof window !== "undefined" && window.document) {
- testDocument(window.document)
- testDomElement(window.document)
- testDomComment(window.document)
- }
|