aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/KeyboardEvent.webidl
diff options
context:
space:
mode:
authorAnthony Ramine <n.oxyde@gmail.com>2016-06-04 16:01:13 +0200
committerAnthony Ramine <n.oxyde@gmail.com>2016-06-04 16:04:35 +0200
commitbe334efe2fac39e0be29790ee06b00ddb652a40f (patch)
treecdad955c260962592d09f31c2510c5fb934d95d8 /components/script/dom/webidls/KeyboardEvent.webidl
parentc87aa399ed082cd751b8947037a5ab16af604d7e (diff)
downloadservo-be334efe2fac39e0be29790ee06b00ddb652a40f.tar.gz
servo-be334efe2fac39e0be29790ee06b00ddb652a40f.zip
Fix all the links to the UI Events spec
DOM3Events is no more.
Diffstat (limited to 'components/script/dom/webidls/KeyboardEvent.webidl')
-rw-r--r--components/script/dom/webidls/KeyboardEvent.webidl10
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/webidls/KeyboardEvent.webidl b/components/script/dom/webidls/KeyboardEvent.webidl
index a9027ededcd..5a9865c8a6d 100644
--- a/components/script/dom/webidls/KeyboardEvent.webidl
+++ b/components/script/dom/webidls/KeyboardEvent.webidl
@@ -3,7 +3,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* The origin of this IDL file is
- * https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#interface-KeyboardEvent
+ * https://w3c.github.io/uievents/#interface-keyboardevent
*
*/
@@ -26,7 +26,7 @@ interface KeyboardEvent : UIEvent {
boolean getModifierState (DOMString keyArg);
};
-// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#idl-interface-KeyboardEvent-initializers
+// https://w3c.github.io/uievents/#idl-interface-KeyboardEvent-initializers
partial interface KeyboardEvent {
// Originally introduced (and deprecated) in DOM Level 3
void initKeyboardEvent (DOMString typeArg, boolean bubblesArg, boolean cancelableArg, Window? viewArg,
@@ -34,7 +34,7 @@ partial interface KeyboardEvent {
boolean repeat, DOMString locale);
};
-// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#KeyboardEvent-supplemental-interface
+// https://w3c.github.io/uievents/#legacy-interface-KeyboardEvent
partial interface KeyboardEvent {
// The following support legacy user agents
readonly attribute unsigned long charCode;
@@ -42,7 +42,7 @@ partial interface KeyboardEvent {
readonly attribute unsigned long which;
};
-// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#interface-KeyboardEvent
+// https://w3c.github.io/uievents/#dictdef-keyboardeventinit
dictionary KeyboardEventInit : SharedKeyboardAndMouseEventInit {
DOMString key = "";
DOMString code = "";
@@ -51,7 +51,7 @@ dictionary KeyboardEventInit : SharedKeyboardAndMouseEventInit {
boolean isComposing = false;
};
-// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#events-KeyboardEventInit-supplemental
+// https://w3c.github.io/uievents/#legacy-dictionary-KeyboardEventInit
/*partial dictionary KeyboardEventInit {
unsigned long charCode = 0;
unsigned long keyCode = 0;