mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-18 23:12:02 +00:00
LibWeb+LibGfx: Apply editorial punctuation/whitespace/markup fixes
Corresponds tod426109ea1
andfd08f81d06
This commit is contained in:
parent
a35d14eab3
commit
423cdd447d
Notes:
github-actions[bot]
2025-06-24 15:13:34 +00:00
Author: https://github.com/AtkinsSJ
Commit: 423cdd447d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5194
Reviewed-by: https://github.com/shannonbooth ✅
35 changed files with 108 additions and 103 deletions
|
@ -106,7 +106,7 @@ WebIDL::ExceptionOr<void> Storage::set_item(String const& key, String const& val
|
|||
// 2. Let reorder be true.
|
||||
// 3. If this's map[key] exists:
|
||||
|
||||
// 4. If value cannot be stored, then throw a "QuotaExceededError" DOMException exception.
|
||||
// 4. If value cannot be stored, then throw a "QuotaExceededError" DOMException.
|
||||
// 5. Set this's map[key] to value.
|
||||
auto error = m_storage_bottle->set(key, value);
|
||||
if (error == WebView::StorageOperationError::QuotaExceededError) {
|
||||
|
@ -177,7 +177,7 @@ void Storage::broadcast(Optional<String> const& key, Optional<String> const& old
|
|||
if (storage->type() != type())
|
||||
continue;
|
||||
|
||||
// * relevant settings object's origin is same origin with storage's relevant settings object's origin.
|
||||
// * relevant settings object's origin is same origin with storage's relevant settings object's origin
|
||||
if (!relevant_settings_object(*this).origin().is_same_origin(relevant_settings_object(storage).origin()))
|
||||
continue;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue