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

Side by Side Diff: LayoutTests/fast/block/float/br-with-clear-3-expected.html

Issue 1102953002: BR styled clear is ignored while partially relayouting. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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 .green {
4 background: green;
5 float: right;
6 clear: right;
7 width: 50%;
8 height: 100px;
9 }
10 .yellow {
11 background: yellow;
12 }
13 </style>
14 <p>Test passes if the height of yellow box is identical with that of green box.< /p>
15 <div class='green'>Floating box</div>
16 <p class='yellow'>
17 <a href='#'>Set focus here.</a><br>
18 Text line.
19 <br style="clear:both">
20 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698