+2017-08-04 Ryan Haddad <ryanhaddad@apple.com>
+
+ Unreviewed, rolling out r220268.
+
+ This change caused assertion failures on macOS and iOS Debug
+ WK2.
+
+ Reverted changeset:
+
+ "Resource Load Statistics: Report user interaction
+ immediately, but only when needed"
+ https://bugs.webkit.org/show_bug.cgi?id=175090
+ http://trac.webkit.org/changeset/220268
+
2017-08-04 Chris Dumez <cdumez@apple.com>
Mark beacon-basic-string.html as slow.
}
onload = function() {
- if (internals)
+ if (internals) {
internals.setResourceLoadStatisticsEnabled(true);
+ internals.setResourceLoadStatisticsShouldThrottleObserverNotifications(false);
+ }
if (testRunner) {
testRunner.setStatisticsNotifyPagesWhenDataRecordsWereScanned(true);
+++ /dev/null
-main frame - didStartProvisionalLoadForFrame
-main frame - didCommitLoadForFrame
-frame "testFrame" - didStartProvisionalLoadForFrame
-main frame - didFinishDocumentLoadForFrame
-frame "testFrame" - didCommitLoadForFrame
-frame "testFrame" - didFinishDocumentLoadForFrame
-frame "testFrame" - didHandleOnloadEventsForFrame
-main frame - didHandleOnloadEventsForFrame
-frame "testFrame" - didFinishLoadForFrame
-main frame - didFinishLoadForFrame
-Tests that user interaction is not reported repeatedly within a short period of time.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS document.location.origin is topFrameOrigin
-PASS testRunner.isStatisticsHasHadUserInteraction(topFrameOrigin) is false
-PASS testRunner.isStatisticsHasHadUserInteraction(subFrameOrigin) is false
-PASS testRunner.isStatisticsHasHadUserInteraction(topFrameOrigin) is true
-PASS testRunner.isStatisticsHasHadUserInteraction(subFrameOrigin) is false
-PASS testRunner.isStatisticsHasHadUserInteraction(topFrameOrigin) is false
-PASS testRunner.isStatisticsHasHadUserInteraction(topFrameOrigin) is false
-PASS testRunner.isStatisticsHasHadUserInteraction(subFrameOrigin) is false
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
+++ /dev/null
-<!DOCTYPE html>
-<html>
-<body>
-<script src="/js-test-resources/js-test.js"></script>
-<script src="/js-test-resources/ui-helper.js"></script>
-<script>
- description("Tests that user interaction is not reported repeatedly within a short period of time.");
- jsTestIsAsync = true;
-
- const topFrameOrigin = "http://127.0.0.1:8000";
- const subFrameOrigin = "http://localhost:8000";
-
- function activateElement(elementId) {
- var element = document.getElementById(elementId);
- var centerX = element.offsetLeft + element.offsetWidth / 2;
- var centerY = element.offsetTop + element.offsetHeight / 2;
- UIHelper.activateAt(centerX, centerY);
- }
-
- function firstInteraction() {
- if (testRunner) {
- testRunner.setStatisticsNotifyPagesWhenDataRecordsWereScanned(true);
- testRunner.installStatisticsDidScanDataRecordsCallback(secondInteraction);
-
- shouldBeFalse("testRunner.isStatisticsHasHadUserInteraction(topFrameOrigin)");
- shouldBeFalse("testRunner.isStatisticsHasHadUserInteraction(subFrameOrigin)");
- }
-
- activateElement("testFrame");
- }
-
- function secondInteraction() {
- if (testRunner) {
- testRunner.installStatisticsDidScanDataRecordsCallback(finishTest);
-
- shouldBeTrue("testRunner.isStatisticsHasHadUserInteraction(topFrameOrigin)");
- shouldBeFalse("testRunner.isStatisticsHasHadUserInteraction(subFrameOrigin)");
-
- testRunner.setStatisticsHasHadUserInteraction(topFrameOrigin, false);
- shouldBeFalse("testRunner.isStatisticsHasHadUserInteraction(topFrameOrigin)");
- }
-
- activateElement("testFrame");
-
- if (testRunner)
- testRunner.statisticsProcessStatisticsAndDataRecords();
- }
-
- function finishTest() {
- shouldBeFalse("testRunner.isStatisticsHasHadUserInteraction(topFrameOrigin)");
- shouldBeFalse("testRunner.isStatisticsHasHadUserInteraction(subFrameOrigin)");
-
- finishJSTest();
- }
-
- onload = function() {
- if (internals)
- internals.setResourceLoadStatisticsEnabled(true);
-
- shouldBe("document.location.origin", "topFrameOrigin");
-
- firstInteraction();
- };
-</script>
-<iframe id="testFrame" src="http://localhost:8000/loading/resourceLoadStatistics/resources/dummy.html"></iframe>
-</body>
-</html>
\ No newline at end of file
webkit.org/b/172397 [ Sierra Debug ] animations/needs-layout.html [ Pass ImageOnlyFailure ]
-# Move to general wk2 expectations once webkit.org/b/175170 is resolved.
+# Currently only tests with click, not tap.
http/tests/loading/resourceLoadStatistics/user-interaction-in-cross-origin-sub-frame.html [ Pass ]
-http/tests/loading/resourceLoadStatistics/user-interaction-only-reported-once-within-short-period-of-time.html [ Pass ]
webkit.org/b/173861 [ Release ] http/tests/webrtc/filtering-ice-candidate-same-origin-frame.html [ Pass Timeout ]
webkit.org/b/173861 [ Release ] http/tests/webrtc/filtering-ice-candidate-cross-origin-frame.html [ Pass Timeout ]
+2017-08-04 Ryan Haddad <ryanhaddad@apple.com>
+
+ Unreviewed, rolling out r220268.
+
+ This change caused assertion failures on macOS and iOS Debug
+ WK2.
+
+ Reverted changeset:
+
+ "Resource Load Statistics: Report user interaction
+ immediately, but only when needed"
+ https://bugs.webkit.org/show_bug.cgi?id=175090
+ http://trac.webkit.org/changeset/220268
+
2017-08-04 Youenn Fablet <youenn@apple.com>
Remove STREAMS_API compilation guard
return firstMetaDomainIdentifier == metaDomainIdentifiers.get().get(secondDomain);
}
+void ResourceLoadObserver::setShouldThrottleObserverNotifications(bool shouldThrottle)
+{
+ m_shouldThrottleNotifications = shouldThrottle;
+
+ if (!m_notificationTimer.isActive())
+ return;
+
+ // If we change the notification state, we need to restart any notifications
+ // so they will be on the right schedule.
+ m_notificationTimer.stop();
+ scheduleNotificationIfNeeded();
+}
+
void ResourceLoadObserver::setNotificationCallback(WTF::Function<void (Vector<ResourceLoadStatistics>&&)>&& notificationCallback)
{
ASSERT(!m_notificationCallback);
}
ResourceLoadObserver::ResourceLoadObserver()
- : m_notificationTimer(*this, &ResourceLoadObserver::notifyObserver)
+ : m_notificationTimer(*this, &ResourceLoadObserver::notificationTimerFired)
{
}
if (url.isBlankURL() || url.isEmpty())
return;
- auto domain = primaryDomain(url);
+ auto& statistics = ensureResourceStatisticsForPrimaryDomain(primaryDomain(url));
auto newTime = reduceToHourlyTimeResolution(WallTime::now());
- auto lastReportedUserInteraction = m_lastReportedUserInteractionMap.get(domain);
- if (newTime == lastReportedUserInteraction)
+ if (newTime == statistics.mostRecentUserInteractionTime)
return;
- m_lastReportedUserInteractionMap.set(domain, newTime);
-
- auto& statistics = ensureResourceStatisticsForPrimaryDomain(domain);
statistics.hadUserInteraction = true;
statistics.lastSeen = newTime;
statistics.mostRecentUserInteractionTime = newTime;
- notifyObserver();
+ scheduleNotificationIfNeeded();
}
ResourceLoadStatistics& ResourceLoadObserver::ensureResourceStatisticsForPrimaryDomain(const String& primaryDomain)
}
if (!m_notificationTimer.isActive())
- m_notificationTimer.startOneShot(minimumNotificationInterval);
+ m_notificationTimer.startOneShot(m_shouldThrottleNotifications ? minimumNotificationInterval : 0_s);
}
-void ResourceLoadObserver::notifyObserver()
+void ResourceLoadObserver::notificationTimerFired()
{
ASSERT(m_notificationCallback);
- m_notificationTimer.stop();
m_notificationCallback(takeStatistics());
}
return statistics;
}
-void ResourceLoadObserver::clearState()
-{
- m_resourceStatisticsMap.clear();
- m_lastReportedUserInteractionMap.clear();
-}
-
} // namespace WebCore
namespace WTF {
class Lock;
class WorkQueue;
-class WallTime;
}
namespace WebCore {
WEBCORE_EXPORT void setNotificationCallback(WTF::Function<void (Vector<ResourceLoadStatistics>&&)>&&);
- WEBCORE_EXPORT void clearState();
private:
ResourceLoadObserver();
ResourceLoadStatistics& ensureResourceStatisticsForPrimaryDomain(const String&);
void scheduleNotificationIfNeeded();
- void notifyObserver();
+ void notificationTimerFired();
Vector<ResourceLoadStatistics> takeStatistics();
HashMap<String, ResourceLoadStatistics> m_resourceStatisticsMap;
- HashMap<String, WTF::WallTime> m_lastReportedUserInteractionMap;
WTF::Function<void (Vector<ResourceLoadStatistics>&&)> m_notificationCallback;
Timer m_notificationTimer;
+ bool m_shouldThrottleNotifications { true };
};
} // namespace WebCore
#if USE(LIBWEBRTC)
WebCore::useRealRTCPeerConnectionFactory();
#endif
+
+ ResourceLoadObserver::shared().setShouldThrottleObserverNotifications(true);
}
Internals::Internals(Document& document)
Settings::setResourceLoadStatisticsEnabled(enable);
}
+void Internals::setResourceLoadStatisticsShouldThrottleObserverNotifications(bool enable)
+{
+ ResourceLoadObserver::shared().setShouldThrottleObserverNotifications(enable);
+}
+
String Internals::composedTreeAsText(Node& node)
{
if (!is<ContainerNode>(node))
String resourceLoadStatisticsForOrigin(const String& origin);
void setResourceLoadStatisticsEnabled(bool);
+ void setResourceLoadStatisticsShouldThrottleObserverNotifications(bool);
bool isReadableStreamDisturbed(JSC::ExecState&, JSC::JSValue);
JSC::JSValue cloneArrayBuffer(JSC::ExecState&, JSC::JSValue, JSC::JSValue, JSC::JSValue);
DOMString resourceLoadStatisticsForOrigin(DOMString domain);
void setResourceLoadStatisticsEnabled(boolean enable);
+ void setResourceLoadStatisticsShouldThrottleObserverNotifications(boolean enable);
[MayThrowException] void setCanShowModalDialogOverride(boolean allow);
+2017-08-04 Ryan Haddad <ryanhaddad@apple.com>
+
+ Unreviewed, rolling out r220268.
+
+ This change caused assertion failures on macOS and iOS Debug
+ WK2.
+
+ Reverted changeset:
+
+ "Resource Load Statistics: Report user interaction
+ immediately, but only when needed"
+ https://bugs.webkit.org/show_bug.cgi?id=175090
+ http://trac.webkit.org/changeset/220268
+
2017-08-04 Andreas Kling <akling@apple.com>
NetworkLoad should always invoke its redirect completion handler
#include "WebPage.h"
#include "WebPageGroupProxy.h"
#include <WebCore/DatabaseTracker.h>
-#include <WebCore/ResourceLoadObserver.h>
using namespace WebCore;
using namespace WebKit;
{
toImpl(bundleRef)->setTabKeyCyclesThroughElements(toImpl(pageRef), enabled);
}
-
-void WKBundleClearResourceLoadStatistics(WKBundleRef)
-{
- ResourceLoadObserver::shared().clearState();
-}
WK_EXPORT void WKBundleSetTabKeyCyclesThroughElements(WKBundleRef bundle, WKBundlePageRef page, bool enabled);
-WK_EXPORT void WKBundleClearResourceLoadStatistics(WKBundleRef);
-
#ifdef __cplusplus
}
#endif
+2017-08-04 Ryan Haddad <ryanhaddad@apple.com>
+
+ Unreviewed, rolling out r220268.
+
+ This change caused assertion failures on macOS and iOS Debug
+ WK2.
+
+ Reverted changeset:
+
+ "Resource Load Statistics: Report user interaction
+ immediately, but only when needed"
+ https://bugs.webkit.org/show_bug.cgi?id=175090
+ http://trac.webkit.org/changeset/220268
+
2017-08-04 Youenn Fablet <youenn@apple.com>
Remove STREAMS_API compilation guard
WKBundleClearAllDatabases(m_bundle);
WKBundlePageClearApplicationCache(page()->page());
WKBundleResetOriginAccessWhitelists(m_bundle);
- WKBundleClearResourceLoadStatistics(m_bundle);
// [WK2] REGRESSION(r128623): It made layout tests extremely slow
// https://bugs.webkit.org/show_bug.cgi?id=96862