diff options
Diffstat (limited to 'editor/reftests/1443902-1.html')
-rw-r--r-- | editor/reftests/1443902-1.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/editor/reftests/1443902-1.html b/editor/reftests/1443902-1.html new file mode 100644 index 0000000000..e6c133d0a4 --- /dev/null +++ b/editor/reftests/1443902-1.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> +<head> +<script> +function init() +{ + document.getElementById("t1").focus(); + document.getElementById("t1").setSelectionRange(4, 4); + document.getElementById("t1").setAttribute("contentEditable", "false"); +} +</script> +</head> +<body onload="init()"> +<textarea id=t1 contenteditable=true>ABCD</textarea> +</body> +</html> |