blob: c9a48ef85e7640c42909e961dc064afa45c98299 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<body onload="runTest();">
<script>
testRunner.dumpAsText();
function runTest()
{
document.open();
textInputController.firstRectForCharacterRange(0, 0);
document.write("Accessing a frame without an editable element should not crash.");
document.write("<br/><br/>");
document.write("PASS (no crash).");
}
</script>
</body>
</html>
|