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

Side by Side Diff: LayoutTests/virtual/without-smil/svg/animations/exposed/interface.html

Issue 1251983005: Flag to disable SMIL support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: smil not sMIL Created 5 years, 5 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
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698