aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-04-13 18:51:42 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2016-04-13 18:51:42 +0530
commit3ad1b9134f17803f04ac94754e640e7f876799d8 (patch)
tree52cd699eb4fe92e420a4c92784b86341fd5fffab /components/script/dom/webidls
parent9954ee1334e6224409bf82db620d80721f56bb13 (diff)
parent4a1eb479379931d2e9c283241df011a0fdf9948e (diff)
downloadservo-3ad1b9134f17803f04ac94754e640e7f876799d8.tar.gz
servo-3ad1b9134f17803f04ac94754e640e7f876799d8.zip
Auto merge of #10512 - KiChjang:base-element-attr, r=Ms2ger
Implement HTMLBaseElement attributes The remaining test failure in `base_multiple.html` looks like there's a problem with the test itself (it does not have a `<base>` tag at all). <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10512) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r--components/script/dom/webidls/HTMLBaseElement.webidl4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/HTMLBaseElement.webidl b/components/script/dom/webidls/HTMLBaseElement.webidl
index 5c59c62f9be..549a6df1004 100644
--- a/components/script/dom/webidls/HTMLBaseElement.webidl
+++ b/components/script/dom/webidls/HTMLBaseElement.webidl
@@ -5,6 +5,6 @@
// https://html.spec.whatwg.org/multipage/#htmlbaseelement
interface HTMLBaseElement : HTMLElement {
- // attribute DOMString href;
- // attribute DOMString target;
+ attribute DOMString href;
+// attribute DOMString target;
};