https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 18fb4e01f0093e384c9c10fdd54a0f75f242b204 authored by Greg Whitworth on 28 June 2017, 01:37:45 UTC
Made changes based on analysis of tests that were <= 5 tests to a given url hash in flex
Tip revision: 18fb4e0
2d.drawImage.wrongtype.worker.js
// DO NOT EDIT! This test has been generated by tools/gentest.py.
// OffscreenCanvas test in a worker:2d.drawImage.wrongtype
// Description:Incorrect image types in drawImage do not match any defined overloads, so WebIDL throws a TypeError
// Note:

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

var t = async_test("Incorrect image types in drawImage do not match any defined overloads, so WebIDL throws a TypeError");
t.step(function() {

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

assert_throws(new TypeError(), function() { ctx.drawImage(undefined, 0, 0); });
assert_throws(new TypeError(), function() { ctx.drawImage(0, 0, 0); });
assert_throws(new TypeError(), function() { ctx.drawImage("", 0, 0); });

t.done();

});
done();
back to top