Bug 1561435 - Format dom/, a=automatic-formatting

# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35951
This commit is contained in:
Victor Porof
2019-07-05 10:44:55 +02:00
parent 6f66538865
commit 0c34170315
1077 changed files with 222846 additions and 39866 deletions

View File

@@ -39,17 +39,17 @@ function iframeBodyRecv(data) {
var currentCount = parseInt(data.json.data, 10);
countAcc = currentCount;
switch (loadedEvents) {
case 1:
iframe.reload();
break;
case 2:
ok(true, "reload was triggered");
ok(previousCount === currentCount, "reload was a soft reload");
iframe.reload(true);
break;
case 3:
ok(currentCount > previousCount, "reload was a hard reload");
SimpleTest.finish();
case 1:
iframe.reload();
break;
case 2:
ok(true, "reload was triggered");
ok(previousCount === currentCount, "reload was a soft reload");
iframe.reload(true);
break;
case 3:
ok(currentCount > previousCount, "reload was a hard reload");
SimpleTest.finish();
}
}