Skip to content

Commit da3fe6f

Browse files
committed
fix test
1 parent f612ce2 commit da3fe6f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/browser/html/elements.zig

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1594,8 +1594,11 @@ test "Browser.HTML.Element" {
15941594
try runner.testCases(&.{
15951595
.{ "let l2 = document.createElement('link');", null },
15961596
.{ "l2.href", "" },
1597-
.{ "l2.href = 15", null },
1598-
.{ "l2.href", "https://lightpanda.io/15" },
1597+
.{ "l2.href = 'https://lightpanda.io/opensource-browser/15'", null },
1598+
.{ "l2.href", "https://lightpanda.io/opensource-browser/15" },
1599+
1600+
.{ "l2.href = '/over/9000'", null },
1601+
.{ "l2.href", "https://lightpanda.io/over/9000" },
15991602
}, .{});
16001603
}
16011604

0 commit comments

Comments
 (0)