mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 16:19:23 +00:00
LibWeb: Use 'FIXME' extended attribute where possible
This improves the debuggability of many live web pages :^)
This commit is contained in:
parent
7c69b4737b
commit
4fe0cbcf85
Notes:
sideshowbarker
2024-07-17 18:06:52 +09:00
Author: https://github.com/shannonbooth
Commit: 4fe0cbcf85
Pull-request: https://github.com/SerenityOS/serenity/pull/24377
Reviewed-by: https://github.com/tcl3
55 changed files with 184 additions and 187 deletions
|
@ -24,18 +24,18 @@ interface HTMLSelectElement : HTMLElement {
|
|||
[CEReactions] undefined add((HTMLOptionElement or HTMLOptGroupElement) element, optional (HTMLElement or long)? before = null);
|
||||
[CEReactions] undefined remove(); // ChildNode overload
|
||||
[CEReactions] undefined remove(long index);
|
||||
// FIXME: [CEReactions] setter undefined (unsigned long index, HTMLOptionElement? option);
|
||||
[FIXME, CEReactions] setter undefined (unsigned long index, HTMLOptionElement? option);
|
||||
|
||||
[SameObject] readonly attribute HTMLCollection selectedOptions;
|
||||
attribute long selectedIndex;
|
||||
attribute DOMString value;
|
||||
|
||||
// FIXME: readonly attribute boolean willValidate;
|
||||
// FIXME: readonly attribute ValidityState validity;
|
||||
// FIXME: readonly attribute DOMString validationMessage;
|
||||
// FIXME: boolean checkValidity();
|
||||
// FIXME: boolean reportValidity();
|
||||
// FIXME: undefined setCustomValidity(DOMString error);
|
||||
[FIXME] readonly attribute boolean willValidate;
|
||||
[FIXME] readonly attribute ValidityState validity;
|
||||
[FIXME] readonly attribute DOMString validationMessage;
|
||||
[FIXME] boolean checkValidity();
|
||||
[FIXME] boolean reportValidity();
|
||||
[FIXME] undefined setCustomValidity(DOMString error);
|
||||
|
||||
readonly attribute NodeList labels;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue