Skip to content

Commit b87a59f

Browse files
committed
href should have / if path not provided
1 parent 535a21c commit b87a59f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/html/document.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,10 @@
6868

6969
let a_again = document.elementFromPoint(1.5, 0.5);
7070
testing.expectEqual('[object HTMLAnchorElement]', a_again.toString());
71-
testing.expectEqual('https://lightpanda.io', a_again.href);
71+
testing.expectEqual('https://lightpanda.io/', a_again.href);
7272

7373
let a_agains = document.elementsFromPoint(1.5, 0.5);
74-
testing.expectEqual('https://lightpanda.io', a_agains[0].href);
74+
testing.expectEqual('https://lightpanda.io/', a_agains[0].href);
7575

7676

7777
testing.expectEqual(true, !document.all);

0 commit comments

Comments
 (0)