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

Side by Side Diff: third_party/WebKit/LayoutTests/html/marquee/marquee-clone-crash.html

Issue 2674673005: Move tests for MARQUEE element to html/marquee/. (Closed)
Patch Set: Created 3 years, 10 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script> 2 <script>
3 var ex = false; 3 var ex = false;
4 var doc; 4 var doc;
5 var count = 0; 5 var count = 0;
6 6
7 if (window.testRunner) 7 if (window.testRunner)
8 testRunner.waitUntilDone(); 8 testRunner.waitUntilDone();
9 9
10 function start() { 10 function start() {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 if (ex) 52 if (ex)
53 return; 53 return;
54 ex = true; 54 ex = true;
55 55
56 var iframe = document.createElement('iframe'); 56 var iframe = document.createElement('iframe');
57 iframe.src='resources/marquee-crash.svg'; 57 iframe.src='resources/marquee-crash.svg';
58 doc.appendChild(iframe); 58 doc.appendChild(iframe);
59 } 59 }
60 </script> 60 </script>
61 <body onload="start()"></body> 61 <body onload="start()"></body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698