Firefox 8 仍然不支持多行标题或替代文本(“工具提示”)?

发布于 2024-12-19 11:34:39 字数 471 浏览 0 评论 0原文

尽管有此文档:

https://developer.mozilla.org/en/HTML/Global_attributes #attr-title

和 HTML5 具有多行规范

http://dev.w3.org/html5/spec/elements.html#the-title-attribute

我无法在 Firefox 8 中重现该行为。

只是想确保我不是缺少一些东西。

除了 Firefox 之外,所有其他现代浏览器都支持多行吗?严重地?

Despite this documentation:

https://developer.mozilla.org/en/HTML/Global_attributes#attr-title

and HTML5 having a spec for multiline

http://dev.w3.org/html5/spec/elements.html#the-title-attribute

I cannot reproduce that behavior in Firefox 8.

Just wanted to make sure I am not missing something.

All other modern browsers support multiline except Firefox? Seriously?

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

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

发布评论

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

评论(1

哎呦我呸! 2024-12-26 11:34:39

我刚刚尝试使用 Chrome 和 Firefox 8.0,并看到了相同的行为 - Firefox 忽略换行符,而 Chrome 则不会。

此错误报告似乎相关:

https://bugzilla.mozilla.org/show_bug.cgi ?id=358452

许多网络作者利用 MSIE 行为将标题属性中的换行符转换为结果工具提示中的换行符。这导致 Mozilla 频繁请求做同样的事情......

模拟 MSIE 的行为并不理想:如果 HTML 源文件是自动换行的,则很容易导致意外换行,并且与 Web 标准不兼容...

但是,允许字符实体(例如
通过延迟实体替换直到显式 CR 和制表符被空格替换后来产生工具提示换行符。

I've just tried with Chrome and Firefox 8.0 and seen the same behaviour - Firefox ignores the newlines, Chrome does not.

This bug report seems to be relevant:

https://bugzilla.mozilla.org/show_bug.cgi?id=358452

Many web authors make use of the MSIE behavior that translates newlines in title attributes into line breaks in the resulting tooltip. This has led to frequent requests for Mozilla to do the same thing...

Emulating MSIE's behavior is not ideal: it can easily lead to accidental line breaks if the HTML source is word-wrapped, and it is not compatible with web standards...

However, it could be consistent with the spec to allow character entities such as to yield tooltip line breaks by delaying entity replacement until after explicit CRs and tabs have been replaced by spaces.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文