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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body>
3 <script>
4 var canvas = document.createElement('canvas');
5 canvas.setAttribute('width', '40');
6 canvas.setAttribute('height', '30');
7 var ctx = canvas.getContext('2d');
8 document.body.appendChild(canvas);
9
10 ctx.fillStyle = 'green';
11 ctx.fillRect(0, 0, 10, 10);
12 ctx.fillRect(11, 0, 10, 10);
13 ctx.fillRect(22, 0, 10, 10);
14 ctx.fillRect(0, 11, 10, 10);
15 ctx.fillRect(11, 11, 10, 10);
16 ctx.fillRect(22, 11, 10, 10);
17
18 </script>
19 <p>There should be 6 green squares displayed in a 2 row by 3 column grid.</p>
20 </body>
21 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698