mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
7 lines
210 B
JavaScript
7 lines
210 B
JavaScript
/**
|
|
* File which includes stuff for Mozilla-specific checks which shouldn't happen
|
|
* in other browsers but which we wish to test.
|
|
*/
|
|
|
|
var isMozilla = navigator.product === "Gecko" && "buildID" in navigator;
|