diff --git a/source b/source index 2dec969bbf2..dfb97b08e2c 100644 --- a/source +++ b/source @@ -44695,8 +44695,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 @@ -44714,7 +44715,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.