LibWeb: Handle inline-start and inline-end as float values

Should resolve #449 for LTR languages at least
This commit is contained in:
Colin Reeder 2024-07-06 15:31:28 -06:00 committed by Andreas Kling
commit d427344f39
Notes: sideshowbarker 2024-07-17 02:23:25 +09:00
5 changed files with 58 additions and 1 deletions

View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<style>
#b {
border: 1px solid red;
width: 50px;
height: 50px;
float: inline-start;
}
#c {
border: 1px solid blue;
width: 50px;
height: 50px;
float: inline-end;
}
</style>
</head>
<body>
<div id=b></div>
<div id=c></div>
</body>
</html>