| Index: third_party/WebKit/Source/core/html/track/vtt/VTTParser.h
|
| diff --git a/third_party/WebKit/Source/core/html/track/vtt/VTTParser.h b/third_party/WebKit/Source/core/html/track/vtt/VTTParser.h
|
| index 63a13d27d69364c31d982e35fe2ddc2c8077342f..f5600b39298a2a30ae6c0959e02e1ff3ad2ecc8f 100644
|
| --- a/third_party/WebKit/Source/core/html/track/vtt/VTTParser.h
|
| +++ b/third_party/WebKit/Source/core/html/track/vtt/VTTParser.h
|
| @@ -81,8 +81,9 @@ class VTTParser final : public GarbageCollectedFinalized<VTTParser> {
|
| return c == ' ' || c == '\t' || c == '\n' || c == '\f' || c == '\r';
|
| }
|
| static inline bool isValidSettingDelimiter(UChar c) {
|
| - // ... a WebVTT cue consists of zero or more of the following components, in any order, separated from each other by one or more
|
| - // U+0020 SPACE characters or U+0009 CHARACTER TABULATION (tab) characters.
|
| + // ... a WebVTT cue consists of zero or more of the following components, in
|
| + // any order, separated from each other by one or more U+0020 SPACE
|
| + // characters or U+0009 CHARACTER TABULATION (tab) characters.
|
| return c == ' ' || c == '\t';
|
| }
|
| static bool collectTimeStamp(const String&, double& timeStamp);
|
|
|