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 -->
This commit is contained in:
bors-servo 2016-04-13 18:51:42 +05:30
commit 3ad1b9134f
7 changed files with 33 additions and 37 deletions

View file

@ -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;
};