aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-07-06 11:04:45 -0600
committerbors-servo <metajack+bors@gmail.com>2015-07-06 11:04:45 -0600
commit1e1604784675bf378cf0feea48bd22a668285f84 (patch)
treead5fc1d196e1426a139e959adf2eeabfde6e1add /components/script/dom/webidls
parent0f8095b950dd144497919cfea65a1f154ed3ae9a (diff)
parenta269f7f7b5f8fc18a3295f3394f6cbb3280c804c (diff)
downloadservo-1e1604784675bf378cf0feea48bd22a668285f84.tar.gz
servo-1e1604784675bf378cf0feea48bd22a668285f84.zip
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 -->
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r--components/script/dom/webidls/Node.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/Node.webidl b/components/script/dom/webidls/Node.webidl
index 2bc3624157a..70561bb1b72 100644
--- a/components/script/dom/webidls/Node.webidl
+++ b/components/script/dom/webidls/Node.webidl
@@ -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;