mirror of
https://github.com/RGBCube/serenity
synced 2025-05-30 22:28:12 +00:00
LibWeb: Add a null-check for page() in ESO::is_scripting_enabled()
This could lead to a crash when spamming reload on a page with a <script> element.
This commit is contained in:
parent
9765f9f67e
commit
fe0f0b0acf
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ bool EnvironmentSettingsObject::is_scripting_enabled() const
|
||||||
// The user has not disabled scripting for settings at this time. (User agents may provide users with the option to disable scripting globally, or in a finer-grained manner, e.g., on a per-origin basis, down to the level of individual environment settings objects.)
|
// The user has not disabled scripting for settings at this time. (User agents may provide users with the option to disable scripting globally, or in a finer-grained manner, e.g., on a per-origin basis, down to the level of individual environment settings objects.)
|
||||||
auto document = const_cast<EnvironmentSettingsObject&>(*this).responsible_document();
|
auto document = const_cast<EnvironmentSettingsObject&>(*this).responsible_document();
|
||||||
VERIFY(document);
|
VERIFY(document);
|
||||||
if (!document->window().page()->is_scripting_enabled())
|
if (!document->page() || !document->page()->is_scripting_enabled())
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// FIXME: Either settings's global object is not a Window object, or settings's global object's associated Document's active sandboxing flag set does not have its sandboxed scripts browsing context flag set.
|
// FIXME: Either settings's global object is not a Window object, or settings's global object's associated Document's active sandboxing flag set does not have its sandboxed scripts browsing context flag set.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue