chromium/third_party/blink/web_tests/http/tests/webfont/slow-loading-expected.html

<html>
<head>
<script src="/js-test-resources/ahem.js"></script>
<style>
.testspan {
  font-size:64px;
  border: 1px solid;
  border-color: black;
}
#span1 {
  font-family: Ahem;
}
#span2 {
  font-family: Arial;
}
#span3 {
  font-family: Arial;
}
</style>
</head>
<body>

Ahem after 4 seconds:
<br/>
<span class="testspan" id="span1">
abcdefg
</span>
<br/>

Arial after 4 seconds:
<br/>
<span class="testspan" id="span2">
abcdefg
</span>
<br/>

Arial after hidden for 3 seconds and revealed for 1 second:
<br/>
<span class="testspan" id="span3">
abcdefg
</span>
<br/>

</body>
</html>