tor-browser

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

ol.start-reflection-1.html (790B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>ol.start - reflection test</title>
      5  <link rel="author" title="Shiki Okasaka" href="http://shiki.esrille.com/">
      6  <link rel="author" title="Esrille Inc." href="http://www.esrille.com/">
      7  <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-ol-element">
      8  <meta name="assert" content="This test checks that the start IDL attribute reflects the respective content attribute of the same name.">
      9  <script src="/resources/testharness.js"></script>
     10  <script src="/resources/testharnessreport.js"></script>
     11 </head>
     12 <body>
     13  <ol id="ol">
     14   <li>One</li>
     15   <li>Two</li>
     16   <li>Three</li>
     17  </ol>
     18  <div id="log"></div>
     19  <script>
     20 test(function() {
     21    assert_equals(document.getElementById('ol').start, 1);
     22 })
     23  </script>
     24 </body>
     25 </html>