Skip to content

Commit

Permalink
domenic's comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
mustaqahmed committed Oct 25, 2021
1 parent dbbb071 commit 55f3267
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -3104,8 +3104,10 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
<p>The following features are defined in <cite>Pointer Events</cite>: <ref spec=POINTEREVENTS></p>

<ul class="brief">
<li><dfn data-x-href="https://w3c.github.io/pointerevents/#pointerevent-interface"><code>PointerEvent</code></dfn> interface</li>
<li>The <dfn data-x-href="https://w3c.github.io/pointerevents/#pointerevent-interface"><code>PointerEvent</code></dfn> interface</li>
<li>The <code>PointerEvent</code> interface's <dfn data-x-href="https://w3c.github.io/pointerevents/#dom-pointerevent-pointertype"><code>pointerType</code></dfn> attribute</li>
<li><dfn data-x-href="https://w3c.github.io/pointerevents/#dfn-fire-a-pointer-event">fire a pointer event</dfn></li>
<li><dfn data-x="event-pointerdown" data-x-href="https://w3c.github.io/pointerevents/#the-pointerdown-event"><code>pointerdown</code></dfn> event</li>
<li><dfn data-x="event-pointerup" data-x-href="https://w3c.github.io/pointerevents/#the-pointerup-event"><code>pointerup</code></dfn> event</li>
<li><dfn data-x="event-pointercancel" data-x-href="https://w3c.github.io/pointerevents/#the-pointercancel-event"><code>pointercancel</code></dfn> event</li>
</ul>
Expand Down Expand Up @@ -74211,23 +74213,19 @@ END:VCARD</pre>
time</span>.</p></li>
</ol>

<p>An <dfn export>activation triggering input event</dfn> is any event whose <code
<p>An <dfn>activation triggering input event</dfn> is any event whose <code
data-x="dom-Event-isTrusted">isTrusted</code> attribute is true and whose <code
data-x="dom-Event-type">type</code> is one of:</p>

<ul class="brief">
<li><code data-x="event-keypress">keypress</code></li>
<li><code data-x="event-keyup">keyup</code>, provided the key is neither the "Escape" key nor a
<li><code data-x="event-keydown">keydown</code>, provided the key is neither the <kbd>Esc</kbd> key nor a
shortcut key reserved by the user agent.</li>
<li><code data-x="event-mousedown">mousedown</code></li>
<li><code data-x="event-mouseup">mouseup</code></li>
<li><code data-x="event-pointerup">pointerup</code></li>
<li><code data-x="event-pointerdown">pointerdown</code>, provided the event's <code>pointerType</code> is "mouse".</li>
<li><code data-x="event-pointerup">pointerup</code>, provided the event's <code>pointerType</code> is not "mouse".</li>
<li><code data-x="event-touchend">touchend</code></li>
</ul>

<p class="XXX">The event set is inconsistent across major browsers. See <a
href="https://github.com/whatwg/html/issues/3849">issue #3849</a>.</p>

<p><span data-x="activation consuming API">Activation consuming APIs</span> defined in this and
other specifications can <dfn export>consume user activation</dfn> by performing the following
steps, given a <code>Window</code> <var>W</var>:</p>
Expand Down

0 comments on commit 55f3267

Please sign in to comment.