summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/flexing-overflow-scroll-item.html
blob: 3f3aa4f00cb63165452bdeb391a8eefc132e4dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<div id="flexbox" style="display: -webkit-box; height: 100px; width: 200px;">
    <div style="overflow: scroll; -webkit-box-flex: 1;" data-expected-width=200 data-expected-height=100></div>
</div>

<div id="flexbox" style="display: -webkit-box; height: 100px; width: 200px; -webkit-box-orient: vertical;">
    <div style="overflow: scroll; -webkit-box-flex: 1;" data-expected-width=200 data-expected-height=100></div>
</div>

<script src="../../resources/check-layout.js"></script>
<script>
checkLayout('#flexbox');
</script>