mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:48:12 +00:00
LibWeb: Port DOMException interface from DeprecatedString to String
This commit is contained in:
parent
bcb6851c07
commit
41928c2902
65 changed files with 296 additions and 296 deletions
|
@ -64,7 +64,7 @@ void FetchController::abort(JS::Realm& realm, Optional<JS::Value> error)
|
|||
m_state = State::Aborted;
|
||||
|
||||
// 2. Let fallbackError be an "AbortError" DOMException.
|
||||
auto fallback_error = WebIDL::AbortError::create(realm, "Fetch was aborted"sv);
|
||||
auto fallback_error = WebIDL::AbortError::create(realm, "Fetch was aborted"_fly_string);
|
||||
|
||||
// 3. Set error to fallbackError if it is not given.
|
||||
if (!error.has_value())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue