summaryrefslogtreecommitdiff
path: root/Tests/LibWeb/Layout/input/flex-frozen-items-should-be-respected.html
blob: 10f5b7ca77bd4e6398e9e5edbf1e85f1e406263f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html><html><head><style>
      * {
        border: 1px solid black;
        font-family: 'SerenitySans';
      }
      .flexbox {
        display: flex;
        height: 50px;
      }
      .last {
        width: 500px;
      }
</style></head><body><div class="flexbox"><div>LongPieceOfText</div><div>LongPieceOfText</div><div>LongPieceOfText</div><div>LongPieceOfText</div><div class="last item">LongPieceOfText</div></div></div></body></html>