OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2008 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 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 [NotEnumerable] attribute EventHandler onkeypress; | 49 [NotEnumerable] attribute EventHandler onkeypress; |
50 [NotEnumerable] attribute EventHandler onkeyup; | 50 [NotEnumerable] attribute EventHandler onkeyup; |
51 [NotEnumerable] attribute EventHandler onload; | 51 [NotEnumerable] attribute EventHandler onload; |
52 [NotEnumerable] attribute EventHandler onmousedown; | 52 [NotEnumerable] attribute EventHandler onmousedown; |
53 [NotEnumerable] attribute EventHandler onmouseenter; | 53 [NotEnumerable] attribute EventHandler onmouseenter; |
54 [NotEnumerable] attribute EventHandler onmouseleave; | 54 [NotEnumerable] attribute EventHandler onmouseleave; |
55 [NotEnumerable] attribute EventHandler onmousemove; | 55 [NotEnumerable] attribute EventHandler onmousemove; |
56 [NotEnumerable] attribute EventHandler onmouseout; | 56 [NotEnumerable] attribute EventHandler onmouseout; |
57 [NotEnumerable] attribute EventHandler onmouseover; | 57 [NotEnumerable] attribute EventHandler onmouseover; |
58 [NotEnumerable] attribute EventHandler onmouseup; | 58 [NotEnumerable] attribute EventHandler onmouseup; |
59 [NotEnumerable] attribute EventHandler onmousewheel; | 59 [NotEnumerable] attribute EventHandler onmousewheel; // Deprecated in favor
of onwheel. |
60 [NotEnumerable] attribute EventHandler onbeforecut; | 60 [NotEnumerable] attribute EventHandler onbeforecut; |
61 [NotEnumerable] attribute EventHandler oncut; | 61 [NotEnumerable] attribute EventHandler oncut; |
62 [NotEnumerable] attribute EventHandler onbeforecopy; | 62 [NotEnumerable] attribute EventHandler onbeforecopy; |
63 [NotEnumerable] attribute EventHandler oncopy; | 63 [NotEnumerable] attribute EventHandler oncopy; |
64 [NotEnumerable] attribute EventHandler onbeforepaste; | 64 [NotEnumerable] attribute EventHandler onbeforepaste; |
65 [NotEnumerable] attribute EventHandler onpaste; | 65 [NotEnumerable] attribute EventHandler onpaste; |
66 [NotEnumerable] attribute EventHandler ondragenter; | 66 [NotEnumerable] attribute EventHandler ondragenter; |
67 [NotEnumerable] attribute EventHandler ondragover; | 67 [NotEnumerable] attribute EventHandler ondragover; |
68 [NotEnumerable] attribute EventHandler ondragleave; | 68 [NotEnumerable] attribute EventHandler ondragleave; |
69 [NotEnumerable] attribute EventHandler ondrop; | 69 [NotEnumerable] attribute EventHandler ondrop; |
70 [NotEnumerable] attribute EventHandler ondragstart; | 70 [NotEnumerable] attribute EventHandler ondragstart; |
71 [NotEnumerable] attribute EventHandler ondrag; | 71 [NotEnumerable] attribute EventHandler ondrag; |
72 [NotEnumerable] attribute EventHandler ondragend; | 72 [NotEnumerable] attribute EventHandler ondragend; |
73 [NotEnumerable] attribute EventHandler onreset; | 73 [NotEnumerable] attribute EventHandler onreset; |
74 [NotEnumerable] attribute EventHandler onresize; | 74 [NotEnumerable] attribute EventHandler onresize; |
75 [NotEnumerable] attribute EventHandler onscroll; | 75 [NotEnumerable] attribute EventHandler onscroll; |
76 [NotEnumerable] attribute EventHandler onsearch; | 76 [NotEnumerable] attribute EventHandler onsearch; |
77 [NotEnumerable] attribute EventHandler onselect; | 77 [NotEnumerable] attribute EventHandler onselect; |
78 [NotEnumerable] attribute EventHandler onselectstart; | 78 [NotEnumerable] attribute EventHandler onselectstart; |
79 [NotEnumerable] attribute EventHandler onsubmit; | 79 [NotEnumerable] attribute EventHandler onsubmit; |
80 [NotEnumerable] attribute EventHandler onunload; | 80 [NotEnumerable] attribute EventHandler onunload; |
| 81 [NotEnumerable] attribute EventHandler onwheel; |
81 }; | 82 }; |
OLD | NEW |