1
0
Fork 0
firefox/testing/web-platform/tests/screen-orientation/lock-bad-argument.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

26 lines
734 B
HTML

<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
promise_test(t => {
const invalid_lock_types = [
"invalid-orientation",
null,
undefined,
123,
window,
"",
true,
["portrait-primary", "landscape-primary"],
];
const promisesToReject = invalid_lock_types.map(type =>
promise_rejects_js(t, TypeError, screen.orientation.lock(type))
);
return Promise.all(promisesToReject);
}, "screen.orientation.lock() must throw given invalid input.");
promise_test(t => {
return promise_rejects_js(t, TypeError, screen.orientation.lock());
}, "screen.orientation.lock() must throw when the input is missing.");
</script>