summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_drag_image_file.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /dom/events/test/test_drag_image_file.html
parentInitial commit. (diff)
downloadthunderbird-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/events/test/test_drag_image_file.html')
-rw-r--r--dom/events/test/test_drag_image_file.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/dom/events/test/test_drag_image_file.html b/dom/events/test/test_drag_image_file.html
new file mode 100644
index 0000000000..13e6996693
--- /dev/null
+++ b/dom/events/test/test_drag_image_file.html
@@ -0,0 +1,56 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>Test that dragging an image produces a File</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"/>
+</head>
+<body>
+
+<img id="green-png" src="green.png">
+
+<script>
+async function runTest() {
+ await SpecialPowers.pushPrefEnv({
+ set: [["dom.events.dataTransfer.imageAsFile.enabled", true]],
+ });
+
+ let dt = await synthesizePlainDragAndCancel({
+ srcElement: document.getElementById('green-png'),
+ finalY: 20,
+ }, null);
+
+ info(`DataTransfer types: ${dt.types}`);
+
+ for (let type of dt.types) {
+ info(`getData(${type}) = ${dt.getData(type)}`)
+ }
+
+ ok(dt.types.includes("Files"), "types should contains 'Files'");
+ is(dt.files.length, 1, "files contains one File");
+
+ let fileItem = null;
+ for (let item of dt.items) {
+ if (item.kind === "file") {
+ fileItem = item;
+ break;
+ }
+ }
+
+ is(fileItem.kind, "file", "Is a file");
+ is(fileItem.type, "image/png", "Is a PNG file");
+
+ let file = fileItem.getAsFile();
+ is(file.name, "image.png", "Has generic image name")
+ ok(file.size > 100, "Is not empty");
+
+ SimpleTest.finish();
+}
+
+SimpleTest.waitForExplicitFinish();
+SimpleTest.waitForFocus(runTest);
+</script>
+</body>
+</html>