We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f732c9 commit f612ce2Copy full SHA for f612ce2
src/browser/html/elements.zig
@@ -1593,8 +1593,9 @@ test "Browser.HTML.Element" {
1593
1594
try runner.testCases(&.{
1595
.{ "let l2 = document.createElement('link');", null },
1596
- .{ "l2.href = 'https://lightpanda.io/'", null },
1597
- .{ "l2.href", "https://lightpanda.io/" },
+ .{ "l2.href", "" },
+ .{ "l2.href = 15", null },
1598
+ .{ "l2.href", "https://lightpanda.io/15" },
1599
}, .{});
1600
}
1601
0 commit comments