1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:17:44 +00:00

LibWeb: Clear the "is initial about:blank" flag in Document.write()

This commit is contained in:
Andreas Kling 2022-08-05 01:06:29 +02:00
parent c46a8194b4
commit b6bd793ede

View file

@ -458,7 +458,8 @@ ExceptionOr<Document*> Document::open(String const&, String const&)
// FIXME: 3. Run the URL and history update steps with document and newURL. // FIXME: 3. Run the URL and history update steps with document and newURL.
} }
// FIXME: 13. Set document's is initial about:blank to false. // 13. Set document's is initial about:blank to false.
set_is_initial_about_blank(false);
// FIXME: 14. If document's iframe load in progress flag is set, then set document's mute iframe load flag. // FIXME: 14. If document's iframe load in progress flag is set, then set document's mute iframe load flag.