OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 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 1667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1678 void DOMWindow::removeAllEventListeners() | 1678 void DOMWindow::removeAllEventListeners() |
1679 { | 1679 { |
1680 EventTarget::removeAllEventListeners(); | 1680 EventTarget::removeAllEventListeners(); |
1681 | 1681 |
1682 #if ENABLE(DEVICE_ORIENTATION) | 1682 #if ENABLE(DEVICE_ORIENTATION) |
1683 if (DeviceMotionController* controller = DeviceMotionController::from(page()
)) | 1683 if (DeviceMotionController* controller = DeviceMotionController::from(page()
)) |
1684 controller->removeAllDeviceEventListeners(this); | 1684 controller->removeAllDeviceEventListeners(this); |
1685 if (DeviceOrientationController* controller = DeviceOrientationController::f
rom(page())) | 1685 if (DeviceOrientationController* controller = DeviceOrientationController::f
rom(page())) |
1686 controller->removeAllDeviceEventListeners(this); | 1686 controller->removeAllDeviceEventListeners(this); |
1687 #endif | 1687 #endif |
1688 #if ENABLE(TOUCH_EVENTS) | |
1689 if (Document* document = this->document()) | |
1690 document->didRemoveEventTargetNode(document); | |
1691 #endif | |
1692 | 1688 |
1693 removeAllUnloadEventListeners(this); | 1689 removeAllUnloadEventListeners(this); |
1694 removeAllBeforeUnloadEventListeners(this); | 1690 removeAllBeforeUnloadEventListeners(this); |
1695 } | 1691 } |
1696 | 1692 |
1697 void DOMWindow::captureEvents() | 1693 void DOMWindow::captureEvents() |
1698 { | 1694 { |
1699 // Not implemented. | 1695 // Not implemented. |
1700 } | 1696 } |
1701 | 1697 |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1944 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr
ame->view())); | 1940 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr
ame->view())); |
1945 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, | 1941 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, |
1946 activeWindow, firstFrame, m_frame, function, functionContext); | 1942 activeWindow, firstFrame, m_frame, function, functionContext); |
1947 if (!dialogFrame) | 1943 if (!dialogFrame) |
1948 return; | 1944 return; |
1949 | 1945 |
1950 dialogFrame->page()->chrome()->runModal(); | 1946 dialogFrame->page()->chrome()->runModal(); |
1951 } | 1947 } |
1952 | 1948 |
1953 } // namespace WebCore | 1949 } // namespace WebCore |
OLD | NEW |