Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-pseudo/marker-inherit-line-height.html - WPT Dashboard Interop Dashboard
 
 
<!doctype html>
<title>Check that :marker inherits line-height</title>
<link rel=match href=marker-inherit-line-height-ref.html>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
div {
  font: 128px/1 Ahem;
  border: 2px solid blue;
  background: orange;
  color: black;
}
ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style-type: decimal;
}
</style>
<p>There should be two black rectangles below with no space between them and
  the border above/below.</p>
<div>
  <ol>
    <li>X
  </ol>
</div>