mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
25 lines
746 B
HTML
25 lines
746 B
HTML
<!DOCTYPE html>
|
|
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
|
<title>OffscreenCanvas test: 2d.getcontext.exists</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/common/canvas-tests.js"></script>
|
|
|
|
<h1>2d.getcontext.exists</h1>
|
|
<p class="desc">The 2D context is implemented</p>
|
|
|
|
|
|
<script>
|
|
var t = async_test("The 2D context is implemented");
|
|
t.step(function() {
|
|
|
|
var offscreenCanvas = new OffscreenCanvas(100, 50);
|
|
var ctx = offscreenCanvas.getContext('2d');
|
|
|
|
var offscreenCanvas2 = new OffscreenCanvas(100, 50);
|
|
_assertDifferent(offscreenCanvas2.getContext('2d'), null, "offscreenCanvas2.getContext('2d')", "null");
|
|
|
|
t.done();
|
|
|
|
});
|
|
</script>
|