golang.org/x/net@v0.25.1-0.20240516223405-c87a5b62e243/html/testdata/webkit/inbody01.dat (about)

     1  #data
     2  <button>1</foo>
     3  #errors
     4  (1,8): expected-doctype-but-got-start-tag
     5  (1,15): unexpected-end-tag
     6  (1,15): expected-closing-tag-but-got-eof
     7  #document
     8  | <html>
     9  |   <head>
    10  |   <body>
    11  |     <button>
    12  |       "1"
    13  
    14  #data
    15  <foo>1<p>2</foo>
    16  #errors
    17  (1,5): expected-doctype-but-got-start-tag
    18  (1,16): unexpected-end-tag
    19  (1,16): expected-closing-tag-but-got-eof
    20  #document
    21  | <html>
    22  |   <head>
    23  |   <body>
    24  |     <foo>
    25  |       "1"
    26  |       <p>
    27  |         "2"
    28  
    29  #data
    30  <dd>1</foo>
    31  #errors
    32  (1,4): expected-doctype-but-got-start-tag
    33  (1,11): unexpected-end-tag
    34  #document
    35  | <html>
    36  |   <head>
    37  |   <body>
    38  |     <dd>
    39  |       "1"
    40  
    41  #data
    42  <foo>1<dd>2</foo>
    43  #errors
    44  (1,5): expected-doctype-but-got-start-tag
    45  (1,17): unexpected-end-tag
    46  (1,17): expected-closing-tag-but-got-eof
    47  #document
    48  | <html>
    49  |   <head>
    50  |   <body>
    51  |     <foo>
    52  |       "1"
    53  |       <dd>
    54  |         "2"