| Index: third_party/WebKit/LayoutTests/animations/animation-shorthand-unprefixed.html
|
| diff --git a/third_party/WebKit/LayoutTests/animations/animation-shorthand-unprefixed.html b/third_party/WebKit/LayoutTests/animations/animation-shorthand-unprefixed.html
|
| deleted file mode 100644
|
| index 3841044e90a80ddbec3d7cceb579d6d07537fbea..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/animations/animation-shorthand-unprefixed.html
|
| +++ /dev/null
|
| @@ -1,108 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<title>Test animation shorthand property</title>
|
| -<style type="text/css" media="screen">
|
| -.box {
|
| - height: 10px;
|
| - width: 10px;
|
| - background-color: blue;
|
| -}
|
| -#a {
|
| -}
|
| -#b {
|
| - animation: none;
|
| -}
|
| -#c {
|
| - animation: anim1 10s;
|
| -}
|
| -#d {
|
| - animation: anim1 10s linear;
|
| -}
|
| -#e {
|
| - animation: anim1 10s linear 5s;
|
| -}
|
| -#f {
|
| - animation: anim1 10s linear 5s 3;
|
| -}
|
| -#g {
|
| - animation: anim1 10s linear 5s infinite alternate;
|
| -}
|
| -#h {
|
| - animation: anim1 10s linear 5s infinite alternate forwards;
|
| -}
|
| -#i {
|
| - animation: anim1 10s linear normal none;
|
| -}
|
| -#j {
|
| - animation: anim1 10s linear infinite backwards, anim2 3s none, anim3 5s both;
|
| -}
|
| -
|
| -@keyframes anim1 { }
|
| -@keyframes anim2 { }
|
| -</style>
|
| - <script type="text/javascript" charset="utf-8">
|
| - if (window.testRunner)
|
| - testRunner.dumpAsText();
|
| -
|
| - const kProperties = [
|
| - "animationName",
|
| - "animationDuration",
|
| - "animationTimingFunction",
|
| - "animationDelay",
|
| - "animationIterationCount",
|
| - "animationDirection",
|
| - "animationFillMode"
|
| - ];
|
| - const kExpectedResults = [
|
| - { id: 'a', values: [ "none", "0s", "ease", "0s", "1", "normal", "none" ] },
|
| - { id: 'b', values: [ "none", "0s", "ease", "0s", "1", "normal", "none" ] },
|
| - { id: 'c', values: [ "anim1", "10s", "ease", "0s", "1", "normal", "none" ] },
|
| - { id: 'd', values: [ "anim1", "10s", "linear", "0s", "1", "normal", "none" ] },
|
| - { id: 'e', values: [ "anim1", "10s", "linear", "5s", "1", "normal", "none" ] },
|
| - { id: 'f', values: [ "anim1", "10s", "linear", "5s", "3", "normal", "none" ] },
|
| - { id: 'g', values: [ "anim1", "10s", "linear", "5s", "infinite", "alternate", "none" ] },
|
| - { id: 'h', values: [ "anim1", "10s", "linear", "5s", "infinite", "alternate", "forwards" ] },
|
| - { id: 'i', values: [ "anim1", "10s", "linear", "0s", "1", "normal", "none" ] },
|
| - { id: 'j', values: [ "anim1, anim2, anim3", "10s, 3s, 5s", "linear, ease, ease", "0s, 0s, 0s", "infinite, 1, 1", "normal, normal, normal", "backwards, none, both" ] }
|
| - ];
|
| -
|
| - function start()
|
| - {
|
| - var resultsString = "";
|
| - kExpectedResults.forEach(function(curItem) {
|
| - var el = document.getElementById(curItem.id);
|
| - var elStyle = window.getComputedStyle(el);
|
| -
|
| - for (var i=0; i < kProperties.length; i++) {
|
| - var computedValue = elStyle[kProperties[i]];
|
| - var expectedValue = curItem.values[i];
|
| - if (computedValue == expectedValue)
|
| - resultsString += "Testing " + kProperties[i] + " on " + curItem.id + ": PASS" + "<br>";
|
| - else
|
| - resultsString += "Testing " + kProperties[i] + " on " + curItem.id + " expected <code>" + expectedValue + "</code> got <code>" + computedValue + "</code>: FAIL" + "<br>";
|
| -
|
| - }
|
| - });
|
| -
|
| - var results = document.getElementById('result');
|
| - results.innerHTML = resultsString;
|
| - }
|
| -
|
| - window.addEventListener('load', start, false);
|
| - </script>
|
| -</head>
|
| -<body>
|
| -<div id="a" class="box"></div>
|
| -<div id="b" class="box"></div>
|
| -<div id="c" class="box"></div>
|
| -<div id="d" class="box"></div>
|
| -<div id="e" class="box"></div>
|
| -<div id="f" class="box"></div>
|
| -<div id="g" class="box"></div>
|
| -<div id="h" class="box"></div>
|
| -<div id="i" class="box"></div>
|
| -<div id="j" class="box"></div>
|
| -<div id="result">
|
| -</div>
|
| -</body>
|
| -</html>
|
|
|