Skip to content

Commit

Permalink
Test spec change: Remove parse error for <template><tr></tr> </template>
Browse files Browse the repository at this point in the history
See whatwg/html#8271

Co-authored-by: Simon Pieters <zcorpan@gmail.com>
  • Loading branch information
alexander-akait and zcorpan committed Sep 15, 2022
1 parent e3e6e15 commit 038c066
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions tree-construction/template.dat
Original file line number Diff line number Diff line change
Expand Up @@ -1625,3 +1625,57 @@ template
| name="q"
| <div>
| "second"

#data
<!DOCTYPE HTML><template><tr><td>cell</td></tr></template>
#document-fragment
template
#errors
#document
| <!DOCTYPE html>
| <html>
| <head>
| <template>
| content
| <tr>
| <td>
| "cell"
| <body>

#data
<!DOCTYPE HTML><template> <tr> <td>cell</td> </tr> </template>
#document-fragment
template
#errors
#document
| <!DOCTYPE html>
| <html>
| <head>
| <template>
| content
| " "
| <tr>
| " "
| <td>
| "cell"
| " "
| " "
| <body>

#data
<!DOCTYPE HTML><template><tr><td>cell</td></tr>a</template>
#document-fragment
template
#errors
(1,59): foster-parenting-character
#document
| <!DOCTYPE html>
| <html>
| <head>
| <template>
| content
| <tr>
| <td>
| "cell"
| "a"
| <body>

0 comments on commit 038c066

Please sign in to comment.