forked from mirrors/gecko-dev
		
	 a205cfcd91
			
		
	
	
		a205cfcd91
		
	
	
	
	
		
			
			Breaks the dependency from Selection.h. Allows reuse for Selection across the Shadow DOM boundary, which will require styled ranges to be stored in `DocumentOrShadowRoot` too. Differential Revision: https://phabricator.services.mozilla.com/D61549 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			448 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			448 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | |
| /* vim: set ts=8 sts=2 et sw=2 tw=80: */
 | |
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 | |
|  * You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| #include "mozilla/dom/StyledRange.h"
 | |
| #include "nsRange.h"
 | |
| 
 | |
| StyledRange::StyledRange(nsRange* aRange) : mRange(aRange) {}
 |