| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> | |
| 3 <title>OffscreenCanvas test: 2d.path.arc.twopie.2</title> | |
| 4 <script src="/resources/testharness.js"></script> | |
| 5 <script src="/resources/testharnessreport.js"></script> | |
| 6 <script src="/common/canvas-tests.js"></script> | |
| 7 | |
| 8 <h1>2d.path.arc.twopie.2</h1> | |
| 9 <p class="desc">arc() draws a full circle when end = start + 2pi-e and clockwise
</p> | |
| 10 | |
| 11 | |
| 12 <script> | |
| 13 var t = async_test("arc() draws a full circle when end = start + 2pi-e and clock
wise"); | |
| 14 t.step(function() { | |
| 15 | |
| 16 var offscreenCanvas = new OffscreenCanvas(100, 50); | |
| 17 var ctx = offscreenCanvas.getContext('2d'); | |
| 18 | |
| 19 ctx.fillStyle = '#f00'; | |
| 20 ctx.fillRect(0, 0, 100, 50); | |
| 21 ctx.strokeStyle = '#0f0'; | |
| 22 ctx.lineWidth = 100; | |
| 23 ctx.beginPath(); | |
| 24 ctx.arc(50, 25, 50, 0, 2*Math.PI - 1e-4, false); | |
| 25 ctx.stroke(); | |
| 26 _assertPixel(offscreenCanvas, 50,20, 0,255,0,255, "50,20", "0,255,0,255"); | |
| 27 | |
| 28 t.done(); | |
| 29 | |
| 30 }); | |
| 31 </script> | |
| OLD | NEW |