diff options
author | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-06 18:13:24 +0000 |
---|---|---|
committer | cbentzel@chromium.org <cbentzel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-06 18:13:24 +0000 |
commit | dc440cac1b3bd07a03272678a2be4c931d7d1957 (patch) | |
tree | f1c83c1805c5c14edc4fececde134a039d20fb4e /ppapi/tests | |
parent | ef66a99ab0de277c837acf6f1120b29e803ddac6 (diff) | |
download | chromium_src-dc440cac1b3bd07a03272678a2be4c931d7d1957.zip chromium_src-dc440cac1b3bd07a03272678a2be4c931d7d1957.tar.gz chromium_src-dc440cac1b3bd07a03272678a2be4c931d7d1957.tar.bz2 |
Revert 140786 - Enable PPAPINaCl GLIBC browser_tests.
NOTE: NaCl CL to update untrusted.gypi must go in first.
BUG=127699
TEST=this is a test
Review URL: https://chromiumcodereview.appspot.com/10409032
TBR=bradchen@google.com
Review URL: https://chromiumcodereview.appspot.com/10543028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140790 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/tests')
-rw-r--r-- | ppapi/tests/test_case.html | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/ppapi/tests/test_case.html b/ppapi/tests/test_case.html index a9d0879..d395f13 100644 --- a/ppapi/tests/test_case.html +++ b/ppapi/tests/test_case.html @@ -197,14 +197,9 @@ onload = function() { var mode = ExtractSearchParameter("mode"); document.title = 'Test ' + testcase; var obj; - if (mode == "nacl_newlib") { + if (mode == "nacl") { obj = document.createElement("EMBED"); - obj.setAttribute("src", "ppapi_nacl_tests_newlib.nmf"); - obj.setAttribute("type", "application/x-nacl"); - obj.setAttribute("mode", mode); - } else if (mode == "nacl_glibc") { - obj = document.createElement("EMBED"); - obj.setAttribute("src", "ppapi_nacl_tests_glibc.nmf"); + obj.setAttribute("src", "test_case.nmf"); obj.setAttribute("type", "application/x-nacl"); obj.setAttribute("mode", mode); } else { |