| Index: ppapi/tests/test_case.html
|
| diff --git a/ppapi/tests/test_case.html b/ppapi/tests/test_case.html
|
| index d395f131f1af4a29ef461f5132adaeeb1599bfdd..3194f1c2882378b22cf061df648617ec5c7176d4 100644
|
| --- a/ppapi/tests/test_case.html
|
| +++ b/ppapi/tests/test_case.html
|
| @@ -197,11 +197,16 @@ onload = function() {
|
| var mode = ExtractSearchParameter("mode");
|
| document.title = 'Test ' + testcase;
|
| var obj;
|
| - if (mode == "nacl") {
|
| + if (mode == "nacl_newlib") {
|
| obj = document.createElement("EMBED");
|
| obj.setAttribute("src", "test_case.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("type", "application/x-nacl");
|
| + obj.setAttribute("mode", mode);
|
| } else {
|
| var mimeType = "application/x-ppapi-tests";
|
| if (mimeType in navigator.mimeTypes) {
|
|
|