From 367add6be794365ce082a1fd67301ca4c66ed34f Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Thu, 13 Aug 2020 22:24:24 +0200 Subject: [PATCH] Allow mutating Fixes #5000. Tests: https://github.com/web-platform-tests/wpt/pull/24975 --- source | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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.