| Index: chrome/test/data/extensions/api_test/webnavigation/framework.js
|
| diff --git a/chrome/test/data/extensions/api_test/webnavigation/framework.js b/chrome/test/data/extensions/api_test/webnavigation/framework.js
|
| index eae8f7162b08a872678b1c05fe05471dc6985593..859c0385b2670cb716c9ae457b1bd0c5d176780b 100644
|
| --- a/chrome/test/data/extensions/api_test/webnavigation/framework.js
|
| +++ b/chrome/test/data/extensions/api_test/webnavigation/framework.js
|
| @@ -110,6 +110,14 @@ function captureEvent(name, details) {
|
| }
|
| details.replacedTabId = tabIds[details.replacedTabId];
|
| }
|
| + // Don't bother testing those before we don't correctly dispatch events for
|
| + // cross process navigations.
|
| + if ('processId' in details) {
|
| + delete details.processId;
|
| + }
|
| + if ('sourceProcessId' in details) {
|
| + delete details.sourceProcessId;
|
| + }
|
|
|
| // find |details| in expectedEventData
|
| var found = false;
|
|
|