| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/size.attributes.parse.onlyspace.worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/size.attributes.parse.onlyspace.worker.js b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/size.attributes.parse.onlyspace.worker.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5f0e67e2bb0a336111345b6a5483e946d08f35ff
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/the-offscreen-canvas/size.attributes.parse.onlyspace.worker.js
|
| @@ -0,0 +1,21 @@
|
| +// DO NOT EDIT! This test has been generated by tools/gentest.py.
|
| +// OffscreenCanvas test in a worker:size.attributes.parse.onlyspace
|
| +// Description:Parsing of non-negative integers
|
| +// Note:
|
| +
|
| +importScripts("/resources/testharness.js");
|
| +importScripts("/common/canvas-tests.js");
|
| +
|
| +var t = async_test("Parsing of non-negative integers");
|
| +t.step(function() {
|
| +
|
| +var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| +var ctx = offscreenCanvas.getContext('2d');
|
| +
|
| +_assertSame(offscreenCanvas.width, 300, "offscreenCanvas.width", "300");
|
| +_assertSame(offscreenCanvas.height, 150, "offscreenCanvas.height", "150");
|
| +
|
| +t.done();
|
| +
|
| +});
|
| +done();
|
|
|