mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-30 15:41:48 +00:00
13 lines
306 B
Zig
13 lines
306 B
Zig
const std = @import("std");
|
|
|
|
const parser = @import("../netsurf.zig");
|
|
|
|
const Text = @import("text.zig").Text;
|
|
|
|
// https://dom.spec.whatwg.org/#cdatasection
|
|
pub const CDATASection = struct {
|
|
pub const Self = parser.CDATASection;
|
|
pub const prototype = *Text;
|
|
pub const mem_guarantied = true;
|
|
};
|