aboutsummaryrefslogtreecommitdiff
path: root/src/main/model/layout/FlexLayout.java
blob: 7b1e75920874e154562ce2180b6daf24beeaed93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package model.layout;

import model.html.Node;

// incredibly complicated magic
// https://drafts.csswg.org/css-flexbox/#layout-algorithm
public class FlexLayout extends Layout {

    public FlexLayout(Node node, Layout parent) {
        super(node, parent);
    }

    // todo: we'll cheese it, and treat it like a sideways block
    public void layout() {
    }
}