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 /dom/tests/mochitest/chrome/test_clipboard_events_chrome.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 'dom/tests/mochitest/chrome/test_clipboard_events_chrome.html')
-rw-r--r-- | dom/tests/mochitest/chrome/test_clipboard_events_chrome.html | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/dom/tests/mochitest/chrome/test_clipboard_events_chrome.html b/dom/tests/mochitest/chrome/test_clipboard_events_chrome.html new file mode 100644 index 0000000000..0c67d5e280 --- /dev/null +++ b/dom/tests/mochitest/chrome/test_clipboard_events_chrome.html @@ -0,0 +1,60 @@ +<html> +<body onload="runTest()"> + +<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> +<script src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script> + +<script> +// This test checks that the dom.event.clipboardevents.enabled does not apply to chrome shells. + +SimpleTest.waitForExplicitFinish(); +function runTest() +{ + SpecialPowers.pushPrefEnv({"set": [['dom.event.clipboardevents.enabled', false]]}, function() { + window.openDialog("file_clipboard_events_chrome.html", "_blank", "chrome,width=200,height=200,noopener", window); + }); +} + +var event_fired = false; + +function doChecks(win) +{ + var windowFocused = function() { + var textbox = win.document.getElementById("i"); + textbox.value = "Sample Text"; + + textbox.oncut = function() { event_fired = true; }; + textbox.oncopy = function() { event_fired = true; }; + textbox.onpaste = function() { event_fired = true; }; + + textbox.select(); + textbox.focus(); + + textbox.setSelectionRange(1, 4); + synthesizeKey("x", {accelKey: 1}, win); + is(textbox.value, "Sle Text", "cut changed text when preference is disabled"); + ok(event_fired, "cut event fired when preference is disabled") + + event_fired = false; + textbox.setSelectionRange(4, 6); + synthesizeKey("c", {accelKey: 1}, win); + is(textbox.value, "Sle Text", "cut changed text when preference is disabled"); + ok(event_fired, "copy event fired when preference is disabled") + + event_fired = false; + textbox.setSelectionRange(1, 4); + synthesizeKey("v", {accelKey: 1}, win); + is(textbox.value, "STeText", "paste changed text when preference is disabled"); + ok(event_fired, "paste event fired when preference is disabled") + + win.close(); + SimpleTest.finish(); + } + + SimpleTest.waitForFocus(windowFocused, win); +} + +</script> + +<p id="display"></p> +</body></html> |