parser/htmlparser/tests/mochitest/html5lib_tree_construction/main-element.dat

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 #data
     2 <!doctype html><p>foo<main>bar<p>baz
     3 #errors
     4 (1,36): expected-closing-tag-but-got-eof
     5 #document
     6 | <!DOCTYPE html>
     7 | <html>
     8 |   <head>
     9 |   <body>
    10 |     <p>
    11 |       "foo"
    12 |     <main>
    13 |       "bar"
    14 |       <p>
    15 |         "baz"
    17 #data
    18 <!doctype html><main><p>foo</main>bar
    19 #errors
    20 #document
    21 | <!DOCTYPE html>
    22 | <html>
    23 |   <head>
    24 |   <body>
    25 |     <main>
    26 |       <p>
    27 |         "foo"
    28 |     "bar"
    30 #data
    31 <!DOCTYPE html>xxx<svg><x><g><a><main><b>
    32 #errors
    33 #document
    34 | <!DOCTYPE html>
    35 | <html>
    36 |   <head>
    37 |   <body>
    38 |     "xxx"
    39 |     <svg svg>
    40 |       <svg x>
    41 |         <svg g>
    42 |           <svg a>
    43 |             <svg main>
    44 |     <b>

mercurial