Chromium Code Reviews| Index: LayoutTests/fast/css/first-letter-render-quote-expected.html |
| diff --git a/LayoutTests/fast/css/first-letter-render-quote-expected.html b/LayoutTests/fast/css/first-letter-render-quote-expected.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9902ae508f2a5b0389bc8e9e26e8ae385fd5b507 |
| --- /dev/null |
| +++ b/LayoutTests/fast/css/first-letter-render-quote-expected.html |
| @@ -0,0 +1,13 @@ |
| +<!DOCTYPE html> |
| +<style> |
| +html, body { margin-left: 0; } |
|
Xianzhu
2014/10/22 17:39:25
Why setting only margin-left? (or perhaps you coul
|
| +.quote:before { content: open-quote; } |
| +.green { color: green; } |
| +</style> |
| +<p>Test passes if you see a quote on one line and a green B on the second line.</p> |
| +<div class="quote"></div> |
| +<table cellpadding="0" cellspacing="0"> |
| + <tr> |
| + <td class="green">B</td> |
| + </tr> |
| +</table> |