blob: 91f8798ffe2b7dfdbaeafad4ec0275ec50a7ad61 [file] [log] [blame]
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/canvas-tests.js"></script>
<link rel="help" href="https://html.spec.whatwg.org/#dom-offscreencanvas">
<script>
test(function() {
let offscreenCanvas = new OffscreenCanvas(100, 100);
assert_throws('InvalidStateError', () => { offscreenCanvas.transferToImageBitmap() });
}, "Test transferToImageBitmap.");
</script>