diff options
Diffstat (limited to 'testing/web-platform/tests/2dcontext/shadows/2d.shadow.blur.low-manual.html')
-rw-r--r-- | testing/web-platform/tests/2dcontext/shadows/2d.shadow.blur.low-manual.html | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/testing/web-platform/tests/2dcontext/shadows/2d.shadow.blur.low-manual.html b/testing/web-platform/tests/2dcontext/shadows/2d.shadow.blur.low-manual.html deleted file mode 100644 index 548db5c5e..000000000 --- a/testing/web-platform/tests/2dcontext/shadows/2d.shadow.blur.low-manual.html +++ /dev/null @@ -1,39 +0,0 @@ -<!DOCTYPE html> -<!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> -<title>Canvas test: 2d.shadow.blur.low</title> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/common/canvas-tests.js"></script> -<link rel="stylesheet" href="/common/canvas-tests.css"> -<body class="show_output"> - -<h1>2d.shadow.blur.low</h1> -<p class="desc">Shadows look correct for small blurs</p> - - -<p class="output">Actual output:</p> -<canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas> -<p class="output expectedtext">Expected output:<p><img src="2d.shadow.blur.low.png" class="output expected" id="expected" alt=""> -<ul id="d"></ul> -<script> -var t = async_test("Shadows look correct for small blurs"); -_addTest(function(canvas, ctx) { - -ctx.fillStyle = '#ff0'; -ctx.fillRect(0, 0, 100, 50); -ctx.shadowColor = '#00f'; -ctx.shadowOffsetY = 25; -for (var x = 0; x < 100; ++x) { - ctx.save(); - ctx.beginPath(); - ctx.rect(x, 0, 1, 50); - ctx.clip(); - ctx.shadowBlur = x; - ctx.fillRect(-200, -200, 500, 200); - ctx.restore(); -} - - -}); -</script> - |