https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7a3894d75f6a5ebb50287e0af52744d5dd0df10b authored by Luke Bjerring on 17 May 2018, 17:45:58 UTC
Include attribute types in dep list
Tip revision: 7a3894d
2d.pattern.image.string.worker.js
// DO NOT EDIT! This test has been generated by tools/gentest.py.
// OffscreenCanvas test in a worker:2d.pattern.image.string
// Description:
// Note:

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

var t = async_test("");
t.step(function() {

var offscreenCanvas = new OffscreenCanvas(100, 50);
var ctx = offscreenCanvas.getContext('2d');

assert_throws(new TypeError(), function() { ctx.createPattern('../images/red.png', 'repeat'); });

t.done();

});
done();
back to top