forked from mirrors/gecko-dev
28 lines
437 B
HTML
28 lines
437 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>
|
|
Main frame for test browser_aboutperformance.js
|
|
</title>
|
|
</head>
|
|
<body>
|
|
Main frame.
|
|
|
|
<iframe src="browser_compartments_frame.html?frame=1">
|
|
Subframe 1
|
|
</iframe>
|
|
|
|
<iframe src="browser_compartments_frame.html?frame=2">
|
|
Subframe 2.
|
|
</iframe>
|
|
|
|
</body>
|
|
|
|
<script>
|
|
window.waitForTestReady = async () => {
|
|
// This test page was born ready.
|
|
};
|
|
</script>
|
|
|
|
</html>
|