We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9e2a29 commit 91ac275Copy full SHA for 91ac275
src/html/navigator.zig
@@ -77,6 +77,21 @@ pub const Navigator = struct {
77
//pub fn get_languages(self: *Navigator) [][]const u8 {
78
// return .{self.language};
79
//}
80
+ pub fn get_online(_: *Navigator) bool {
81
+ return true;
82
+ }
83
+ pub fn _registerProtocolHandler(_: *Navigator, scheme: []const u8, url: []const u8) void {
84
+ _ = scheme;
85
+ _ = url;
86
87
+ pub fn _unregisterProtocolHandler(_: *Navigator, scheme: []const u8, url: []const u8) void {
88
89
90
91
+
92
+ pub fn get_cookieEnabled(_: *Navigator) bool {
93
94
95
};
96
97
// Tests
0 commit comments