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

Unified Diff: third_party/WebKit/LayoutTests/fast/html/marquee-scrollamount.html

Issue 2674673005: Move tests for MARQUEE element to html/marquee/. (Closed)
Patch Set: Created 3 years, 11 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: 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>

Powered by Google App Engine
This is Rietveld 408576698