1
0
Fork 0
firefox/dom/html/test/test_input_file_cancel_event.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

45 lines
1.2 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Test for the input type=file cancel event</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<input type=file></input>
<script>
SimpleTest.waitForExplicitFinish();
var MockFilePicker = SpecialPowers.MockFilePicker;
MockFilePicker.init(SpecialPowers.wrap(window).browsingContext);
MockFilePicker.useBlobFile();
MockFilePicker.returnValue = MockFilePicker.returnCancel;
let input = document.querySelector('input[type=file]');
input.addEventListener('cancel', event => {
ok(true, "cancel event correctly sent");
is(event.target, input, "Has correct event target");
is(event.isTrusted, true, "Event is trusted");
is(event.bubbles, true, "Event bubbles");
is(event.cancelable, false, "Event is not cancelable");
is(event.composed, false, "Event is not composed");
SimpleTest.executeSoon(function() {
MockFilePicker.cleanup();
SimpleTest.finish();
});
});
input.addEventListener('change' , () => {
ok(false, "unexpected change event");
})
SpecialPowers.wrap(document).notifyUserGestureActivation();
input.click();
</script>
</body>
</html>