mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
09a262787c
We are white-listing the existing set of tests that use setTimeout like this. Hopefully these tests will be investigated and fixed in the future, so that we can narrow down the white-list. This check is only turned on for mochitest-plain for now.
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
<head>
|
|
<title>nsICrashService plugin hang</title>
|
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="utils.js"></script>
|
|
|
|
<body>
|
|
<script class="testbody" type="application/javascript">
|
|
SimpleTest.waitForExplicitFinish();
|
|
SimpleTest.requestFlakyTimeout("untriaged");
|
|
SimpleTest.requestCompleteLog();
|
|
setTestPluginEnabledState(SpecialPowers.Ci.nsIPluginTag.STATE_ENABLED);
|
|
|
|
window.frameLoaded = function frameLoaded_toCrash() {
|
|
if (!SimpleTest.testPluginIsOOP()) {
|
|
ok(true, "Skipping this test when test plugin is not OOP.");
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
|
|
SimpleTest.expectChildProcessCrash();
|
|
|
|
// the default timeout is annoying high for mochitest runs
|
|
var timeoutPref = "dom.ipc.plugins.timeoutSecs";
|
|
SpecialPowers.setIntPref(timeoutPref, 5);
|
|
|
|
crashAndGetCrashServiceRecord("hang", function (cm, crash) {
|
|
ok(crash.isOfType(cm.PROCESS_TYPE_PLUGIN, cm.CRASH_TYPE_HANG),
|
|
"Record should be a plugin hang");
|
|
SimpleTest.finish();
|
|
});
|
|
}
|
|
</script>
|
|
<iframe id="iframe1" src="crashing_subpage.html" width="600" height="600"></iframe>
|