| Index: third_party/WebKit/LayoutTests/fast/html/marquee-scrollamount.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/html/marquee-scrollamount.html b/third_party/WebKit/LayoutTests/fast/html/marquee-scrollamount.html
|
| deleted file mode 100644
|
| index 1f9dee8e564ca472690697ede53bf422db35af7e..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/fast/html/marquee-scrollamount.html
|
| +++ /dev/null
|
| @@ -1,22 +0,0 @@
|
| -<body>
|
| -<p>This is a regression test for https://bugs.webkit.org/show_bug.cgi?id=50434. It verifies that a marquee does not animate when scrollAmount is set to 0 by script.</p>
|
| -<script>
|
| - if (window.testRunner)
|
| - testRunner.waitUntilDone();
|
| - var marquee = document.createElement("marquee");
|
| - // Sets the character color to while in order to make the image result deterministic.
|
| - // When you want to run this test manually, change the color to black.
|
| - marquee.style.color = "white";
|
| - marquee.innerHTML = "Test";
|
| - marquee.width = "100px";
|
| - marquee.scrollDelay = 0;
|
| - document.body.appendChild(marquee);
|
| - setTimeout(function() {
|
| - marquee.scrollAmount = 0;
|
| - if (window.testRunner) {
|
| - setTimeout(function() {
|
| - testRunner.notifyDone();
|
| - }, 55);
|
| - }
|
| - }, 0);
|
| -</script>
|
|
|