Chromium Code Reviews| Index: ppapi/native_client/tests/breakpad_crash_test/browser_process_crash.html |
| diff --git a/ppapi/native_client/tests/breakpad_crash_test/browser_process_crash.html b/ppapi/native_client/tests/breakpad_crash_test/browser_process_crash.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9fb8cf1d1ae190efc21ed68e7f25d9da5a5d7c6f |
| --- /dev/null |
| +++ b/ppapi/native_client/tests/breakpad_crash_test/browser_process_crash.html |
| @@ -0,0 +1,34 @@ |
| +<!-- |
| + Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| + Use of this source code is governed by a BSD-style license that can be |
| + found in the LICENSE file. |
| +--> |
| + |
| +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| +<html> |
| + <head> |
| + <meta http-equiv="Pragma" content="no-cache" /> |
| + <meta http-equiv="Expires" content="-1" /> |
| + <script type="text/javascript" src="nacltest.js"></script> |
| + <title>Browser Process Crash Test</title> |
| + </head> |
| + |
| + <body> |
| + <h1>Browser Process Crash Test</h1> |
| + |
| +<script type="text/javascript"> |
| + |
| +var tester = new Tester(); |
| + |
| +// We don't normally expect any of this code to run, because we are |
| +// testing a browser process crash. If we reach here, the |
| +// "--crash-test" option does not work. |
| + |
| +tester.addTest('browser_process_crash', function(status) { |
| + status.fail(); |
| +}); |
| + |
| +tester.run(); |
| + |
| +</script> |
|
Nick Bray (chromium)
2013/01/09 01:22:02
</body>
</html>
Mark Seaborn
2013/01/09 03:24:12
Done.
|