forked from mirrors/gecko-dev
		
	 9853440599
			
		
	
	
		9853440599
		
	
	
	
	
		
			
			Differential Revision: https://phabricator.services.mozilla.com/D53741 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			595 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			595 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| add_task(async function test_multiple_pushState() {
 | |
|   await BrowserTestUtils.withNewTab(
 | |
|     {
 | |
|       gBrowser,
 | |
|       url:
 | |
|         "http://example.org/browser/docshell/test/browser/file_multiple_pushState.html",
 | |
|     },
 | |
|     async function(browser) {
 | |
|       const kExpected = "http://example.org/bar/ABC/DEF?key=baz";
 | |
| 
 | |
|       let contentLocation = await SpecialPowers.spawn(
 | |
|         browser,
 | |
|         [],
 | |
|         async function() {
 | |
|           return content.document.location.href;
 | |
|         }
 | |
|       );
 | |
| 
 | |
|       is(contentLocation, kExpected);
 | |
|       is(browser.documentURI.spec, kExpected);
 | |
|     }
 | |
|   );
 | |
| });
 |