| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 DEFINE_ATTRIBUTE_EVENT_LISTENER(seeking); | 328 DEFINE_ATTRIBUTE_EVENT_LISTENER(seeking); |
| 329 DEFINE_ATTRIBUTE_EVENT_LISTENER(select); | 329 DEFINE_ATTRIBUTE_EVENT_LISTENER(select); |
| 330 DEFINE_ATTRIBUTE_EVENT_LISTENER(stalled); | 330 DEFINE_ATTRIBUTE_EVENT_LISTENER(stalled); |
| 331 DEFINE_ATTRIBUTE_EVENT_LISTENER(storage); | 331 DEFINE_ATTRIBUTE_EVENT_LISTENER(storage); |
| 332 DEFINE_ATTRIBUTE_EVENT_LISTENER(submit); | 332 DEFINE_ATTRIBUTE_EVENT_LISTENER(submit); |
| 333 DEFINE_ATTRIBUTE_EVENT_LISTENER(suspend); | 333 DEFINE_ATTRIBUTE_EVENT_LISTENER(suspend); |
| 334 DEFINE_ATTRIBUTE_EVENT_LISTENER(timeupdate); | 334 DEFINE_ATTRIBUTE_EVENT_LISTENER(timeupdate); |
| 335 DEFINE_ATTRIBUTE_EVENT_LISTENER(unload); | 335 DEFINE_ATTRIBUTE_EVENT_LISTENER(unload); |
| 336 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange); | 336 DEFINE_ATTRIBUTE_EVENT_LISTENER(volumechange); |
| 337 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting); | 337 DEFINE_ATTRIBUTE_EVENT_LISTENER(waiting); |
| 338 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitbeginfullscreen); | |
| 339 DEFINE_ATTRIBUTE_EVENT_LISTENER(webkitendfullscreen); | |
| 340 | 338 |
| 341 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, webkitAnima
tionStart); | 339 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationstart, webkitAnima
tionStart); |
| 342 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, webkitA
nimationIteration); | 340 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationiteration, webkitA
nimationIteration); |
| 343 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, webkitAnimati
onEnd); | 341 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkitanimationend, webkitAnimati
onEnd); |
| 344 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, webkitTransi
tionEnd); | 342 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(webkittransitionend, webkitTransi
tionEnd); |
| 345 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(transitionend, transitionend); | 343 DEFINE_MAPPED_ATTRIBUTE_EVENT_LISTENER(transitionend, transitionend); |
| 346 | 344 |
| 347 void captureEvents(); | 345 void captureEvents(); |
| 348 void releaseEvents(); | 346 void releaseEvents(); |
| 349 | 347 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 } | 445 } |
| 448 | 446 |
| 449 inline String DOMWindow::defaultStatus() const | 447 inline String DOMWindow::defaultStatus() const |
| 450 { | 448 { |
| 451 return m_defaultStatus; | 449 return m_defaultStatus; |
| 452 } | 450 } |
| 453 | 451 |
| 454 } // namespace WebCore | 452 } // namespace WebCore |
| 455 | 453 |
| 456 #endif // DOMWindow_h | 454 #endif // DOMWindow_h |
| OLD | NEW |