Updating extensions for Firefox 3.6 编辑
This article provides helpful information to extension developers trying to update their extensions to work properly in Firefox 3.6.
User interface changes
Example: Testing if an element is an HTML img element
HTML 5 compliance improvements
The DOM Level 2 views to HTML and XHTML documents are now unified per HTML 5.
- The
localName
DOM property now returns the name of HTML element nodes in lower case. Previously, in HTML documents, it returned it in upper case. (DOM Level 1tagName
continues to return in upper case in HTML documents.) - The
namespaceURI
DOM property now returns"http://www.w3.org/1999/xhtml"
on HTML element nodes. Previously, in HTML documents, it returnednull
. document.createElementNS(null, "FOO")
no longer creates an HTML element node in HTML documents.document. or
document.createElementNS("http://www.w3.org/1999/xhtml", "foo")
continue to work in HTML documents.
The
name
and thelocal-name
functions in XPath returns the name of HTML elements in lower case. Previously, in HTML documents, they returned it in upper case.
The most probable upgrade problem is the pattern if (elt.localName == "FOO")
.
Firefox 3.6, both text/html and application/xhtml+xml
if (elt.localName == "img" && elt.namespaceURI == "http://www.w3.org/1999/xhtml")
Firefox 3.5 and 3.6, only extension-supplied text/html without foreign (e.g. SVG) script-inserted elements
if (elt.tagName == "IMG")
Firefox 3.5 and 3.6, both text/html and application/xhtml+xml
if (elt instanceof HTMLImageElement)
contents.rdf no longer supported
Support for the obsolete contents.rdf
method for registering chrome has been removed in Gecko 1.9.2, and is no longer supported by Firefox 3.6. This means that add-ons that use contents.rdf can no longer be installed.
Make sure you include a chrome.manifest in your XPI.
Note: Add-ons that are already installed using the old contents.rdf method for registering chrome will continue to function if already installed. Make sure that you test your add-on by actually removing and reinstalling it to ensure that the install works after updating it to use an install manifest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论