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

Side by Side Diff: third_party/WebKit/LayoutTests/html/marquee/marquee-destroyed-without-removed-from-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 if (window.testRunner) 3 if (window.testRunner)
4 testRunner.waitUntilDone(); 4 testRunner.waitUntilDone();
5 5
6 function start() { 6 function start() {
7 div = document.createElement('div'); 7 div = document.createElement('div');
8 marquee = document.createElement('marquee'); 8 marquee = document.createElement('marquee');
9 div.appendChild(marquee); 9 div.appendChild(marquee);
10 doc = document.documentElement; 10 doc = document.documentElement;
(...skipping 23 matching lines...) Expand all
34 ++count; 34 ++count;
35 location.hash = '#' + count; 35 location.hash = '#' + count;
36 } else { 36 } else {
37 location.hash = 'done'; 37 location.hash = 'done';
38 } 38 }
39 setTimeout("gc(); location.reload();", 10); 39 setTimeout("gc(); location.reload();", 10);
40 } 40 }
41 </script> 41 </script>
42 <body onload="start()"> 42 <body onload="start()">
43 crbug.com/447976: crash when marquee element is destroyed without removedFrom. 43 crbug.com/447976: crash when marquee element is destroyed without removedFrom.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698