-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1841896 - Port helper_fission_transforms to regular mochitests r=…
…hiro Also remove helper_fission_basic since all it was doing was exercising the old Fission test infrastructure. Differential Revision: https://phabricator.services.mozilla.com/D215151
- Loading branch information
1 parent
9593510
commit f091335
Showing
7 changed files
with
137 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<!DOCTYPE html> | ||
<html id="fission_empty_docelement"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<script src="/tests/SimpleTest/EventUtils.js"></script> | ||
<script src="/tests/SimpleTest/paint_listener.js"></script> | ||
<script src="/tests/SimpleTest/SimpleTest.js"></script> | ||
<script src="apz_test_utils.js"></script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Various tests that spawn in out-of-process iframes.</title> | ||
<script src="/tests/SimpleTest/SimpleTest.js"></script> | ||
<script type="application/javascript" src="apz_test_utils.js"></script> | ||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> | ||
<script type="application/javascript"> | ||
|
||
var prefs = [ | ||
]; | ||
|
||
var subtests = [ | ||
{ "file": "helper_fission_transforms.html", "prefs": prefs }, | ||
]; | ||
|
||
if (isApzEnabled()) { | ||
// This has a lot of subtests, and Android emulators are slow. | ||
SimpleTest.requestLongerTimeout(2); | ||
SimpleTest.waitForExplicitFinish(); | ||
window.onload = function () { | ||
runSubtestsSeriallyInFreshWindows(subtests) | ||
.then(SimpleTest.finish, SimpleTest.finishWithFailure); | ||
}; | ||
} | ||
|
||
</script> | ||
</head> | ||
<body> | ||
</body> | ||
</html> |