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

Side by Side Diff: LayoutTests/plugins/object-onfocus-mutation-crash.html

Issue 9963064: Merge 112051 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 8 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/plugins/object-onfocus-mutation-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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script> 4 <script>
5 if (window.layoutTestController) { 5 if (window.layoutTestController) {
6 layoutTestController.dumpAsText(); 6 layoutTestController.dumpAsText();
7 layoutTestController.waitUntilDone(); 7 layoutTestController.waitUntilDone();
8 } 8 }
9 9
10 function finish() { 10 function finish() {
11 if (window.layoutTestController) 11 if (window.layoutTestController)
12 layoutTestController.notifyDone(); 12 layoutTestController.notifyDone();
13 } 13 }
14 14
15 function crash() { 15 function crash() {
16 document.body.innerHTML = "PASS. WebKit didn't crash."; 16 document.body.innerHTML = "PASS. WebKit didn't crash.";
17 setTimeout("finish()", 0); 17 setTimeout("finish()", 0);
18 } 18 }
19 </script> 19 </script>
20 <object data="a"> 20 <object data="a">
21 <input autofocus="" onfocus="crash()"> 21 <input autofocus="" onfocus="crash()">
22 </object> 22 </object>
23 </body> 23 </body>
24 </html> 24 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/plugins/object-onfocus-mutation-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698