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

Side by Side Diff: LayoutTests/svg/custom/webkit-transform-crash.html

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove m_zoomAndPan Created 6 years, 10 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
1 <html><head> 1 <html><head>
2 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 2 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
3 <!-- This should not crash (null renderer) --> 3 <!-- This should not crash (null renderer) -->
4 <script> 4 <script>
5 document.createElementNS("http://www.w3.org/2000/svg","g").getTransformToEleme nt(); 5 try {
6 document.createElementNS("http://www.w3.org/2000/svg","g").getTransformToEle ment();
7 } catch(error) {
8 }
6 if (window.testRunner) 9 if (window.testRunner)
7 testRunner.dumpAsText(); 10 testRunner.dumpAsText();
8 </script> 11 </script>
9 </head><body> 12 </head><body>
10 PASS 13 PASS
11 </body></html> 14 </body></html>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/transform-invalid-expected.txt ('k') | LayoutTests/svg/dom/SVGTransformList-basics-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698