Skip to content

Commit 1b29503

Browse files
committed
Fix W3 links again
1 parent a5c7690 commit 1b29503

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/user-interface-tools/defining-behavior-with-event-callbacks-and-listeners.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ onActivate focus
179179
onDeactivate blur
180180
=================== =====================
181181

182-
In addition, ScriptUI implements all types of W3C events according to the `W3C DOM level 3 functional
183-
specification <https://www.w3.org/TR/uievents/>`_, with these modifications and
182+
In addition, ScriptUI implements all types of W3C events according to the W3C DOM level 3 functional
183+
specification `for UI events <https://www.w3.org/TR/uievents/>`_, with these modifications and
184184
exceptions:
185185

186186
- ScriptUI does not implement the ``hasFeature()`` method of the ``DOMImplementation`` interface; there
@@ -191,16 +191,16 @@ exceptions:
191191
- None of the "namespace" properties or methods are supported (such as ``initEventNS`` and
192192
``initMouseEventNS``).
193193

194-
The ScriptUI implementation of W3C mouse events follows the `W3C DOM level 3 functional specification
194+
The ScriptUI implementation of W3C mouse events follows the W3C DOM level 3 functional specification `for MouseEvent
195195
<https://www.w3.org/TR/uievents/#mouseevent>`_, with
196196
these differences:
197197

198198
- To create a ``MouseEvent`` instance, call ``ScriptUI.events.createEvent( "MouseEvent" )``, rather than
199199
``DocumentEvent.createEvent( "MouseEvent" )``.
200200
- The ``getModifierState`` method of the ``MouseEvent`` interface is not supported.
201201

202-
The ScriptUI implementation of W3C keyboard events follows the `W3C DOM level 3 functional
203-
specification <https://www.w3.org/TR/uievents/#keyboardevent>`_.
202+
The ScriptUI implementation of W3C keyboard events follows the W3C DOM level 3 functional
203+
specification `for KeyboardEvent <https://www.w3.org/TR/uievents/#keyboardevent>`_.
204204

205205
--------------------------------------------------------------------------------
206206

docs/user-interface-tools/event-handling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ keyIdentifier
233233
Type: ``String``
234234

235235
The key whose keypress generated the event, as a W3C identifier
236-
contained in a string; for example, ``"U+0044"``. See :ref:`W3 Keyset Article <https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/keyset.html>`.
236+
contained in a string; for example, ``"U+0044"``. See `W3 Keyset Article <https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/keyset.html>`_.
237237

238238
--------------------------------------------------------------------------------
239239

0 commit comments

Comments
 (0)