mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
27 lines
713 B
HTML
27 lines
713 B
HTML
<!DOCTYPE html>
|
|
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
|
<title>OffscreenCanvas test: 2d.strokeRect.basic</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/common/canvas-tests.js"></script>
|
|
|
|
<h1>2d.strokeRect.basic</h1>
|
|
<p class="desc">strokeRect works</p>
|
|
|
|
|
|
<script>
|
|
var t = async_test("strokeRect works");
|
|
t.step(function() {
|
|
|
|
var offscreenCanvas = new OffscreenCanvas(100, 50);
|
|
var ctx = offscreenCanvas.getContext('2d');
|
|
|
|
ctx.strokeStyle = '#0f0';
|
|
ctx.lineWidth = 50;
|
|
ctx.strokeRect(25, 24, 50, 2);
|
|
_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
|
|
|
|
t.done();
|
|
|
|
});
|
|
</script>
|