mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
15 lines
254 B
HTML
15 lines
254 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
This document contains a frame.
|
|
<div><iframe src="blank.html"></iframe></div>
|
|
<script>
|
|
frames[0].name = window.name + "_child0";
|
|
window.onload = function() {
|
|
opener.postMessage("ready", "*");
|
|
};
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|