Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / deprecated-flexbox / flexing-overflow-scroll-item.html
blob3f3aa4f00cb63165452bdeb391a8eefc132e4dcc
1 <!DOCTYPE html>
2 <div id="flexbox" style="display: -webkit-box; height: 100px; width: 200px;">
3 <div style="overflow: scroll; -webkit-box-flex: 1;" data-expected-width=200 data-expected-height=100></div>
4 </div>
6 <div id="flexbox" style="display: -webkit-box; height: 100px; width: 200px; -webkit-box-orient: vertical;">
7 <div style="overflow: scroll; -webkit-box-flex: 1;" data-expected-width=200 data-expected-height=100></div>
8 </div>
10 <script src="../../resources/check-layout.js"></script>
11 <script>
12 checkLayout('#flexbox');
13 </script>