OLD | NEW |
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="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.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="50" y="50" rotate="90 180 270">ABC</text> | 8 <text id="text1" x="50" y="50" rotate="90 180 270">ABC</text> |
9 </svg> | 9 </svg> |
10 | 10 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 shouldThrow("text1.rotate.baseVal.appendItem(text1)"); | 157 shouldThrow("text1.rotate.baseVal.appendItem(text1)"); |
158 shouldThrow("text1.rotate.baseVal.appendItem(null)"); | 158 shouldThrow("text1.rotate.baseVal.appendItem(null)"); |
159 | 159 |
160 debug(""); | 160 debug(""); |
161 debug("Testing animVal clear throws"); | 161 debug("Testing animVal clear throws"); |
162 shouldThrow("text1.rotate.animVal.clear()"); | 162 shouldThrow("text1.rotate.animVal.clear()"); |
163 shouldBeUndefined("text1.rotate.baseVal.clear()"); | 163 shouldBeUndefined("text1.rotate.baseVal.clear()"); |
164 | 164 |
165 ]]> | 165 ]]> |
166 </script> | 166 </script> |
167 <script src="../../fast/js/resources/js-test-post.js"></script> | |
168 </body> | 167 </body> |
169 </html> | 168 </html> |
OLD | NEW |