https://github.com/web-platform-tests/wpt
Raw File
Tip revision: e05234ad84e251d939a0b71754b23b6b5392ad8b authored by moz-wptsync-bot on 14 March 2018, 18:17:10 UTC
Make slot assignment sound with layout after bug 1409975.
Tip revision: e05234a
lock-bad-argument.html
<!DOCTYPE html>
<html>
<body>
<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,
    ["portrait-primary", "landscape-primary"],
  ];
  const promisesToReject = invalid_lock_types.map(type =>
    promise_rejects(t, new TypeError(), screen.orientation.lock(type))
  );
  return Promise.all(promisesToReject);
}, "screen.orientation.lock() must throw given invalid input.");

promise_test(t => {
  return promise_rejects(t, new TypeError(), screen.orientation.lock());
}, "screen.orientation.lock() must throw when the input is missing.");
</script>
</body>
</html>

back to top