diff options
Diffstat (limited to 'editor/reftests/1088158.html')
-rw-r--r-- | editor/reftests/1088158.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/editor/reftests/1088158.html b/editor/reftests/1088158.html new file mode 100644 index 0000000000..435aa3f638 --- /dev/null +++ b/editor/reftests/1088158.html @@ -0,0 +1,8 @@ +<!DOCTYPE html> +<script> + onload = function() { + var t = document.createElement('textarea'); + t.placeholder = "placeholder"; + document.body.appendChild(t.cloneNode(true)); + } +</script> |