1<?php
2
3namespace Facebook\WebDriver\Firefox;
4
5/**
6 * Constants of common Firefox profile preferences (about:config values).
7 * @see http://kb.mozillazine.org/Firefox_:_FAQs_:_About:config_Entries
8 *
9 * @codeCoverageIgnore
10 */
11class FirefoxPreferences
12{
13    /** @var string Port WebDriver uses to communicate with Firefox instance */
14    const WEBDRIVER_FIREFOX_PORT = 'webdriver_firefox_port';
15    /** @var string Should the reader view (FF 38+) be enabled? */
16    const READER_PARSE_ON_LOAD_ENABLED = 'reader.parse-on-load.enabled';
17    /** @var string Browser homepage */
18    const BROWSER_STARTUP_HOMEPAGE = 'browser.startup.homepage';
19    /** @var string Should the Devtools JSON view be enabled? */
20    const DEVTOOLS_JSONVIEW = 'devtools.jsonview.enabled';
21
22    private function __construct()
23    {
24    }
25}
26