Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / scrolling / unscrollable-layer-subpixel-size-with-negative-overflow.html
blob4a5e2770d3441d5814c84cda7376e184ac20f9af
1 <!DOCTYPE html>
2 <script>
3 onload = function() {
4 var leftDiv = document.getElementById('left');
5 leftDiv.style.width = '100.4px';
6 leftDiv.offsetTop;
7 leftDiv.textContent = 'left';
8 };
9 </script>
10 <div>
11 This test reproduced the wrong call to LayerScrollableArea::updateAfterLayout()
12 from LayoutBox::setLocationAndUpdateOverflowControlsIfNeeded() which caused incorrect
13 LayoutBlock::baselinePosition() for later layout.
14 </div>
15 <div style="vertical-align: baseline; display: inline-block">
16 <div id="left" style="display: inline-block; width: 100px; background-color: green">left original
17 </div><!-- No whitespace --><div id="right" style="display: inline-block; position: relative; width: 300.4px; background-color: yellow; font-size: 100px">
18 <span style="position: relative; top: -10px">right</span>
19 </div>
20 </div>