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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/get-text-element-transform-crash.html

Issue 1406303007: Drop SVGGraphicsElement.getTransformToElement (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 1 month 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 <html>
2 <head>
3 <script type="application/javascript">
4 function test() {
5 document.getElementById("crash").getTransformToElement();
6 }
7
8 if (window.testRunner) {
9 testRunner.dumpAsText();
10 }
11
12 </script>
13 </head>
14 <body>
15 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" onload="test()">
16 <animateTransform >
17 <text id="crash">
18 </text>
19 </animateTransform>
20 </svg>
21 PASS
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698