[dom] consider renaming "namespace" params into "namespaceURI" (#136)

Change signature of methods like
```
Attr? getNamedItemNS(DOMString? namespace, DOMString localName);
```
into
```
Attr? getNamedItemNS(DOMString? namespaceURI, DOMString localName);
```

Not a really important change, but `namespace` is a keyword in some programming languages;
plus `namespaceURI` is the name used in the API itself (`ElementnamespaceURI`, `NodelookupNamespaceURI`, etc)

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/136

Received on Monday, 21 December 2015 14:30:11 UTC