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

Unified Diff: tests/prebuilt/x64/srpc_hw_ppapi.html

Issue 6381003: Add some test data for base PPAPI / NaCl / Chrome integration test (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 9 years, 11 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 | « tests/prebuilt/x64/srpc_hw.nexe ('k') | tests/prebuilt/x86/srpc_hw.nexe » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/prebuilt/x64/srpc_hw_ppapi.html
===================================================================
--- tests/prebuilt/x64/srpc_hw_ppapi.html (revision 0)
+++ tests/prebuilt/x64/srpc_hw_ppapi.html (revision 0)
@@ -0,0 +1,87 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>SRPC Simple Plug-in</title>
+ <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
+ <META HTTP-EQUIV="Expires" CONTENT="-1" />
+ </head>
+ <body onload="nacllib.waitForModulesAndRunTests();"
+ onunload="nacllib.cleanUp();" >
+<script type="text/javascript">
+//<![CDATA[
+function $(id) {
+ return document.getElementById(id);
+}
+
+function setStatus(message) {
+ var status = $("status");
+ status.firstChild.nodeValue = message;
+}
+
+function fortytwo() {
+ var result = "";
+ try {
+ result = document.getElementById("pluginobj").fortytwo();
+ } catch(e) {
+ result = "ERROR: " + e;
+ }
+ setStatus(result);
+}
+
+function helloworld() {
+ var result = "";
+ try {
+ result = document.getElementById("pluginobj").helloworld();
+ } catch(e) {
+ result = "ERROR: " + e;
+ }
+ setStatus(result);
+}
+//]]>
+</script>
+
+<h1>Native Client SRPC Simple Plug-in</h1>
+<p>
+ <button onclick="fortytwo()">Call fortytwo()</button>
+ <button onclick="helloworld()">Call helloworld()</button>
+
+ <embed name="nacl_module"
+ id="pluginobj"
+ width=0 height=0
+ src="srpc_hw.nexe"
+ type="application/x-ppapi-nacl-srpc" />
+</p>
+
+<p>If the plug-in is working correctly, a click on the "Call fortytwo" button
+ should open a popup dialog containing <b>42</b> as value.</p>
+
+<p> Clicking on the "Call helloworld" button
+ should open a popup dialog containing <b>hello, world</b> as value.</p>
+
+<h2>Status</h2>
+<div id=status>NO-STATUS</div>
+
+<script type="text/javascript" src="nacl_js_lib.js"></script>
+<script type="text/javascript">
+//<![CDATA[
+var nacllib = new NaclLib("nacl_module", "status", 500);
+
+nacllib.test = function() {
+ var plugin = document.getElementById("pluginobj");
+ if ('42' != plugin.fortytwo()) {
+ return "expected 42";
+ }
+
+ if ("hello, world." != plugin.helloworld()) {
+ return "expected 'hello, world.'";
+ }
+
+ document.cookie = 'status=OK';
+
+ return "";
+};
+//]]>
+</script>
+
+ </body>
+</html>
Property changes on: tests/prebuilt/x64/srpc_hw_ppapi.html
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « tests/prebuilt/x64/srpc_hw.nexe ('k') | tests/prebuilt/x86/srpc_hw.nexe » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698