tor-browser

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

html5lib_test_fragment.xml (880B)


      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  </head>
      7  <body>
      8    <h1>html5lib Parser Test</h1>
      9    <div id="log"></div>
     10    <script src="common.js"></script>
     11    <script src="test.js"></script>
     12    <script src="template.js"></script>
     13    <script src="/resources/testharness.js"></script>
     14    <script src="/resources/testharnessreport.js"></script>
     15    <script>
     16 
     17      var num_iframes = 8;
     18 
     19      var order = [<py:for each="test in tests">'${test.id}',</py:for>];
     20      var tests = {
     21          <py:for each="test in tests">"${test.id}":[async_test('${file_name} ${test.id}'), ${test.string_uri_encoded_input}, ${test.string_escaped_expected}, '${test.container}'],</py:for>
     22      }
     23 
     24      init_tests("innerHTML");
     25 
     26    </script>
     27  </body>
     28 </html>