summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/forms/constraints/input-maxlength-emoji.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/html/semantics/forms/constraints/input-maxlength-emoji.html')
-rw-r--r--testing/web-platform/tests/html/semantics/forms/constraints/input-maxlength-emoji.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/semantics/forms/constraints/input-maxlength-emoji.html b/testing/web-platform/tests/html/semantics/forms/constraints/input-maxlength-emoji.html
new file mode 100644
index 0000000000..068abad936
--- /dev/null
+++ b/testing/web-platform/tests/html/semantics/forms/constraints/input-maxlength-emoji.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<meta charset="utf-8">
+<title>Tests pasting an emoji in a text field with a maxlength attribute</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<link rel="help" href="https://bugs.webkit.org/show_bug.cgi?id=252900">
+<input id="target" type="text" maxlength="10" />
+<script>
+test(function() {
+ let target = document.getElementById("target");
+ target.focus();
+ document.execCommand("InsertHTML", false, "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ");
+ assert_equals(target.value, "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€");
+}, "Emoji gets truncated due to maxlength attribute");
+</script>