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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/bug646288.html

Issue 2342663002: [css-flexbox] Fix size comparison when scrollbars are present (Closed)
Patch Set: add test Created 4 years, 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutFlexibleBox.h » ('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 { width: 800px; }
4
5 * { min-width: 0; min-height: 0; }
6
7 #list-wrapper {
8 display: flex;
9 flex-direction: column;
10 }
11
12 #player-list-wrapper {
13 flex-grow: 1;
14 overflow: auto;
15 }
16 </style>
17
18 <script src="../../resources/testharness.js"></script>
19 <script src="../../resources/testharnessreport.js"></script>
20 <script src="../../resources/check-layout-th.js"></script>
21
22 <p>Tests that there's no vertical scrollbar for this content</p>
23
24 <body onload="checkLayout('#list-wrapper')">
25 <div id="list-wrapper" data-expected-width="800">
26 <div id="player-list-wrapper" data-expected-width="800">
27 <div data-expected-width="800">http://www.ispeech.org/p/generic/getaudio?t ext=http%3A%2F%2Fwww.ispeech.org%2Ftext.to.speech%3Flink%3Dhttp%253A%252F%252Fww w.ispeech.org%252Ftext.to.speech%253Fvoice%253Dusenglishfemale%2526action%253Dco nvert%2526speed%253D0%2526text%253DType%252520some%252520text%252520and%252520cl ick%252520play%2C&amp;voice=usenglishfemale&amp;speed=0&amp;action=convert</div>
28 </div>
29 </div>
30
31 </body>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutFlexibleBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698