function runTests()
{ vartextarea = document.getElementById('i');
textarea.firstChild.nodeValue = "bar";
is(textarea.value, textarea.firstChild.nodeValue, "textarea value should be firstChild.nodeValue");
is(textarea.defaultValue, textarea.firstChild.nodeValue, "textarea defaultValue should be firstChild.nodeValue");
textarea.style.display = 'none';
SimpleTest.executeSoon(function() { textarea.firstChild.nodeValue = "tulip";
is(textarea.value, textarea.firstChild.nodeValue, "textarea value should be firstChild.nodeValue");
is(textarea.defaultValue, textarea.firstChild.nodeValue, "textarea defaultValue should be firstChild.nodeValue");
SimpleTest.finish();
});
}
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.