You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What OS are you using (uname -a, or Windows version)?
Darwin 21.1.0 Darwin Kernel Version 21.1.0: Wed Oct 13 17:33:23 PDT 2021; root:xnu-8019.41.5~1/RELEASE_X86_64 x86_64
What programming language are you using (C/C++/Go/Rust)?
go version go1.19.5 darwin/amd64
What did you expect to see and what you saw instead?
Errors should be logged to the console with full information; instead I just get "script error". This works correctly when I run a webserver on 127.0.0.1:8080 and use Navigate("http://localhost:8080"), suggesting the issue is that SetHtml is not actually setting the location correctly.
I suspect this is the offending code (specifically, the nullptr passed as the final argument, which should probably be something like http://localhost/):
The text was updated successfully, but these errors were encountered:
weberc2
changed the title
SetHtml() should set the location parameter in underlying call to webkit_web_view_load_html()
All JS errors are "Script errors" when using SetHtml()
Jan 27, 2023
What OS are you using (
uname -a
, or Windows version)?Darwin 21.1.0 Darwin Kernel Version 21.1.0: Wed Oct 13 17:33:23 PDT 2021; root:xnu-8019.41.5~1/RELEASE_X86_64 x86_64
What programming language are you using (C/C++/Go/Rust)?
go version go1.19.5 darwin/amd64
What did you expect to see and what you saw instead?
Errors should be logged to the console with full information; instead I just get "script error". This works correctly when I run a webserver on
127.0.0.1:8080
and useNavigate("http://localhost:8080")
, suggesting the issue is thatSetHtml
is not actually setting the location correctly.I suspect this is the offending code (specifically, the
nullptr
passed as the final argument, which should probably be something likehttp://localhost/
):The text was updated successfully, but these errors were encountered: