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

Unified Diff: ppapi/native_client/tests/ppapi_browser/manifest/manifest.html

Issue 14069002: Allow to have different files for different ISAs in NaCl manifest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 8 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: ppapi/native_client/tests/ppapi_browser/manifest/manifest.html
===================================================================
--- ppapi/native_client/tests/ppapi_browser/manifest/manifest.html (revision 193870)
+++ ppapi/native_client/tests/ppapi_browser/manifest/manifest.html (working copy)
@@ -34,6 +34,15 @@
1, // loadCount
undefined // lastError
);
+testProgressEventStateMachine(
+ tester,
+ 'arch_specific_files',
+ 2, // progressMinCount
+ 0, // errorCount
+ 0, // abortCount
+ 1, // loadCount
+ undefined // lastError
+);
function runTests() {
tester.waitFor($('topdir_static'), $('subdir_static'));
tester.run();
@@ -60,6 +69,16 @@
width=0 height=0
src="subdir/manifest_subdir.nmf"
type="application/x-nacl" />
+
+<!--
+// manifest_arch_specific refers to unused files that are not available on all
+// platforms.
+-->
+<embed id="arch_specific_files"
+ class="naclModule"
+ width=0 height=0
+ src="manifest_arch_specific.nmf"
+ type="application/x-nacl" />
<script type="text/javascript">
//<![CDATA[

Powered by Google App Engine
This is Rietveld 408576698