mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 06:07:59 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
loadPage("file:///res/html/misc/blank.html");
|
||||
|
||||
afterInitialPageLoad(() => {
|
||||
test("Basic functionality", () => {
|
||||
const comment = document.createComment("Create Comment Test");
|
||||
|
||||
// FIXME: Add this in once Comment's constructor is implemented.
|
||||
//expect(comment).toBeInstanceOf(Comment);
|
||||
expect(comment.nodeName).toBe("#comment");
|
||||
expect(comment.data).toBe("Create Comment Test");
|
||||
expect(comment.length).toBe(19);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user