Emilia, mind taking a look?
Android bot must be a flake, because this ensures the test doesn't run on any android bots
#endif // BUILDFLAG(ENABLE_EXTENSIONS)have to put this back behind enable_extensions, since we don't have the implementation for tabs.highlight yet
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
Thanks Devlin!
#endif // BUILDFLAG(ENABLE_EXTENSIONS)have to put this back behind enable_extensions, since we don't have the implementation for tabs.highlight yet
Acknowledged
// Note: tabs.onHighlightChanged is deprecated.nit: lets remove this commet
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
nit: lets remove this commet
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
2 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/test/data/extensions/api_test/tabs/basics/highlight/highlight.js
Insertions: 0, Deletions: 1.
@@ -54,7 +54,6 @@
chrome.tabs.query({windowId: testWindowId1, url: 'http://a.com/*'},
pass(function(tabs) {
assertEq(4, tabs.length);
- // Note: tabs.onHighlightChanged is deprecated.
chrome.test.listenOnce(chrome.tabs.onHighlighted,
function(highlightInfo) {
var tabIds = tabs.map(function(tab) { return tab.id; });
```
[Extensions] Re-enable ExtensionApiTabTestWithContextType.Highlight
ExtensionApiTabTestWithContextType.Highlight was disabled for flakiness,
likely because on of its subtests relies on current window focus, but it
runs as a browser test (not an interactive UI test).
Instead of having the whole test disabled, just disable (by commenting
out) the single small subtest that relies on current window focus. This
gives us increased test coverage and will allow us to validate changes
we make for porting this to desktop android.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |