mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 16:58:38 +09:00
Issue #2790 - Part 1: Add: event state, pseudo-class mapping, SetAutofilled methods
This commit is contained in:
parent
2855cd6ded
commit
13d1054046
9 changed files with 73 additions and 0 deletions
|
|
@ -200,6 +200,13 @@ partial interface HTMLInputElement {
|
|||
// for example will be dispatched when focusing out the element.
|
||||
[Func="IsChromeOrXBL", NeedsSubjectPrincipal]
|
||||
void setUserInput(DOMString input);
|
||||
|
||||
// Sets or clears the autofilled state of this input element.
|
||||
// This is used by the browser's autofill system to indicate when
|
||||
// a value has been automatically filled (e.g., from saved passwords
|
||||
// or form data).
|
||||
[ChromeOnly]
|
||||
void setAutofilled(boolean autofilled);
|
||||
};
|
||||
|
||||
partial interface HTMLInputElement {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue