for (var data of testData) { var e = document.createElement('input');
e.type = data;
e.checked = true;
e.value = "foo";
is(e.value, "foo", "foo should be the new " + data + "value");
is(e.getAttribute('value'), "foo", "foo should be the new " + data + " value attribute value");
ok(e.checked, data + " should still be checked");
}
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.