1cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<!DOCTYPE html>
2cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<html>
3cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<!--
4cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)Copyright 2014 The Chromium Authors. All rights reserved.
5cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)Use of this source code is governed by a BSD-style license that can be
6cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)found in the LICENSE file.
7cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)-->
8cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<head>
9cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <meta http-equiv="Pragma" content="no-cache">
10cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <meta http-equiv="Expires" content="-1">
11cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <title>{{title}}</title>
12cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <script type="text/javascript" src="common.js"></script>
136e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)  <script type="text/javascript" src="example.js"></script>
14cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)</head>
15cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)<body data-width="640" data-height="640" {{attrs}}>
16cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <h1>{{title}}</h1>
17cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <h2>Status: <code id="statusField">NO-STATUS</code></h2>
18cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <!-- The NaCl plugin will be embedded inside the element with id "listener".
19cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)      See common.js.-->
206e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)  <div>
216e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    Conway's game of life is a cellular automaton by British mathematician John
226e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    Horton Conway. Use the touch screen or mouse pointer to interact with the
236e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    simulation.
246e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    <br>
256e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    <input type="checkbox" id="simd" checked >Use SIMD<br>
266e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    <input type="checkbox" id="multithread" checked >Use multiple threads<br>
276e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    <input type="checkbox" id="large" >Use large field<br>
286e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    <input type="submit" id="benchmark" value="Run Benchmark">
296e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)    <label id="result" name="result"> </label>
306e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)  </div>
31cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)  <div id="listener"></div>
32cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)</body>
33cedac228d2dd51db4b79ea1e72c7f249408ee061Torne (Richard Coles)</html>
34