OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 attribute EventListener oninvalid; | 200 attribute EventListener oninvalid; |
201 attribute EventListener onkeydown; | 201 attribute EventListener onkeydown; |
202 attribute EventListener onkeypress; | 202 attribute EventListener onkeypress; |
203 attribute EventListener onkeyup; | 203 attribute EventListener onkeyup; |
204 attribute EventListener onload; | 204 attribute EventListener onload; |
205 attribute EventListener onloadeddata; | 205 attribute EventListener onloadeddata; |
206 attribute EventListener onloadedmetadata; | 206 attribute EventListener onloadedmetadata; |
207 attribute EventListener onloadstart; | 207 attribute EventListener onloadstart; |
208 attribute EventListener onmessage; | 208 attribute EventListener onmessage; |
209 attribute EventListener onmousedown; | 209 attribute EventListener onmousedown; |
| 210 attribute EventListener onmouseenter; |
| 211 attribute EventListener onmouseleave; |
210 attribute EventListener onmousemove; | 212 attribute EventListener onmousemove; |
211 attribute EventListener onmouseout; | 213 attribute EventListener onmouseout; |
212 attribute EventListener onmouseover; | 214 attribute EventListener onmouseover; |
213 attribute EventListener onmouseup; | 215 attribute EventListener onmouseup; |
214 attribute EventListener onmousewheel; | 216 attribute EventListener onmousewheel; |
215 attribute EventListener onoffline; | 217 attribute EventListener onoffline; |
216 attribute EventListener ononline; | 218 attribute EventListener ononline; |
217 attribute EventListener onpagehide; | 219 attribute EventListener onpagehide; |
218 attribute EventListener onpageshow; | 220 attribute EventListener onpageshow; |
219 attribute EventListener onpause; | 221 attribute EventListener onpause; |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 | 305 |
304 // window.toString() requires special handling in V8 | 306 // window.toString() requires special handling in V8 |
305 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 307 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
306 | 308 |
307 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned
long index); | 309 [ImplementedAs=anonymousIndexedGetter, NotEnumerable] getter Window(unsigned
long index); |
308 [Custom, NotEnumerable] getter Window (DOMString name); | 310 [Custom, NotEnumerable] getter Window (DOMString name); |
309 }; | 311 }; |
310 | 312 |
311 Window implements WindowTimers; | 313 Window implements WindowTimers; |
312 | 314 |
OLD | NEW |