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

Unified Diff: third_party/WebKit/LayoutTests/inspector/animation/animation-transition-setTiming-crash.html

Issue 2738983005: Revert of Update DevTools animation timeline to handle TransitionKeyframeEffectModels (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/animation/animation-transition-setTiming-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/animation/animation-transition-setTiming-crash.html
diff --git a/third_party/WebKit/LayoutTests/inspector/animation/animation-transition-setTiming-crash.html b/third_party/WebKit/LayoutTests/inspector/animation/animation-transition-setTiming-crash.html
deleted file mode 100644
index 88f3a898159abb940adf6ba31297d070bd68e6c0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector/animation/animation-transition-setTiming-crash.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<html>
-<head>
-<style>
-#node {
- transition: left 100s;
- left: 0px;
-}
-</style>
-<script src="../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../http/tests/inspector/elements-test.js"></script>
-<script>
-function startCSSTransition() {
- // Force style recalcs that will trigger a transition.
- getComputedStyle(node).left;
- node.style.left = "100px";
- getComputedStyle(node).left;
-}
-
-var initialize_Animations = function() {
- InspectorTest.preloadModule("animation");
-}
-
-function test() {
- UI.viewManager.showView("animations");
- var timeline = self.runtime.sharedInstance(Animation.AnimationTimeline);
- InspectorTest.evaluateInPage("startCSSTransition()");
- InspectorTest.waitForAnimationAdded(animationAdded);
- function animationAdded(group) {
- group.animations()[0].setTiming(1, 0);
- InspectorTest.completeTest();
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-This test passes if it does not crash.
-</p>
-
-<div id="node"></div>
-
-</body>
-</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/animation/animation-transition-setTiming-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698