Bug 915096 - Remove needless prefs for devtools.layoutview.*. r=paul.rouget

This commit is contained in:
Tetsuharu OHZEKI 2013-09-13 09:25:48 -04:00
parent cf8b1cdb84
commit 622c18d7d8
2 changed files with 0 additions and 6 deletions

View File

@ -1089,10 +1089,6 @@ pref("devtools.inspector.markupPreview", false);
pref("devtools.inspector.remote", false);
pref("devtools.inspector.show_pseudo_elements", true);
// Enable the Layout View
pref("devtools.layoutview.enabled", true);
pref("devtools.layoutview.open", false);
// Enable the Responsive UI tool
pref("devtools.responsiveUI.enabled", true);
pref("devtools.responsiveUI.no-reload-notification", false);

View File

@ -7,7 +7,6 @@ let TargetFactory = devtools.TargetFactory;
function test() {
waitForExplicitFinish();
Services.prefs.setBoolPref("devtools.layoutview.enabled", true);
Services.prefs.setBoolPref("devtools.inspector.sidebarOpen", true);
let doc;
@ -123,7 +122,6 @@ function test() {
}
function finishUp() {
Services.prefs.clearUserPref("devtools.layoutview.enabled");
Services.prefs.clearUserPref("devtools.inspector.sidebarOpen");
gBrowser.removeCurrentTab();
finish();