chromium/third_party/blink/web_tests/virtual/text-antialias/breaking-context-inline-crash.html

<!DOCTYPE html>
<head>
<script src="../../resources/ahem.js"></script>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
setup({single_test: true});
window.onload = function() {
    done();
};
</script>
<style>
div {
    width: 135px;
    font-family: Ahem;
    font-size: 18px;
    word-wrap: break-word;
    word-break: break-all;
    outline: solid 1px red;
}
</style>
</head>
<body>
<div>abcdef <span>V<span>.net</div>
Test passes if it does not CRASH in debug build.
</body>
</html>