blob: aaa5f0f3342e2d6ac717931d699415437b8153a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package model.layout;
import model.html.Node;
// incredibly complicated magic
// https://drafts.csswg.org/css-flexbox/#layout-algorithm
public class FlexLayout extends Layout {
// Constructs a new FlexLayout
public FlexLayout(Node node, Layout parent) {
super(node, parent);
}
// todo: we'll cheese it, and treat it like a sideways block
public void layout() {
}
}
|