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

Unified Diff: Source/core/html/HTMLAreaElement.idl

Issue 991513002: Sync HTML element interfaces A-B with the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: leave HTMLFrameSetElement to https://codereview.chromium.org/980703006/ Created 5 years, 9 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 | « Source/core/html/HTMLAppletElement.idl ('k') | Source/core/html/HTMLAudioElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLAreaElement.idl
diff --git a/Source/core/html/HTMLAreaElement.idl b/Source/core/html/HTMLAreaElement.idl
index 471e5835a6ff3c1c4af1620814bd384d1734dd2e..53c99555a05590c5e457d864d7c95a53bc2b912d 100644
--- a/Source/core/html/HTMLAreaElement.idl
+++ b/Source/core/html/HTMLAreaElement.idl
@@ -18,13 +18,20 @@
* Boston, MA 02110-1301, USA.
*/
+// https://html.spec.whatwg.org/#htmlareaelement
+
interface HTMLAreaElement : HTMLElement {
[Reflect] attribute DOMString alt;
[Reflect] attribute DOMString coords;
- [Reflect] attribute boolean noHref;
- [Reflect] attribute DOMString ping;
[Reflect] attribute DOMString shape;
[Reflect] attribute DOMString target;
+ // FIXME: ping should be a DOMSettableTokenList.
+ [Reflect] attribute DOMString ping;
+ // FIXME: download, rel, relList, hreflang and type are missing.
+
+ // obsolete members
+ // https://html.spec.whatwg.org/#HTMLAreaElement-partial
+ [Reflect] attribute boolean noHref;
};
HTMLAreaElement implements URLUtils;
« no previous file with comments | « Source/core/html/HTMLAppletElement.idl ('k') | Source/core/html/HTMLAudioElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698