https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 638ed72053ec83d65076325790b7c618bf3a88dc authored by Geoffrey Sneddon on 26 September 2018, 10:38:29 UTC
Revert "Make wptrunner chrome always use the WebDriver executor (#13200)"
Tip revision: 638ed72
2d.strokeRect.basic.worker.js
// DO NOT EDIT! This test has been generated by tools/gentest.py.
// OffscreenCanvas test in a worker:2d.strokeRect.basic
// Description:strokeRect works
// Note:

importScripts("/resources/testharness.js");
importScripts("/common/canvas-tests.js");

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();

});
done();
back to top