Merge m-c to b2g-inbound.
[gecko.git] / dom / webidl / ErrorEvent.webidl
blobc4ca51ef5bd4bcb267ff75ed5098b9a5e3812c4a
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 [Constructor(DOMString type, optional ErrorEventInit eventInitDict)]
7 interface ErrorEvent : Event
9   readonly attribute DOMString message;
10   readonly attribute DOMString filename;
11   readonly attribute unsigned long lineno;
12   readonly attribute unsigned long column;
15 dictionary ErrorEventInit : EventInit
17   DOMString message = "";
18   DOMString filename = "";
19   unsigned long lineno = 0;
20   unsigned long column = 0;