mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d4ecc24959
* * *
81 lines
2.6 KiB
XML
81 lines
2.6 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
|
|
<?xml-stylesheet
|
|
href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>
|
|
<window title="Add Livemarks from RSS feed served as text/html"
|
|
xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/MochiKit/packed.js"></script>
|
|
<script type="application/javascript"
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<body xmlns="http://www.w3.org/1999/xhtml" />
|
|
|
|
<script type="application/javascript">
|
|
<![CDATA[
|
|
/*
|
|
Test loading feeds with text/html
|
|
*/
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
const Cr = Components.results;
|
|
|
|
var iosvc = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
|
|
|
|
function uri(spec) {
|
|
return iosvc.newURI(spec, null, null);
|
|
}
|
|
|
|
var lmsvc = Cc["@mozilla.org/browser/livemark-service;2"].
|
|
getService(Ci.nsILivemarkService);
|
|
var bmsvc = Cc["@mozilla.org/browser/nav-bookmarks-service;1"].
|
|
getService(Ci.nsINavBookmarksService);
|
|
var histsvc = Cc["@mozilla.org/browser/nav-history-service;1"].
|
|
getService(Ci.nsINavHistoryService);
|
|
|
|
var toolbarFolderId = bmsvc.toolbarFolder;
|
|
|
|
var observer =
|
|
{
|
|
QueryInterface: function(iid) {
|
|
if (iid.equals(Ci.nsINavBookmarkObserver) ||
|
|
iid.equals(Ci.nsISupports))
|
|
return this;
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
},
|
|
|
|
// nsINavBookmarkObserve
|
|
onBeginUpdateBatch: function(){},
|
|
onEndUpdateBatch: function(){
|
|
},
|
|
onItemAdded: function(itemId, folder, index) {
|
|
var title = bmsvc.getItemTitle(itemId);
|
|
if (title == "The First Title") {
|
|
ok(true, "Item with title loaded");
|
|
bmsvc.removeObserver(this);
|
|
SimpleTest.finish();
|
|
}
|
|
},
|
|
onBeforeItemRemoved: function(itemId){},
|
|
onItemRemoved: function(itemId, folder, index){},
|
|
onItemChanged: function(itemId, property, isAnnotationProperty, value){},
|
|
onItemVisited: function(itemId, aVisitID, time){},
|
|
onItemMoved: function(itemId, oldParent, oldIndex, newParent, newIndex){},
|
|
|
|
};
|
|
|
|
const FEEDSPEC = "http://localhost:8888/tests/toolkit/components/places/tests/chrome/rss_as_html.rss";
|
|
|
|
gLivemarkId = lmsvc.createLivemarkFolderOnly(toolbarFolderId, "foo",
|
|
uri("http:/localhost/"),
|
|
uri(FEEDSPEC), -1);
|
|
bmsvc.addObserver(observer, false);
|
|
lmsvc.reloadLivemarkFolder(gLivemarkId);
|
|
]]>
|
|
</script>
|
|
|
|
</window>
|