Changeset 141454 in webkit
- Timestamp:
- Jan 31, 2013, 11:40:14 AM (12 years ago)
- Location:
- trunk/Source/WebKit/chromium
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/chromium/ChangeLog
r141453 r141454 1 2013-01-31 Dan Alcantara <dfalcantara@chromium.org> 2 3 WebFrameTest.DisambiguationPopup is failing 4 https://bugs.webkit.org/show_bug.cgi?id=108160 5 6 Reviewed by Adam Barth. 7 8 Fix the unit test so that it is using the right HTML file. 9 10 * tests/WebFrameTest.cpp: 11 1 12 2013-01-31 Tony Chang <tony@chromium.org> 2 13 -
trunk/Source/WebKit/chromium/tests/WebFrameTest.cpp
r141450 r141454 1800 1800 } 1801 1801 1802 TEST_F(WebFrameTest, DISABLED_DisambiguationPopup) 1803 { 1804 registerMockedHttpURLLoad("disambiguation_popup.html"); 1802 TEST_F(WebFrameTest, DisambiguationPopup) 1803 { 1804 const std::string htmlFile = "disambiguation_popup.html"; 1805 registerMockedHttpURLLoad(htmlFile); 1805 1806 1806 1807 DisambiguationPopupTestWebViewClient client; … … 1808 1809 // Make sure we initialize to minimum scale, even if the window size 1809 1810 // only becomes available after the load begins. 1810 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(FrameTestHelpers::createWebViewAndLoad(m_baseURL + "disambiguation_popup.html", true, 0, &client));1811 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(FrameTestHelpers::createWebViewAndLoad(m_baseURL + htmlFile, true, 0, &client)); 1811 1812 webViewImpl->resize(WebSize(1000, 1000)); 1812 1813 webViewImpl->layout(); … … 1861 1862 } 1862 1863 1863 TEST_F(WebFrameTest, DISABLED_DisambiguationPopupMobileSite) 1864 { 1865 registerMockedHttpURLLoad("disambiguation_popup_mobile_site.html"); 1864 TEST_F(WebFrameTest, DisambiguationPopupMobileSite) 1865 { 1866 const std::string htmlFile = "disambiguation_popup_mobile_site.html"; 1867 registerMockedHttpURLLoad(htmlFile); 1866 1868 1867 1869 DisambiguationPopupTestWebViewClient client; … … 1869 1871 // Make sure we initialize to minimum scale, even if the window size 1870 1872 // only becomes available after the load begins. 1871 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(FrameTestHelpers::createWebViewAndLoad(m_baseURL + "disambiguation_popup.html", true, 0, &client));1873 WebViewImpl* webViewImpl = static_cast<WebViewImpl*>(FrameTestHelpers::createWebViewAndLoad(m_baseURL + htmlFile, true, 0, &client)); 1872 1874 webViewImpl->resize(WebSize(1000, 1000)); 1873 1875 webViewImpl->layout();
Note:
See TracChangeset
for help on using the changeset viewer.