blob: c69c3f7fe97932dd40ee91f62dcc2cd3d8c76cf2 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
[
EventConstructor,
] interface ApplicationCacheErrorEvent : Event {
[InitializedByEventConstructor] readonly attribute DOMString reason;
[InitializedByEventConstructor] readonly attribute DOMString url;
[InitializedByEventConstructor] readonly attribute unsigned short status;
[InitializedByEventConstructor] readonly attribute DOMString message;
};