forked from mirrors/gecko-dev
		
	 b2e847755c
			
		
	
	
		b2e847755c
		
	
	
	
	
		
			
			MozReview-Commit-ID: GrlcOI9K2hJ --HG-- extra : rebase_source : 6574cf3c67eb11733ffd9999c260f71c8551abc4
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			1,012 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			1,012 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* Any copyright is dedicated to the Public Domain.
 | |
|  * http://creativecommons.org/publicdomain/zero/1.0/ */
 | |
| 
 | |
| add_task(async function test_offscreen_text() {
 | |
|   const URI = '<body><div style="pointer-events:none">find this</div></body>';
 | |
|   await BrowserTestUtils.withNewTab({ gBrowser, url: "data:text/html;charset=utf-8," + encodeURIComponent(URI) },
 | |
|     async function(browser) {
 | |
|       let finder = browser.finder;
 | |
|       let listener = {
 | |
|         onFindResult() {
 | |
|           ok(false, "callback wasn't replaced");
 | |
|         }
 | |
|       };
 | |
|       finder.addResultListener(listener);
 | |
| 
 | |
|       function waitForFind() {
 | |
|         return new Promise(resolve => {
 | |
|           listener.onFindResult = resolve;
 | |
|         });
 | |
|       }
 | |
| 
 | |
|       // Find the target text.
 | |
|       let promiseFind = waitForFind();
 | |
|       finder.fastFind("find this", false, false);
 | |
|       let findResult = await promiseFind;
 | |
|       is(findResult.result, Ci.nsITypeAheadFind.FIND_FOUND, "Found target text.");
 | |
| 
 | |
|       finder.removeResultListener(listener);
 | |
|     });
 | |
| });
 |