tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

html5lib_test.xml (1020B)


      1 <html xmlns:py="http://genshi.edgewall.org/">
      2  <head>
      3    <meta charset="utf8"/>
      4    <title>HTML 5 Parser tests ${file_name}</title>
      5    <meta name="timeout" content="long"/>
      6    <meta name="variant" content="?run_type=uri"/>
      7    <meta name="variant" content="?run_type=write"/>
      8    <meta name="variant" content="?run_type=write_single"/>
      9  </head>
     10  <body>
     11    <h1>html5lib Parser Test</h1>
     12    <div id="log"></div>
     13    <script src="common.js"></script>
     14    <script src="test.js"></script>
     15    <script src="template.js"></script>
     16    <script src="/resources/testharness.js"></script>
     17    <script src="/resources/testharnessreport.js"></script>
     18    <script>
     19      var num_iframes = 8;
     20 
     21      var order = [<py:for each="test in tests">'${test.id}',</py:for>];
     22      var tests = {
     23          <py:for each="test in tests">"${test.id}":[async_test('${file_name} ${test.id}'), ${test.string_uri_encoded_input}, ${test.string_escaped_expected}],</py:for>
     24      }
     25      init_tests(get_type());
     26    </script>
     27 
     28  </body>
     29 </html>