| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) | 3 * Copyright (C) 2010 Pawel Hajdan (phajdan.jr@chromium.org) |
| 4 * Copyright (C) 2012 Apple Inc. All Rights Reserved. | 4 * Copyright (C) 2012 Apple Inc. All Rights Reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 bindMethod("simulateWebNotificationClick", &TestRunner::notImplemented); | 306 bindMethod("simulateWebNotificationClick", &TestRunner::notImplemented); |
| 307 bindMethod("setIconDatabaseEnabled", &TestRunner::notImplemented); | 307 bindMethod("setIconDatabaseEnabled", &TestRunner::notImplemented); |
| 308 bindMethod("setScrollbarPolicy", &TestRunner::notImplemented); | 308 bindMethod("setScrollbarPolicy", &TestRunner::notImplemented); |
| 309 bindMethod("clearAllApplicationCaches", &TestRunner::notImplemented); | 309 bindMethod("clearAllApplicationCaches", &TestRunner::notImplemented); |
| 310 bindMethod("clearApplicationCacheForOrigin", &TestRunner::notImplemented); | 310 bindMethod("clearApplicationCacheForOrigin", &TestRunner::notImplemented); |
| 311 bindMethod("clearBackForwardList", &TestRunner::notImplemented); | 311 bindMethod("clearBackForwardList", &TestRunner::notImplemented); |
| 312 bindMethod("keepWebHistory", &TestRunner::notImplemented); | 312 bindMethod("keepWebHistory", &TestRunner::notImplemented); |
| 313 bindMethod("setApplicationCacheOriginQuota", &TestRunner::notImplemented); | 313 bindMethod("setApplicationCacheOriginQuota", &TestRunner::notImplemented); |
| 314 bindMethod("setCallCloseOnWebViews", &TestRunner::notImplemented); | 314 bindMethod("setCallCloseOnWebViews", &TestRunner::notImplemented); |
| 315 bindMethod("setMainFrameIsFirstResponder", &TestRunner::notImplemented); | 315 bindMethod("setMainFrameIsFirstResponder", &TestRunner::notImplemented); |
| 316 bindMethod("setPrivateBrowsingEnabled", &TestRunner::notImplemented); | |
| 317 bindMethod("setUseDashboardCompatibilityMode", &TestRunner::notImplemented); | 316 bindMethod("setUseDashboardCompatibilityMode", &TestRunner::notImplemented); |
| 318 bindMethod("deleteAllLocalStorage", &TestRunner::notImplemented); | 317 bindMethod("deleteAllLocalStorage", &TestRunner::notImplemented); |
| 319 bindMethod("localStorageDiskUsageForOrigin", &TestRunner::notImplemented); | 318 bindMethod("localStorageDiskUsageForOrigin", &TestRunner::notImplemented); |
| 320 bindMethod("originsWithLocalStorage", &TestRunner::notImplemented); | 319 bindMethod("originsWithLocalStorage", &TestRunner::notImplemented); |
| 321 bindMethod("deleteLocalStorageForOrigin", &TestRunner::notImplemented); | 320 bindMethod("deleteLocalStorageForOrigin", &TestRunner::notImplemented); |
| 322 bindMethod("observeStorageTrackerNotifications", &TestRunner::notImplemented
); | 321 bindMethod("observeStorageTrackerNotifications", &TestRunner::notImplemented
); |
| 323 bindMethod("syncLocalStorage", &TestRunner::notImplemented); | 322 bindMethod("syncLocalStorage", &TestRunner::notImplemented); |
| 324 bindMethod("addDisallowedURL", &TestRunner::notImplemented); | 323 bindMethod("addDisallowedURL", &TestRunner::notImplemented); |
| 325 bindMethod("applicationCacheDiskUsageForOrigin", &TestRunner::notImplemented
); | 324 bindMethod("applicationCacheDiskUsageForOrigin", &TestRunner::notImplemented
); |
| 326 bindMethod("abortModal", &TestRunner::notImplemented); | 325 bindMethod("abortModal", &TestRunner::notImplemented); |
| (...skipping 1716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2043 result->setNull(); | 2042 result->setNull(); |
| 2044 } | 2043 } |
| 2045 | 2044 |
| 2046 void TestRunner::setPointerLockWillFailSynchronously(const CppArgumentList&, Cpp
Variant* result) | 2045 void TestRunner::setPointerLockWillFailSynchronously(const CppArgumentList&, Cpp
Variant* result) |
| 2047 { | 2046 { |
| 2048 m_pointerLockPlannedResult = PointerLockWillFailSync; | 2047 m_pointerLockPlannedResult = PointerLockWillFailSync; |
| 2049 result->setNull(); | 2048 result->setNull(); |
| 2050 } | 2049 } |
| 2051 | 2050 |
| 2052 } | 2051 } |
| OLD | NEW |