mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +00:00
LibWeb: Make it obvious that DOM::Document makes a copy of its source
This commit is contained in:
parent
f8cdfb8907
commit
e7412717b4
1 changed files with 1 additions and 1 deletions
|
@ -217,7 +217,7 @@ public:
|
||||||
JS::NonnullGCPtr<HTMLCollection> all();
|
JS::NonnullGCPtr<HTMLCollection> all();
|
||||||
|
|
||||||
String const& source() const { return m_source; }
|
String const& source() const { return m_source; }
|
||||||
void set_source(String const& source) { m_source = source; }
|
void set_source(String source) { m_source = move(source); }
|
||||||
|
|
||||||
HTML::EnvironmentSettingsObject& relevant_settings_object();
|
HTML::EnvironmentSettingsObject& relevant_settings_object();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue