/** Test for Bug 1250401 **/
function test_add() { varselect = document.createElement("select");
var g1 = document.createElement("optgroup"); var o1 = document.createElement("option");
g1.appendChild(o1); select.appendChild(g1);
var g2 = document.createElement("optgroup"); var o2 = document.createElement("option");
g2.appendChild(o2); select.add(g2, 0);
is(select.children.length, 1, "Select has 1 item");
is(select.firstChild, g1, "First item is g1");
is(select.firstChild.children.length, 2, "g2 has 2 children");
is(select.firstChild.children[0], g2, "g1 has 2 children: g2");
is(select.firstChild.children[1], o1, "g1 has 2 children: o1");
is(o1.index, 0, "o1.index should be 0");
is(o2.index, 0, "o2.index should be 0");
}
function test_append() { varselect = document.createElement("select");
var g1 = document.createElement("optgroup"); var o1 = document.createElement("option");
g1.appendChild(o1); select.appendChild(g1);
var g2 = document.createElement("optgroup"); var o2 = document.createElement("option");
g2.appendChild(o2);
g1.appendChild(g2);
is(select.children.length, 1, "Select has 1 item");
is(select.firstChild, g1, "First item is g1");
is(select.firstChild.children.length, 2, "g2 has 2 children");
is(select.firstChild.children[0], o1, "g1 has 2 children: o1");
is(select.firstChild.children[1], g2, "g1 has 2 children: g1");
is(o1.index, 0, "o1.index should be 0");
is(o2.index, 0, "o2.index should be 0");
}
function test_no_select() { var g1 = document.createElement("optgroup"); var o1 = document.createElement("option");
g1.appendChild(o1);
var g2 = document.createElement("optgroup"); var o2 = document.createElement("option");
g2.appendChild(o2);
g1.appendChild(g2);
is(g1.children.length, 2, "g2 has 2 children");
is(g1.children[0], o1, "g1 has 2 children: o1");
is(g1.children[1], g2, "g1 has 2 children: g1");
is(o1.index, 0, "o1.index should be 0");
is(o2.index, 0, "o2.index should be 0");
}
function test_no_parent() { var o1 = document.createElement("option"); var o2 = document.createElement("option");
is(o1.index, 0, "o1.index should be 0");
is(o2.index, 0, "o2.index should be 0");
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.