Index: core/html/HTMLAnchorElement.idl |
diff --git a/core/html/HTMLAnchorElement.idl b/core/html/HTMLAnchorElement.idl |
index 63775c24b9b4129ccbb45e72526f3949bdc79414..a91eb2395c6067ef48fa84d30a4d1e4e44f8809e 100644 |
--- a/core/html/HTMLAnchorElement.idl |
+++ b/core/html/HTMLAnchorElement.idl |
@@ -18,22 +18,27 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
+// https://html.spec.whatwg.org/#the-a-element |
+ |
interface HTMLAnchorElement : HTMLElement { |
- [Reflect] attribute DOMString charset; |
- [Reflect] attribute DOMString coords; |
+ [Reflect] attribute DOMString target; |
[Reflect] attribute DOMString download; |
- [Reflect] attribute DOMString hreflang; |
- [Reflect] attribute DOMString name; |
+ // FIXME: ping should be a DOMSettableTokenList. |
[Reflect] attribute DOMString ping; |
[Reflect] attribute DOMString rel; |
- [Reflect] attribute DOMString rev; |
- [Reflect] attribute DOMString shape; |
- [Reflect] attribute DOMString target; |
+ // FIXME: readonly attribute DOMTokenList relList; |
+ [Reflect] attribute DOMString hreflang; |
[Reflect] attribute DOMString type; |
[ImplementedAs=textContent] attribute DOMString text; |
- [Reflect, RuntimeEnabled=SubresourceIntegrity] attribute DOMString integrity; |
+ // obsolete members |
+ // https://html.spec.whatwg.org/#HTMLAnchorElement-partial |
+ [Reflect] attribute DOMString coords; |
+ [Reflect] attribute DOMString charset; |
+ [Reflect] attribute DOMString name; |
+ [Reflect] attribute DOMString rev; |
+ [Reflect] attribute DOMString shape; |
}; |
HTMLAnchorElement implements URLUtils; |