mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:02:45 +00:00 
			
		
		
		
	LibWeb: Move CSS classes into the Web::CSS namespace
This commit is contained in:
		
							parent
							
								
									3e389f4cdc
								
							
						
					
					
						commit
						1f008c95b6
					
				
					 100 changed files with 358 additions and 366 deletions
				
			
		|  | @ -41,7 +41,7 @@ public: | |||
|         __Count | ||||
|     }; | ||||
| 
 | ||||
|     static NonnullRefPtr<StylePropertiesModel> create(const StyleProperties& properties) { return adopt(*new StylePropertiesModel(properties)); } | ||||
|     static NonnullRefPtr<StylePropertiesModel> create(const CSS::StyleProperties& properties) { return adopt(*new StylePropertiesModel(properties)); } | ||||
| 
 | ||||
|     virtual int row_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override; | ||||
|     virtual int column_count(const GUI::ModelIndex& = GUI::ModelIndex()) const override { return Column::__Count; } | ||||
|  | @ -50,10 +50,10 @@ public: | |||
|     virtual void update() override; | ||||
| 
 | ||||
| private: | ||||
|     explicit StylePropertiesModel(const StyleProperties& properties); | ||||
|     const StyleProperties& properties() const { return *m_properties; } | ||||
|     explicit StylePropertiesModel(const CSS::StyleProperties& properties); | ||||
|     const CSS::StyleProperties& properties() const { return *m_properties; } | ||||
| 
 | ||||
|     NonnullRefPtr<StyleProperties> m_properties; | ||||
|     NonnullRefPtr<CSS::StyleProperties> m_properties; | ||||
| 
 | ||||
|     struct Value { | ||||
|         String name; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling