webf
webf copied to clipboard
text layout parent can scroll, diff with webview behavior
Affected version
main
No same issues found.
- [X] Yes, I search all issues but not found.
Steps to Reproduce
refer to code.
Code example
<style type="text/css">
.container3 {
flex-direction: row;
padding: 15px;
background-color: red;
display: flex;
}
.container4 {
padding: 20px;
margin: 10px;
background: lightseagreen;
}
</style>
<div class="container3">
<div style="width: 30px;height:30px;background:aqua"></div>
<div class="container4">
<span>A splash screen was provided to Flutter, but this is deprecated. See flutter.dev.</span>
</div>
</div>
Expected results
did not scroll.
Actual results
it can scroll to left.
for flow layout, calculate minContentSize not right, cause the problem.