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
|
@ -258,7 +258,7 @@ public:
|
|||
TRY(serialize_viewed_array_buffer(m_vm, m_serialized, static_cast<JS::DataView&>(value.as_object()), m_for_storage, m_memory));
|
||||
}
|
||||
|
||||
// 15. Otherwise, if value has [[MapData]] internal slot, then:
|
||||
// 15. Otherwise, if value has a [[MapData]] internal slot, then:
|
||||
else if (value.is_object() && is<JS::Map>(value.as_object())) {
|
||||
// 1. Set serialized to { [[Type]]: "Map", [[MapData]]: a new empty List }.
|
||||
serialize_enum(m_serialized, ValueTag::MapObject);
|
||||
|
@ -266,7 +266,7 @@ public:
|
|||
deep = true;
|
||||
}
|
||||
|
||||
// 16. Otherwise, if value has [[SetData]] internal slot, then:
|
||||
// 16. Otherwise, if value has a [[SetData]] internal slot, then:
|
||||
else if (value.is_object() && is<JS::Set>(value.as_object())) {
|
||||
// 1. Set serialized to { [[Type]]: "Set", [[SetData]]: a new empty List }.
|
||||
serialize_enum(m_serialized, ValueTag::SetObject);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue