Changeset 266621 in webkit
- Timestamp:
- Sep 4, 2020, 11:06:25 AM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r266620 r266621 1 2020-09-04 Alex Christensen <achristensen@webkit.org> 2 3 Fix indentation after r266533 4 https://bugs.webkit.org/show_bug.cgi?id=193274 5 6 * dom/TextEncoder.cpp: 7 (WebCore::TextEncoder::encodeInto): 8 * dom/TextEncoder.idl: 9 1 10 2020-09-04 Alex Christensen <achristensen@webkit.org> 2 11 -
trunk/Source/WebCore/dom/TextEncoder.cpp
r266533 r266621 59 59 UBool sawError = false; 60 60 U8_APPEND(destinationBytes, written, capacity, token, sawError); 61 62 61 if (sawError) 62 break; 63 63 if (U_IS_BMP(token)) 64 64 read++; -
trunk/Source/WebCore/dom/TextEncoder.idl
r266615 r266621 27 27 JSGenerateToJSObject 28 28 ] dictionary TextEncoderEncodeIntoResult { 29 unsigned long long read;30 unsigned long long written;29 unsigned long long read; 30 unsigned long long written; 31 31 }; 32 32
Note:
See TracChangeset
for help on using the changeset viewer.