We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import { Webview } from "jsr:@webview/webview"; const html = ` <html> <body> <h1>Hello from deno v${Deno.version.deno}</h1> </body> </html> `; const webview = new Webview(); webview.navigate(`data:text/html,${encodeURIComponent(html)}`); webview.run();
deno run -A a.ts
(deno:32997): Gtk-CRITICAL **: 00:43:14.284: gtk_main_quit: assertion 'main_loops != NULL' failed fish: Job 1, 'deno -A a.ts' terminated by signal SIGSEGV (Address boundary error)
gtk3-3.24.43-1.fc40.x86_64 gtk4-4.14.4-2.fc40.x86_64
The error seems to be a warning, but some times it casues issues, specially when invoking a worker it seems it make it not exit or segfault
The current workaround it to use Deno.exit(0)
Deno.exit(0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
deno run -A a.ts
The error seems to be a warning, but some times it casues issues, specially when invoking a worker it seems it make it not exit or segfault
The current workaround it to use
Deno.exit(0)
The text was updated successfully, but these errors were encountered: