diff --git a/index.html b/index.html index af0ba53..60cd5db 100644 --- a/index.html +++ b/index.html @@ -733,6 +733,30 @@

Handle input for EditContext

+

EditContext-handled inputType

+
+ An inputType is an + [=EditContext-handled inputType=] if it is one of the following: + +
+ The inputTypes handled by {{EditContext}} + are those which operate only on raw text. Other inputTypes + that depend on formats, clipboard/dragdrop, undo, or browser UI like spellcheck cannot be handled by + {{EditContext}} since {{EditContext}}'s state does not include these concepts. If an author wants their + application to handle those inputTypes, + they need to process them manually in a beforeinput + event handler. +
+
+

Update the EditContext