From aa40740e078c21f85613597ab1470f874265ea37 Mon Sep 17 00:00:00 2001 From: Serge Gautherie Date: Thu, 19 Mar 2009 00:59:32 +0100 Subject: [PATCH] Bug 483989 - 3 Mochitest test_2d.*.html run fine but need to check/report success; (Av1a) Add |ok(true, ...);|; r=vladimir --- content/canvas/test/test_2d.scaled.html | 3 ++- content/canvas/test/test_2d.shadow.blur.high.html | 3 ++- content/canvas/test/test_2d.shadow.blur.low.html | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/content/canvas/test/test_2d.scaled.html b/content/canvas/test/test_2d.scaled.html index b5b338d0c7c7..b82a635f5db6 100644 --- a/content/canvas/test/test_2d.scaled.html +++ b/content/canvas/test/test_2d.scaled.html @@ -19,8 +19,9 @@ ctx.fillRect(0, 0, 50, 25); ctx.fillStyle = '#0ff'; ctx.fillRect(0, 0, 25, 10); +todo(false, "test completed successfully"); // (Bug 483989) SimpleTest.finish(); }); - + diff --git a/content/canvas/test/test_2d.shadow.blur.high.html b/content/canvas/test/test_2d.shadow.blur.high.html index 9a37e7277bc9..bd432c0286e9 100644 --- a/content/canvas/test/test_2d.shadow.blur.high.html +++ b/content/canvas/test/test_2d.shadow.blur.high.html @@ -20,8 +20,9 @@ ctx.shadowOffsetY = 0; ctx.shadowBlur = 555.6; ctx.fillRect(-200, -200, 200, 400); +todo(false, "test completed successfully"); // (Bug 483989) SimpleTest.finish(); }); - + diff --git a/content/canvas/test/test_2d.shadow.blur.low.html b/content/canvas/test/test_2d.shadow.blur.low.html index 3419f90a1b31..34971a06f7e6 100644 --- a/content/canvas/test/test_2d.shadow.blur.low.html +++ b/content/canvas/test/test_2d.shadow.blur.low.html @@ -27,8 +27,8 @@ for (var x = 0; x < 100; ++x) { ctx.restore(); } +todo(false, "test completed successfully"); // (Bug 483989) SimpleTest.finish(); }); -