https://bugs.webkit.org/show_bug.cgi?id=172394
Reviewed by Chris Dumez.
PerformanceTests:
Fixed the bug that we were never clearing window.checkLoadedTimeoutId.
* Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/require.js:
(newContext.checkLoaded):
Websites/browserbench.org:
Merge the fix.
* Speedometer2.0/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/require.js:
(newContext.checkLoaded):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@217161
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2017-05-19 Ryosuke Niwa <rniwa@webkit.org>
+
+ REGRESSION(r217118): Speedometer 2.0: Flight.js test is broken
+ https://bugs.webkit.org/show_bug.cgi?id=172394
+
+ Reviewed by Chris Dumez.
+
+ Fixed the bug that we were never clearing window.checkLoadedTimeoutId.
+
+ * Speedometer/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/require.js:
+ (newContext.checkLoaded):
+
2017-05-19 Yusuke Suzuki <utatane.tea@gmail.com>
Add SixSpeed benchmark to PerformanceTests
if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) {
checkLoadedTimeoutId = setTimeout(function () {
checkLoadedTimeoutId = 0;
+ window.checkLoadedTimeoutId = 0;
checkLoaded();
}, 50);
window.checkLoadedTimeoutId = checkLoadedTimeoutId;
+2017-05-19 Ryosuke Niwa <rniwa@webkit.org>
+
+ REGRESSION(r217118): Speedometer 2.0: Flight.js test is broken
+ https://bugs.webkit.org/show_bug.cgi?id=172394
+
+ Reviewed by Chris Dumez.
+
+ Merge the fix.
+
+ * Speedometer2.0/resources/todomvc/dependency-examples/flight/flight/node_modules/requirejs/require.js:
+ (newContext.checkLoaded):
+
2017-05-19 Ryosuke Niwa <rniwa@webkit.org>
Merge Speedometer 2.0 fixes up to r217121 to browserbench.org
if ((isBrowser || isWebWorker) && !checkLoadedTimeoutId) {
checkLoadedTimeoutId = setTimeout(function () {
checkLoadedTimeoutId = 0;
+ window.checkLoadedTimeoutId = 0;
checkLoaded();
}, 50);
window.checkLoadedTimeoutId = checkLoadedTimeoutId;