支持多个版本的 Firefox(2.*、3.*)。我应该测试什么?
我有一个情况,我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是 Firefox 2 和更高版本之间需要测试的一些差异:
white-space: -moz-pre-wrap
来模拟white-space: pre-wrap
在 Firefox 3+ 中display:-moz-inline-box
来触发与display:inline 近似的 Firefox 2 实验布局-block
用于特定元素。-moz-inline-box
的限制。Here's a few discrepancies to test between Firefox 2 and later versions:
white-space: -moz-pre-wrap
for Firefox 2 to emulatewhite-space: pre-wrap
in Firefox 3+display:-moz-inline-box
in a separate declaration to trigger the Firefox 2 experimental layout which approximatesdisplay:inline-block
for a particular element.-moz-inline-box
in Firefox 2.