diff --git a/source b/source index 731a1fc79e9..3fd8677b995 100644 --- a/source +++ b/source @@ -44700,8 +44700,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 @@ -44719,7 +44720,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.