From 3c52fe139d9c637eb901932a77d743d6d5ecaa56 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 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.