chromium/third_party/blink/web_tests/fast/css/font-load-while-styleresolver-missing-expected.html

<!DOCTYPE html>
<style id='second'>
#limited {
    color: green;
}

@font-face {
    font-family: 'myahem';
    src: url(../../resources/Ahem.ttf);
}
</style>
<div id='limited'></div>
<div style='font-family: myahem'>
Test for crbug.com/369401: if fonts are loaded while StyleResolver is missing, the fonts are not rendered.
</div>