mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Add SerializationMemory parameter to serialization_steps()
We want to bring with us the value of SerializationMemory to Serializable::serialization_steps() when doing sub serialization.
This commit is contained in:
parent
924423c596
commit
4669c1ba31
Notes:
sideshowbarker
2024-07-16 22:14:49 +09:00
Author: https://github.com/kennethmyhra
Commit: 4669c1ba31
Pull-request: https://github.com/SerenityOS/serenity/pull/23636
12 changed files with 12 additions and 12 deletions
|
@ -698,7 +698,7 @@ WebIDL::ExceptionOr<String> DOMMatrixReadOnly::to_string() const
|
|||
}
|
||||
|
||||
// https://drafts.fxtf.org/geometry/#structured-serialization
|
||||
WebIDL::ExceptionOr<void> DOMMatrixReadOnly::serialization_steps(HTML::SerializationRecord& serialized, bool)
|
||||
WebIDL::ExceptionOr<void> DOMMatrixReadOnly::serialization_steps(HTML::SerializationRecord& serialized, bool, HTML::SerializationMemory&)
|
||||
{
|
||||
HTML::serialize_primitive_type(serialized, m_is_2d);
|
||||
// 1. If value’s is 2D is true:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue