forked from mirrors/gecko-dev
browser.sessionhistory.cache_subframes has been disabled for 12yrs. It's not actually maintained and it leaks content viewers. Using this unreliable feature in test cases is a bad practice, so remove the pref completely and fix existing test cases. MozReview-Commit-ID: 3tQLpsqmmaq --HG-- extra : rebase_source : 3e5094fed014a5d152e85f21b6de796a9a7abaa9
15 lines
309 B
HTML
15 lines
309 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script>
|
|
var worker = new Worker("WorkerDebugger_frozen_worker2.js");
|
|
worker.onmessage = function () {
|
|
opener.postMessage("ready", "*");
|
|
};
|
|
</script>
|
|
</head>
|
|
<body>
|
|
This is page 2.
|
|
</body>
|
|
<html>
|