Revision b6a5c0ba587b58a11c63dc5595318f3a7ec59082 authored by Simon Pieters on 20 August 2018, 10:14:33 UTC, committed by GitHub on 20 August 2018, 10:14:33 UTC
See https://github.com/whatwg/html/issues/3921.
1 parent 3e38921
Raw File
html5lib_test_fragment.xml
<html xmlns:py="http://genshi.edgewall.org/">
  <head>
    <meta charset="utf8"/>
    <title>HTML 5 Parser tests ${file_name}</title>
    <meta name="timeout" content="long"/>
  </head>
  <body>
    <h1>html5lib Parser Test</h1>
    <div id="log"></div>
    <script src="common.js"></script>
    <script src="test.js"></script>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script>

      var num_iframes = 8;

      var order = [<py:for each="test in tests">'${test.id}',</py:for>];
      var tests = {
          <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>
      }

      init_tests("innerHTML");

    </script>
  </body>
</html>
back to top