blob: dfd0eb51752f6217d74df37c0ea7da9e552c19d7 [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.
// ApplicationCache Error Detail Proposal:
// https://docs.google.com/document/d/1nlk7WgRD3d0ZcfK1xrwBFVZ3DI_e44j7QoMd5gAJC4E/edit
// TODO(foolip): Update the spec link once this is in the HTML spec:
// https://www.w3.org/Bugs/Public/show_bug.cgi?id=22702
[
Constructor(DOMString type, optional ApplicationCacheErrorEventInit eventInitDict),
SecureContext=RestrictAppCacheToSecureContexts
] interface ApplicationCacheErrorEvent : Event {
readonly attribute DOMString reason;
readonly attribute DOMString url;
readonly attribute unsigned short status;
readonly attribute DOMString message;
};