diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-11-15 01:50:33 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-15 21:48:19 +0000 |
commit | c9f9fcd8fdcd39e8f0160904fed093f54d31ec9e (patch) | |
tree | 193ed79fd44baaab89854a339d570f7821fea231 /Userland/Libraries/LibWeb/HTML/Scripting | |
parent | 4fd9e3ab080582de0e508d29bc3aee808c35174f (diff) | |
download | serenity-c9f9fcd8fdcd39e8f0160904fed093f54d31ec9e.zip |
LibWeb: Remove accidentally commited dbglns
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/Scripting')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp b/Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp index d0b4588aca..9583ecc567 100644 --- a/Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp +++ b/Userland/Libraries/LibWeb/HTML/Scripting/ClassicScript.cpp @@ -111,7 +111,6 @@ JS::Completion ClassicScript::run(RethrowErrors rethrow_errors) // 1. Clean up after running script with settings. settings.clean_up_after_running_script(); - dbgln("rethrow"); // 2. Rethrow evaluationStatus.[[Value]]. return JS::throw_completion(*evaluation_status.value()); } @@ -121,8 +120,6 @@ JS::Completion ClassicScript::run(RethrowErrors rethrow_errors) // 1. Clean up after running script with settings. settings.clean_up_after_running_script(); - dbgln("network error"); - // 2. Throw a "NetworkError" DOMException. return throw_completion(WebIDL::NetworkError::create(settings.realm(), "Script error.")); } @@ -130,8 +127,6 @@ JS::Completion ClassicScript::run(RethrowErrors rethrow_errors) // 3. Otherwise, rethrow errors is false. Perform the following steps: VERIFY(rethrow_errors == RethrowErrors::No); - dbgln("no rethrow, stat: {}", evaluation_status.value().value().to_string_without_side_effects()); - // 1. Report the exception given by evaluationStatus.[[Value]] for script. report_exception(evaluation_status, settings_object().realm()); |