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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=551846
-->
<head>
<title>Test for Bug 551846</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=551846">Mozilla Bug 551846</a>
<p id="display"></p>
<div id="content" style="display: none">
<select id='s'>
<option>Tulip</option>
<option>Lily</option>
<option>Gagea</option>
<option>Snowflake</option>
<option>Ismene</option>
</select>
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 551846 **/
function checkSizeReflection(element, defaultValue)
{
is(element.size, defaultValue, "Default size should be " + defaultValue);
element.setAttribute('size', -15);
is(element.size, defaultValue,
"The reflecting IDL attribute should return the default value when content attribute value is invalid");
is(element.getAttribute('size'), "-15",
"The content attribute should containt the previously set value");
element.setAttribute('size', 0);
is(element.size, 0,
"0 should be considered as a valid value");
is(element.getAttribute('size'), "0",
"The content attribute should containt the previously set value");
element.setAttribute('size', 2147483647); /* PR_INT32_MAX */
is(element.size, 2147483647,
"PR_INT32_MAX should be considered as a valid value");
is(element.getAttribute('size'), "2147483647",
"The content attribute should containt the previously set value");
element.setAttribute('size', -2147483648); /* PR_INT32_MIN */
is(element.size, defaultValue,
"The reflecting IDL attribute should return the default value when content attribute value is invalid");
is(element.getAttribute('size'), "-2147483648",
"The content attribute should containt the previously set value");
element.setAttribute('size', 'non-numerical-value');
is(element.size, defaultValue,
"The reflecting IDL attribute should return the default value when content attribute value is invalid");
is(element.getAttribute('size'), 'non-numerical-value',
"The content attribute should containt the previously set value");
element.setAttribute('size', 4294967294); /* PR_INT32_MAX * 2 */
is(element.size, defaultValue,
"Value greater than PR_INT32_MAX should be considered as invalid");
is(element.getAttribute('size'), "4294967294",
"The content attribute should containt the previously set value");
element.setAttribute('size', -4294967296); /* PR_INT32_MIN * 2 */
is(element.size, defaultValue,
"The reflecting IDL attribute should return the default value when content attribute value is invalid");
is(element.getAttribute('size'), "-4294967296",
"The content attribute should containt the previously set value");
element.size = defaultValue + 1;
element.removeAttribute('size');
is(element.size, defaultValue,
"When the attribute is removed, the size should be the default size");
element.setAttribute('size', 'foobar');
is(element.size, defaultValue,
"The reflecting IDL attribute should return the default value when content attribute value is invalid");
element.removeAttribute('size');
is(element.size, defaultValue,
"When the attribute is removed, the size should be the default size");
}
function checkSetSizeException(element)
{
var caught = false;
try {
element.size = 1;
} catch(e) {
caught = true;
}
ok(!caught, "Setting a positive size shouldn't throw an exception");
caught = false;
try {
element.size = 0;
} catch(e) {
caught = true;
}
ok(!caught, "Setting a size to 0 from the IDL shouldn't throw an exception");
element.size = 1;
caught = false;
try {
element.size = -1;
} catch(e) {
caught = true;
}
ok(!caught, "Setting a negative size from the IDL shouldn't throw an exception");
is(element.size, 0, "The size should now be equal to the minimum non-negative value");
caught = false;
try {
element.setAttribute('size', -10);
} catch(e) {
caught = true;
}
ok(!caught, "Setting an invalid size in the content attribute shouldn't throw an exception");
// reverting to defalut
element.removeAttribute('size');
}
function checkSizeWhenChangeMultiple(element, aDefaultNonMultiple, aDefaultMultiple)
{
s.setAttribute('size', -1)
is(s.size, aDefaultNonMultiple, "Size IDL attribute should be 1");
s.multiple = true;
is(s.size, aDefaultMultiple, "Size IDL attribute should be 4");
is(s.getAttribute('size'), "-1", "Size content attribute should be -1");
s.setAttribute('size', -2);
is(s.size, aDefaultMultiple, "Size IDL attribute should be 4");
s.multiple = false;
is(s.size, aDefaultNonMultiple, "Size IDL attribute should be 1");
is(s.getAttribute('size'), "-2", "Size content attribute should be -2");
}
var s = document.getElementById('s');
checkSizeReflection(s, 0);
checkSetSizeException(s);
s.setAttribute('multiple', 'true');
checkSizeReflection(s, 0);
checkSetSizeException(s);
s.removeAttribute('multiple');
checkSizeWhenChangeMultiple(s, 0, 0);
</script>
</pre>
</body>
</html>
|