From c67deb540880fb9bc6246f212626031deb175438 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Fri, 14 Aug 2020 21:26:49 +0200 Subject: [PATCH 1/2] Remove mutability check from legacy activation behaviors --- source | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/source b/source index dfb97b08e2c..8c6f5e464b8 100644 --- a/source +++ b/source @@ -44695,9 +44695,8 @@ interface HTMLInputElement : HTMLElement { agent should not allow the user to modify the element's value or checkedness.

-

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

The readonly attribute can also in some @@ -44727,8 +44726,6 @@ interface HTMLInputElement : HTMLElement { steps:

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

  2. -
  3. If this element's type attribute is in the Checkbox state, then set this element's checkedness to its opposite value (i.e. true if it is false, @@ -44746,8 +44743,6 @@ interface HTMLInputElement : HTMLElement { steps:

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

    2. -
    3. If the element's type attribute is in the Checkbox state, then set the element's checkedness and the element's Date: Sun, 16 Aug 2020 20:20:47 +0200 Subject: [PATCH 2/2] apply review feedback --- source | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source b/source index 8c6f5e464b8..6f75ff40294 100644 --- a/source +++ b/source @@ -44714,9 +44714,9 @@ interface HTMLInputElement : HTMLElement {

      The activation behavior for input elements are these steps:

        -
      1. If this element is not mutable and is not in Checkbox nor - Radio, then return.

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

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