OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <script src="../../../../../resources/js-test.js"></script> |
| 5 </head> |
| 6 <body> |
| 7 <svg id="svg" xmlns="http://www.w3.org/2000/svg"> |
| 8 <rect width="100" height="200"> |
| 9 <set id="animation" attributeName="width" to="300"/> |
| 10 </rect> |
| 11 </svg> |
| 12 |
| 13 <script> |
| 14 'use strict'; |
| 15 |
| 16 var svg = document.getElementById('svg'); |
| 17 var animation = document.getElementById('animation'); |
| 18 |
| 19 shouldBeUndefined("svg.animationsPaused"); |
| 20 shouldBeUndefined("svg.getCurrentTime"); |
| 21 shouldBeUndefined("svg.pauseAnimations"); |
| 22 shouldBeUndefined("svg.setCurrentTime"); |
| 23 shouldBeUndefined("svg.unpauseAnimations"); |
| 24 |
| 25 shouldBeUndefined("animation.beginElement"); |
| 26 shouldBeUndefined("animation.beginElementAt"); |
| 27 shouldBeUndefined("animation.endElement"); |
| 28 shouldBeUndefined("animation.endElementAt"); |
| 29 shouldBeUndefined("animation.getCurrentTime"); |
| 30 shouldBeUndefined("animation.getSimpleDuration"); |
| 31 shouldBeUndefined("animation.getStartTime"); |
| 32 shouldBeUndefined("animation.onbegin"); |
| 33 shouldBeUndefined("animation.onend"); |
| 34 shouldBeUndefined("animation.onrepeat"); |
| 35 shouldBeUndefined("animation.targetElement"); |
| 36 |
| 37 if (window.testRunner) |
| 38 testRunner.dumpAsText(); |
| 39 </script> |
| 40 |
| 41 <p id="description"></p> |
| 42 <div id="console"></div> |
| 43 </body> |
| 44 </html> |
OLD | NEW |