mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	LibWeb: Implement HTMLOptionElement.label more correctly
This shouldn't just be a simple reflection of the label attribute. It also needs fallback to the HTMLOptionElement.text property if the label attribute is absent.
This commit is contained in:
		
							parent
							
								
									f7993495bd
								
							
						
					
					
						commit
						4c2d4cdf50
					
				
				
				Notes:
				
					github-actions[bot]
				
				2024-11-15 11:55:47 +00:00 
				
			
			Author: https://github.com/awesomekling
Commit: 4c2d4cdf50
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2355
			
					 4 changed files with 25 additions and 5 deletions
				
			
		|  | @ -99,6 +99,23 @@ static void concatenate_descendants_text_content(DOM::Node const* node, StringBu | |||
|     }); | ||||
| } | ||||
| 
 | ||||
| // https://html.spec.whatwg.org/multipage/form-elements.html#dom-option-label
 | ||||
| String HTMLOptionElement::label() const | ||||
| { | ||||
|     // The label IDL attribute, on getting, if there is a label content attribute,
 | ||||
|     // must return that attribute's value; otherwise, it must return the element's label.
 | ||||
|     if (auto label = attribute(HTML::AttributeNames::label); label.has_value()) | ||||
|         return label.release_value(); | ||||
| 
 | ||||
|     return text(); | ||||
| } | ||||
| 
 | ||||
| // https://html.spec.whatwg.org/multipage/form-elements.html#dom-option-label
 | ||||
| void HTMLOptionElement::set_label(String const& label) | ||||
| { | ||||
|     MUST(set_attribute(HTML::AttributeNames::label, label)); | ||||
| } | ||||
| 
 | ||||
| // https://html.spec.whatwg.org/multipage/form-elements.html#dom-option-text
 | ||||
| String HTMLOptionElement::text() const | ||||
| { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling