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

Unified Diff: core/html/HTMLSelectElement.idl

Issue 155973006: Roll IDL to 1750 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 6 years, 10 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/HTMLScriptElement.idl ('k') | core/html/HTMLStyleElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLSelectElement.idl
diff --git a/core/html/HTMLSelectElement.idl b/core/html/HTMLSelectElement.idl
index 477af63540ca1fd430c392632efd49da40d8c8e5..b61f5128247c82b9d06814027b2c1478e3746cb6 100644
--- a/core/html/HTMLSelectElement.idl
+++ b/core/html/HTMLSelectElement.idl
@@ -22,16 +22,16 @@
interface HTMLSelectElement : HTMLElement {
[Reflect] attribute boolean autofocus;
[Reflect] attribute boolean disabled;
- readonly attribute HTMLFormElement form;
+ [ImplementedAs=formOwner] readonly attribute HTMLFormElement form;
attribute boolean multiple;
- [Reflect, TreatNullAs=NullString] attribute DOMString name;
+ [Reflect] attribute DOMString name;
[Reflect] attribute boolean required;
attribute long size;
readonly attribute DOMString type;
readonly attribute HTMLOptionsCollection options;
- [SetterRaisesException] attribute unsigned long length;
+ [RaisesException=Setter] attribute unsigned long length;
getter Node item(unsigned long index);
[ImplementedAs=anonymousIndexedSetter, RaisesException] setter HTMLOptionElement (unsigned long index, [TreatNullAs=anonymousIndexedSetterRemove, TreatUndefinedAs=anonymousIndexedSetterRemove] HTMLOptionElement value);
@@ -43,7 +43,7 @@ interface HTMLSelectElement : HTMLElement {
[RaisesException] void remove();
readonly attribute HTMLCollection selectedOptions;
attribute long selectedIndex;
- [TreatNullAs=NullString] attribute DOMString value;
+ attribute DOMString value;
readonly attribute boolean willValidate;
readonly attribute ValidityState validity;
« no previous file with comments | « core/html/HTMLScriptElement.idl ('k') | core/html/HTMLStyleElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698