OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <script src="../../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../../fast/js/resources/js-test-pre.js"></script> |
5 <script> | 5 <script> |
6 var pathElement = document.createElementNS("http://www.w3.org/2000/svg","p
ath"); | 6 var pathElement = document.createElementNS("http://www.w3.org/2000/svg","p
ath"); |
7 | 7 |
8 var pathSegment = pathElement.createSVGPathSegCurvetoCubicAbs(0.0, 1.0, 2.
0, 3.0, 4.0, 5.0); | 8 var pathSegment = pathElement.createSVGPathSegCurvetoCubicAbs(0.0, 1.0, 2.
0, 3.0, 4.0, 5.0); |
9 pathSegment.x1 = -1.0; | 9 pathSegment.x1 = -1.0; |
10 | 10 |
11 shouldBe('pathSegment.x1', '-1.0'); | 11 shouldBe('pathSegment.x1', '-1.0'); |
12 </script> | 12 </script> |
13 <p id="description">Test that there is no assertion when setting values
on a new path segment not in any segment list.</p> | 13 <p id="description">Test that there is no assertion when setting values
on a new path segment not in any segment list.</p> |
14 <div id="console"></div> | 14 <div id="console"></div> |
15 <script src="../../fast/js/resources/js-test-post.js"></script> | |
16 </body> | 15 </body> |
17 </html> | 16 </html> |
OLD | NEW |