Replacing Node.prototype.rootNode for Node.prototype.getRootNode.

This commit is contained in:
Rafael Gomes Dantas 2016-10-11 21:17:28 +01:00 committed by Rafael Dantas
parent 3916d1d613
commit 0074d2a7a8
5 changed files with 6 additions and 73 deletions

View file

@ -30,8 +30,10 @@ interface Node : EventTarget {
[Pure]
readonly attribute Document? ownerDocument;
[Pure]
readonly attribute Node rootNode;
Node getRootNode();
[Pure]
readonly attribute Node? parentNode;
[Pure]