File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ Bug Fixes to AST Handling
195
195
- Fix incorrect name qualifiers applied to alias CTAD. (#GH136624)
196
196
- Fixed ElaboratedTypes appearing within NestedNameSpecifier, which was not a
197
197
legal representation. This is fixed because ElaboratedTypes don't exist anymore. (#GH43179) (#GH68670) (#GH92757)
198
+ - Fix unrecognized html tag causing undesirable comment lexing (#GH152944)
198
199
199
200
Miscellaneous Bug Fixes
200
201
^^^^^^^^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change @@ -52,6 +52,10 @@ def Tr : Tag<"tr"> { let EndTagOptional = 1; }
52
52
def Th : Tag<"th"> { let EndTagOptional = 1; }
53
53
def Td : Tag<"td"> { let EndTagOptional = 1; }
54
54
def Summary : Tag<"summary">;
55
+ def Details : Tag<"details">;
56
+ def Mark : Tag<"mark">;
57
+ def Figure : Tag<"figure">;
58
+ def FigCaption : Tag<"figcaption">;
55
59
56
60
// Define a list of attributes that are not safe to pass through to HTML
57
61
// output if the input is untrusted.
Original file line number Diff line number Diff line change @@ -139,4 +139,4 @@ int Test_HTMLSummaryTag(int Aaa);
139
139
// CHECK-NEXT: ParagraphComment
140
140
// CHECK: HTMLStartTagComment{{.*}} Name="summary"
141
141
// CHECK-NEXT: TextComment{{.*}} Text="Short summary"
142
- // CHECK-NEXT: HTMLEndTagComment{{.*}} Name="summary"
142
+ // CHECK-NEXT: HTMLEndTagComment{{.*}} Name="summary"
You can’t perform that action at this time.
0 commit comments