diff --git a/index.html b/index.html index 49a8887..2c8fcbc 100644 --- a/index.html +++ b/index.html @@ -496,6 +496,7 @@

TouchEvent Interface

readonly attribute boolean metaKey; readonly attribute boolean ctrlKey; readonly attribute boolean shiftKey; + getter boolean getModifierState (DOMString keyArg); };
@@ -544,6 +545,12 @@

TouchEvent Interface

true if the shift (Shift) key modifier is activated; otherwise false

+
getModifierState(keyArg)
+
+

Queries the state of a modifier using a key value. Returns + true if it is a modifier key and the modifier is + activated, false otherwise.

+