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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/bug535171.html

Issue 1367743002: Fix assert when resolving font on canvas with dirty shadow distribution (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 <script>
3 //Test passes by not crashing
rune 2015/09/23 22:55:41 I would have put the pass condition in a <p> to ma
Justin Novosad 2015/09/24 19:39:11 Yep I would have done that too, but it does not wo
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 }
7 document.documentElement.createShadowRoot();
8 var canvas = document.createElement('canvas');
9 var context = canvas.getContext('2d');
10 context.font = 'italic 40pt Calibri';
11 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698