Skip to content

Commit c2692a6

Browse files
authored
MouseEvent moved to Pointer Events (#105)
* MouseEvent moved to Pointer Events * More instances of uievents/ui-events removed * Refreshed auto-publish.yml
1 parent d59584c commit c2692a6

2 files changed

Lines changed: 7 additions & 13 deletions

File tree

.github/workflows/auto-publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,9 @@ jobs:
1111
name: Validate and Publish
1212
runs-on: ubuntu-latest # only linux supported at present
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v6
1515
- uses: w3c/spec-prod@v2
1616
with:
17-
TOOLCHAIN: respec
18-
VALIDATE_LINKS: true
1917
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }}
2018
W3C_WG_DECISION_URL: "https://lists.w3.org/Archives/Public/public-webapps/2014JulSep/0627.html"
2119
W3C_NOTIFICATIONS_CC: "${{ secrets.CC }}"

index.html

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@
7070
github: "w3c/pointerlock",
7171
group: "webapps",
7272
xref: {
73-
specs: ["uievents"],
73+
specs: ["pointerevents"],
7474
profile: "web-platform",
7575
},
7676
};
7777

7878
</script>
7979
</head>
80-
<body data-cite="uievents">
80+
<body>
8181
<section id='abstract'>
8282
This specification defines an API that provides scripted access to raw
8383
mouse movement data while locking the target of mouse events to a single
@@ -169,7 +169,7 @@ <h3>
169169
reported in `screenX`, `screenY`). The [=pointer-lock target=]
170170
receives all relevant user generated {{MouseEvent}} events: namely,
171171
all user-generated `mousemove`, `mousedown`, `mouseup`, `click`,
172-
`dblclick`, `auxclick`, and `wheel` [[ui-events]]. No other elements
172+
`dblclick`, `auxclick`, and `wheel` [[POINTEREVENTS]]. No other elements
173173
receive these events while in [=pointer lock state=]. There will be
174174
no dispatching of events that require the concept of a mouse cursor:
175175
namely, `mouseenter`, `mouseleave`, `mouseover`, `mouseout`, `drag`,
@@ -599,8 +599,7 @@ <h2>
599599
</dd>
600600
</dl>
601601
</section>
602-
<section data-dfn-for="MouseEvent" data-link-for="MouseEvent" data-cite=
603-
"ui-events">
602+
<section data-dfn-for="MouseEvent" data-link-for="MouseEvent">
604603
<h2>
605604
Extensions to the `MouseEvent` Interface
606605
</h2>
@@ -677,8 +676,7 @@ <h2>
677676
</dd>
678677
</dl>
679678
</section>
680-
<section data-dfn-for="MouseEventInit" data-link-for="MouseEventInit"
681-
data-cite="ui-events">
679+
<section data-dfn-for="MouseEventInit" data-link-for="MouseEventInit">
682680
<h2>
683681
Extensions to the `MouseEventInit` Dictionary
684682
</h2>
@@ -1005,9 +1003,7 @@ <h2>
10051003
<p>
10061004
When the pointer is locked 'wheel' events should be sent to the
10071005
[=pointer-lock target=] element just as 'mousemove' events are. There
1008-
is a naming conflict with .deltaX/Y/Z as defined in <a href=
1009-
"https://w3c.github.io/uievents/#events-wheelevents">DOM 3 'wheel'
1010-
event</a>.
1006+
is a naming conflict with {{WheelEvent/deltaX}}/{{WheelEvent/deltaY}}/{{WheelEvent/deltaZ}} [[POINTEREVENTS]].
10111007
</p>
10121008
</section>
10131009
<section id="why-bundle">

0 commit comments

Comments
 (0)