summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_writable-replaceable.html
blob: 422e0d67a6bdab3f89b50068149914d61712f44d (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
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Test for Bug 823283</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=823283">Mozilla Bug 823283</a>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 823283 **/

function createTest(prop, typeStr, valCode, replaceable)
{
  var newType = replaceable ? typeof(valCode) : typeStr;
  var code =
    'is(typeof ' + prop + ', "' + typeStr + '", "' + prop + ': bad unqualified before-state");\n' +
    'is(typeof window.' + prop + ', "' + typeStr + '", "' + prop + ': bad qualified before-state");\n' +
    '\n' +
    prop + ' = ' + valCode + ';\n' +
    '\n' +
    'is(typeof ' + prop + ', "' + newType + '", "' + prop + ': bad unqualified after-state");\n' +
    'is(typeof window.' + prop + ', "' + newType + '", "' + prop + ': bad qualified after-state");';

  return Function(code);
}

[
  ["innerHeight", "number", '"123"', true],
  ["innerWidth", "number", '"456"', true],
  ["outerHeight", "number", '"654"', true],
  ["outerWidth", "number", '"321"', true],
  ["screenX", "number", '"17"', true],
  ["screenY", "number", '"42"', true],
  ["status", "string", '{}', false],
  ["name", "string", '{}', false],
].forEach(function(args)
{
  createTest.apply(null, args)();
});

</script>
</pre>
</body>
</html>