OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. |
| 5 --> |
| 6 |
| 7 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 8 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 9 <html> |
| 10 <head> |
| 11 <meta http-equiv="Pragma" content="no-cache" /> |
| 12 <meta http-equiv="Expires" content="-1" /> |
| 13 <script type="text/javascript" src="nacltest.js"></script> |
| 14 <title>Browser Process Crash Test</title> |
| 15 </head> |
| 16 |
| 17 <body> |
| 18 <h1>Browser Process Crash Test</h1> |
| 19 |
| 20 <script type="text/javascript"> |
| 21 |
| 22 var tester = new Tester(); |
| 23 |
| 24 // We don't normally expect any of this code to run, because we are |
| 25 // testing a browser process crash. If we reach here, the |
| 26 // "--crash-test" option does not work. |
| 27 |
| 28 tester.addTest('browser_process_crash', function(status) { |
| 29 status.fail('Browser was supposed to crash, not reach here'); |
| 30 }); |
| 31 |
| 32 tester.run(); |
| 33 |
| 34 </script> |
| 35 |
| 36 </body> |
| 37 </html> |
OLD | NEW |