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.
2 parents 9ea9859 + 9c4088b commit 3f9b256Copy full SHA for 3f9b256
src/browser/crypto/crypto.zig
@@ -21,6 +21,8 @@ const uuidv4 = @import("../../id.zig").uuidv4;
21
22
// https://w3c.github.io/webcrypto/#crypto-interface
23
pub const Crypto = struct {
24
+ _not_empty: bool = true,
25
+
26
pub fn _getRandomValues(_: *const Crypto, into: RandomValues) !RandomValues {
27
const buf = into.asBuffer();
28
if (buf.len > 65_536) {
src/browser/css/css.zig
@@ -29,6 +29,8 @@ pub const Interfaces = .{
29
30
// https://developer.mozilla.org/en-US/docs/Web/API/CSS
31
pub const Css = struct {
32
33
34
pub fn _supports(_: *Css, _: []const u8, _: ?[]const u8) bool {
35
// TODO: Actually respond with which CSS features we support.
36
return true;
0 commit comments