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 535a21c commit b87a59fCopy full SHA for b87a59f
src/tests/html/document.html
@@ -68,10 +68,10 @@
68
69
let a_again = document.elementFromPoint(1.5, 0.5);
70
testing.expectEqual('[object HTMLAnchorElement]', a_again.toString());
71
- testing.expectEqual('https://lightpanda.io', a_again.href);
+ testing.expectEqual('https://lightpanda.io/', a_again.href);
72
73
let a_agains = document.elementsFromPoint(1.5, 0.5);
74
- testing.expectEqual('https://lightpanda.io', a_agains[0].href);
+ testing.expectEqual('https://lightpanda.io/', a_agains[0].href);
75
76
77
testing.expectEqual(true, !document.all);
0 commit comments