diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2015-10-14 01:56:15 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2015-10-19 21:05:07 +0200 |
commit | 57c423a93142e072a992aa33c3ecca9446c477b0 (patch) | |
tree | eefe41008e917df08620b98050c035cb776ad538 /components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl | |
parent | e0c8a88410277843714a20d5fced73a392fad861 (diff) | |
download | servo-57c423a93142e072a992aa33c3ecca9446c477b0.tar.gz servo-57c423a93142e072a992aa33c3ecca9446c477b0.zip |
Update URL-related interfaces and their tests up to spec
The URL spec recently changed and the variour "mixins" interfaces are gone,
this commit updates our code and WPT accordingly.
The new expected failures related to HTMLAnchorElement and HTMLAreaElement's
attributes are due to their moving to the HTMLHyperLinkElementUtils interface,
which is not anymore in a separate <script class=untested> element.
Diffstat (limited to 'components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl')
-rw-r--r-- | components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl b/components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl new file mode 100644 index 00000000000..c8d7a35493d --- /dev/null +++ b/components/script/dom/webidls/HTMLHyperlinkElementUtils.webidl @@ -0,0 +1,20 @@ +/* -*- 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/#htmlhyperlinkelementutils +//[NoInterfaceObject/*, Exposed=Window*/] +//interface HTMLHyperlinkElementUtils { +// stringifier attribute USVString href; +// attribute USVString origin; +// attribute USVString protocol; +// attribute USVString username; +// attribute USVString password; +// attribute USVString host; +// attribute USVString hostname; +// attribute USVString port; +// attribute USVString pathname; +// attribute USVString search; +// attribute USVString hash; +//}; |