From e019ebe4b4ccad4b734136d76cce05f835d5fb4a Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Fri, 23 Aug 2019 01:28:57 +0900 Subject: [PATCH] Add explicit [Exposed] + default dictionary value --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 2815e2c..6cdd295 100644 --- a/index.html +++ b/index.html @@ -444,6 +444,7 @@

TouchList Interface

are the numbers in the range 0 to one less than the length of the list.

+[Exposed=Window]
 interface TouchList {
     readonly        attribute unsigned long length;
     getter Touch? item (unsigned long index);
@@ -488,7 +489,7 @@ 

TouchEvent Interface

sequence<Touch> changedTouches = []; }; -[Constructor(DOMString type, optional TouchEventInit eventInitDict), Exposed=Window] +[Constructor(DOMString type, optional TouchEventInit eventInitDict = {}), Exposed=Window] interface TouchEvent : UIEvent { readonly attribute TouchList touches; readonly attribute TouchList targetTouches;