Commit 450aec75 authored by fs@opera.com's avatar fs@opera.com

Remove tests svg/as-background-image/animated-svg-animation-control.html

This test has been flaky all along because the sequence of events it
tries to observe is not fully observable. There's still some coverage of
the reset-animation-when-no-longer-running case elsewhere.

BUG=522652

Review URL: https://codereview.chromium.org/1292703004

git-svn-id: svn://svn.chromium.org/blink/trunk@201021 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent c3ffc7ff
...@@ -50,7 +50,6 @@ crbug.com/522647 http/tests/notifications/close-dispatch-asynchronous.html [ Fai ...@@ -50,7 +50,6 @@ crbug.com/522647 http/tests/notifications/close-dispatch-asynchronous.html [ Fai
crbug.com/522648 fast/events/touch/compositor-touch-hit-rects-iframes.html [ Crash Failure Pass ] crbug.com/522648 fast/events/touch/compositor-touch-hit-rects-iframes.html [ Crash Failure Pass ]
crbug.com/522649 svg/custom/js-late-pattern-and-object-creation.svg [ Failure Pass ] crbug.com/522649 svg/custom/js-late-pattern-and-object-creation.svg [ Failure Pass ]
crbug.com/522651 [ XP ] http/tests/inspector/extensions-useragent.html [ Crash Pass Timeout ] crbug.com/522651 [ XP ] http/tests/inspector/extensions-useragent.html [ Crash Pass Timeout ]
crbug.com/522652 svg/as-background-image/animated-svg-animation-control.html [ ImageOnlyFailure Pass ]
crbug.com/521862 [ Linux Win ] storage/websql/read-transactions-running-concurrently.html [ Failure Pass ] crbug.com/521862 [ Linux Win ] storage/websql/read-transactions-running-concurrently.html [ Failure Pass ]
crbug.com/521861 [ Debug ] media/track/tracklist-is-reachable-no-crash.html [ Crash Pass ] crbug.com/521861 [ Debug ] media/track/tracklist-is-reachable-no-crash.html [ Crash Pass ]
crbug.com/521859 http/tests/navigatorconnect/postmessage-from-worker.html [ Pass Timeout ] crbug.com/521859 http/tests/navigatorconnect/postmessage-from-worker.html [ Pass Timeout ]
......
<!DOCTYPE html>
<div style="width: 100px; height: 100px; background-color: green"></div>
<!DOCTYPE html>
<title>SVG-in-&lt;img&gt;: Animation resets when all references are removed.</title>
<div style="width: 100px; height: 100px;"></div>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
var div = document.querySelector('div');
var imgurl = "url('../as-image/resources/animated-rect-color.svg')";
div.style.background = imgurl;
setTimeout(function() {
div.style.background = "";
// FIXME: we need a better way of waiting for chromium events to happen
setTimeout(function() {
div.style.background = imgurl;
setTimeout(function() {
if (window.testRunner)
testRunner.notifyDone();
}, 10);
}, 1);
}, 100);
</script>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment