diff --git a/index.html b/index.html index 41f0b468..fddfa17c 100644 --- a/index.html +++ b/index.html @@ -6400,6 +6400,13 @@

Element Send Keys

in the number state on non-desktop devices. +

+A typeable form control with normalization +is an [^input^] element +whose [^input/type^] attribute state +requires that user-provided values be normalized before being assigned to the element's value attribute. +This applies to type="date" and type="datetime-local". +

The key input source used for input may be cleared mid-way through “typing” by sending the null key, which is U+E000 (NULL). @@ -6751,6 +6758,28 @@

Element Send Keys

+
element is a typeable form control with normalization +
+
    +
  1. If element does not have an own property + named value return an error with error + code element not interactable + +

  2. If element is not mutable return + an error with error code element not + interactable. +

  3. Normalize the value to conform to the expected input format of element. +

  4. Set a property value to text + on element. + +

  5. If element is suffering from bad input + return an error with error code invalid + argument. + +

  6. Return success with data null. +

+
+
element is content editable
If element does not currently have focus, set the text insertion caret after any child content.