Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add [Exposed=Window] to Constructor #218

Merged
merged 2 commits into from Sep 22, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion index.html
Expand Up @@ -284,7 +284,7 @@ <h2><code>PointerEvent</code> Interface</h2>
boolean isPrimary = false;
};

[Constructor(DOMString type, optional PointerEventInit eventInitDict)]
[Constructor(DOMString type, optional PointerEventInit eventInitDict), Exposed=Window]
interface PointerEvent : MouseEvent {
readonly attribute long pointerId;
readonly attribute double width;
Expand Down Expand Up @@ -1010,6 +1010,7 @@ <h1>Revision History</h1>
<p>The following is an informative summary of substantial and major editorial changes between publications of this specification, relative to the first [[PointerEvents]] specification. See the <a href="https://github.com/w3c/pointerevents/commits">complete revision history of the Editor's Drafts of this specification</a>.</p>
<h3>Changes since the 24 February 2015 Recommendation</h3>
<ul>
<li><a href="https://github.com/w3c/pointerevents/pull/218">Add [Exposed=Window] to Constructor</a></li>
<li><a href="https://github.com/w3c/pointerevents/pull/138">Don't send boundary events during capture</a></li>
<li><a href="https://github.com/w3c/pointerevents/pull/129">Implicit capture for direct manipulation pointing devices</a></li>
<li><a href="https://github.com/w3c/pointerevents/pull/122">Add pointer capture processing follow delayed model except implicit release and set the pointer capture events attributes</a></li>
Expand Down