From 82b15fbebdc04801613f30bf289d2a7c92880711 Mon Sep 17 00:00:00 2001 From: girst Date: Sat, 16 Nov 2019 12:40:18 +0100 Subject: [PATCH] fix 'eb' for nightly72 browser.xhtml now uses a (was a ) element as its root. since the ID we anchored to was assigned to , we added the hints as a sibling to the body instead of below it. regressed by Bug 1492582 --- extension/lib/commands.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/extension/lib/commands.coffee b/extension/lib/commands.coffee index dd9030e..a9ee19d 100644 --- a/extension/lib/commands.coffee +++ b/extension/lib/commands.coffee @@ -736,7 +736,8 @@ commands.click_browser_element = ({vim}) -> }) MarkerContainer.remove(window) # Better safe than sorry. markerContainer.container.classList.add('ui') - mainWindow = window.document.getElementById('main-window') + mainWindow = window.document.body or + window.document.getElementById('main-window') # fallback