| Index: third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.cap.valid.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.cap.valid.html b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.cap.valid.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..16a4f48d21070fd1bf51210842b3d7527e053900
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/offscreen-canvas/line-styles/2d.line.cap.valid.html
|
| @@ -0,0 +1,29 @@
|
| +<!DOCTYPE html>
|
| +<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. -->
|
| +<title>OffscreenCanvas test: 2d.line.cap.valid</title>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<script src="/common/canvas-tests.js"></script>
|
| +
|
| +<h1>2d.line.cap.valid</h1>
|
| +<p class="desc">Setting lineCap to valid values works</p>
|
| +
|
| +
|
| +<script>
|
| +var t = async_test("Setting lineCap to valid values works");
|
| +t.step(function() {
|
| +
|
| +var offscreenCanvas = new OffscreenCanvas(100, 50);
|
| +var ctx = offscreenCanvas.getContext('2d');
|
| +
|
| +ctx.lineCap = 'butt'
|
| +_assertSame(ctx.lineCap, 'butt', "ctx.lineCap", "'butt'");
|
| +ctx.lineCap = 'round';
|
| +_assertSame(ctx.lineCap, 'round', "ctx.lineCap", "'round'");
|
| +ctx.lineCap = 'square';
|
| +_assertSame(ctx.lineCap, 'square', "ctx.lineCap", "'square'");
|
| +
|
| +t.done();
|
| +
|
| +});
|
| +</script>
|
|
|