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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/flexbox/overflow-auto-dynamic-changes.html

Issue 1811753003: Set m_{width,height}AvailableToChildrenChanged when scrollbars appear (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment Created 4 years, 9 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/LayoutTests/css3/flexbox/overflow-auto-dynamic-changes-abspos.html » ('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
3 <style>
4 body {
5 width: 400px;
6 height: 300px;
7 }
8
9 .flexbox {
10 display: flex;
11 }
12
13 .column {
14 flex-direction: column;
15 }
16
17 .flex11a {
18 flex: 1 1 auto;
19 }
20
21 .root {
22 height: 100px;
23 overflow-y: auto;
24 }
25 </style>
26
27
28 <p>This test should not have a horizontal scrollbar</p>
29
30 <div class="flexbox column">
31 <div class="flexbox">
32 <div class="flex11a">
33 <div class="root">
34 <div id="history"></div>
35 </div>
36 </div>
37 </div>
38 </div>
39
40 <script>
41 onload = function() {
42 var historyEl = document.getElementById('history');
43 historyEl.offsetWidth;
44 historyEl.innerText = '\n\n\n\n\n\n\n\n';
45 };
46 </script>
47
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/flexbox/overflow-auto-dynamic-changes-abspos.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698