grouping-li-reftest-007.html (1042B)
1 <!DOCTYPE html> 2 <!-- 3 Any copyright is dedicated to the Public Domain. 4 http://creativecommons.org/publicdomain/zero/1.0/ 5 --> 6 <html><head> 7 <meta charset="utf-8"> 8 <title>HTML LI element: implied scope</title> 9 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.org"> 10 <link rel="help" href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-li-element"> 11 <link rel="help" href="https://drafts.csswg.org/css-lists/#propdef-counter-reset"> 12 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1745506"> 13 <link rel="match" href="grouping-li-reftest-004-ref.html"> 14 <style> 15 body { margin-left: 40px } 16 ol { margin: 0; padding: 0 } 17 li { list-style-type: decimal } 18 </style> 19 </head> 20 <body> 21 <div><ol start=99></ol></div> <!-- this scope shouldn't affect the LIs below --> 22 <ol style="counter-reset: item"> <!-- this counter shouldn't affect the LIs below --> 23 <li></li> 24 <li></li> 25 <li></li> 26 <li></li> 27 <div><li></li></div> 28 <div><div><li></li></div></div> 29 </ol> 30 </body> 31 </html>