mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Implement 'labels' attribute on 'labelable elements'
This commit is contained in:
parent
37c03c7816
commit
9df375195e
22 changed files with 184 additions and 63 deletions
|
@ -25,5 +25,5 @@ interface HTMLButtonElement : HTMLElement {
|
|||
//boolean reportValidity();
|
||||
//void setCustomValidity(DOMString error);
|
||||
|
||||
//readonly attribute NodeList labels;
|
||||
readonly attribute NodeList labels;
|
||||
};
|
||||
|
|
|
@ -57,7 +57,7 @@ interface HTMLInputElement : HTMLElement {
|
|||
//boolean reportValidity();
|
||||
//void setCustomValidity(DOMString error);
|
||||
|
||||
//readonly attribute NodeList labels;
|
||||
readonly attribute NodeList labels;
|
||||
|
||||
//void select();
|
||||
// attribute unsigned long selectionStart;
|
||||
|
|
|
@ -11,5 +11,5 @@ interface HTMLMeterElement : HTMLElement {
|
|||
// attribute double low;
|
||||
// attribute double high;
|
||||
// attribute double optimum;
|
||||
//readonly attribute NodeList labels;
|
||||
readonly attribute NodeList labels;
|
||||
};
|
||||
|
|
|
@ -20,5 +20,5 @@ interface HTMLOutputElement : HTMLElement {
|
|||
//boolean reportValidity();
|
||||
//void setCustomValidity(DOMString error);
|
||||
|
||||
//readonly attribute NodeList labels;
|
||||
readonly attribute NodeList labels;
|
||||
};
|
||||
|
|
|
@ -8,5 +8,5 @@ interface HTMLProgressElement : HTMLElement {
|
|||
// attribute double value;
|
||||
// attribute double max;
|
||||
//readonly attribute double position;
|
||||
//readonly attribute NodeList labels;
|
||||
readonly attribute NodeList labels;
|
||||
};
|
||||
|
|
|
@ -36,5 +36,5 @@ interface HTMLSelectElement : HTMLElement {
|
|||
//boolean reportValidity();
|
||||
//void setCustomValidity(DOMString error);
|
||||
|
||||
//readonly attribute NodeList labels;
|
||||
readonly attribute NodeList labels;
|
||||
};
|
||||
|
|
|
@ -35,7 +35,7 @@ interface HTMLTextAreaElement : HTMLElement {
|
|||
//boolean reportValidity();
|
||||
//void setCustomValidity(DOMString error);
|
||||
|
||||
//readonly attribute NodeList labels;
|
||||
readonly attribute NodeList labels;
|
||||
|
||||
//void select();
|
||||
// attribute unsigned long selectionStart;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue