mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
29 lines
887 B
JavaScript
29 lines
887 B
JavaScript
// DO NOT EDIT! This test has been generated by tools/gentest.py.
|
|
// OffscreenCanvas test in a worker:2d.text.draw.kern.consistent
|
|
// Description:Stroked and filled text should have exactly the same kerning so it overlaps
|
|
// Note:
|
|
|
|
importScripts("/resources/testharness.js");
|
|
importScripts("/common/canvas-tests.js");
|
|
|
|
var t = async_test("Stroked and filled text should have exactly the same kerning so it overlaps");
|
|
t.step(function() {
|
|
|
|
var offscreenCanvas = new OffscreenCanvas(100, 50);
|
|
var ctx = offscreenCanvas.getContext('2d');
|
|
|
|
ctx.fillStyle = '#0f0';
|
|
ctx.fillRect(0, 0, 100, 50);
|
|
ctx.fillStyle = '#f00';
|
|
ctx.strokeStyle = '#0f0';
|
|
ctx.lineWidth = 3;
|
|
ctx.font = '20px Arial, sans-serif';
|
|
ctx.fillText('VAVAVAVAVAVAVA', -50, 25);
|
|
ctx.fillText('ToToToToToToTo', -50, 45);
|
|
ctx.strokeText('VAVAVAVAVAVAVA', -50, 25);
|
|
ctx.strokeText('ToToToToToToTo', -50, 45);
|
|
|
|
t.done();
|
|
|
|
});
|
|
done();
|