chromium/third_party/blink/web_tests/http/tests/misc/crash-multiple-family-fontface.html

<html>
<head>
<style>
    @font-face {
        font-family:morris,xx;
        /* Important: src cannot be local to trigger the crash */
        src:url(doesNotExist.ttf);
    }
    body {
        font:12px morris;
    }

</style>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();
</script>
</head>
<body>
    <p>Try to reference a custom font (@font-face) which was defined with more than 1 font-family.</p>
    <p>PASS if does not crash</p>
</body>
</html>