mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:32:45 +00:00 
			
		
		
		
	LibWeb: Rename Element::tag_name() => local_name()
To prepare for fully qualified tag names, let's call this local_name. Note that we still keep an Element::tag_name() around since that's what the JS bindings end up calling into for the Element.tagName property.
This commit is contained in:
		
							parent
							
								
									9d4cd565e3
								
							
						
					
					
						commit
						3cb50a4714
					
				
					 34 changed files with 140 additions and 137 deletions
				
			
		|  | @ -32,14 +32,14 @@ namespace Web { | |||
| 
 | ||||
| class HTMLTitleElement : public HTMLElement { | ||||
| public: | ||||
|     HTMLTitleElement(Document&, const FlyString& tag_name); | ||||
|     HTMLTitleElement(Document&, const FlyString& local_name); | ||||
|     virtual ~HTMLTitleElement() override; | ||||
| }; | ||||
| 
 | ||||
| template<> | ||||
| inline bool is<HTMLTitleElement>(const Node& node) | ||||
| { | ||||
|     return is<Element>(node) && to<Element>(node).tag_name().equals_ignoring_case("title"); | ||||
|     return is<Element>(node) && to<Element>(node).local_name().equals_ignoring_case("title"); | ||||
| } | ||||
| 
 | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling