Chromium Code Reviews| Index: LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html |
| diff --git a/LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html b/LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html |
| index 48aa5bbcb64fe3a097555e2406d835ef433ccd16..52939e01d1041a71013d45c0791d4f93b5be47eb 100644 |
| --- a/LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html |
| +++ b/LayoutTests/css3/flexbox/flexbox-ignore-container-firstLetter.html |
| @@ -3,7 +3,7 @@ |
| <link href="resources/flexbox.css" rel="stylesheet"> |
| <style> |
| .container::first-letter { line-height: 100px; } |
| - .flexbox::first-letter { line-height: 200px; } |
| + .flexboxFirsLetter::first-letter { line-height: 200px; } |
|
leviw_travelin_and_unemployed
2014/11/05 06:55:36
Typo: "flexboxFirsLetter"
Manuel Rego
2014/11/05 08:13:00
Acknowledged.
|
| p { line-height: 20px; } |
| </style> |
| @@ -12,6 +12,13 @@ |
| <p>This test flex item should ignore container's firstLetter pseudo element.</p> |
| <div class="container"> |
| + <div class="flexbox flexboxFirsLetter"> |
| + <p data-expected-height=20>The first item.</p> |
| + <p data-expected-height=20>The second item.</p> |
| + </div> |
| +</div> |
| + |
| +<div class="container"> |
| <div class="flexbox"> |
| <p data-expected-height=20>The first item.</p> |
| <p data-expected-height=20>The second item.</p> |