diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/generic/test/test_image_selection_2.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/generic/test/test_image_selection_2.html')
-rw-r--r-- | layout/generic/test/test_image_selection_2.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/layout/generic/test/test_image_selection_2.html b/layout/generic/test/test_image_selection_2.html new file mode 100644 index 0000000000..cd4ba578c4 --- /dev/null +++ b/layout/generic/test/test_image_selection_2.html @@ -0,0 +1,42 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=758179 +--> +<head> + <title>Test for Bug 758179</title> + <script src="/tests/SimpleTest/SimpleTest.js"></script> + <script src="/tests/SimpleTest/EventUtils.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> + <style> +#t1 { width:80px; height:60px; background:yellow; } +#t1.chosen #i1 { visibility:hidden; } + </style> +</head> +<body> +<div id="t1"> + <img id="i1" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAyAQMAAACQ%2B%2Bz9AAAAA1BMVEUA%2FwA0XsCoAAAAD0lEQVQoFWNgGAWjYGgCAAK8AAEb3eOQAAAAAElFTkSuQmCC"> +</div> + +<pre id="test"> +<script type="application/javascript"> +SimpleTest.waitForExplicitFinish(); +var selection = window.getSelection(); +var t1 = document.getElementById("t1"); + +function doTest() { + t1.addEventListener("mousedown", function() { + t1.className = "chosen"; + }); + t1.addEventListener("mouseup", function() { + ok(selection.isCollapsed, "checking that selection is collapsed"); + }); + synthesizeMouse(t1, 10, 10, {}); + SimpleTest.finish(); +} + +SimpleTest.waitForFocus(doTest); +</script> +</pre> +</body> +</html> |