diff options
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 { |