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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-stop.html

Issue 2547023002: Import wpt@3c8896ae408c8fd594979da7c99970029e7856a7 (Closed)
Patch Set: Modify TestExpectations or download new baselines for tests. Created 4 years 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/imported/wpt/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-stop.html
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-stop.html b/third_party/WebKit/LayoutTests/imported/wpt/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-stop.html
deleted file mode 100644
index 57a4e73e4c61f13ef2e902332cb5b241e7f5db86..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/imported/wpt/html/obsolete/requirements-for-implementations/the-marquee-element-0/marquee-stop.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<!DOCTYPE html>
-<meta charset="utf-8">
-<title>HTML Test: marquee-stop</title>
-<link rel="author" title="Intel" href="http://www.intel.com/">
-<link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete.html#the-marquee-element">
-<meta name="flags" content="interact">
-<meta name="assert" content="Check the stop operation of HTMLMarqueeElement interface">
-<h2>Steps:</h2>
-<ol>
- <li>Click the 'Start' button to start the marquee element.</li>
-</ol>
-<h2>Expected result:</h2>
-<ul>
- <li>The text "Test Marquee" stop moving when the 'Stop' button is clicked.</li>
-</ul>
-<input type="button" id="stop" value="Stop" />
-<marquee id="test">Test Marquee</marquee>
-<script>
- document.getElementById("stop").addEventListener("click", function(evt) {
- document.getElementById("test").stop();
- }, false);
-</script>

Powered by Google App Engine
This is Rietveld 408576698