mobile.js (909B)
1 #filter dumbComments emptyLines substitution 2 // -*- indent-tabs-mode: nil; js-indent-level: 2 -*- 3 // This Source Code Form is subject to the terms of the Mozilla Public 4 // License, v. 2.0. If a copy of the MPL was not distributed with this 5 // file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 pref("toolkit.defaultChromeURI", "chrome://geckoview/content/geckoview.xhtml"); 8 9 // Use software webrender on simulator due to missing APIs. 10 #if TARGET_OS_SIMULATOR 11 pref("gfx.webrender.software", true); 12 #endif 13 14 // Enable the restricted sandbox for content processes. 15 pref("security.sandbox.content.level", 1); 16 17 // Complete the page load progress bar at different places according to this pref. 18 // See the possible values below: 19 // 0 no change 20 // 1 complete progressbar at DOMContentLoaded 21 // 2 complete progressbar at first MozAfterPaint after DOMContentLoaded 22 pref("page_load.progressbar_completion", 2);