| Index: LayoutTests/fast/inline/vertical-align-text-inherit-expected.html
|
| diff --git a/LayoutTests/fast/inline/vertical-align-text-inherit-expected.html b/LayoutTests/fast/inline/vertical-align-text-inherit-expected.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b03f5309888a36673a822d9c939140e599094124
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/inline/vertical-align-text-inherit-expected.html
|
| @@ -0,0 +1,29 @@
|
| +<!DOCTYPE html>
|
| +<style>
|
| +.container {
|
| + background-color: yellow;
|
| + display: inline-block;
|
| + overflow: hidden;
|
| + text-overflow: ellipsis;
|
| + width: 200px;
|
| + white-space: nowrap;
|
| + vertical-align: top;
|
| +}
|
| +
|
| +.green {
|
| + background-color: green;
|
| + display: inline-block;
|
| + width: 50px;
|
| + height: 50px;
|
| +}
|
| +
|
| +span {
|
| + vertical-align: bottom;
|
| +}
|
| +</style>
|
| +<p>Test passes if a text in a yellow box is aligned with the bottom of a left green box.</p>
|
| +Baseline.
|
| +<div class="container">
|
| + <div class="green"></div>
|
| + <span>This text should be aligned with the bottom of a left green box.</span>
|
| +</div>
|
|
|