grouping-li-reftest-004.html (756B)
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="match" href="grouping-li-reftest-004-ref.html"> 13 <style> 14 body { margin-left: 40px } 15 li { list-style-type: decimal } 16 </style> 17 </head> 18 <body> 19 <li></li> 20 <li></li> 21 <li></li> 22 <li></li> 23 <div><li></li></div> 24 <div><div><li></li></div></div> 25 </body> 26 </html>