Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I get the Gecko (layout engine) source? [closed]

Tags:

gecko

I have done quite a bit of poking around for the gecko source but I cannot seem to find it.

I have found the word gecko littered through the firefox source code when I do this:

for i in `find .`; do grep -ibH gecko $i; done

If anyone knows where I can get the source I would really appreciate it.

like image 362
sixtyfootersdude Avatar asked Sep 19 '25 15:09

sixtyfootersdude


1 Answers

Most of the code in mozilla-central is Gecko. Gecko isn't a precisely-defined term, though. The mozilla-central repository also contains code that's not Gecko, including Firefox (in browser/).

A good link for how to get the source is https://developer.mozilla.org/En/Developer_Guide/Source_Code/Mercurial

like image 195
David Baron Avatar answered Sep 23 '25 12:09

David Baron