diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /layout/base/tests/bug613807-1.html | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/base/tests/bug613807-1.html | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/layout/base/tests/bug613807-1.html b/layout/base/tests/bug613807-1.html new file mode 100644 index 0000000000..79592fed7a --- /dev/null +++ b/layout/base/tests/bug613807-1.html @@ -0,0 +1,90 @@ +<!DOCTYPE HTML> +<html> +<head> + <script src="/tests/SimpleTest/EventUtils.js"></script> +</head> +<body> +<textarea id="t" rows="4" style="-moz-appearance: none"></textarea> +<script> + if (typeof(addLoadEvent) == 'undefined') { + _newCallStack = function(path) { + var rval = function () { + var callStack = arguments.callee.callStack; + for (var i = 0; i < callStack.length; i++) { + if (callStack[i].apply(this, arguments) === false) { + break; + } + } + try { + this[path] = null; + } catch (e) { + // pass + } + }; + rval.callStack = []; + return rval; + }; + function addLoadEvent(func) { + var existing = window.onload; + var regfunc = existing; + if (!(typeof(existing) == 'function' + && typeof(existing.callStack) == "object" + && existing.callStack !== null)) { + regfunc = _newCallStack("onload"); + if (typeof(existing) == 'function') { + regfunc.callStack.push(existing); + } + window.onload = regfunc; + } + regfunc.callStack.push(func); + }; + } + + addLoadEvent(function() { + var area = document.getElementById('t'); + area.focus(); + + var domWindowUtils = SpecialPowers.getDOMWindowUtils(window); + + // input raw characters + synthesizeCompositionChange( + { composition: + { string: "\u306D", + clauses: [ + { length: 1, attr: COMPOSITION_ATTR_RAW_CLAUSE } + ] + }, + caret: { start: 1, length: 0 } + }); + synthesizeCompositionChange( + { composition: + { string: "\u306D\u3053", + clauses: [ + { length: 2, attr: COMPOSITION_ATTR_RAW_CLAUSE } + ] + }, + caret: { start: 2, length: 0 } + }); + + // convert + synthesizeCompositionChange( + { composition: + { string: "\u732B", + clauses: [ + { length: 1, attr: COMPOSITION_ATTR_SELECTED_CLAUSE } + ] + }, + caret: { start: 1, length: 0 } + }); + + // commit + synthesizeComposition({ type: "compositioncommitasis" }); + + document.body.clientWidth; + + // undo + synthesizeKey("Z", {accelKey: true}); + }); +</script> +</body> +</html> |