Skip to content

Commit

Permalink
fix meta in table
Browse files Browse the repository at this point in the history
--HG--
extra : convert_revision : svn%3Aacbfec75-9323-0410-a652-858a13e371e0/trunk%401111
  • Loading branch information
annevk committed Mar 5, 2008
1 parent 922652b commit ea572d2
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions tree-construction/tests7.dat
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,51 @@ element-after-da-body
| <title>
| "X"

#data
<!doctype html><table><meta></table>
#errors
meta-in-table
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| <meta>
| <table>

#data
<!doctype html><table> X<meta></table>
#errors
characters-in-table
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| "X"
| <meta>
| <table>
| " "

#data
<!doctype html><table>X<tr><td><table> <meta></table></table>
#errors
characters-in-table
meta-in-table
#document
| <!DOCTYPE html>
| <html>
| <head>
| <body>
| "X"
| <table>
| <tbody>
| <tr>
| <td>
| <meta>
| <table>
| " "

#data
<!doctype html><html> <head>
#errors
Expand Down

0 comments on commit ea572d2

Please sign in to comment.