| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // ApplicationCache Error Detail Proposal: | 5 // ApplicationCache Error Detail Proposal: |
| 6 // https://docs.google.com/document/d/1nlk7WgRD3d0ZcfK1xrwBFVZ3DI_e44j7QoMd5gAJC
4E/edit | 6 // https://docs.google.com/document/d/1nlk7WgRD3d0ZcfK1xrwBFVZ3DI_e44j7QoMd5gAJC
4E/edit |
| 7 | 7 |
| 8 // TODO(philipj): Update the spec link once this is in the HTML spec: | 8 // TODO(foolip): Update the spec link once this is in the HTML spec: |
| 9 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22702 | 9 // https://www.w3.org/Bugs/Public/show_bug.cgi?id=22702 |
| 10 | 10 |
| 11 [ | 11 [ |
| 12 Constructor(DOMString type, optional ApplicationCacheErrorEventInit eventIni
tDict), | 12 Constructor(DOMString type, optional ApplicationCacheErrorEventInit eventIni
tDict), |
| 13 ] interface ApplicationCacheErrorEvent : Event { | 13 ] interface ApplicationCacheErrorEvent : Event { |
| 14 readonly attribute DOMString reason; | 14 readonly attribute DOMString reason; |
| 15 readonly attribute DOMString url; | 15 readonly attribute DOMString url; |
| 16 readonly attribute unsigned short status; | 16 readonly attribute unsigned short status; |
| 17 readonly attribute DOMString message; | 17 readonly attribute DOMString message; |
| 18 }; | 18 }; |
| OLD | NEW |