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

Side by Side Diff: LayoutTests/svg/dom/SVGLengthList-basics.xhtml

Issue 132233016: [SVG] SVGAnimatedPointList migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: set NeedsRebaseline Created 6 years, 11 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 xmlns="http://www.w3.org/1999/xhtml"> 1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head> 2 <head>
3 <script>window.enablePixelTesting = true;</script> 3 <script>window.enablePixelTesting = true;</script>
4 <script src="../../resources/js-test.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="200" height="200"> 7 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="200" height="200">
8 <text id="text1" x="500 1000 1500" y="50"> ABC </text> 8 <text id="text1" x="500 1000 1500" y="50"> ABC </text>
9 </svg> 9 </svg>
10 10
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 shouldThrow("text1.x.baseVal.appendItem(30)"); 176 shouldThrow("text1.x.baseVal.appendItem(30)");
177 shouldThrow("text1.x.baseVal.appendItem('aString')"); 177 shouldThrow("text1.x.baseVal.appendItem('aString')");
178 shouldThrow("text1.x.baseVal.appendItem(text1)"); 178 shouldThrow("text1.x.baseVal.appendItem(text1)");
179 shouldThrow("text1.x.baseVal.appendItem(null)"); 179 shouldThrow("text1.x.baseVal.appendItem(null)");
180 180
181 debug(""); 181 debug("");
182 debug("Testing animVal clear throws"); 182 debug("Testing animVal clear throws");
183 shouldThrow("text1.x.animVal.clear()"); 183 shouldThrow("text1.x.animVal.clear()");
184 shouldBeUndefined("text1.x.baseVal.clear()"); 184 shouldBeUndefined("text1.x.baseVal.clear()");
185 185
186 gc(); gc();
186 ]]> 187 ]]>
187 </script> 188 </script>
188 </body> 189 </body>
189 </html> 190 </html>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/use-property-synchronization-crash-expected.txt ('k') | LayoutTests/svg/dom/SVGPointList-basics.xhtml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698