blob: 8a542081479a9bfe124798b803ea7b469c74a45f [file] [log] [blame]
<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
<title>OffscreenCanvas test: context.unrecognised.unicode</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/2dcontext/resources/canvas-tests.js"></script>
<h1>context.unrecognised.unicode</h1>
<p class="desc">Context name which kind of looks like "2d" is unrecognised</p>
<script>
var t = async_test("Context name which kind of looks like \"2d\" is unrecognised");
t.step(function() {
var offscreenCanvas = new OffscreenCanvas(100, 50);
var ctx = offscreenCanvas.getContext('2d');
var offscreenCanvas2 = new OffscreenCanvas(100, 50);
assert_throws(new TypeError(), function() { offscreenCanvas2.getContext("2\uFF44"); });
t.done();
});
</script>