mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	 74645facae
			
		
	
	
		74645facae
		
	
	
	
	
		
			
			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;
 | |
| 
 | |
| };
 |