forked from SerenityOS/serenity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tab.gml
42 lines (36 loc) · 893 Bytes
/
Tab.gml
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
41
42
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
spacing: 2
}
@GUI::ToolbarContainer {
name: "toolbar_container"
@GUI::Toolbar {
name: "toolbar"
}
}
@GUI::Frame {
name: "webdriver_banner"
shape: "Box"
shadow: "Sunken"
thickness: 1
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"
}
}