"];
}
[_stackOfOpenElements popElementsUntilElementPoppedWithTagName:@"caption"];
- [self clearListOfActiveFormattingElementsUpToLastMarker];
+ [_listOfActiveFormattingElements clearUptoLastMarker];
[self switchInsertionMode:HTMLInsertionModeInTable];
if (reprocess) {
@@ -1839,7 +1826,7 @@
[_stackOfOpenElements clearBackToTableContext];
[self insertElementForToken:token.asTagToken];
[self switchInsertionMode:HTMLInsertionModeInCell];
- [_listOfActiveFormattingElements addObject:[HTMLMarker marker]];
+ [_listOfActiveFormattingElements addMarker];
} else if ([token.asTagToken.tagName isEqualToAny:@"caption", @"col", @"colgroup", @"tbody",
@"tfoot", @"thead", @"tr", nil]) {
common(@"tr", YES);
@@ -1882,7 +1869,7 @@
[self emitParseError:@"Unexpected nested (%@) element in | ", token.asTagToken.tagName];
}
[_stackOfOpenElements popElementsUntilElementPoppedWithTagName:token.asTagToken.tagName];
- [self clearListOfActiveFormattingElementsUpToLastMarker];
+ [_listOfActiveFormattingElements clearUptoLastMarker];
[self switchInsertionMode:HTMLInsertionModeInRow];
}
} else if ([token.asTagToken.tagName isEqualToAny:@"body", @"caption", @"col", @"colgroup",
|