chromium/third_party/blink/web_tests/fast/writing-mode/direction-of-middle-block-in-continuation.html

<!DOCTYPE html>
<style>
body {
    margin: 0px;
    padding: 0px;
}
</style>
<div style="position:absolute; width: 90px; height: 100px; background-color:red; top: 10px; z-index: -1;"></div>
<div style="direction: rtl; width: 100px;">
    <span style="direction: ltr">
        <span style="display: block; height: 100px; width: 88px; margin: 10px; border: 1px solid green; background-color:green;"></span>
    </span>
</div>
<p>crbug.com/286660: The middle anonymous block in a continuation should inherit the style of the containing block, just like the two other anonymous blocks do. There should be no red.</p>