| 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 20 matching lines...) Expand all Loading... |
| 31 // Properties | 31 // Properties |
| 32 readonly attribute DOMString mode; | 32 readonly attribute DOMString mode; |
| 33 readonly attribute IDBDatabase db; | 33 readonly attribute IDBDatabase db; |
| 34 readonly attribute DOMError error; | 34 readonly attribute DOMError error; |
| 35 | 35 |
| 36 // Methods | 36 // Methods |
| 37 [RaisesException] IDBObjectStore objectStore (DOMString name); | 37 [RaisesException] IDBObjectStore objectStore (DOMString name); |
| 38 [RaisesException] void abort (); | 38 [RaisesException] void abort (); |
| 39 | 39 |
| 40 // Events | 40 // Events |
| 41 attribute EventListener onabort; | 41 attribute EventHandler onabort; |
| 42 attribute EventListener oncomplete; | 42 attribute EventHandler oncomplete; |
| 43 attribute EventListener onerror; | 43 attribute EventHandler onerror; |
| 44 }; | 44 }; |
| OLD | NEW |