You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spec.html
+3-19Lines changed: 3 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -42293,7 +42293,7 @@ <h1>
42293
42293
1. Let _targetBuffer_ be _target_.[[ViewedArrayBuffer]].
42294
42294
1. Let _srcBuffer_ be _source_.[[ViewedArrayBuffer]].
42295
42295
1. Let _srcByteIndex_ be _source_.[[ByteOffset]].
42296
-
1. If IsSameBuffer(_srcBuffer_, _targetBuffer_) is *true*, then
42296
+
1. If _targetBuffer_.[[ArrayBufferData]] is _srcBuffer_.[[ArrayBufferData]], then
42297
42297
1. NOTE: This operation must behave as if copying data into an overlapping range within the same Data Block is a single atomic step. But because the results of copying are not observable until it completes, implementations unable to perform such copying atomically may still avoid allocating a new ArrayBuffer by copying chunks in-place if they alter the direction of iteration as appropriate to avoid overwriting source data that has not yet been read.
42298
42298
1. Let _srcByteLength_ be TypedArrayByteLength(_srcRecord_).
42299
42299
1. Set _srcBuffer_ to ? CloneArrayBuffer(_srcBuffer_, _srcByteIndex_, _srcByteLength_).
0 commit comments