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

Unified Diff: LayoutTests/fast/canvas/canvas-createImageBitmap-immutable-expected.html

Issue 19393004: Allow eviction of ImageBitmaps that are created from ImageElements. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix for assertion failure. 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/canvas-createImageBitmap-immutable-expected.html
diff --git a/LayoutTests/fast/canvas/canvas-createImageBitmap-immutable-expected.html b/LayoutTests/fast/canvas/canvas-createImageBitmap-immutable-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..6233c8c49d363fa3098df76b434dca096970b5c4
--- /dev/null
+++ b/LayoutTests/fast/canvas/canvas-createImageBitmap-immutable-expected.html
@@ -0,0 +1,21 @@
+<html>
+<body>
+<script>
+var canvas = document.createElement('canvas');
+canvas.setAttribute('width', '40');
+canvas.setAttribute('height', '30');
+var ctx = canvas.getContext('2d');
+document.body.appendChild(canvas);
+
+ctx.fillStyle = 'green';
+ctx.fillRect(0, 0, 10, 10);
+ctx.fillRect(11, 0, 10, 10);
+ctx.fillRect(22, 0, 10, 10);
+ctx.fillRect(0, 11, 10, 10);
+ctx.fillRect(11, 11, 10, 10);
+ctx.fillRect(22, 11, 10, 10);
+
+</script>
+<p>There should be 6 green squares displayed in a 2 row by 3 column grid.</p>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698