summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/Tab.gml
blob: 8371af44dfd1b8ec768ffeb1dc1b1ecd519e3968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@GUI::Widget {
    layout: @GUI::VerticalBoxLayout {
        spacing: 2
    }

    @GUI::ToolbarContainer {
        name: "toolbar_container"

        @GUI::Toolbar {
            name: "toolbar"
        }
    }

    @GUI::Widget {
        name: "webview_container"
        layout: @GUI::VerticalBoxLayout {}
    }

    @GUI::Statusbar {
        name: "statusbar"
    }
}