OLD | NEW |
1 <card id="edit" contentEditable="true">A<script> | 1 <card id="edit" contentEditable="true">A<script> |
2 if (window.layoutTestController) | 2 if (window.layoutTestController) |
3 layoutTestController.dumpAsText(); | 3 layoutTestController.dumpAsText(); |
4 | 4 |
5 edit.focus(); | 5 edit.focus(); |
6 document.execCommand("SelectAll"); | 6 document.execCommand("SelectAll"); |
7 document.execCommand("RemoveFormat"); | 7 document.execCommand("RemoveFormat"); |
8 | 8 |
9 document.writeln('execCommand("RemoveFormat") was crashing when there is no encl
osing block.<br>'); | 9 document.writeln('execCommand("RemoveFormat") was crashing when there is no encl
osing block.<br>'); |
10 document.writeln('The test has passed if it does not crash.<br><br>') | 10 document.writeln('The test has passed if it does not crash.<br><br>') |
11 document.writeln('PASS'); | 11 document.writeln('PASS'); |
12 </script> | 12 </script> |
OLD | NEW |