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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/virtual/without-smil/svg/animations/exposed/interface.html
diff --git a/LayoutTests/virtual/without-smil/svg/animations/exposed/interface.html b/LayoutTests/virtual/without-smil/svg/animations/exposed/interface.html
new file mode 100644
index 0000000000000000000000000000000000000000..8a4683f5d268b630fb7fa36880752640b6f24173
--- /dev/null
+++ b/LayoutTests/virtual/without-smil/svg/animations/exposed/interface.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script src="../../../../../resources/js-test.js"></script>
+</head>
+<body>
+ <svg id="svg" xmlns="http://www.w3.org/2000/svg">
+ <rect width="100" height="200">
+ <set id="animation" attributeName="width" to="300"/>
+ </rect>
+ </svg>
+
+ <script>
+ 'use strict';
+
+ var svg = document.getElementById('svg');
+ var animation = document.getElementById('animation');
+
+ shouldBeUndefined("svg.animationsPaused");
+ shouldBeUndefined("svg.getCurrentTime");
+ shouldBeUndefined("svg.pauseAnimations");
+ shouldBeUndefined("svg.setCurrentTime");
+ shouldBeUndefined("svg.unpauseAnimations");
+
+ shouldBeUndefined("animation.beginElement");
+ shouldBeUndefined("animation.beginElementAt");
+ shouldBeUndefined("animation.endElement");
+ shouldBeUndefined("animation.endElementAt");
+ shouldBeUndefined("animation.getCurrentTime");
+ shouldBeUndefined("animation.getSimpleDuration");
+ shouldBeUndefined("animation.getStartTime");
+ shouldBeUndefined("animation.onbegin");
+ shouldBeUndefined("animation.onend");
+ shouldBeUndefined("animation.onrepeat");
+ shouldBeUndefined("animation.targetElement");
+
+ if (window.testRunner)
+ testRunner.dumpAsText();
+ </script>
+
+ <p id="description"></p>
+ <div id="console"></div>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698