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 f612ce2 commit da3fe6fCopy full SHA for da3fe6f
src/browser/html/elements.zig
@@ -1594,8 +1594,11 @@ test "Browser.HTML.Element" {
1594
try runner.testCases(&.{
1595
.{ "let l2 = document.createElement('link');", null },
1596
.{ "l2.href", "" },
1597
- .{ "l2.href = 15", null },
1598
- .{ "l2.href", "https://lightpanda.io/15" },
+ .{ "l2.href = 'https://lightpanda.io/opensource-browser/15'", null },
+ .{ "l2.href", "https://lightpanda.io/opensource-browser/15" },
1599
+
1600
+ .{ "l2.href = '/over/9000'", null },
1601
+ .{ "l2.href", "https://lightpanda.io/over/9000" },
1602
}, .{});
1603
}
1604
0 commit comments