forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			749 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			749 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* Any copyright is dedicated to the Public Domain.
 | 
						|
 * http://creativecommons.org/publicdomain/zero/1.0/
 | 
						|
 */
 | 
						|
 | 
						|
// Bug 624734 - Star UI has no tooltip until bookmarked page is visited
 | 
						|
 | 
						|
function test() {
 | 
						|
  waitForExplicitFinish();
 | 
						|
 | 
						|
  let tab = gBrowser.selectedTab = gBrowser.addTab();
 | 
						|
  tab.linkedBrowser.addEventListener("load", (function(event) {
 | 
						|
    tab.linkedBrowser.removeEventListener("load", arguments.callee, true);
 | 
						|
 | 
						|
    is(PlacesStarButton._starIcon.getAttribute("tooltiptext"), PlacesStarButton._unstarredTooltip,
 | 
						|
       "Star icon should have the unstarred tooltip text");
 | 
						|
  
 | 
						|
    gBrowser.removeCurrentTab();
 | 
						|
    finish();
 | 
						|
  }), true);
 | 
						|
 | 
						|
  tab.linkedBrowser.loadURI("http://example.com/browser/browser/base/content/test/dummy_page.html");
 | 
						|
}
 |