Roll leveldb 3f7758:803d69 (v1.17 -> v1.18)
[chromium-blink-merge.git] / chrome / test / data / nacl / manifest / relative_manifest.html
blob2b15a62ca45ab16333a6f44ce0bf6d8d3c652262
1 <html>
2 <!--
3 Copyright 2014 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <head>
8 <title>NaCl Relative Manifest Test</title>
9 </head>
10 <body>
11 <h2>NaCl Relative Manifest Test</h2>
12 </body>
13 <script type="text/javascript" src="../load_util.js"></script>
14 <script>
16 function run() {
17 var embed = load_util.embed("mdir/relative.nmf");
18 // The nexe is junk data, it can't be parsed.
19 // This error string comes from the NaCl repo:
20 // native_client/src/trusted/service_runtime/nacl_error_code.c
21 load_util.expectLoadFailure(embed, "Bad ELF header magic number");
22 document.body.appendChild(embed);
25 run();
27 </script>
28 </html>