Changeset 185691 in webkit
- Timestamp:
- Jun 17, 2015, 9:11:05 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/win/TestExpectations (modified) (1 diff)
-
Source/WebKit/win/ChangeLog (modified) (1 diff)
-
Source/WebKit/win/Interfaces/IWebViewPrivate.idl (modified) (1 diff)
-
Source/WebKit/win/WebView.cpp (modified) (1 diff)
-
Source/WebKit/win/WebView.h (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/DumpRenderTree/win/TestRunnerWin.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r185675 r185691 1 2015-06-17 Hyungwook Lee <hyungwook.lee@navercorp.com> 2 3 [Win]Implement layoutTestController.dispatchPendingLoadRequests. 4 https://bugs.webkit.org/show_bug.cgi?id=26481 5 6 Reviewed by Darin Adler. 7 8 Implement WebView::dispatchPendingLoadRequests() private API for test runner. 9 10 * platform/win/TestExpectations: 11 1 12 2015-06-17 Chris Fleizach <cfleizach@apple.com> 2 13 -
trunk/LayoutTests/platform/win/TestExpectations
r185559 r185691 135 135 # TODO DumpRenderTree code to enable Java is currently a no-op. Windows doesn't come with Java by default. 136 136 java/ [ Skip ] 137 138 # TODO Implement testRunner.dispatchPendingLoadRequests139 webkit.org/b/26481 http/tests/loading/deleted-host-in-resource-load-delegate-callback.html [ Skip ]140 137 141 138 # TODO No support for print-to-pdf in Windows DRT -
trunk/Source/WebKit/win/ChangeLog
r185657 r185691 1 2015-06-17 Hyungwook Lee <hyungwook.lee@navercorp.com> 2 3 [Win]Implement layoutTestController.dispatchPendingLoadRequests. 4 https://bugs.webkit.org/show_bug.cgi?id=26481 5 6 Reviewed by Darin Adler. 7 8 Implement WebView::dispatchPendingLoadRequests() private API for test runner. 9 10 * Interfaces/IWebViewPrivate.idl: 11 * WebView.cpp: 12 (WebView::scaleWebView): 13 (WebView::dispatchPendingLoadRequests): 14 * WebView.h: 15 1 16 2015-06-17 Commit Queue <commit-queue@webkit.org> 2 17 -
trunk/Source/WebKit/win/Interfaces/IWebViewPrivate.idl
r178849 r185691 296 296 297 297 HRESULT scaleWebView([in] double scale, [in] POINT origin); 298 299 HRESULT dispatchPendingLoadRequests(); 298 300 } -
trunk/Source/WebKit/win/WebView.cpp
r185657 r185691 7127 7127 return S_OK; 7128 7128 } 7129 7130 HRESULT WebView::dispatchPendingLoadRequests() 7131 { 7132 resourceLoadScheduler()->servePendingRequests(); 7133 return S_OK; 7134 } -
trunk/Source/WebKit/win/WebView.h
r185657 r185691 1022 1022 HRESULT STDMETHODCALLTYPE setLoadResourcesSerially(BOOL); 1023 1023 HRESULT STDMETHODCALLTYPE scaleWebView(double scale, POINT origin); 1024 HRESULT STDMETHODCALLTYPE dispatchPendingLoadRequests(); 1024 1025 1025 1026 protected: -
trunk/Tools/ChangeLog
r185683 r185691 1 2015-06-17 Hyungwook Lee <hyungwook.lee@navercorp.com> 2 3 [Win]Implement layoutTestController.dispatchPendingLoadRequests. 4 https://bugs.webkit.org/show_bug.cgi?id=26481 5 6 Reviewed by Darin Adler. 7 8 Implement WebView::dispatchPendingLoadRequests() private API for test runner. 9 10 * DumpRenderTree/win/TestRunnerWin.cpp: 11 (TestRunner::dispatchPendingLoadRequests): 12 (TestRunner::overridePreference): 13 1 14 2015-06-17 Alex Christensen <achristensen@webkit.org> 2 15 -
trunk/Tools/DumpRenderTree/win/TestRunnerWin.cpp
r179414 r185691 813 813 void TestRunner::dispatchPendingLoadRequests() 814 814 { 815 // FIXME: Implement for testing fix for 6727495 816 printf("ERROR: TestRunner::dispatchPendingLoadRequests() not implemented\n"); 815 COMPtr<IWebView> webView; 816 if (FAILED(frame->webView(&webView))) 817 return; 818 819 COMPtr<IWebViewPrivate> viewPrivate; 820 if (FAILED(webView->QueryInterface(&viewPrivate))) 821 return; 822 823 viewPrivate->dispatchPendingLoadRequests(); 817 824 } 818 825
Note:
See TracChangeset
for help on using the changeset viewer.