Implement Document.createElementNS.

This commit is contained in:
Daniel Glazman 2014-04-07 10:14:01 +02:00 committed by Ms2ger
parent 86c83f7bfc
commit 4b0da08573
6 changed files with 101 additions and 8 deletions

View file

@ -28,6 +28,8 @@ interface Document : Node {
[Creator, Throws]
Element createElement(DOMString localName);
[Creator, Throws]
Element createElementNS(DOMString? namespace, DOMString qualifiedName);
[Creator]
DocumentFragment createDocumentFragment();
[Creator]