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

Side by Side Diff: LayoutTests/fast/canvas/canvas-partial-invalidation-zoomed-expected.html

Issue 402613006: Fixing 2D canvas invalidation region tracking. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fixups and baselines Created 6 years, 5 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body style="zoom: 1.2">
4 <p>An all green square should appear below</p>
5 <canvas id="A" width=300 height=300></canvas>
6 <script type="text/javascript" charset="utf-8">
7 var context = document.getElementById("A").getContext("2d");
8 context.fillStyle = 'green';
9 context.fillRect(1, 1, 298, 298);
10 </script>
11 </body>
12 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698