Commit-Queue | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
public Tab createNewTabForDevTools(GURL url, boolean newWindow) {
This method is for devtools, so I think we shouldn't change it. Isn't using openNewTab not enough? (see the comment below)
if (disposition == WindowOpenDisposition::NEW_POPUP ||
It seems [1] openNewTab can take NEW_POPUP and NEW_WINDOW as disposition. Why do we need this if statement?
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (disposition == WindowOpenDisposition::NEW_POPUP ||
It seems [1] openNewTab can take NEW_POPUP and NEW_WINDOW as disposition. Why do we need this if statement?
unfortunately when openNewTab takes NEW_POPUP and NEW_WINDOW the new tab just opens in the current window. It seems that the implementation inside openNewTab ([2]?) doesn't consider multiinstance
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |