Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Unified Diff: core/html/HTMLAnchorElement.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « core/html/HTMLAllCollection.idl ('k') | core/html/HTMLAppletElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « core/html/HTMLAllCollection.idl ('k') | core/html/HTMLAppletElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698