chromium/chrome/test/data/nacl/cross_origin/fail.html

<html>
<!--
Copyright 2013 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
<title>NaCl Cross-origin Test</title>
</head>
<body>
<h2>NaCl Cross-origin Test</h2>
</body>
<script type="text/javascript" src="../load_util.js"></script>
<script>

function run() {
  var embed = load_util.crossOriginEmbed("fail.nmf");
  // Can't load a cross-origin manifest without CORS.
  load_util.expectLoadFailure(embed, "access to manifest url was denied.");
  document.body.appendChild(embed);
}

run();

</script>
</html>