Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(669)

Unified Diff: experimental/webgtt/webgtt.html

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/webgtt/webgtt.css ('k') | experimental/windows_debugger/debugger/base/debug_blob.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/webgtt/webgtt.html
diff --git a/experimental/webgtt/webgtt.html b/experimental/webgtt/webgtt.html
deleted file mode 100644
index 6042156eb644fe279cf8517bc115c106b39192a2..0000000000000000000000000000000000000000
--- a/experimental/webgtt/webgtt.html
+++ /dev/null
@@ -1,76 +0,0 @@
-<!DOCTYPE html>
-<html lang="en" il8n-values="dir:textdirection">
- <head>
- <meta charset="utf-8" />
- <title>WebGTT Prototype</title>
- <script type="text/javascript" src="javascript/vertex.js"></script>
- <script type="text/javascript" src="javascript/edge.js"></script>
- <script type="text/javascript" src="javascript/graph.js"></script>
- <script type="text/javascript" src="javascript/canvas.js"></script>
- <script type="text/javascript" src="javascript/button.js"></script>
- <script type="text/javascript" src="javascript/naclmodule.js"></script>
- <script type="text/javascript" src="javascript/webgtt.js"></script>
- </head>
- <body onload="main1()">
- <section id="intro">
- <header>
- <h1>Graph Drawing Area</h1>
- </header>
- <p>
- To create a vertex, click once. To select/deselect a vertex, click once
- on it. To create/select/deselect an edge, select two vertices (one by
- one). To delete the selected vertices/edges, press the 'Delete' key.
- Once you have drawn the graph, click on the button below to find a
- coloring. (Note that the button will be enabled only after the message
- at the bottom changes from 'LOADING...' to 'SUCCESS'. If the loading
- seems to take forever, then there might be a problem with the
- application.)
- </p>
- </section>
-
- <section id="canvas">
- <canvas id="mainCanvas" width="800" height="400"></canvas>
- </section>
-
- <section id="control">
- <button type = "button" id = "coloring">Get a valid
- coloring</button>
- <p>
- A (vertex) coloring of a graph is an assignment of colors to the
- vertices of the graph such that NO two vertices that are connected by an
- edge share a common color.
- </p>
- </section>
-
- <section id="nacl">
- <header>
- <h1>Native Client Module</h1>
- </header>
- <!--
- Load the published .nexe. This includes the 'nacl' attribute which
- shows how to load multi-architecture modules.
-
- Note: The <EMBED> element is wrapped inside an <ARTICLE>, which has a
- 'load' event listener attached. This wrapping method is used instead of
- attaching the 'load' event listener directly to the <EMBED> element to
- ensure that the listener is active before the NaCl module 'load' event
- fires.
- -->
- <article id="listener">
- <script type = "text/JavaScript">
- document.getElementById('listener').addEventListener('load', main2,
- true);
- </script>
- <embed name="nacl_module" id="webgtt" width=0 height=0 src="webgtt.nmf"
- type="application/x-nacl" />
- </article>
- <article>
- <header>
- <h1>Status</h1>
- </header>
- <p id="status_field">NO-STATUS</p>
- </article>
- </section>
- <h1><a href="https://docs.google.com/a/google.com/spreadsheet/viewform?formkey=dGU1WkhMMjEzSGpsYnhlbkpmN2g2amc6MQ">Give Feedback</a></h1>
- </body>
-</html>
« no previous file with comments | « experimental/webgtt/webgtt.css ('k') | experimental/windows_debugger/debugger/base/debug_blob.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698