Chromium Code Reviews| 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..9f0bd75ab0d8f8fa0db1aa5e78b64eb7ab470d77 |
| --- /dev/null |
| +++ b/LayoutTests/fast/inline/vertical-align-text-inherit-expected.html |
| @@ -0,0 +1,17 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +.container { |
| + vertical-align: top; |
|
mstensho (USE GERRIT)
2015/06/11 07:09:56
Can't you remove this too?
changseok
2015/06/11 08:46:00
Yes I can.
|
| +} |
| + |
| +.emptyBox { |
| + display: inline-block; |
| + width: 50px; |
| + height: 50px; |
| +} |
| +</style> |
| +<p>Test passes if a text below is aligned.</p> |
| +<div class="container"> |
| + <div class="emptyBox"></div> |
| + <span>This text should be on the same line.</span> |
| +</div> |