summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug586763.html
blob: 9ecf00ea842f4d40be21effbb82cb1f4b03027c5 (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
<!DOCTYPE HTML>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=586763
-->
<title>Test for Bug 586763</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=586763">Mozilla Bug 586763</a>
<p id="display"></p>
<div id="content" style="display: none">
  
</div>
<pre id="test">
<script>
/** Test for Bug 586763 **/
var tests = [
  ["ol", "start", 1],
  ["li", "value", 0],
  ["object", "hspace", 0],
  ["object", "vspace", 0],
  ["img", "hspace", 0],
  ["img", "vspace", 0],
  ["video", "height", 0],
  ["video", "width", 0],
  ["pre", "width", 0],
  ["textarea", "cols", 20],
  ["textarea", "rows", 2],
  ["span", "tabIndex", -1],
  ["frame", "tabIndex", 0],
  ["a", "tabIndex", 0],
  ["area", "tabIndex", 0],
  ["button", "tabIndex", 0],
  ["input", "tabIndex", 0],
  ["object", "tabIndex", -1],
  ["select", "tabIndex", 0],
  ["textarea", "tabIndex", 0],
];

for (var i = 0; i < tests.length; i++) {
  is(document.createElement(tests[i][0])[tests[i][1]], tests[i][2], "Reflected attribute " + tests[i][0] + "." + tests[i][1] + " should default to " + tests[i][2]);
}
</script>
</pre>