mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-04 15:38:59 +00:00
12 lines
265 B
HTML
12 lines
265 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>HTML Test: browsing context name - self</title>
|
|
<link rel="author" title="Intel" href="http://www.intel.com/">
|
|
<script>
|
|
|
|
window.name = "selfWin1";
|
|
var win = window.open("message.html", "_self");
|
|
win.close();
|
|
|
|
</script>
|