Files
tubestation/servo/components/script/dom/webidls/HTMLBaseElement.webidl
Keith Yeung f12f409195 servo: Merge #10512 - Implement HTMLBaseElement attributes (from KiChjang:base-element-attr); r=Ms2ger
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).

Source-Repo: https://github.com/servo/servo
Source-Revision: 3ad1b9134f17803f04ac94754e640e7f876799d8
2016-04-13 18:21:42 +05:00

11 lines
468 B
Plaintext

/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/#htmlbaseelement
interface HTMLBaseElement : HTMLElement {
attribute DOMString href;
// attribute DOMString target;
};