Update src/browser/html/elements.zig

Co-authored-by: Sjors <72333389+sjorsdonkers@users.noreply.github.com>
This commit is contained in:
Karl Seguin
2025-07-09 16:16:45 +08:00
committed by GitHub
parent 7f732c94da
commit f612ce262f

View File

@@ -1593,8 +1593,9 @@ test "Browser.HTML.Element" {
try runner.testCases(&.{
.{ "let l2 = document.createElement('link');", null },
.{ "l2.href = 'https://lightpanda.io/'", null },
.{ "l2.href", "https://lightpanda.io/" },
.{ "l2.href", "" },
.{ "l2.href = 15", null },
.{ "l2.href", "https://lightpanda.io/15" },
}, .{});
}