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
@@ -42235,7 +42235,7 @@ <h1>
42235
42235
1. Let _targetBuffer_ be _target_.[[ViewedArrayBuffer]].
42236
42236
1. Let _srcBuffer_ be _source_.[[ViewedArrayBuffer]].
42237
42237
1. Let _srcByteIndex_ be _source_.[[ByteOffset]].
42238
-
1. If IsSameBuffer(_srcBuffer_, _targetBuffer_) is *true*, then
42238
+
1. If _targetBuffer_.[[ArrayBufferData]] is _srcBuffer_.[[ArrayBufferData]], then
42239
42239
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.
42240
42240
1. Let _srcByteLength_ be TypedArrayByteLength(_srcRecord_).
42241
42241
1. Set _srcBuffer_ to ? CloneArrayBuffer(_srcBuffer_, _srcByteIndex_, _srcByteLength_).
0 commit comments