summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLSelectElement.idl
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLSelectElement.idl')
-rw-r--r--Source/WebCore/html/HTMLSelectElement.idl12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/WebCore/html/HTMLSelectElement.idl b/Source/WebCore/html/HTMLSelectElement.idl
index 9749780c1..5d60ef4f8 100644
--- a/Source/WebCore/html/HTMLSelectElement.idl
+++ b/Source/WebCore/html/HTMLSelectElement.idl
@@ -21,12 +21,12 @@
module html {
interface [
- HasIndexGetter,
- HasCustomIndexSetter
+ IndexedGetter,
+ CustomIndexedSetter
] HTMLSelectElement : HTMLElement {
readonly attribute DOMString type;
attribute long selectedIndex;
- attribute [TreatNullAs=EmptyString] DOMString value;
+ attribute [TreatNullAs=NullString] DOMString value;
// Modified in DOM Level 2:
#if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C
@@ -40,7 +40,7 @@ module html {
readonly attribute boolean willValidate;
readonly attribute DOMString validationMessage;
boolean checkValidity();
- void setCustomValidity(in [ConvertUndefinedOrNullToNullString] DOMString error);
+ void setCustomValidity(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString error);
// Modified in DOM Level 2:
readonly attribute HTMLOptionsCollection options;
@@ -48,11 +48,11 @@ module html {
attribute [Reflect] boolean disabled;
attribute [Reflect] boolean autofocus;
attribute boolean multiple;
- attribute [TreatNullAs=EmptyString] DOMString name;
+ attribute [TreatNullAs=NullString] DOMString name;
attribute [Reflect] boolean required;
attribute long size;
- [OldStyleObjC] void add(in [Optional=CallWithDefaultValue] HTMLElement element,
+ [ObjCLegacyUnnamedParameters] void add(in [Optional=CallWithDefaultValue] HTMLElement element,
in [Optional=CallWithDefaultValue] HTMLElement before) raises(DOMException);
#if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT