| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.arcTo.nonfinite.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.arcTo.nonfinite.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.arcTo.nonfinite.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2226f57139ba0258dfb80cda0e45098c008a86d8
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/path-objects/2d.path.arcTo.nonfinite.html
|
| @@ -0,0 +1,72 @@
|
| +<!DOCTYPE html>
|
| +<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
| +<title>OffscreenCanvas test: 2d.path.arcTo.nonfinite</title>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<script src="/common/canvas-tests.js"></script>
|
| +
|
| +<h1>2d.path.arcTo.nonfinite</h1>
|
| +<p class="desc">arcTo() with Infinity/NaN is ignored</p>
|
| +
|
| +
|
| +<script>
|
| +var t = async_test("arcTo() with Infinity/NaN is ignored");
|
| +t.step(function() {
|
| +
|
| +var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| +var ctx = offscreenCanvas.getContext('2d');
|
| +
|
| +ctx.moveTo(0, 0);
|
| +ctx.lineTo(100, 0);
|
| +ctx.arcTo(Infinity, 50, 0, 50, 0);
|
| +ctx.arcTo(-Infinity, 50, 0, 50, 0);
|
| +ctx.arcTo(NaN, 50, 0, 50, 0);
|
| +ctx.arcTo(0, Infinity, 0, 50, 0);
|
| +ctx.arcTo(0, -Infinity, 0, 50, 0);
|
| +ctx.arcTo(0, NaN, 0, 50, 0);
|
| +ctx.arcTo(0, 50, Infinity, 50, 0);
|
| +ctx.arcTo(0, 50, -Infinity, 50, 0);
|
| +ctx.arcTo(0, 50, NaN, 50, 0);
|
| +ctx.arcTo(0, 50, 0, Infinity, 0);
|
| +ctx.arcTo(0, 50, 0, -Infinity, 0);
|
| +ctx.arcTo(0, 50, 0, NaN, 0);
|
| +ctx.arcTo(0, 50, 0, 50, Infinity);
|
| +ctx.arcTo(0, 50, 0, 50, -Infinity);
|
| +ctx.arcTo(0, 50, 0, 50, NaN);
|
| +ctx.arcTo(Infinity, Infinity, 0, 50, 0);
|
| +ctx.arcTo(Infinity, Infinity, Infinity, 50, 0);
|
| +ctx.arcTo(Infinity, Infinity, Infinity, Infinity, 0);
|
| +ctx.arcTo(Infinity, Infinity, Infinity, Infinity, Infinity);
|
| +ctx.arcTo(Infinity, Infinity, Infinity, 50, Infinity);
|
| +ctx.arcTo(Infinity, Infinity, 0, Infinity, 0);
|
| +ctx.arcTo(Infinity, Infinity, 0, Infinity, Infinity);
|
| +ctx.arcTo(Infinity, Infinity, 0, 50, Infinity);
|
| +ctx.arcTo(Infinity, 50, Infinity, 50, 0);
|
| +ctx.arcTo(Infinity, 50, Infinity, Infinity, 0);
|
| +ctx.arcTo(Infinity, 50, Infinity, Infinity, Infinity);
|
| +ctx.arcTo(Infinity, 50, Infinity, 50, Infinity);
|
| +ctx.arcTo(Infinity, 50, 0, Infinity, 0);
|
| +ctx.arcTo(Infinity, 50, 0, Infinity, Infinity);
|
| +ctx.arcTo(Infinity, 50, 0, 50, Infinity);
|
| +ctx.arcTo(0, Infinity, Infinity, 50, 0);
|
| +ctx.arcTo(0, Infinity, Infinity, Infinity, 0);
|
| +ctx.arcTo(0, Infinity, Infinity, Infinity, Infinity);
|
| +ctx.arcTo(0, Infinity, Infinity, 50, Infinity);
|
| +ctx.arcTo(0, Infinity, 0, Infinity, 0);
|
| +ctx.arcTo(0, Infinity, 0, Infinity, Infinity);
|
| +ctx.arcTo(0, Infinity, 0, 50, Infinity);
|
| +ctx.arcTo(0, 50, Infinity, Infinity, 0);
|
| +ctx.arcTo(0, 50, Infinity, Infinity, Infinity);
|
| +ctx.arcTo(0, 50, Infinity, 50, Infinity);
|
| +ctx.arcTo(0, 50, 0, Infinity, Infinity);
|
| +ctx.lineTo(100, 50);
|
| +ctx.lineTo(0, 50);
|
| +ctx.fillStyle = '#0f0';
|
| +ctx.fill();
|
| +_assertPixel(offscreenCanvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255");
|
| +_assertPixel(offscreenCanvas, 90,45, 0,255,0,255, "90,45", "0,255,0,255");
|
| +
|
| +t.done();
|
| +
|
| +});
|
| +</script>
|
|
|