mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 18:24:45 -05:00
a6d1307aa4
This would previously assert in InlineFormattingContext because we had an outwardly inline box that wasn't inwardly flow. Fix this by converting text-based input boxes to inline-blocks. This is an ad-hoc solution, and there might be a much better way to solve it.
10 lines
No EOL
179 B
HTML
10 lines
No EOL
179 B
HTML
<!DOCTYPE html><html><head><style>
|
|
* {
|
|
border: 1px solid black;
|
|
font: 20px 'SerenitySans';
|
|
}
|
|
input {
|
|
display: inline;
|
|
width: 200px;
|
|
}
|
|
</style></head><body><input/> |