Also blacklist the use of eglWaitSyncKHR on Adreno 2xx GPUs.
[chromium-blink-merge.git] / ppapi / native_client / tests / breakpad_crash_test / browser_process_crash.html
blob4aa913ffd140778b82751db3c11956d2afa041b6
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 -->
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>
17 <body>
18 <h1>Browser Process Crash Test</h1>
20 <script type="text/javascript">
22 var tester = new Tester();
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.
28 tester.addTest('browser_process_crash', function(status) {
29 status.fail('Browser was supposed to crash, not reach here');
30 });
32 tester.run();
34 </script>
36 </body>
37 </html>