forked from mirrors/gecko-dev
		
	 4acba13973
			
		
	
	
		4acba13973
		
	
	
	
	
		
			
			MozReview-Commit-ID: 5LKHbcmjSy --HG-- extra : rebase_source : d7e4571dae5c5770c7908579d7634419382d78e2
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* Any copyright is dedicated to the Public Domain.
 | |
|  * http://creativecommons.org/publicdomain/zero/1.0/ */
 | |
| 
 | |
| "use strict";
 | |
| 
 | |
| const URL = ROOT + "browser_463205_sample.html";
 | |
| 
 | |
| /**
 | |
|  * Bug 463205 - Check URLs before restoring form data to make sure a malicious
 | |
|  * website can't modify frame URLs and make us inject form data into the wrong
 | |
|  * web pages.
 | |
|  */
 | |
| add_task(function* test_check_urls_before_restoring() {
 | |
|   // Add a blank tab.
 | |
|   let tab = gBrowser.addTab("about:blank");
 | |
|   let browser = tab.linkedBrowser;
 | |
|   yield promiseBrowserLoaded(browser);
 | |
| 
 | |
|   // Restore form data with a valid URL.
 | |
|   yield promiseTabState(tab, getState(URL));
 | |
| 
 | |
|   let value = yield getInputValue(browser, {id: "text"});
 | |
|   is(value, "foobar", "value was restored");
 | |
| 
 | |
|   // Restore form data with an invalid URL.
 | |
|   yield promiseTabState(tab, getState("http://example.com/"));
 | |
| 
 | |
|   value = yield getInputValue(browser, {id: "text"});
 | |
|   is(value, "", "value was not restored");
 | |
| 
 | |
|   // Cleanup.
 | |
|   gBrowser.removeTab(tab);
 | |
| });
 | |
| 
 | |
| function getState(url) {
 | |
|   return JSON.stringify({
 | |
|     entries: [{url: URL, triggeringPrincipal_base64}],
 | |
|     formdata: {url, id: {text: "foobar"}}
 | |
|   });
 | |
| }
 |