mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 03:29:49 +00:00
LibWeb: Handle inline-start and inline-end as float values
Should resolve #449 for LTR languages at least
This commit is contained in:
parent
11039085d0
commit
d427344f39
Notes:
sideshowbarker
2024-07-17 02:23:25 +09:00
Author: https://github.com/vpzomtrrfrt 🔰
Commit: d427344f39
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/470
Issue: https://github.com/LadybirdBrowser/ladybird/issues/449
Reviewed-by: https://github.com/awesomekling
5 changed files with 58 additions and 1 deletions
|
@ -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>
|
Loading…
Add table
Add a link
Reference in a new issue