| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. | 2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 attribute EventHandler oninput; | 63 attribute EventHandler oninput; |
| 64 attribute EventHandler oninvalid; | 64 attribute EventHandler oninvalid; |
| 65 attribute EventHandler onkeydown; | 65 attribute EventHandler onkeydown; |
| 66 attribute EventHandler onkeypress; | 66 attribute EventHandler onkeypress; |
| 67 attribute EventHandler onkeyup; | 67 attribute EventHandler onkeyup; |
| 68 attribute EventHandler onload; | 68 attribute EventHandler onload; |
| 69 attribute EventHandler onloadeddata; | 69 attribute EventHandler onloadeddata; |
| 70 attribute EventHandler onloadedmetadata; | 70 attribute EventHandler onloadedmetadata; |
| 71 attribute EventHandler onloadstart; | 71 attribute EventHandler onloadstart; |
| 72 attribute EventHandler onmousedown; | 72 attribute EventHandler onmousedown; |
| 73 // FIXME: onmouseevent and onmouseleave should have [LenientThis]. | 73 [LenientThis] attribute EventHandler onmouseenter; |
| 74 attribute EventHandler onmouseenter; | 74 [LenientThis] attribute EventHandler onmouseleave; |
| 75 attribute EventHandler onmouseleave; | |
| 76 attribute EventHandler onmousemove; | 75 attribute EventHandler onmousemove; |
| 77 attribute EventHandler onmouseout; | 76 attribute EventHandler onmouseout; |
| 78 attribute EventHandler onmouseover; | 77 attribute EventHandler onmouseover; |
| 79 attribute EventHandler onmouseup; | 78 attribute EventHandler onmouseup; |
| 80 attribute EventHandler onmousewheel; | 79 attribute EventHandler onmousewheel; |
| 81 attribute EventHandler onpause; | 80 attribute EventHandler onpause; |
| 82 attribute EventHandler onplay; | 81 attribute EventHandler onplay; |
| 83 attribute EventHandler onplaying; | 82 attribute EventHandler onplaying; |
| 84 attribute EventHandler onprogress; | 83 attribute EventHandler onprogress; |
| 85 attribute EventHandler onratechange; | 84 attribute EventHandler onratechange; |
| 86 attribute EventHandler onreset; | 85 attribute EventHandler onreset; |
| 87 attribute EventHandler onresize; | 86 attribute EventHandler onresize; |
| 88 attribute EventHandler onscroll; | 87 attribute EventHandler onscroll; |
| 89 attribute EventHandler onseeked; | 88 attribute EventHandler onseeked; |
| 90 attribute EventHandler onseeking; | 89 attribute EventHandler onseeking; |
| 91 attribute EventHandler onselect; | 90 attribute EventHandler onselect; |
| 92 attribute EventHandler onshow; | 91 attribute EventHandler onshow; |
| 93 //attribute EventHandler onsort; | 92 //attribute EventHandler onsort; |
| 94 attribute EventHandler onstalled; | 93 attribute EventHandler onstalled; |
| 95 attribute EventHandler onsubmit; | 94 attribute EventHandler onsubmit; |
| 96 attribute EventHandler onsuspend; | 95 attribute EventHandler onsuspend; |
| 97 attribute EventHandler ontimeupdate; | 96 attribute EventHandler ontimeupdate; |
| 98 attribute EventHandler ontoggle; | 97 attribute EventHandler ontoggle; |
| 99 attribute EventHandler onvolumechange; | 98 attribute EventHandler onvolumechange; |
| 100 attribute EventHandler onwaiting; | 99 attribute EventHandler onwaiting; |
| 101 }; | 100 }; |
| OLD | NEW |