diff options
Diffstat (limited to 'testing/mozbase/mozprofile/tests/files/prefs_with_comments.js')
-rw-r--r-- | testing/mozbase/mozprofile/tests/files/prefs_with_comments.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/mozbase/mozprofile/tests/files/prefs_with_comments.js b/testing/mozbase/mozprofile/tests/files/prefs_with_comments.js new file mode 100644 index 0000000000..06a56f2138 --- /dev/null +++ b/testing/mozbase/mozprofile/tests/files/prefs_with_comments.js @@ -0,0 +1,6 @@ +# A leading comment +user_pref("browser.startup.homepage", "http://planet.mozilla.org"); # A trailing comment +user_pref("zoom.minPercent", 30); +// Another leading comment +user_pref("zoom.maxPercent", 300); // Another trailing comment +user_pref("webgl.verbose", "false"); |