diff --git a/source b/source index a8779c7f27a..f6a2f45b8b5 100644 --- a/source +++ b/source @@ -44689,8 +44689,9 @@ interface HTMLInputElement : HTMLElement { agent should not allow the user to modify the element's value or checkedness.

-

When an input element is disabled, it is not When an input element is disabled and + is not in the Checkbox nor Radio states, it is not mutable.

The readonly attribute can also in some @@ -44708,7 +44709,9 @@ interface HTMLInputElement : HTMLElement {

The activation behavior for input elements are these steps:

    -
  1. If this element is not mutable, then return.

  2. +
  3. If this element is not mutable and is not in Checkbox nor + Radio, then return.

  4. Run this element's input activation behavior, if any, and do nothing otherwise.