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

Unified Diff: LayoutTests/fast/canvas/create-pattern-does-not-crash.html

Issue 181693006: Refactoring source image usage in CanvasRenderingContext2D (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: applied last corrections Created 6 years, 9 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/create-pattern-does-not-crash.html
diff --git a/LayoutTests/fast/canvas/create-pattern-does-not-crash.html b/LayoutTests/fast/canvas/create-pattern-does-not-crash.html
deleted file mode 100644
index cbaf68013efcb0f50d8bed96d23e3e3a10a03893..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/canvas/create-pattern-does-not-crash.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<!DOCTYPE HTML>
-<canvas id="c"></canvas><br/>
-This test case ensures we don't crash when using canvas.createPattern
-<script>
-window.onload = function ()
-{
- if (window.testRunner)
- window.testRunner.dumpAsText();
- var canvas = document.getElementById('c');
- var ctx = canvas.getContext('2d');
- var p = ctx.createPattern(canvas, 'no-repeat');
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698