diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:05:15 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-12-17 18:05:15 -0800 |
commit | 1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353 (patch) | |
tree | 4457a7306ea5acb43fe05bfe0973b1f7faf97ba2 /WebCore/html/HTMLSelectElement.idl | |
parent | 9364f22aed35e1a1e9d07c121510f80be3ab0502 (diff) | |
download | external_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.zip external_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.tar.gz external_webkit-1cbdecfa9fc428ac2d8aca0fa91c9580b3d57353.tar.bz2 |
Code drop from //branches/cupcake/...@124589
Diffstat (limited to 'WebCore/html/HTMLSelectElement.idl')
-rw-r--r-- | WebCore/html/HTMLSelectElement.idl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/WebCore/html/HTMLSelectElement.idl b/WebCore/html/HTMLSelectElement.idl index e154ace..d3e85a8 100644 --- a/WebCore/html/HTMLSelectElement.idl +++ b/WebCore/html/HTMLSelectElement.idl @@ -41,15 +41,16 @@ module html { #endif readonly attribute HTMLFormElement form; + readonly attribute boolean willValidate; // Modified in DOM Level 2: readonly attribute HTMLOptionsCollection options; attribute boolean disabled; + attribute boolean autofocus; attribute boolean multiple; attribute [ConvertNullToNullString] DOMString name; attribute long size; - attribute long tabIndex; [OldStyleObjC] void add(in HTMLElement element, in HTMLElement before) @@ -61,8 +62,6 @@ module html { #else void remove(in long index); #endif - void blur(); - void focus(); // These methods are not in DOM Level 2 IDL, but are mentioned in the standard: // "The contained options can be directly accessed through the select element as a collection." |