mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-02 06:10:58 +00:00
9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
|
|
loadPage("file:///res/html/misc/blank.html");
|
||
|
|
|
||
|
|
afterInitialPageLoad(() => {
|
||
|
|
test("window.{window,frames,self} all return the Window object", () => {
|
||
|
|
expect(window.window).toBe(window.frames);
|
||
|
|
expect(window.window).toBe(window.self);
|
||
|
|
});
|
||
|
|
});
|