5 testRunner
.dumpEditingCallbacks();
9 if (window
.testRunner
) {
10 testRunner
.waitUntilDone();
11 testRunner
.dumpAsText();
14 <script src=
"../editing.js"></script>
17 <div>Bug
9358: REGRESSION: Assertion failure in HTMLInputElement::setValueFromRenderer (value == constrainValue(value)) when deleting all text
</div>
18 <div><a href=
"https://bugs.webkit.org/show_bug.cgi?id=9358">https://bugs.webkit.org/show_bug.cgi?id=
9358</a></div>
21 Assertion fails when all characters are deleted:
<input type=
"text" id=
"t" value=
"X">
24 document
.getElementById("t").focus();
25 document
.execCommand("SelectAll");
26 document
.execCommand("Delete");
28 <div>SUCCESS if the test didn't crash and you see this message.
</div>
30 if (window
.testRunner
) {
31 testRunner
.notifyDone()