支持多个版本的 Firefox(2.*、3.*)。我应该测试什么?

发布于 2024-09-08 09:52:13 字数 118 浏览 6 评论 0原文

我有一个情况,我在 Firefox 3.6.3 上进行 Web 开发(Wicket 在 Tomcat 上运行),现在也需要支持 Firefox 2.0。对于我应该预期会破坏什么或者我应该将测试重点放在哪里,您有什么建议吗?

I have a situation in which I did web development (Wicket running on Tomcat) on Firefox 3.6.3, and now need to support Firefox 2.0 as well. Do you have any tips on what I should expect to break or where I should focus my testing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野味少女 2024-09-15 09:52:13

以下是 Firefox 2 和更高版本之间需要测试的一些差异:

  • 对 Firefox 2 使用 white-space: -moz-pre-wrap 来模拟 white-space: pre-wrap在 Firefox 3+ 中
  • 设置不透明度的 Firefox 2 Mac 中的文本降低了对比度
  • 在单独的声明中使用 display:-moz-inline-box 来触发与 display:inline 近似的 Firefox 2 实验布局-block 用于特定元素。
  • 在包装器中添加嵌套的固定宽度 div,以解决 Firefox 2 中 -moz-inline-box 的限制。

Here's a few discrepancies to test between Firefox 2 and later versions:

  • Use white-space: -moz-pre-wrap for Firefox 2 to emulate white-space: pre-wrap in Firefox 3+
  • Text in Firefox 2 Mac with opacity set has reduced contrast
  • Use display:-moz-inline-box in a separate declaration to trigger the Firefox 2 experimental layout which approximates display:inline-block for a particular element.
  • Add a fixed width div nested in the wrapper to address the limitations of -moz-inline-box in Firefox 2.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文