Skip to content
This repository was archived by the owner on Jul 9, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ <h2><a><code>Touch</code></a> Interface</h2>
TouchType touchType = "direct";
};

[Constructor(TouchInit touchInitDict)]
[Constructor(TouchInit touchInitDict), Exposed=Window]
interface Touch {
readonly attribute long identifier;
readonly attribute EventTarget target;
Expand Down Expand Up @@ -482,7 +482,7 @@ <h2><a><code>TouchEvent</code></a> Interface</h2>
sequence&lt;Touch&gt; changedTouches = [];
};

[Constructor(DOMString type, optional TouchEventInit eventInitDict)]
[Constructor(DOMString type, optional TouchEventInit eventInitDict), Exposed=Window]
interface TouchEvent : UIEvent {
readonly attribute TouchList touches;
readonly attribute TouchList targetTouches;
Expand Down Expand Up @@ -1244,6 +1244,9 @@ <h2>Changes Since Last Publication</h2>
<li>
<a href="https://github.com/w3c/touch-events/pull/81">Add touchType, altitudeAngle, azimuthAngle (Safari iOS 10.3 extensions for stylus)</a>
</li>
<li>
<a href="https://github.com/w3c/touch-events/pull/88">Add [Exposed=Window] to Constructor</a>
</li>
</ul>
</section>

Expand Down