forked from mirrors/gecko-dev
		
	
		
			
				
	
	
		
			77 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* Any copyright is dedicated to the Public Domain.
 | |
|    http://creativecommons.org/publicdomain/zero/1.0/ */
 | |
| 
 | |
| let tempScope = {};
 | |
| Cu.import("resource:///modules/devtools/Target.jsm", tempScope);
 | |
| let TargetFactory = tempScope.TargetFactory;
 | |
| 
 | |
| let doc;
 | |
| let inspector;
 | |
| 
 | |
| function createDocument()
 | |
| {
 | |
|   doc.body.innerHTML = '<h1>Sidebar state test</h1>';
 | |
|   doc.title = "Sidebar State Test";
 | |
| 
 | |
|   openInspector(function(panel) {
 | |
|     inspector = panel;
 | |
|     inspector.sidebar.select("ruleview");
 | |
|     inspectorRuleViewOpened();
 | |
|   });
 | |
| }
 | |
| 
 | |
| function inspectorRuleViewOpened()
 | |
| {
 | |
|   is(inspector.sidebar.getCurrentTabID(), "ruleview", "Rule View is selected by default");
 | |
| 
 | |
|   // Select the computed view and turn off the inspector.
 | |
|   inspector.sidebar.select("computedview");
 | |
| 
 | |
|   gDevTools.once("toolbox-destroyed", inspectorClosed);
 | |
|   let target = TargetFactory.forTab(gBrowser.selectedTab);
 | |
|   let toolbox = gDevTools.getToolbox(target);
 | |
|   executeSoon(function() {
 | |
|     toolbox.destroy();
 | |
|   });
 | |
| }
 | |
| 
 | |
| function inspectorClosed()
 | |
| {
 | |
|   openInspector(function(panel) {
 | |
|     inspector = panel;
 | |
|     if (inspector.sidebar.getCurrentTabID()) {
 | |
|       // Default sidebar already selected.
 | |
|       testNewDefaultTab();
 | |
|     } else {
 | |
|       // Default sidebar still to be selected.
 | |
|       inspector.sidebar.once("select", testNewDefaultTab);
 | |
|     }
 | |
|   });
 | |
| }
 | |
| 
 | |
| function testNewDefaultTab()
 | |
| {
 | |
|   is(inspector.sidebar.getCurrentTabID(), "computedview", "Computed view is selected by default.");
 | |
| 
 | |
|   finishTest();
 | |
| }
 | |
| 
 | |
| 
 | |
| function finishTest()
 | |
| {
 | |
|   gBrowser.removeCurrentTab();
 | |
|   finish();
 | |
| }
 | |
| 
 | |
| function test()
 | |
| {
 | |
|   waitForExplicitFinish();
 | |
|   gBrowser.selectedTab = gBrowser.addTab();
 | |
|   gBrowser.selectedBrowser.addEventListener("load", function() {
 | |
|     gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true);
 | |
|     doc = content.document;
 | |
|     waitForFocus(createDocument, content);
 | |
|   }, true);
 | |
| 
 | |
|   content.location = "data:text/html,basic tests for inspector";
 | |
| }
 | 
