Auto merge of #6559 - kball:IS1824-implement-Node.baseURI, r=Ms2ger

Implement Node.baseURI

Addresses Issue #1824.  Implements Node.baseURI based on https://www.w3.org/Bugs/Public/show_bug.cgi?id=20976#c32

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6559)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-07-06 11:04:45 -06:00
commit 1e16047846
5 changed files with 42 additions and 7 deletions

View file

@ -26,7 +26,7 @@ interface Node : EventTarget {
readonly attribute DOMString nodeName;
[Pure]
readonly attribute DOMString? baseURI;
readonly attribute DOMString baseURI;
[Pure]
readonly attribute Document? ownerDocument;