| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserve | 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserve |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 attribute EventHandler onmessage; | 29 attribute EventHandler onmessage; |
| 30 attribute EventHandler onoffline; | 30 attribute EventHandler onoffline; |
| 31 attribute EventHandler ononline; | 31 attribute EventHandler ononline; |
| 32 attribute EventHandler onpopstate; | 32 attribute EventHandler onpopstate; |
| 33 attribute EventHandler onresize; | 33 attribute EventHandler onresize; |
| 34 attribute EventHandler onstorage; | 34 attribute EventHandler onstorage; |
| 35 attribute EventHandler onunload; | 35 attribute EventHandler onunload; |
| 36 | 36 |
| 37 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange; | 37 [Conditional=ORIENTATION_EVENTS] attribute EventHandler onorientationchange; |
| 38 | 38 |
| 39 // Overrides of Element attributes (with different implementation in binding
s). | 39 // Overrides of GlobalEventHandler attributes |
| 40 attribute EventHandler onblur; | 40 attribute EventHandler onblur; |
| 41 attribute EventHandler onerror; | 41 attribute EventHandler onerror; |
| 42 attribute EventHandler onfocus; | 42 attribute EventHandler onfocus; |
| 43 attribute EventHandler onload; | 43 attribute EventHandler onload; |
| 44 attribute EventHandler onscroll; |
| 44 | 45 |
| 45 // Not implemented yet. | 46 // Not implemented yet. |
| 46 // attribute EventHandler onafterprint; | 47 // attribute EventHandler onafterprint; |
| 47 // attribute EventHandler onbeforeprint; | 48 // attribute EventHandler onbeforeprint; |
| 48 // attribute EventHandler onredo; | 49 // attribute EventHandler onredo; |
| 49 // attribute EventHandler onundo; | 50 // attribute EventHandler onundo; |
| 50 }; | 51 }; |
| 51 | 52 |
| OLD | NEW |