* Scrolls the page related to a specific tab id in order to show a context. * * @param {number} tabId * @param {number} contextId
(tabId, contextId)
| 147 | * @param {number} contextId |
| 148 | */ |
| 149 | async function scrollToContext(tabId, contextId) { |
| 150 | let connection = await getScriptConnection("content", tabId); |
| 151 | await connection.scrollToContext(contextId); |
| 152 | } |
| 153 | |
| 154 | async function getPathFromContext(tabId, contextId) { |
| 155 | let connection = await getScriptConnection("content", tabId); |
nothing calls this directly
no test coverage detected