mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-03-11 19:18:24 -04:00
And add some Node APIs: - getters: firstChild, lastChild, nextSibling, previoussibling, parentNode, parentElement, nodeName, nodeType, ownerDocument, isConnected - getters/setters: nodeValue, textContent - methods: appendChild And some test comptime optimizations on Document Signed-off-by: Francis Bouvier <francis.bouvier@gmail.com>
10 lines
259 B
Zig
10 lines
259 B
Zig
const parser = @import("../netsurf.zig");
|
|
|
|
const CharacterData = @import("character_data.zig").CharacterData;
|
|
|
|
pub const Comment = struct {
|
|
pub const Self = parser.Comment;
|
|
pub const prototype = *CharacterData;
|
|
pub const mem_guarantied = true;
|
|
};
|