Remove Gecko-specific and other commented-out code in IDL.

This commit is contained in:
Ms2ger 2014-02-25 12:41:11 +01:00
parent da16e54243
commit 546a506149
39 changed files with 7 additions and 1117 deletions

View file

@ -26,8 +26,6 @@ interface HTMLSelectElement : HTMLElement {
[Pure]
readonly attribute DOMString type;
/*[Constant]
readonly attribute HTMLOptionsCollection options;*/
[SetterThrows, Pure]
attribute unsigned long length;
getter Element? item(unsigned long index);
@ -38,7 +36,6 @@ interface HTMLSelectElement : HTMLElement {
[Throws]
setter creator void (unsigned long index, HTMLOptionElement? option);
// NYI: readonly attribute HTMLCollection selectedOptions;
[SetterThrows, Pure]
attribute long selectedIndex;
[Pure]
@ -50,8 +47,6 @@ interface HTMLSelectElement : HTMLElement {
boolean checkValidity();
void setCustomValidity(DOMString error);
// NYI: readonly attribute NodeList labels;
// https://www.w3.org/Bugs/Public/show_bug.cgi?id=20720
void remove();
};