| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 // states | 51 // states |
| 52 const unsigned short EMPTY = 0; | 52 const unsigned short EMPTY = 0; |
| 53 const unsigned short LOADING = 1; | 53 const unsigned short LOADING = 1; |
| 54 const unsigned short DONE = 2; | 54 const unsigned short DONE = 2; |
| 55 | 55 |
| 56 [ImplementedAs=getReadyState] readonly attribute unsigned short readyState; | 56 [ImplementedAs=getReadyState] readonly attribute unsigned short readyState; |
| 57 | 57 |
| 58 // File or Blob data | 58 // File or Blob data |
| 59 readonly attribute (DOMString or ArrayBuffer)? result; | 59 readonly attribute (DOMString or ArrayBuffer)? result; |
| 60 | 60 |
| 61 // TODO(foolip): error should be DOMError. crbug.com/496901 | 61 // TODO(jsbell): Spec has DOMError, which is being deprecated. |
| 62 [Measure] readonly attribute FileError? error; | 62 readonly attribute DOMException? error; |
| 63 | 63 |
| 64 // event handler attributes | 64 // event handler attributes |
| 65 attribute EventHandler onloadstart; | 65 attribute EventHandler onloadstart; |
| 66 attribute EventHandler onprogress; | 66 attribute EventHandler onprogress; |
| 67 attribute EventHandler onload; | 67 attribute EventHandler onload; |
| 68 attribute EventHandler onabort; | 68 attribute EventHandler onabort; |
| 69 attribute EventHandler onerror; | 69 attribute EventHandler onerror; |
| 70 attribute EventHandler onloadend; | 70 attribute EventHandler onloadend; |
| 71 }; | 71 }; |
| OLD | NEW |