1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-02 20:22:13 +00:00

LibWeb: Call process_the_iframe_attributes if iframe attribute changed

Replaces `load_src()` with `process_the_iframe_attributes()`. Both load
document of iframe but the latter is defined in spec.
This commit is contained in:
Aliaksandr Kalenik 2023-08-25 13:39:32 +02:00 committed by Andreas Kling
parent 5291d516c0
commit d8cfe79a20
2 changed files with 2 additions and 26 deletions

View file

@ -39,8 +39,6 @@ private:
// https://html.spec.whatwg.org/multipage/iframe-embed-object.html#process-the-iframe-attributes
void process_the_iframe_attributes(bool initial_insertion = false);
void load_src(DeprecatedString const&);
// https://html.spec.whatwg.org/multipage/iframe-embed-object.html#current-navigation-was-lazy-loaded
bool m_current_navigation_was_lazy_loaded { false };
};