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

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

Issue 24066010: Implement URLUtils and URL interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: git rebase Created 7 years, 2 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
Index: Source/core/html/HTMLAreaElement.idl
diff --git a/Source/core/html/HTMLAreaElement.idl b/Source/core/html/HTMLAreaElement.idl
index 4171f43742e3f1b7c96bead8ce9464017c9ae5bd..f392526bc26406f4c97c98e27c4ca8ea0dac725a 100644
--- a/Source/core/html/HTMLAreaElement.idl
+++ b/Source/core/html/HTMLAreaElement.idl
@@ -21,19 +21,10 @@
interface HTMLAreaElement : HTMLElement {
[Reflect, TreatNullAs=NullString] attribute DOMString alt;
[Reflect, TreatNullAs=NullString] attribute DOMString coords;
- [Reflect, TreatNullAs=NullString, URL] attribute DOMString href;
[Reflect] attribute boolean noHref;
[Reflect, TreatNullAs=NullString] attribute DOMString ping;
[Reflect, TreatNullAs=NullString] attribute DOMString shape;
[Reflect, TreatNullAs=NullString] attribute DOMString target;
-
- // IE Extensions
- readonly attribute DOMString hash;
- readonly attribute DOMString host;
- readonly attribute DOMString hostname;
- readonly attribute DOMString pathname;
- readonly attribute DOMString port;
- readonly attribute DOMString protocol;
- readonly attribute DOMString search;
};
+HTMLAreaElement implements URLUtils;

Powered by Google App Engine
This is Rietveld 408576698