Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <?xml version="1.0" encoding="utf-8"?> |
michael@0 | 2 | <!-- |
michael@0 | 3 | Description: Ensure unknown NS element in atom:author doesn't cause exception |
michael@0 | 4 | Expect: var mCService = Components.classes['@mozilla.org/consoleservice;1'].getService(Components.interfaces.nsIConsoleService); var msg = mCService.getMessageArray()[0]; if(msg){msg = msg.message}; ((msg + "").indexOf("prefix has no properties") == -1); |
michael@0 | 5 | --> |
michael@0 | 6 | <feed xmlns="http://www.w3.org/2005/Atom"> |
michael@0 | 7 | |
michael@0 | 8 | <author> |
michael@0 | 9 | <name>Sam Ruby</name> |
michael@0 | 10 | <method xmlns="http://www.intertwingly.net/blog/">excerpt</method> |
michael@0 | 11 | <email>rubys@intertwingly.net</email> |
michael@0 | 12 | <uri>.</uri> |
michael@0 | 13 | </author> |
michael@0 | 14 | |
michael@0 | 15 | </feed> |
michael@0 | 16 |