mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
c4ecad6c4b
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
16 lines
309 B
HTML
16 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>
|