tor-browser

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

reflection-original.html (1790B)


      1 <!doctype html>
      2 <title>HTML5 reflection tests</title>
      3 <meta name=timeout content=long>
      4 <p>This is <em>not</em> the authoritative conformance test suite for
      5 reflection.  The authoritative tests can be found here, split up into sections:
      6 
      7 <ul>
      8  <li><a href=reflection-metadata.html>Metadata elements</a>
      9  <li><a href=reflection-sections.html>Section elements</a>
     10  <li><a href=reflection-grouping.html>Grouping elements</a>
     11  <li><a href=reflection-text.html>Text elements</a>
     12  <li><a href=reflection-embedded.html>Embedded elements</a>
     13  <li><a href=reflection-tabular.html>Tabular elements</a>
     14  <li><a href=reflection-forms.html>Form elements</a>
     15  <li><a href=reflection-misc.html>Miscellaneous elements</a>
     16  <li><a href=reflection-obsolete.html>Obsolete elements</a>
     17 </ul>
     18 
     19 <p>This test suite is provided for implementers' convenience in debugging
     20 failures.  It groups similar failures in a fashion that should help fix them.
     21 It is not intended to be suitable for incorporation into automated testing
     22 frameworks.
     23 
     24 <p>Filter out errors matching a regex (operates on HTML not text, you have to manually escape entities): <input oninput="maskErrors(this.value)">
     25 
     26 <p>Passed: <span id=passed>0</span> (<span id=percent></span>%).  Failed: <span id=failed>0</span>.  Time to complete: <span id=time>0</span> s.
     27 
     28 <div id=errors></div>
     29 
     30 <script src=original-harness.js></script>
     31 <script src=elements-metadata.js></script>
     32 <script src=elements-sections.js></script>
     33 <script src=elements-grouping.js></script>
     34 <script src=elements-text.js></script>
     35 <script src=elements-embedded.js></script>
     36 <script src=elements-tabular.js></script>
     37 <script src=elements-forms.js></script>
     38 <script src=elements-misc.js></script>
     39 <script src=elements-obsolete.js></script>
     40 <script src=reflection.js></script>