Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-generated-content/pseudo-inline-with-empty-content.html

Issue 2204593003: Change requiresLineBox to return false for empty-text inline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove curly brackets around one-line control-flow statements Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 .container {
4 display: inline-block;
5 background-color: red;
6 }
7
8 .container::before {
9 content: '';
10 }
11
12 </style>
13
14 <div class="container">
15 <input style="background: green;">
16 </div>
17
18 <p>Test for http://crbug.com/445243.</p>
19 <p>The test PASSES if you see 1 green input box and no red square.</p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698