gecko-dev/dom/webidl/HashChangeEvent.webidl
Boris Zbarsky f5a8c4edc3 Add IDL source information to some event interfaces. No bug. r=smaug
Differential Revision: https://phabricator.services.mozilla.com/D37453

--HG--
extra : moz-landing-system : lando
2019-07-09 19:02:18 +00:00

28 lines
1014 B
Plaintext

/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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/.
*
* The origin of this IDL file is
* https://html.spec.whatwg.org/multipage/#the-hashchangeevent-interface
*/
[Constructor(DOMString type, optional HashChangeEventInit eventInitDict = {}), LegacyEventInit]
interface HashChangeEvent : Event
{
readonly attribute DOMString oldURL;
readonly attribute DOMString newURL;
void initHashChangeEvent(DOMString typeArg,
optional boolean canBubbleArg = false,
optional boolean cancelableArg = false,
optional DOMString oldURLArg = "",
optional DOMString newURLArg = "");
};
dictionary HashChangeEventInit : EventInit
{
DOMString oldURL = "";
DOMString newURL = "";
};