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

Unified Diff: trunk/src/chrome/test/data/nacl/ppapi/ppb_core/ppapi_ppb_core.html

Issue 15709012: Revert 205329 "Split pnacl and nacl mime types" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 6 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: trunk/src/chrome/test/data/nacl/ppapi/ppb_core/ppapi_ppb_core.html
===================================================================
--- trunk/src/chrome/test/data/nacl/ppapi/ppb_core/ppapi_ppb_core.html (revision 205338)
+++ trunk/src/chrome/test/data/nacl/ppapi/ppb_core/ppapi_ppb_core.html (working copy)
@@ -48,25 +48,13 @@
<body>
<h1>PPAPI PPB_Core Test</h1>
+ <embed type="application/x-nacl" id="test_nexe"
+ name="nacl_module"
+ src="ppapi_ppb_core.nmf"
+ width="0" height="0" />
+
<script type="text/javascript">
//<![CDATA[
- function createModule(id, src, type) {
- return createNaClEmbed({
- id: id,
- src: src,
- width: 0,
- height: 0,
- type: type
- });
- }
-
- var mime = "application/x-nacl";
- if (getTestArguments()["pnacl"] !== undefined) {
- mime = "application/x-pnacl";
- }
- var embed = createModule("test_nexe", "ppapi_ppb_core.nmf", mime);
- document.body.appendChild(embed);
-
var tester = new Tester();
setupTests(tester, $('test_nexe'));
tester.waitFor($('test_nexe'));

Powered by Google App Engine
This is Rietveld 408576698