mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
LibWeb: Use 'FIXME' extended attribute where possible
This improves the debuggability of many live web pages :^)
This commit is contained in:
committed by
Andreas Kling
parent
7c69b4737b
commit
4fe0cbcf85
Notes:
sideshowbarker
2024-07-17 18:06:52 +09:00
Author: https://github.com/shannonbooth Commit: https://github.com/SerenityOS/serenity/commit/4fe0cbcf85 Pull-request: https://github.com/SerenityOS/serenity/pull/24377 Reviewed-by: https://github.com/tcl3
@@ -25,9 +25,9 @@ interface HTMLTextAreaElement : HTMLElement {
|
||||
[LegacyNullToEmptyString] attribute DOMString value;
|
||||
readonly attribute unsigned long textLength;
|
||||
|
||||
// FIXME: readonly attribute boolean willValidate;
|
||||
// FIXME: readonly attribute ValidityState validity;
|
||||
// FIXME: readonly attribute DOMString validationMessage;
|
||||
[FIXME] readonly attribute boolean willValidate;
|
||||
[FIXME] readonly attribute ValidityState validity;
|
||||
[FIXME] readonly attribute DOMString validationMessage;
|
||||
boolean checkValidity();
|
||||
boolean reportValidity();
|
||||
undefined setCustomValidity(DOMString error);
|
||||
@@ -38,7 +38,7 @@ interface HTMLTextAreaElement : HTMLElement {
|
||||
attribute unsigned long selectionStart;
|
||||
attribute unsigned long selectionEnd;
|
||||
// FIXME: attribute DOMString selectionDirection;
|
||||
// FIXME: undefined setRangeText(DOMString replacement);
|
||||
// FIXME: undefined setRangeText(DOMString replacement, unsigned long start, unsigned long end, optional SelectionMode selectionMode = "preserve");
|
||||
// FIXME: undefined setSelectionRange(unsigned long start, unsigned long end, optional DOMString direction);
|
||||
[FIXME] undefined setRangeText(DOMString replacement);
|
||||
[FIXME] undefined setRangeText(DOMString replacement, unsigned long start, unsigned long end, optional SelectionMode selectionMode = "preserve");
|
||||
[FIXME] undefined setSelectionRange(unsigned long start, unsigned long end, optional DOMString direction);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user