chromium/native_client_sdk/src/examples/tutorial/dlopen/index.html

<!DOCTYPE html>
<html>
<!--
Copyright 2012 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
  <meta http-equiv="Pragma" content="no-cache">
  <meta http-equiv="Expires" content="-1">
  <title>{{title}}</title>
  <script type="text/javascript" src="common.js"></script>
  <script type="text/javascript" src="example.js"></script>
</head>
<body {{attrs}}>
  <h1>{{title}}</h1>
  <h2>Status: <code id="statusField">NO-STATUS</code></h2>
  <p>The dlopen example demonstrates how to build dynamic libraries and then
     open and use them at runtime.  When the page loads, type in a question and
     hit enter or click the ASK! button.  The question and answer will be
     displayed in the page under the text entry box.  Shared libraries are only
     available with the GLIBC toolchain.</p>
  <p>Magic eightball: type a question below, press the button, and get a
      response.</p>
  <form>
    <input type="text" id="question" value="">
    <input type="submit" value="ASK!">
  </form>
  <p>... or click this button to reverse the string.</p>
  <button id="reverse">Reverse</button>
  <!-- The NaCl plugin will be embedded inside the element with id "listener".
      See common.js.-->
  <div id="listener"></div>
  <pre id="log" style="font-weight: bold"></pre>
</body>
</html>