0

When I upgraded to centos 6 and xulrunner 10.0.4, my app stopped working. Xulrunner just hangs.

My directory structure:

.
|-- application.ini
|-- chrome
|   |-- chrome.manifest
|   `-- content
|       |-- main.xul
|       `-- main.xul.tpl.org
|-- defaults
|   `-- preferences
|       `-- prefs.js
Cœur
  • 37,241
  • 25
  • 195
  • 267
user1403360
  • 931
  • 1
  • 12
  • 17

1 Answers1

1

According to example application from developer.mozilla.org, your application is missing the chrome.manifest as a sibling file of application.ini with the content:

manifest chrome/chrome.manifest

The funny thing is it works on xulrunner 12.0 but not on 10.0. Just add the file and your application should work.

Aleš Kotnik
  • 2,654
  • 20
  • 17