BROWSER.VERSION = 537.36 BROWSER.NAME = AppleWebKit BROWSER.PLATFORM = KHTML, like Gecko BROWSER.LANGUAGE = en BROWSER is a special macro, that basically pulls the HTTP.USER-AGENT string and breaks it up into the four parts above. So you can display that too if you want:
HTTP.USER-AGENT:
Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
string test: "chrome"?http.user-agent = false
string test: "safari"?http.user-agent = false
bool test: browser.safari = false
bool test: browser.chrome = false
bool test: browser.firefox = false
bool test: browser.iphone = false
bool test: browser.ipad = false
bool test: browser.mobile = false
bool test: browser.facebook = false
bool test: browser.fblc = false
string test: "mobile safari"?http.user-agent = false
FIREFOX VERSION CHECKS bool test: browser.version = "3.6" = false
bool test: browser.version >= "4.0" = false
bool test: browser.version >= "5.0" = false