Add DOMException

Signed-off-by: Francis Bouvier <francis@lightpanda.io>
This commit is contained in:
Francis Bouvier
2023-11-23 17:14:01 +01:00
parent d279e01456
commit 57dcbe1ba9
6 changed files with 193 additions and 4 deletions

View File

@@ -12,6 +12,7 @@ const nodeTestExecFn = @import("dom/node.zig").testExecFn;
const characterDataTestExecFn = @import("dom/character_data.zig").testExecFn;
const textTestExecFn = @import("dom/text.zig").testExecFn;
const HTMLCollectionTestExecFn = @import("dom/html_collection.zig").testExecFn;
const DOMExceptionTestExecFn = @import("dom/exceptions.zig").testExecFn;
var doc: *parser.DocumentHTML = undefined;
@@ -53,6 +54,7 @@ fn testsAllExecFn(
characterDataTestExecFn,
textTestExecFn,
HTMLCollectionTestExecFn,
DOMExceptionTestExecFn,
};
inline for (testFns) |testFn| {