mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:02:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			76 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| @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"
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | 
