1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-29 09:52:12 +00:00

LibWeb: Rename HTMLScriptElement::m_script_source => m_source_text

This commit is contained in:
Andreas Kling 2021-09-09 18:11:33 +02:00
parent e1fb8bef09
commit bc12921d43
2 changed files with 5 additions and 5 deletions

View file

@ -61,7 +61,7 @@ private:
Function<void()> m_script_ready_callback;
String m_script_source;
String m_source_text;
String m_script_filename;
};