mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 15:20:58 +00:00 
			
		
		
		
	Implements the cite attribute of `q`, `blockqoute`, `ins` and `del` elements according to spec by returning a valid URL.
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			Text
		
	
	
	
	
	
#import <HTML/HTMLElement.idl>
 | 
						|
 | 
						|
// https://html.spec.whatwg.org/multipage/edits.html#htmlmodelement
 | 
						|
[Exposed=Window]
 | 
						|
interface HTMLModElement : HTMLElement {
 | 
						|
 | 
						|
    [HTMLConstructor] constructor();
 | 
						|
 | 
						|
    [CEReactions, Reflect, URL] attribute USVString cite;
 | 
						|
    [CEReactions, Reflect=datetime] attribute DOMString dateTime;
 | 
						|
 | 
						|
};
 |