Comparing version 0.14.21 to 0.14.22
@@ -88,2 +88,5 @@ 'use strict'; | ||
get nextSibling() { return nextSibling(this); } | ||
get namespaceURI() { | ||
return 'http://www.w3.org/1999/xhtml'; | ||
} | ||
@@ -90,0 +93,0 @@ get previousElementSibling() { return previousElementSibling(this); } |
@@ -39,2 +39,6 @@ 'use strict'; | ||
get namespaceURI() { | ||
return 'http://www.w3.org/2000/svg'; | ||
} | ||
getAttribute(name) { | ||
@@ -41,0 +45,0 @@ return name === 'class' ? |
@@ -90,2 +90,5 @@ // https://dom.spec.whatwg.org/#interface-element | ||
get nextSibling() { return nextSibling(this); } | ||
get namespaceURI() { | ||
return 'http://www.w3.org/1999/xhtml'; | ||
} | ||
@@ -92,0 +95,0 @@ get previousElementSibling() { return previousElementSibling(this); } |
@@ -38,2 +38,6 @@ import {Element} from '../interface/element.js'; | ||
get namespaceURI() { | ||
return 'http://www.w3.org/2000/svg'; | ||
} | ||
getAttribute(name) { | ||
@@ -40,0 +44,0 @@ return name === 'class' ? |
{ | ||
"name": "linkedom", | ||
"version": "0.14.21", | ||
"version": "0.14.22", | ||
"description": "A triple-linked lists based DOM implementation", | ||
@@ -5,0 +5,0 @@ "main": "./cjs/index.js", |
@@ -6,2 +6,3 @@ /** | ||
constructor(ownerDocument: any, localName: any); | ||
get namespaceURI(): string; | ||
before(...nodes: any[]): void; | ||
@@ -8,0 +9,0 @@ after(...nodes: any[]): void; |
@@ -97,2 +97,3 @@ export function ImageClass(ownerDocument: any): { | ||
readonly nextSibling: any; | ||
readonly namespaceURI: string; | ||
readonly previousElementSibling: any; | ||
@@ -99,0 +100,0 @@ readonly nextElementSibling: any; |
Sorry, the diff of this file is too big to display
906079
25283