Skip to content

Update Understanding SC 2.5.6 links #4336

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions understanding/21/concurrent-input-mechanisms.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ <h2>Examples</h2>
<section id="resources">
<h2>Resources</h2>
<ul>
<li><a href="https://w3c.github.io/pointerevents/">W3C Pointer Events - Level 2</a></li>
<li><a href="https://www.w3.org/TR/pointerevents2/">W3C Pointer Events - Level 2</a></li>
<li><a href="https://hacks.mozilla.org/2013/04/detecting-touch-its-the-why-not-the-how/">Patrick H. Lauke - Detecting touch: it's the 'why', not the 'how'</a></li>
<li><a href="https://www.html5rocks.com/en/mobile/touchandmouse/">Chris Wilson / Paul Kinlan: Touch And Mouse - Together Again For The First Time
</a></li><li><a href="https://w3c.github.io/touch-events/#mouse-events">W3C Touch Events - Level 2: Interaction with Mouse Events and click</a></li>
<li><a href="https://web.dev/articles/mobile-touchandmouse">Chris Wilson / Paul Kinlan: Touch And Mouse - Together Again For The First Time</a></li>
<li><a href="https://www.w3.org/community/reports/touchevents/CG-FINAL-touch-events-20240704/#mouse-events">W3C Touch Events - Level 2: Interaction with Mouse Events and click</a></li>
<li><a href="https://www.w3.org/TR/mediaqueries-4/#mf-interaction">W3C CSS Media Queries Level 4: Interaction Media Features</a></li>
</ul>
</section>
Expand All @@ -59,7 +59,7 @@ <h2>Techniques</h2>
<h3>Sufficient</h3>
<ul>
<li>Only using high-level, input-agnostic event handlers, such as <code>focus</code>, <code>blur</code>, <code>click</code>, in Javascript (Potential future technique).</li>
<li> Registering event handlers for keyboard/keyboard-like and pointer inputs simultaneously in Javascript; see <a href="https://w3c.github.io/pointerevents/#examples">Example 1 in Pointer Events Level 2</a> (Potential future technique)</li>
<li>Registering event handlers for keyboard/keyboard-like and pointer inputs simultaneously in Javascript; see <a href="https://www.w3.org/TR/pointerevents2/#example_1">Example 1 in Pointer Events Level 2</a> (Potential future technique)</li>
</ul>
</section>
<section id="failure">
Expand Down