Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Unified Diff: LayoutTests/fast/canvas/script-tests/canvas-draw-canvas-on-canvas-shadow.js

Issue 23102018: Refactoring DrawLooper so that it can apply shadow effects as skia image filters (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Adding missing adoptRefs Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/canvas/script-tests/canvas-draw-canvas-on-canvas-shadow.js
diff --git a/LayoutTests/fast/canvas/script-tests/canvas-draw-canvas-on-canvas-shadow.js b/LayoutTests/fast/canvas/script-tests/canvas-draw-canvas-on-canvas-shadow.js
index 79c813743e27dae3ef278f06c0d90dd31a4515b3..ca7d48fbb19425385682687a761a533cca54ab76 100644
--- a/LayoutTests/fast/canvas/script-tests/canvas-draw-canvas-on-canvas-shadow.js
+++ b/LayoutTests/fast/canvas/script-tests/canvas-draw-canvas-on-canvas-shadow.js
@@ -19,7 +19,7 @@ function shouldBeAround(a, b)
evalA = e;
}
- if (Math.abs(evalA - b) < 15)
+ if (Math.abs(evalA - b) < 20)
print("PASS " + a + " is around " + b , "green")
else
print("FAIL " + a + " is not around " + b + " (actual: " + evalA + ")", "red");

Powered by Google App Engine
This is Rietveld 408576698