mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:27:35 +00:00
LibWeb: Rename loaded observer event to match spec
The `document_fully_loaded` event should use the adjective "completely" so as to match the spec and code convention. See `Document::is_completely_loaded` and `m_completely_loaded_time`.
This commit is contained in:
parent
bf3144fcff
commit
d24667a1b6
3 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@ class DocumentObserver final : public Bindings::PlatformObject {
|
|||
|
||||
public:
|
||||
JS::SafeFunction<void()> document_became_inactive;
|
||||
JS::SafeFunction<void()> document_fully_loaded;
|
||||
JS::SafeFunction<void()> document_completely_loaded;
|
||||
|
||||
private:
|
||||
explicit DocumentObserver(JS::Realm&, DOM::Document&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue