Bug 871695 - Intermittent devtools/netmonitor/test/browser_net_autoscroll.js | TypeError: debuggee.performRequests is not a function | Found an unexpected tab at the end of test run: about:blank | browser_net_content-type.js | Test timed out | Found a tab..., r=dcamp

This commit is contained in:
Victor Porof 2013-05-15 18:20:21 +03:00
parent 7b6b01c2ea
commit 9c98d55814
2 changed files with 2 additions and 3 deletions

View File

@ -20,7 +20,6 @@ function test() {
// (1) Check that the scroll position is maintained at the bottom
// when the requests overflow the vertical size of the container.
.then(() => {
debuggee.performRequests();
return waitForRequestsToOverflowContainer(monitor, requestsContainer);
}).then(() => {
ok(scrolledToBottom(requestsContainer), "Scrolled to bottom on overflow.");

View File

@ -25,11 +25,11 @@
// Use a count parameter to defeat caching.
var count = 0;
function performRequests() {
(function performRequests() {
get("request_" + (count++), function() {
setTimeout(performRequests, 0);
});
}
})();
</script>
</body>