https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 904da22855cdcf22d76ac514eb7c4f699ab6f389 authored by Anne van Kesteren on 03 May 2018, 08:59:36 UTC
correct test
Tip revision: 904da22
line-height-step-basic-001.html
<!DOCTYPE html>
<title>CSS Rhythmic Sizing: line-height-step basic layout reference</title>
<link rel="author" title="Koji Ishii" href="mailto:kojiishi@gmail.com">
<style>
div {
  font-family: Ahem;
  font-size: 40px;
}
.test, .ref {
  display: inline-block;
  vertical-align: top;
  width: 5em;
}
.ref {
  line-height: 60px;
}
</style>
<p class="instructions">Test passes if left and right are the same.
<div class="ref">
  <div>XXXXX</div>
  <div>XXXXX XXXXX XXXXX</div>
  <div><br>X<br>X</div>
</div>
<div class="ref">
  <div>XXXXX</div>
  <div>XXXXX XXXXX XXXXX</div>
  <div><br>X<br>X</div>
</div>
back to top