如何在 xul 应用程序中制作 firebug
我的代码是这样的
<window>
<browser id="browser"
flex="1"
src="http://www.google.com" />
<window>
,现在我想在我的示例应用程序中安装 firebug,该怎么做
my code like this
<window>
<browser id="browser"
flex="1"
src="http://www.google.com" />
<window>
and now i want install firebug in my sample app, how to do
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您已经构建了 XULRunner 应用程序,那么您在集成 Firebug 时可能会遇到困难,因为它可能会对 Firefox 的内部结构做出假设。您可以将 DOM Inspector 和/或 Venkman 安装到您的应用程序中,因为它们会自动安装到任何基于 Gecko 1.9.1 或更高版本的 XULRunner 应用程序中,但您仍然需要提供自己的 UI 入口点(或使用命令行打开它们)。
If you've built a XULRunner application, then you may have trouble integrating Firebug because it probably makes assumptions about the internals of Firefox. You could probably install DOM Inspector and/or Venkman into your application, since they will automatically install into any XULRunner application based on Gecko 1.9.1 or later, but you would still have to provide your own UI entry points (or use the command line to open them).