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

Side by Side Diff: LayoutTests/svg/custom/svg-image-layers-crash.html

Issue 20789004: Disable accelerated compositing for SVGImage content layers. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « no previous file | LayoutTests/svg/custom/svg-image-layers-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <!-- Test for https://code.google.com/p/chromium/issues/detail?id=266542 -->
4 <body>
5 PASS: did not crash.
6 <script>
7 var img = new Image();
8 img.src = 'data:image/svg+xml;charset=utf-8,' +
9 '<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200">' +
10 '<foreignObject width="100%" height="100%">' +
11 '<div xmlns="http://www.w3.org/1999/xhtml" style="-webkit-transf orm: matrix3d(1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, -770, -270, 0, 1);">Transform Me</div>' +
12 '</foreignObject>' +
13 '</svg>';
14
15 if (window.testRunner)
16 testRunner.dumpAsText();
17 </script>
18 </body>
19 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/svg-image-layers-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698