mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-10-30 15:41:48 +00:00
main: global document must be the html doc
This commit is contained in:
@@ -206,7 +206,7 @@ pub const Page = struct {
|
|||||||
log.debug("setup global env", .{});
|
log.debug("setup global env", .{});
|
||||||
try self.env.addObject(apis, self.window, "window");
|
try self.env.addObject(apis, self.window, "window");
|
||||||
try self.env.addObject(apis, self.window, "self");
|
try self.env.addObject(apis, self.window, "self");
|
||||||
try self.env.addObject(apis, doc, "document");
|
try self.env.addObject(apis, html_doc, "document");
|
||||||
|
|
||||||
// browse the DOM tree to retrieve scripts
|
// browse the DOM tree to retrieve scripts
|
||||||
var sasync = std.ArrayList(*parser.Element).init(self.allocator);
|
var sasync = std.ArrayList(*parser.Element).init(self.allocator);
|
||||||
|
|||||||
Reference in New Issue
Block a user