From 723b799d1362fee3d8b5e5b93c2553b271d4a689 Mon Sep 17 00:00:00 2001
From: Kagami Sascha Rosylight
Date: Tue, 11 Aug 2020 15:40:11 +0200
Subject: [PATCH 1/2] Allow mutating
---
source | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/source b/source
index a8779c7f27a..82e89e33c8d 100644
--- a/source
+++ b/source
@@ -44690,8 +44690,9 @@ interface HTMLInputElement : HTMLElement {
data-x="concept-fe-value">value or checkedness.
When an input
element is disabled, it is not mutable.
+ data-x="concept-fe-disabled">disabled and is not in the
+ Checkbox nor
+ Radio states, it is not mutable.
The readonly
attribute can also in some
cases (e.g. for the Date state, but not the HTMLInputElement : HTMLElement {
The activation behavior for input
elements are these steps:
- If this element is not mutable, then return.
+ If this element is not mutable and is not in Checkbox nor
+ Radio, then return.
Run this element's input activation behavior, if any, and do nothing
otherwise.
From 7465177314f1b5fced572dd70b5e50431dc434e9 Mon Sep 17 00:00:00 2001
From: Kagami Sascha Rosylight
Date: Wed, 12 Aug 2020 01:09:21 +0200
Subject: [PATCH 2/2] nits
---
source | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/source b/source
index 82e89e33c8d..f6a2f45b8b5 100644
--- a/source
+++ b/source
@@ -44689,10 +44689,10 @@ 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 mutable.
+ 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
cases (e.g. for the Date state, but not the