Changeset 255227 in webkit


Ignore:
Timestamp:
Jan 27, 2020, 11:26:48 PM (5 years ago)
Author:
Antti Koivisto
Message:

Correct VTT Cue Style handling to match the specification
https://bugs.webkit.org/show_bug.cgi?id=201086

Unreviewed followup based on a review comment.

  • html/track/WebVTTParser.cpp:

(WebCore::WebVTTParser::checkAndStoreStyleSheet):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/Source/WebCore/ChangeLog

    r255226 r255227  
     12020-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
    1112020-01-27  Simon Fraser  <simon.fraser@apple.com>
    212
  • TabularUnified trunk/Source/WebCore/html/track/WebVTTParser.cpp

    r255151 r255227  
    411411            continue;
    412412
    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");
    417414    }
    418415
Note: See TracChangeset for help on using the changeset viewer.