summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_constructor-assignment.html
blob: 376e25fda3485db8a14f2d422074b8b7472e5179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<html>
<head>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script type="application/javascript">
function testConstructor(name)
{
  window[name] = 17; // resolve through assignment


  var desc = Object.getOwnPropertyDescriptor(window, name);
  ok(typeof desc === "object" && desc !== null, name + ": property must exist");

  is(desc.value, 17, name + ": overwrite didn't work correctly");
  is(desc.enumerable, false,
     name + ": initial descriptor was non-enumerable, and [[Put]] changes " +
     "the property value but not its enumerability");
  is(desc.configurable, true,
     name + ": initial descriptor was configurable, and [[Put]] changes the " +
     "property value but not its configurability");
  is(desc.writable, true,
     name + ": initial descriptor was writable, and [[Put]] changes the " +
     "property value but not its writability");
}

var ctors =
  [
   "HTMLElement",
   "HTMLDivElement",
   "HTMLSpanElement",
   "HTMLParagraphElement",
   "HTMLOptionElement",
   "HTMLHtmlElement",
   "Element",
   "Node",
   "Document",
   "Image",
   "Audio",
   "HTMLAudioElement",
   "HTMLVideoElement",
   "Window",
   "XMLHttpRequest",
   "Navigator",
   "WebSocket",
   "Event",
   "IDBKeyRange",
   "CSSPageRule",
   "SVGPatternElement",
  ];

ctors.forEach(testConstructor);
</script>
</body>
</html>