parser/htmlparser/tests/mochitest/html5lib_tree_construction/tests14.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><html><body><xyz:abc></xyz:abc>
     3 #errors
     4 #document
     5 | <!DOCTYPE html>
     6 | <html>
     7 |   <head>
     8 |   <body>
     9 |     <xyz:abc>
    11 #data
    12 <!DOCTYPE html><html><body><xyz:abc></xyz:abc><span></span>
    13 #errors
    14 #document
    15 | <!DOCTYPE html>
    16 | <html>
    17 |   <head>
    18 |   <body>
    19 |     <xyz:abc>
    20 |     <span>
    22 #data
    23 <!DOCTYPE html><html><html abc:def=gh><xyz:abc></xyz:abc>
    24 #errors
    25 (1,38): non-html-root
    26 #document
    27 | <!DOCTYPE html>
    28 | <html>
    29 |   abc:def="gh"
    30 |   <head>
    31 |   <body>
    32 |     <xyz:abc>
    34 #data
    35 <!DOCTYPE html><html xml:lang=bar><html xml:lang=foo>
    36 #errors
    37 (1,53): non-html-root
    38 #document
    39 | <!DOCTYPE html>
    40 | <html>
    41 |   xml:lang="bar"
    42 |   <head>
    43 |   <body>
    45 #data
    46 <!DOCTYPE html><html 123=456>
    47 #errors
    48 #document
    49 | <!DOCTYPE html>
    50 | <html>
    51 |   123="456"
    52 |   <head>
    53 |   <body>
    55 #data
    56 <!DOCTYPE html><html 123=456><html 789=012>
    57 #errors
    58 (1,43): non-html-root
    59 #document
    60 | <!DOCTYPE html>
    61 | <html>
    62 |   123="456"
    63 |   789="012"
    64 |   <head>
    65 |   <body>
    67 #data
    68 <!DOCTYPE html><html><body 789=012>
    69 #errors
    70 #document
    71 | <!DOCTYPE html>
    72 | <html>
    73 |   <head>
    74 |   <body>
    75 |     789="012"

mercurial