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

Side by Side Diff: LayoutTests/fast/flexbox/relayout-stretched-flexbox.html

Issue 715083002: Avoid blowing away the intrinsicContentLogicalHeight when stretching height in FlexBox (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: s/EAE likes/I like/ Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/fast/flexbox/relayout-stretched-flexbox-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 body * {
4 display: flex;
5 flex: 1;
6 }
7
8 #column1{
9 flex-direction: column;
10 }
11 </style>
12 <script src="../../resources/check-layout.js"></script>
13 <script>
14 onload = function() {
15 var container = document.getElementById("column2");
16
17 container.innerText = "I like to eat eat eat apples and bananas.";
18 container.offsetTop;
19 container.innerText = '';
20 checkLayout("#column1");
21 }
22 </script>
23 <body>
24 <div style="width: 100px;">
25 <div id="column1" data-expected-height=0>
26 <div></div>
27 </div>
28 <div id="column2">
29 </div>
30 </div>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/flexbox/relayout-stretched-flexbox-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698