2011-03-31 13:30:32 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2011-03-31 13:30:32 -07:00
|
|
|
|
|
|
|
#include "nsIDOMEvent.idl"
|
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
[scriptable, builtinclass, uuid(83a9bc2d-d82d-45cc-8f11-4c919519f6e0)]
|
2011-03-31 13:30:32 -07:00
|
|
|
interface nsIDOMHashChangeEvent : nsIDOMEvent
|
|
|
|
{
|
|
|
|
readonly attribute DOMString oldURL;
|
|
|
|
readonly attribute DOMString newURL;
|
|
|
|
|
|
|
|
void initHashChangeEvent(in DOMString typeArg,
|
|
|
|
in boolean canBubbleArg,
|
|
|
|
in boolean cancelableArg,
|
|
|
|
in DOMString oldURLArg,
|
|
|
|
in DOMString newURLArg);
|
|
|
|
};
|
2011-12-14 11:55:32 -08:00
|
|
|
|
2012-03-12 21:44:48 -07:00
|
|
|
dictionary HashChangeEventInit : EventInit
|
2011-12-14 11:55:32 -08:00
|
|
|
{
|
2012-03-12 21:44:48 -07:00
|
|
|
DOMString oldURL;
|
|
|
|
DOMString newURL;
|
2011-12-14 11:55:32 -08:00
|
|
|
};
|