Revision 39537497aa16562237a3da4e0a018937e220263f authored by Michael[tm] Smith on 02 January 2015, 00:11:58 UTC, committed by Michael[tm] Smith on 02 January 2015, 00:11:58 UTC
To reflect change made in https://github.com/w3c/web-platform-tests/pull/1493
1 parent 673c5f3
Raw File
html5lib_test.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="template.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}],</py:for>
      }
      init_tests(get_type());
    </script>

  </body>
</html>
back to top