tenfourfox/toolkit/content/tests/browser/file_contentTitle.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

15 lines
378 B
HTML

<html>
<head><title>Test Page</title></head>
<body>
<script type="text/javascript">
dump("Script!\n");
addEventListener("load", () => {
// Trigger an onLocationChange event. We want to make sure the title is still correct afterwards.
location.hash = "#x2";
var event = new Event("TestLocationChange");
document.dispatchEvent(event);
}, false);
</script>
</body>
</html>