svelte-devtools icon indicating copy to clipboard operation
svelte-devtools copied to clipboard

Error on macos Chrome - Uncaught TypeError: Cannot read properties of null (reading 'appendChild')

Open leafOfTree opened this issue 1 year ago • 2 comments

image

"document.head" is null at the runtime. Not sure if it only occurs on macos. I've created a PR to fix it https://github.com/sveltejs/svelte-devtools/pull/233

Reproduce steps

  1. Open Chrome on macos
  2. Load this extension
  3. Launch a new project created by svelte-kit
  4. Open devtools Svelte tab
  5. Click on reload
  6. See the error in console, Svelte tab is not reloaded

Expected behavior No error, Svelte tab should show components

Environment

  • Browser with version [macos, chrome128]
  • Devtools version [chrome extension store and built from master]
  • Svelte version [^4.2.7]

leafOfTree avatar Sep 24 '24 05:09 leafOfTree

Hey, thanks for reporting this! According to MDN, document.head should never be null, so this might have something to do the chrome.scripting.executeScript() method.

https://github.com/sveltejs/svelte-devtools/blob/09f3ecde5eab7366cea099b839937e194d2344d7/workspace/extension/static/background.js#L59

I did turn on injectImmediately back then but I can't seem to remember what problems I encountered without it. Unfortunately, I don't have any access to any macOS machine, it would be great if you could try turning this setting off and see if the error still occurs. I'll try to check back here after I can verify the expected behaviors

ignatiusmb avatar Sep 24 '24 10:09 ignatiusmb

Thanks for your reply. It does work if I turn the setting off.

leafOfTree avatar Sep 24 '24 10:09 leafOfTree

I am using this extension on MacOS machine and with Google Chrome , it works properly

jalalmanafi avatar Oct 09 '24 08:10 jalalmanafi

I am getting this issue on Linux Mint in Chrome 129.0.6668.100 (Official Build) (64-bit). I have no other chrome extensions enabled. Hard reloads do not fix the issue. The extension fails to load, even on the "SvelteKit demo app" (default app when creating a new project)

Interestingly enough, when I try it on firefox, the extension works - so it does not seem to be project related. This is what the extension looks like after the error:

image

gabrielstellini avatar Oct 11 '24 19:10 gabrielstellini