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

Side by Side Diff: LayoutTests/fast/table/multiple-captions-crash5.html

Issue 9250021: Merge 105120 - Heap-use-after-free in WebCore::RenderBlock::selectionGaps (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/912/
Patch Set: Created 8 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 .c0 { display: table-caption; width: 0px; } 4 .c0 { display: table-caption; width: 0px; }
5 .c7 { float: right; padding-right: 100px; padding-bottom: 100px;} 5 .c7 { float: right; padding-right: 100px; padding-bottom: 100px;}
6 </style> 6 </style>
7 <script> 7 <script>
8 if (window.layoutTestController) { 8 if (window.layoutTestController) {
9 layoutTestController.waitUntilDone(); 9 layoutTestController.waitUntilDone();
10 } 10 }
(...skipping 22 matching lines...) Expand all
33 try { nodes[89].appendChild(nodes[8]); } catch(e) {} 33 try { nodes[89].appendChild(nodes[8]); } catch(e) {}
34 setTimeout('try { nodes[30].appendChild(nodes[89]); } catch(e) {}', 4); 34 setTimeout('try { nodes[30].appendChild(nodes[89]); } catch(e) {}', 4);
35 setTimeout('tryToCrash();', 0); 35 setTimeout('tryToCrash();', 0);
36 } 36 }
37 </script> 37 </script>
38 </head> 38 </head>
39 <body onLoad="setTimeout('boom();',0)"> 39 <body onLoad="setTimeout('boom();',0)">
40 Passes if it doesn't crash! 40 Passes if it doesn't crash!
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698