blob: 567e4ea3103fb7c0c854788f7157af9d4ad2aac0 [file] [log] [blame]
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>HTML Test: browsing context name - Empty string</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<body onload="followLink()">
</body>
<script>
function followLink() {
var a = document.createElement('a');
a.href = 'post-to-top.html';
a.target = ''; // Target is empty string
document.body.appendChild(a);
a.click();
}
</script>
</html>