1 <!DOCTYPE HTML PUBLIC
"-//IETF//DTD HTML//EN">
4 <script src=
"../../resources/js-test.js"></script>
7 <p id=
"description"></p>
8 <div id=
"console"></div>
10 description('Tests that setting the .length of an HTMLSelectElement correctly creates and destroys options.');
12 var sel
= document
.createElement('select');
13 document
.body
.appendChild(sel
);
15 shouldBe('sel.length', '0');
18 shouldBe('sel.length', '200');
21 shouldBe('sel.length', '100');
24 shouldBe('sel.length', '180');