mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Fix all the links to the UI Events spec
DOM3Events is no more.
This commit is contained in:
parent
c87aa399ed
commit
be334efe2f
9 changed files with 24 additions and 25 deletions
|
@ -2,7 +2,7 @@
|
|||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#idl-def-UIEvent
|
||||
// https://w3c.github.io/uievents/#interface-uievent
|
||||
[Constructor(DOMString type, optional UIEventInit eventInitDict)]
|
||||
interface UIEvent : Event {
|
||||
// readonly attribute WindowProxy? view;
|
||||
|
@ -10,14 +10,14 @@ interface UIEvent : Event {
|
|||
readonly attribute long detail;
|
||||
};
|
||||
|
||||
// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#idl-def-UIEventInit
|
||||
// https://w3c.github.io/uievents/#dictdef-uieventinit-uieventinit
|
||||
dictionary UIEventInit : EventInit {
|
||||
// WindowProxy? view = null;
|
||||
Window? view = null;
|
||||
long detail = 0;
|
||||
};
|
||||
|
||||
// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#idl-def-UIEvent-1
|
||||
// https://w3c.github.io/uievents/#idl-interface-UIEvent-initializers
|
||||
partial interface UIEvent {
|
||||
// Deprecated in DOM Level 3
|
||||
void initUIEvent (DOMString typeArg, boolean bubblesArg, boolean cancelableArg, Window? viewArg, long detailArg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue