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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <meta charset="utf-8">
3 <title>HTML Test: marquee-stop</title>
4 <link rel="author" title="Intel" href="http://www.intel.com/">
5 <link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/obsolete .html#the-marquee-element">
6 <meta name="flags" content="interact">
7 <meta name="assert" content="Check the stop operation of HTMLMarqueeElement inte rface">
8 <h2>Steps:</h2>
9 <ol>
10 <li>Click the 'Start' button to start the marquee element.</li>
11 </ol>
12 <h2>Expected result:</h2>
13 <ul>
14 <li>The text "Test Marquee" stop moving when the 'Stop' button is clicked.</li >
15 </ul>
16 <input type="button" id="stop" value="Stop" />
17 <marquee id="test">Test Marquee</marquee>
18 <script>
19 document.getElementById("stop").addEventListener("click", function(evt) {
20 document.getElementById("test").stop();
21 }, false);
22 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698