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 | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 22 matching lines...) Expand all Loading... |
33 [GetterRaisesException] readonly attribute IDBAny result; | 33 [GetterRaisesException] readonly attribute IDBAny result; |
34 [GetterRaisesException] readonly attribute DOMError error; | 34 [GetterRaisesException] readonly attribute DOMError error; |
35 | 35 |
36 readonly attribute IDBAny source; | 36 readonly attribute IDBAny source; |
37 readonly attribute IDBTransaction transaction; | 37 readonly attribute IDBTransaction transaction; |
38 | 38 |
39 // States | 39 // States |
40 readonly attribute DOMString readyState; | 40 readonly attribute DOMString readyState; |
41 | 41 |
42 // Events | 42 // Events |
43 attribute EventListener onsuccess; | 43 attribute EventHandler onsuccess; |
44 attribute EventListener onerror; | 44 attribute EventHandler onerror; |
45 }; | 45 }; |
OLD | NEW |