()
| 253 | |
| 254 | // Show active tab's URI in the address bar |
| 255 | function updateURI() { |
| 256 | if (activeTabId == INVALID_TAB_ID) { |
| 257 | return; |
| 258 | } |
| 259 | |
| 260 | let activeTab = tabs.get(activeTabId); |
| 261 | document.getElementById('address-field').value = activeTab.uriToShow || activeTab.uri; |
| 262 | } |
| 263 | |
| 264 | // Show active tab's favicon in the address bar |
| 265 | function updateFavicon() { |
no outgoing calls
no test coverage detected