Skip to content

Commit 9f54cb3

Browse files
committed
remove unused import and debug stmt
1 parent 329bffb commit 9f54cb3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/browser/html/elements.zig

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const urlStitch = @import("../../url.zig").URL.stitch;
2727
const URL = @import("../url/url.zig").URL;
2828
const Node = @import("../dom/node.zig").Node;
2929
const Element = @import("../dom/element.zig").Element;
30-
const ElementUnion = @import("../dom/element.zig").Union;
3130

3231
const CSSStyleDeclaration = @import("../cssom/css_style_declaration.zig").CSSStyleDeclaration;
3332

@@ -1405,7 +1404,6 @@ pub fn toInterface(comptime T: type, e: *parser.Element) !T {
14051404

14061405
fn constructHtmlElement(page: *Page, js_this: Env.JsThis) !*parser.Element {
14071406
const constructor_name = try js_this.constructorName(page.call_arena);
1408-
std.debug.print("constructor: {s}\n", .{constructor_name});
14091407
if (!page.window.custom_elements.lookup.contains(constructor_name)) {
14101408
return error.IllegalContructor;
14111409
}

0 commit comments

Comments
 (0)