mirror of
https://github.com/lightpanda-io/browser.git
synced 2026-08-03 03:13:05 -04:00
Continues the work started in https://github.com/lightpanda-io/browser/pull/3070 Removes the _proto field from intermediary (non-leaf) elements and uses the relative positioning from the contiguous allocation. With the work done in previous commit, this is pretty mechanical. This essentially saves 8 bytes per type. Pretty small, but now Node->* is consistently designed 1 way. Empty leaf nodes are still an issue, and the _proto remains in them (for now). It's an issue because, if it's truly empty, the leaf can have the same address as the parent or a sibling. This is something we used to have problems with (hence some types have a _pad: bool). Solvable, but separately.
51 lines
1.5 KiB
Zig
51 lines
1.5 KiB
Zig
// Copyright (C) 2023-2025 Lightpanda (Selecy SAS)
|
|
//
|
|
// Francis Bouvier <francis@lightpanda.io>
|
|
// Pierre Tachoire <pierre@lightpanda.io>
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
const lp = @import("lightpanda");
|
|
|
|
const js = @import("../../../js/js.zig");
|
|
|
|
const Node = @import("../../Node.zig");
|
|
const Element = @import("../../Element.zig");
|
|
const HtmlElement = @import("../Html.zig");
|
|
|
|
const String = lp.String;
|
|
|
|
const Unknown = @This();
|
|
|
|
pub const Proto = HtmlElement;
|
|
_proto: *HtmlElement,
|
|
_tag_name: String,
|
|
|
|
pub fn asElement(self: *Unknown) *Element {
|
|
return self._proto.asElement();
|
|
}
|
|
pub fn asNode(self: *Unknown) *Node {
|
|
return self.asElement().asNode();
|
|
}
|
|
|
|
pub const JsApi = struct {
|
|
pub const bridge = js.Bridge(Unknown);
|
|
|
|
pub const Meta = struct {
|
|
pub const name = "HTMLUnknownElement";
|
|
pub const prototype_chain = bridge.prototypeChain();
|
|
pub var class_id: bridge.ClassId = undefined;
|
|
};
|
|
};
|