No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- 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)
- }
|