| Index: webkit/tools/npapi_layout_test_plugin/main.cpp
|
| ===================================================================
|
| --- webkit/tools/npapi_layout_test_plugin/main.cpp (revision 17918)
|
| +++ webkit/tools/npapi_layout_test_plugin/main.cpp (working copy)
|
| @@ -143,6 +143,14 @@
|
| obj->onURLNotify = strdup(argv[i]);
|
| else if (strcasecmp(argn[i], "logfirstsetwindow") == 0)
|
| obj->logSetWindow = TRUE;
|
| + else if (strcasecmp(argn[i], "logSrc") == 0) {
|
| + for (int i = 0; i < argc; i++) {
|
| + if (strcasecmp(argn[i], "src") == 0) {
|
| + log(instance, "src: %s", argv[i]);
|
| + fflush(stdout);
|
| + }
|
| + }
|
| + }
|
| }
|
|
|
| instance->pdata = obj;
|
|
|