mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-29 07:03:29 +00:00
Forgot to commit files on b8aa291e1e
Signed-off-by: Francis Bouvier <francis.bouvier@gmail.com>
This commit is contained in:
10
src/dom/dom.zig
Normal file
10
src/dom/dom.zig
Normal file
@@ -0,0 +1,10 @@
|
||||
const generate = @import("../generate.zig");
|
||||
|
||||
const EventTarget = @import("event_target.zig").EventTarget;
|
||||
const Nod = @import("node.zig");
|
||||
|
||||
pub const Interfaces = generate.Tuple(.{
|
||||
EventTarget,
|
||||
Nod.Node,
|
||||
Nod.Interfaces,
|
||||
});
|
||||
11
src/html/html.zig
Normal file
11
src/html/html.zig
Normal file
@@ -0,0 +1,11 @@
|
||||
const generate = @import("../generate.zig");
|
||||
|
||||
const HTMLDocument = @import("document.zig").HTMLDocument;
|
||||
const HTMLElem = @import("elements.zig");
|
||||
|
||||
pub const Interfaces = generate.Tuple(.{
|
||||
HTMLDocument,
|
||||
HTMLElem.HTMLElement,
|
||||
HTMLElem.HTMLMediaElement,
|
||||
HTMLElem.Interfaces,
|
||||
});
|
||||
Reference in New Issue
Block a user