summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/windows/browsing-context-names/choose-default-001.html
blob: c21159e0a618f3271abc5c57342e5c829be53758 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTML Test: Browsing context - Default name</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<iframe src="/common/blank.html" style="display:none"></iframe>
<object id="obj" type="text/html" data="about:blank"></object>
<embed id="embedded" type="image/svg+xml" src="/images/green.svg" width="0" height="0" />
<script>
test(t => {
  assert_equals(window.frames[0].name, "");
  assert_equals(document.getElementById("embedded").name, "");
  assert_equals(window["obj"].name, "");
}, "A embedded browsing context has empty-string default name");

test(t => {
  var win = window.open("about:blank", "_blank");
  assert_equals(win.name, "");
  win.close();
}, "A browsing context which is opened by window.open() method with '_blank' parameter has empty-string default name");
</script>