gecko/browser/base/content/test/file_fullscreen-window-open.html
2013-02-18 20:27:48 +09:00

25 lines
677 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Test for window.open() when browser is in fullscreen</title>
</head>
<body>
<script>
window.addEventListener("load", function onLoad() {
window.removeEventListener("load", onLoad, true);
document.getElementById("test").addEventListener("click", onClick, true);
}, true);
function onClick(aEvent) {
aEvent.preventDefault();
var dataStr = aEvent.target.getAttribute("data-test-param");
var data = JSON.parse(dataStr);
window.open(data.uri, data.title, data.option);
}
</script>
<a id="test" href="" data-test-param="">Test</a>
</body>
</html>