test_bug237071.html (762B)
1 <!DOCTYPE HTML> 2 <html> 3 <!-- 4 https://bugzilla.mozilla.org/show_bug.cgi?id=237071 5 --> 6 <head> 7 <title>Test for Bug 237071</title> 8 <script src="/tests/SimpleTest/SimpleTest.js"></script> 9 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> 10 </head> 11 <body> 12 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=237071">Mozilla Bug 237071</a> 13 <p id="display"></p> 14 <div id="content" > 15 <ol id="theOL" start="22"> 16 <li id="foo" >should be 22</li> 17 <li id="foo23">should be 23</li> 18 </ol> 19 </div> 20 <pre id="test"> 21 <script class="testbody" type="text/javascript"> 22 /** Test for Bug 237071 */ 23 is($('theOL').start, 22, "OL start attribute mapped to .start, not just text attribute"); 24 </script> 25 </pre> 26 </body> 27 </html>