From da3fe6f7ea5605fec35e79b49ab3a8b46a6e3c8c Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Wed, 9 Jul 2025 17:41:05 +0800 Subject: [PATCH] fix test --- src/browser/html/elements.zig | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/browser/html/elements.zig b/src/browser/html/elements.zig index 6efb839f..a0f920d2 100644 --- a/src/browser/html/elements.zig +++ b/src/browser/html/elements.zig @@ -1594,8 +1594,11 @@ test "Browser.HTML.Element" { try runner.testCases(&.{ .{ "let l2 = document.createElement('link');", null }, .{ "l2.href", "" }, - .{ "l2.href = 15", null }, - .{ "l2.href", "https://lightpanda.io/15" }, + .{ "l2.href = 'https://lightpanda.io/opensource-browser/15'", null }, + .{ "l2.href", "https://lightpanda.io/opensource-browser/15" }, + + .{ "l2.href = '/over/9000'", null }, + .{ "l2.href", "https://lightpanda.io/over/9000" }, }, .{}); }