Changeset 255227 in webkit
- Timestamp:
- Jan 27, 2020, 11:26:48 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r255226 r255227 1 2020-01-27 Antti Koivisto <antti@apple.com> 2 3 Correct VTT Cue Style handling to match the specification 4 https://bugs.webkit.org/show_bug.cgi?id=201086 5 6 Unreviewed followup based on a review comment. 7 8 * html/track/WebVTTParser.cpp: 9 (WebCore::WebVTTParser::checkAndStoreStyleSheet): 10 1 11 2020-01-27 Simon Fraser <simon.fraser@apple.com> 2 12 -
TabularUnified trunk/Source/WebCore/html/track/WebVTTParser.cpp ¶
r255151 r255227 411 411 continue; 412 412 413 sanitizedStyleSheetBuilder.append(selectorText); 414 sanitizedStyleSheetBuilder.appendLiteral(" { "); 415 sanitizedStyleSheetBuilder.append(styleRule.properties().asText()); 416 sanitizedStyleSheetBuilder.appendLiteral(" }\n"); 413 sanitizedStyleSheetBuilder.append(selectorText, " { ", styleRule.properties().asText(), " }\n"); 417 414 } 418 415
Note:
See TracChangeset
for help on using the changeset viewer.