Changeset 184807 in webkit
- Timestamp:
- May 22, 2015, 5:26:54 PM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r184805 r184807 1 2015-05-22 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION (OS X 10.9.2): PageVisibilityStateWithWindowChanges.WebKit2 API test fails 4 https://bugs.webkit.org/show_bug.cgi?id=130463 5 rdar://problem/20461342 6 7 Reviewed by Tim Horton. 8 9 This was more of a timing related flakiness than an actual OS version specific bug, 10 we weren't getting window visibility notifications. 11 12 I will look into adding this function call to DumpRenderTree separately, layout tests 13 might actually rely on the broken behavior. 14 15 * TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.mm: 16 (TestWebKitAPI::TEST_F): 17 * TestWebKitAPI/mac/mainMac.mm: 18 (main): 19 1 20 2015-05-22 Dana Burkart <dburkart@apple.com> 2 21 -
trunk/Tools/TestWebKitAPI/Tests/mac/PageVisibilityStateWithWindowChanges.mm
r182515 r184807 31 31 #import <WebKit/WKViewPrivate.h> 32 32 #import <wtf/RetainPtr.h> 33 34 // https://bugs.webkit.org/show_bug.cgi?id=13046335 // rdar://problem/2046134236 #if __MAC_OS_X_VERSION_MIN_REQUIRED == 10100037 33 38 34 static bool isWaitingForPageSignalToContinue = false; … … 181 177 182 178 } // namespace TestWebKitAPI 183 184 #endif -
trunk/Tools/TestWebKitAPI/mac/mainMac.mm
r179409 r184807 27 27 #import "TestsController.h" 28 28 29 extern "C" void _BeginEventReceiptOnThread(void); 30 29 31 int main(int argc, char** argv) 30 32 { … … 32 34 33 35 [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:@"TestWebKitAPI"]; 36 34 37 [NSApplication sharedApplication]; 38 _BeginEventReceiptOnThread(); // Makes window visibility notifications work (and possibly more). 35 39 36 40 bool passed = TestWebKitAPI::TestsController::singleton().run(argc, argv);
Note:
See TracChangeset
for help on using the changeset viewer.