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

Unified Diff: tests/npapi_bridge/npapi_test.html

Issue 1092005: Issue 1092005 (Closed) Base URL: http://nativeclient.googlecode.com/svn/trunk/src/native_client/
Patch Set: Created 10 years, 9 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
Index: tests/npapi_bridge/npapi_test.html
===================================================================
--- tests/npapi_bridge/npapi_test.html (revision 1695)
+++ tests/npapi_bridge/npapi_test.html (working copy)
@@ -94,11 +94,16 @@
<td align="center">
<b> embed1 </b> <p>
<!-- `embed` element test -->
- <embed id="embed1" src="npapi_test.nexe" type="application/x-nacl-srpc"
+ <embed id="embed1" nexe="npapi_test" type="application/x-nacl-srpc"
name="nacl_module"
width="0" height="0"
canvas="canvas1"
- cycle="no" />
+ cycle="no">
+ <noembed>
+ Your browser does not appear to support Native Client.
+ Visit http://code.google.com/p/nativeclient/ to get started.
+ <noembed/>
+ </embed>
<input type=button value="pop up alert" disabled="true"
id='button_embed1_alert' onclick='alert(embed1.bar)' /> <br/>
<input type=button value="change canvas1 color" disabled="true"
@@ -111,11 +116,16 @@
<td align="center">
<b> embed2 </b> <p>
<!-- `embed` element test -->
- <embed id="embed2" src="npapi_test.nexe" type="application/x-nacl-srpc"
+ <embed id="embed2" nexe="npapi_test" type="application/x-nacl-srpc"
name="nacl_module"
width="0" height="0"
canvas="canvas2"
- cycle="no" />
+ cycle="no">
+ <noembed>
+ Your browser does not appear to support Native Client.
+ Visit http://code.google.com/p/nativeclient/ to get started.
+ <noembed/>
+ </embed>
<input type=button value="pop up alert" disabled="true"
id='button_embed2_alert' onclick='alert(embed2.bar)' /> <br/>
<input type=button value="change canvas2 color" disabled="true"
@@ -128,11 +138,16 @@
<td align="center">
<b> embed3 </b> <p>
<!-- `embed` element test -->
- <embed id="embed3" src="npapi_test.nexe" type="application/x-nacl-srpc"
+ <embed id="embed3" nexe="npapi_test" type="application/x-nacl-srpc"
name="nacl_module"
width="0" height="0"
canvas="canvas3"
- cycle="auto" />
+ cycle="auto">
+ <noembed>
+ Your browser does not appear to support Native Client.
+ Visit http://code.google.com/p/nativeclient/ to get started.
+ <noembed/>
+ </embed>
<input type=button value="stop color cyling on canvas3"
disabled="true"
id='button_embed3_cyclingOff' onclick='embed3.cycling(0)' />

Powered by Google App Engine
This is Rietveld 408576698