summaryrefslogtreecommitdiffstats
path: root/dom/tests/mochitest/bugs/test_bug529328.html
blob: 231234f4db62b1caa68236348215b5574bc7d042 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=529328
-->
<head>
  <title>Test for Bug 529328</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=529328">Mozilla Bug 529328</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 529328 **/
function testDOMTokenList() {
  is(document.body.classList[-1], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList[0], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList[1], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList[2], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(-1), null, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(0), null, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(1), null, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(2), null, "Wrong value for out of bounds access (DOMTokenList)");

  document.body.className = "a b";
  is(document.body.classList[-1], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList[0], "a", "Wrong value for in bounds access (DOMTokenList)");
  is(document.body.classList[1], "b", "Wrong value for in bounds access (DOMTokenList)");
  is(document.body.classList[2], undefined, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(-1), null, "Wrong value for out of bounds access (DOMTokenList)");
  is(document.body.classList.item(0), "a", "Wrong value for in bounds access (DOMTokenList)");
  is(document.body.classList.item(1), "b", "Wrong value for in bounds access (DOMTokenList)");
  is(document.body.classList.item(2), null, "Wrong value for out of bounds access (DOMTokenList)");
}

function testDOMStringList() {
  is(document.styleSheetSets[-1], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets[0], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets[1], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets[2], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(-1), null, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(0), null, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(1), null, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(2), null, "Wrong value for out of bounds access (DOMStringList)");

  var s = document.createElement("style");
  s.title = "a";
  document.head.appendChild(s);
  s = document.createElement("style");
  s.title = "b";
  document.head.appendChild(s);

  is(document.styleSheetSets[-1], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets[0], "a", "Wrong value for in bounds access (DOMStringList)");
  is(document.styleSheetSets[1], "b", "Wrong value for in bounds access (DOMStringList)");
  is(document.styleSheetSets[2], undefined, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(-1), null, "Wrong value for out of bounds access (DOMStringList)");
  is(document.styleSheetSets.item(0), "a", "Wrong value for in bounds access (DOMStringList)");
  is(document.styleSheetSets.item(1), "b", "Wrong value for in bounds access (DOMStringList)");
  is(document.styleSheetSets.item(2), null, "Wrong value for out of bounds access (DOMStringList)");
}

function testMediaList() {
  var s = document.createElement("style");
  document.head.appendChild(s);
  is(s.sheet.media[-1], undefined, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media[0], undefined, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media[1], undefined, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media[2], undefined, "Wrong value for out of bounds access (MediaList) (MediaList)");
  is(s.sheet.media.item(-1), null, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media.item(0), null, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media.item(1), null, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media.item(2), null, "Wrong value for out of bounds access (MediaList) (MediaList)");

  s.setAttribute("media", "a, b");

  is(s.sheet.media[-1], undefined, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media[0], "a", "Wrong value for in bounds access (MediaList)");
  is(s.sheet.media[1], "b", "Wrong value for in bounds access (MediaList)");
  is(s.sheet.media[2], undefined, "Wrong value for out of bounds access (MediaList) (MediaList)");
  is(s.sheet.media.item(-1), null, "Wrong value for out of bounds access (MediaList)");
  is(s.sheet.media.item(0), "a", "Wrong value for in bounds access (MediaList)");
  is(s.sheet.media.item(1), "b", "Wrong value for in bounds access (MediaList)");
  is(s.sheet.media.item(2), null, "Wrong value for out of bounds access (MediaList) (MediaList)");
}

function testCSSStyleDeclaration() {
  var s = document.createElement("span");

  is(s.style[-1], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style[0], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style[1], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style[2], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(-1), "", "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(0), "", "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(1), "", "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(2), "", "Wrong value for out of bounds access (CSSStyleDeclaration)");

  s.setAttribute("style", "color: blue; z-index: 42;");

  is(s.style[-1], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style[0], "color", "Wrong value for in bounds access (CSSStyleDeclaration)");
  is(s.style[1], "z-index", "Wrong value for in bounds access (CSSStyleDeclaration)");
  is(s.style[2], undefined, "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(-1), "", "Wrong value for out of bounds access (CSSStyleDeclaration)");
  is(s.style.item(0), "color", "Wrong value for in bounds access (CSSStyleDeclaration)");
  is(s.style.item(1), "z-index", "Wrong value for in bounds access (CSSStyleDeclaration)");
  is(s.style.item(2), "", "Wrong value for out of bounds access (CSSStyleDeclaration)");
}

testDOMTokenList();
testDOMStringList();
testMediaList();
testCSSStyleDeclaration();
</script>
</pre>
</body>
</html>