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

Side by Side Diff: LayoutTests/fast/forms/dangling-form-element-crash.html

Issue 6476015: Merge 77114 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/648/
Patch Set: Created 9 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
« no previous file with comments | « no previous file | LayoutTests/fast/forms/dangling-form-element-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <script> 2 <script>
3 if (window.layoutTestController) { 3 if (window.layoutTestController) {
4 layoutTestController.dumpAsText(); 4 layoutTestController.dumpAsText();
5 layoutTestController.waitUntilDone(); 5 layoutTestController.waitUntilDone();
6 } 6 }
7 7
8 function gc() { 8 function gc() {
9 if (window.GCController) 9 if (window.GCController)
10 return GCController.collect(); 10 return GCController.collect();
(...skipping 16 matching lines...) Expand all
27 var input = document.createElement('input'); 27 var input = document.createElement('input');
28 input.setAttribute('form', 'foo'); 28 input.setAttribute('form', 'foo');
29 div.appendChild(input); 29 div.appendChild(input);
30 setTimeout(resetFormOwner, 0); 30 setTimeout(resetFormOwner, 0);
31 } 31 }
32 </script> 32 </script>
33 <body onload="test()"> 33 <body onload="test()">
34 <p>Checks dangling form associated elements doesn't cause crash. WebKit should n ot crash when this page is loaded.</p> 34 <p>Checks dangling form associated elements doesn't cause crash. WebKit should n ot crash when this page is loaded.</p>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/forms/dangling-form-element-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698