Changeset 244668 in webkit
- Timestamp:
- Apr 25, 2019, 3:41:59 PM (6 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r244664 r244668 118 118 * TestWebKitAPI/Tests/WebKitCocoa/WKURLSchemeHandler-1.mm: Add a test that POSTs all sorts of things 119 119 from an XHR to a custom protocol. 120 121 2019-04-25 Simon Fraser <simon.fraser@apple.com> 122 123 DumpRenderTree doesn't call Internals::resetToConsistentState() before the first test 124 https://bugs.webkit.org/show_bug.cgi?id=197273 125 126 Reviewed by Dean Jackson. 127 128 Reorder code so that we create gTestRunner before calling resetWebViewToConsistentStateBeforeTesting(), 129 so that WebCoreTestSupport::resetInternalsObject() is always run. 130 131 * DumpRenderTree/mac/DumpRenderTree.mm: 132 (resetWebViewToConsistentStateBeforeTesting): 133 (runTest): 120 134 121 135 2019-04-24 John Wilander <wilander@apple.com> -
trunk/Tools/DumpRenderTree/mac/DumpRenderTree.mm
r244599 r244668 1883 1883 setlocale(LC_ALL, ""); 1884 1884 1885 if (gTestRunner) {1886 1887 WebCoreTestSupport::resetInternalsObject([mainFrame globalContext]);1888 // in the case that a test using the chrome input field failed, be sure to clean up for the next test1889 gTestRunner->removeChromeInputField(); 1890 }1885 ASSERT(gTestRunner); 1886 gTestRunner->resetPageVisibility(); 1887 // In the case that a test using the chrome input field failed, be sure to clean up for the next test. 1888 gTestRunner->removeChromeInputField(); 1889 1890 WebCoreTestSupport::resetInternalsObject([mainFrame globalContext]); 1891 1891 1892 1892 #if !PLATFORM(IOS_FAMILY) … … 2006 2006 mainFrameTestOptions = options; 2007 2007 2008 resetWebViewToConsistentStateBeforeTesting(options);2009 2010 2008 const char* testURL([[url absoluteString] UTF8String]); 2011 2012 #if !PLATFORM(IOS_FAMILY)2013 changeWindowScaleIfNeeded(testURL);2014 #endif2015 2016 2009 gTestRunner = TestRunner::create(testURL, command.expectedPixelHash); 2017 2010 gTestRunner->setAllowedHosts(allowedHosts); 2018 2011 gTestRunner->setCustomTimeout(command.timeout); 2019 2012 gTestRunner->setDumpJSConsoleLogInStdErr(command.dumpJSConsoleLogInStdErr || options.dumpJSConsoleLogInStdErr); 2013 2014 resetWebViewToConsistentStateBeforeTesting(options); 2015 2016 #if !PLATFORM(IOS_FAMILY) 2017 changeWindowScaleIfNeeded(testURL); 2018 #endif 2019 2020 2020 topLoadingFrame = nil; 2021 2021 #if !PLATFORM(IOS_FAMILY)
Note:
See TracChangeset
for help on using the changeset viewer.