mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 19:07:15 +03:00
77 lines
1.7 KiB
Plaintext
77 lines
1.7 KiB
Plaintext
@GUI::Widget {
|
|
fill_with_background_color: true
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4]
|
|
}
|
|
|
|
@GUI::TabWidget {
|
|
name: "tab_widget"
|
|
|
|
@GUI::Widget {
|
|
title: "Cookies"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4]
|
|
}
|
|
|
|
@GUI::TextBox {
|
|
name: "cookies_filter_textbox"
|
|
placeholder: "Filter"
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [6]
|
|
}
|
|
|
|
@GUI::TableView {
|
|
name: "cookies_tableview"
|
|
}
|
|
}
|
|
}
|
|
|
|
@GUI::Widget {
|
|
title: "Local Storage"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4]
|
|
}
|
|
|
|
@GUI::TextBox {
|
|
name: "local_storage_filter_textbox"
|
|
placeholder: "Filter"
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [6]
|
|
}
|
|
|
|
@GUI::TableView {
|
|
name: "local_storage_tableview"
|
|
}
|
|
}
|
|
}
|
|
|
|
@GUI::Widget {
|
|
title: "Session Storage"
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [4]
|
|
}
|
|
|
|
@GUI::TextBox {
|
|
name: "session_storage_filter_textbox"
|
|
placeholder: "Filter"
|
|
}
|
|
|
|
@GUI::GroupBox {
|
|
layout: @GUI::VerticalBoxLayout {
|
|
margins: [6]
|
|
}
|
|
|
|
@GUI::TableView {
|
|
name: "session_storage_tableview"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|