diff options
Diffstat (limited to 'Tests/LibWeb/Layout/input/block-and-inline/ifc-float-left-and-sibling-with-margin-left.html')
-rw-r--r-- | Tests/LibWeb/Layout/input/block-and-inline/ifc-float-left-and-sibling-with-margin-left.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/LibWeb/Layout/input/block-and-inline/ifc-float-left-and-sibling-with-margin-left.html b/Tests/LibWeb/Layout/input/block-and-inline/ifc-float-left-and-sibling-with-margin-left.html new file mode 100644 index 0000000000..d44e5f5ce4 --- /dev/null +++ b/Tests/LibWeb/Layout/input/block-and-inline/ifc-float-left-and-sibling-with-margin-left.html @@ -0,0 +1,16 @@ +<!DOCTYPE html><html><head><style> + * { + border: 1px solid black; + font-family: 'SerenitySans'; + } + .thumbnail { + float: left; + width: 50px; + height: 50px; + background-color: pink; + } + .title { + margin-left: 80px; + background-color: orange; + } +</style></head><body><div class="thumbnail"></div><div class="title">Chrono Trigger
\ No newline at end of file |