diff --git a/input-events.html b/input-events.html index d923171..854be1a 100644 --- a/input-events.html +++ b/input-events.html @@ -89,7 +89,7 @@

Interface InputEvent

inputType holds the type of input. Allowed - values include insertCharacter, replaceText, replaceContent, + values include insertText, replaceText, replaceContent, insertNewline, deleteContent, deleteComposedCharacter, undo, redo. During initialization, the user agent is responsible for populating this field as follows: @@ -98,7 +98,7 @@

Interface InputEvent

  1. If the user is inserting plain text using a keyboard, IME, speech, or similar method, the inputType - MUST be insertCharacter. + MUST be insertText.
    1. Set the value of data to be the plain text @@ -270,13 +270,13 @@

      Interface InputEvent

      Cancelable - Varies: False for inputTypes insertCharacter and deleteComposedCharacter during IME composition. True otherwise + Varies: False for inputTypes insertText and deleteComposedCharacter during IME composition. True otherwise Default action - Varies: 'Update the DOM' for contentEditable=typing editing hosts for inputTypes insertCharacter and deleteComposedCharacter. 'Update the DOM element' for contentEditable=true editing hosts for all inputTypes. None otherwise. + Varies: 'Update the DOM' for contentEditable=typing editing hosts for inputTypes insertText and deleteComposedCharacter. 'Update the DOM element' for contentEditable=true editing hosts for all inputTypes. None otherwise.