diff options
Diffstat (limited to 'testing/web-platform/tests/uievents/textInput/smiley-manual.html')
-rw-r--r-- | testing/web-platform/tests/uievents/textInput/smiley-manual.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/uievents/textInput/smiley-manual.html b/testing/web-platform/tests/uievents/textInput/smiley-manual.html new file mode 100644 index 0000000000..7781f6e1b0 --- /dev/null +++ b/testing/web-platform/tests/uievents/textInput/smiley-manual.html @@ -0,0 +1,17 @@ +<!doctype html> +<meta charset=utf-8> +<title>textInput: smiley (manual)</title> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<style> +[contenteditable] { border: thin inset silver; } +</style> +<p>Type "🙂" into each text field below.</p> +<input class=test-el> +<textarea class=test-el></textarea> +<div contenteditable=true class=test-el></div> +<script> +setup({ explicit_timeout: true }); +</script> +<script src="support/common.js"></script> +<script src="support/basic.sub.js?key=🙂&selectionStart=0&selectionEnd=0&expectedValue=🙂"></script> |