mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
40 lines
1 KiB
HTML
40 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
|
<title>OffscreenCanvas test: 2d.text.draw.stroke.unaffected</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/common/canvas-tests.js"></script>
|
|
|
|
<h1>2d.text.draw.stroke.unaffected</h1>
|
|
<p class="desc">strokeText does not start a new path or subpath</p>
|
|
|
|
|
|
<script>
|
|
var t = async_test("strokeText does not start a new path or subpath");
|
|
t.step(function() {
|
|
|
|
var offscreenCanvas = new OffscreenCanvas(100, 50);
|
|
var ctx = offscreenCanvas.getContext('2d');
|
|
|
|
ctx.fillStyle = '#f00';
|
|
ctx.fillRect(0, 0, 100, 50);
|
|
|
|
ctx.moveTo(0, 0);
|
|
ctx.lineTo(100, 0);
|
|
|
|
ctx.font = '35px Arial, sans-serif';
|
|
ctx.strokeStyle = '#f00';
|
|
ctx.strokeText('FAIL', 5, 35);
|
|
|
|
ctx.lineTo(100, 50);
|
|
ctx.lineTo(0, 50);
|
|
ctx.fillStyle = '#0f0';
|
|
ctx.fill();
|
|
|
|
_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
|
|
_assertPixel(offscreenCanvas, 5,45, 0,255,0,255, "5,45", "0,255,0,255");
|
|
|
|
t.done();
|
|
|
|
});
|
|
</script>
|