Fix all the links to the UI Events spec

DOM3Events is no more.
This commit is contained in:
Anthony Ramine 2016-06-04 16:01:13 +02:00
parent c87aa399ed
commit be334efe2f
9 changed files with 24 additions and 25 deletions

View file

@ -6,7 +6,7 @@
<body>
<script>
window.addEventListener("resize", function (aEvent) {
// https://dvcs.w3.org/hg/dom3events/raw-file/tip/html/DOM3-Events.html#event-type-resize
// http://dev.w3.org/csswg/cssom-view/#resizing-viewports
is_a(aEvent, UIEvent, "event should be UIEvent.");
is(aEvent.bubbles, false, "Bubbles should be No.");
is(aEvent.cancelable, false, "Cancelable should be No.");