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

Unified Diff: ppapi/native_client/tests/ppapi_browser/ppb_core/ppapi_ppb_core.html

Issue 10958026: Port ppapi_ppb_core nacl_integration test to browser_tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix dependancies. 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 | « ppapi/native_client/tests/ppapi_browser/ppb_core/ppapi_ppb_core.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/native_client/tests/ppapi_browser/ppb_core/ppapi_ppb_core.html
diff --git a/ppapi/native_client/tests/ppapi_browser/ppb_core/ppapi_ppb_core.html b/ppapi/native_client/tests/ppapi_browser/ppb_core/ppapi_ppb_core.html
deleted file mode 100644
index 797b16cf2b3a862b4d057135532ad1a7557a7ffa..0000000000000000000000000000000000000000
--- a/ppapi/native_client/tests/ppapi_browser/ppb_core/ppapi_ppb_core.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html>
- <!-- Copyright 2011 Google Inc. All rights reserved. -->
- <head>
- <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
- <META HTTP-EQUIV="Expires" CONTENT="-1" />
- <script type="text/javascript" src="nacltest.js"></script>
- <script type="application/x-javascript">
- //<![CDATA[
- function setupTests(tester, plugin) {
- function addTest(test_name, responses) {
- if (responses === undefined) {
- responses = [];
- }
- var expected_messages = [test_name + ':PASSED'].concat(responses);
- tester.addAsyncTest('PPB_Core::' + test_name, function(test) {
- test.expectMessageSequence(plugin, expected_messages);
- plugin.postMessage(test_name)
- });
- }
-
- // Off the main thread.
- // Doing these tests first will check that the proxy is properly
- // caching the interface pointers on the main thread on initialization.
- addTest('TestCallOnMainThread_FromNonMainThread',
- ['CallOnMainThreadCallback_FromNonMainThread']);
- addTest('TestCallOnMainThread_FromNonMainThreadStress',
- ['CallOnMainThreadCallback_ThreadStress']);
-
- // On the main thread.
- addTest('TestGetTime');
- addTest('TestGetTimeTicks');
- addTest('TestIsMainThread_FromMainThread');
- addTest('TestIsMainThread_FromNonMainThread');
- addTest('TestAddRefAndReleaseResource');
- addTest('TestAddRefAndReleaseInvalidResource');
- addTest('TestCallOnMainThread_FromMainThread',
- ['CallOnMainThreadCallback_FromMainThread']);
- addTest('TestCallOnMainThread_FromMainThreadDelayed',
- ['CallOnMainThreadCallback_FromMainThreadDelayed']);
-
- }
- //]]>
- </script>
- <title>PPAPI PPB_Core Test</title>
- </head>
- <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[
- var tester = new Tester();
- setupTests(tester, $('test_nexe'));
- tester.waitFor($('test_nexe'));
- tester.run();
- //]]>
- </script>
- </body>
-</html>
« no previous file with comments | « ppapi/native_client/tests/ppapi_browser/ppb_core/ppapi_ppb_core.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698