Title: [143695] trunk/Source/WebCore
- Revision
- 143695
- Author
- [email protected]
- Date
- 2013-02-21 23:51:46 -0800 (Thu, 21 Feb 2013)
Log Message
REGRESSION(r143664, r143681): http/tests/security/feed-urls-from-remote.html fails
https://bugs.webkit.org/show_bug.cgi?id=110554
Reviewed by Ryosuke Niwa.
Will fix http/tests/security/feed-urls-from-remote.html for Mac WK1.
* loader/DocumentLoader.cpp:
(WebCore::DocumentLoader::isLoading):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (143694 => 143695)
--- trunk/Source/WebCore/ChangeLog 2013-02-22 07:39:52 UTC (rev 143694)
+++ trunk/Source/WebCore/ChangeLog 2013-02-22 07:51:46 UTC (rev 143695)
@@ -1,3 +1,15 @@
+2013-02-21 Eric Seidel <[email protected]>
+
+ REGRESSION(r143664, r143681): http/tests/security/feed-urls-from-remote.html fails
+ https://bugs.webkit.org/show_bug.cgi?id=110554
+
+ Reviewed by Ryosuke Niwa.
+
+ Will fix http/tests/security/feed-urls-from-remote.html for Mac WK1.
+
+ * loader/DocumentLoader.cpp:
+ (WebCore::DocumentLoader::isLoading):
+
2013-02-21 Alec Flett <[email protected]>
IndexedDB: Implement SharedBuffer version of put() / onSuccess()
Modified: trunk/Source/WebCore/loader/DocumentLoader.cpp (143694 => 143695)
--- trunk/Source/WebCore/loader/DocumentLoader.cpp 2013-02-22 07:39:52 UTC (rev 143694)
+++ trunk/Source/WebCore/loader/DocumentLoader.cpp 2013-02-22 07:51:46 UTC (rev 143695)
@@ -280,8 +280,13 @@
bool DocumentLoader::isLoading() const
{
+ // FIXME: This should always be enabled, but it seems to cause
+ // http/tests/security/feed-urls-from-remote.html to timeout on Mac WK1
+ // see http://webkit.org/b/110554 and http://webkit.org/b/110401
+#if ENABLE(THREADED_HTML_PARSER)
if (m_frame && m_frame->document() && m_frame->document()->hasActiveParser())
return true;
+#endif
return isLoadingMainResource() || !m_subresourceLoaders.isEmpty() || !m_plugInStreamLoaders.isEmpty();
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes