open-summary-inline-style.html (559B)
1 <!DOCTYPE html> 2 <!-- Any copyright is dedicated to the Public Domain. 3 - http://creativecommons.org/publicdomain/zero/1.0/ --> 4 5 <html> 6 <style> 7 summary { 8 display: inline; 9 } 10 </style> 11 <body> 12 <details open> 13 <p>This is the details.</p> 14 <!-- Make summary the second element child so that layout will try to 15 render it as the first child. --> 16 <summary>Summary 17 <!-- Need ib-split so that the summary has multiple frames. --> 18 <div>Block in summary</div> 19 </summary> 20 </details> 21 </body> 22 </html>