summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/Tab.gml
blob: 5593de41d8f79d096a64f42107aefc844d4dfe76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@GUI::Widget {
    layout: @GUI::VerticalBoxLayout {
        spacing: 2
    }

    @GUI::ToolbarContainer {
        name: "toolbar_container"

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

    @GUI::Frame {
        name: "webdriver_banner"
        style: "SunkenPanel"
        preferred_height: "shrink"
        foreground_role: "TooltipText"
        background_role: "Tooltip"
        fill_with_background_color: true
        visible: false
        layout: @GUI::HorizontalBoxLayout {
            margins: [0, 4]
        }

        @GUI::Label {
            text: "This Browser window is controlled by WebDriver."
            text_alignment: "CenterLeft"
        }
    }

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

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