mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
47 lines
2.2 KiB
Plaintext
47 lines
2.2 KiB
Plaintext
|
<?xml version="1.0"?>
|
||
|
<?xml-stylesheet type="text/css" href="chrome://global/skin"?>
|
||
|
<?xml-stylesheet type="text/css" href="/tests/SimpleTest/test.css"?>
|
||
|
<!--
|
||
|
https://bugzilla.mozilla.org/show_bug.cgi?id=495648
|
||
|
-->
|
||
|
<window title="Mozilla Bug 495648"
|
||
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||
|
<script type="application/javascript" src="/MochiKit/packed.js"/>
|
||
|
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"/>
|
||
|
|
||
|
<!-- test results are displayed in the html:body -->
|
||
|
<body xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495648"
|
||
|
target="_blank">Mozilla Bug 495648</a>
|
||
|
</body>
|
||
|
|
||
|
<!-- test code goes here -->
|
||
|
<script type="application/javascript">
|
||
|
<![CDATA[
|
||
|
/** Test for Bug 495648 **/
|
||
|
var uri = window.location.href.replace(/test_bug495648.xul/, "bug495648.rdf");
|
||
|
|
||
|
function doTest() {
|
||
|
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
|
||
|
var list = document.getElementById('l');
|
||
|
var ios = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService);
|
||
|
var rdfService = Components.classes["@mozilla.org/rdf/rdf-service;1"].getService(Components.interfaces.nsIRDFService);
|
||
|
var rdf = rdfService.GetDataSourceBlocking(uri);
|
||
|
list.database.AddDataSource(rdf);
|
||
|
list.builder.rebuild();
|
||
|
is(list.itemCount, 40, "Unexpected item count");
|
||
|
SimpleTest.finish();
|
||
|
}
|
||
|
|
||
|
SimpleTest.waitForExplicitFinish();
|
||
|
addLoadEvent(doTest);
|
||
|
|
||
|
]]>
|
||
|
</script>
|
||
|
<listbox flex="1" id="l" seltype="multiple" datasources="rdf:null" ref="urn:root" sortResource="http://home.netscape.com/NC-rdf#name" sortDirection="ascending">
|
||
|
<template>
|
||
|
<rule><conditions><content uri="?uri" /><triple subject="?uri" predicate="http://home.netscape.com/NC-rdf#links" object="?links" /><member container="?links" child="?child" /><triple subject="?child" predicate="http://home.netscape.com/NC-rdf#name" object="?name" /></conditions><bindings><binding subject="?child" predicate="http://sitedelta.schierla.de/SD-rdf#status" object="?status" /></bindings><action><listitem label="?name" class="listitem-iconic" status="?status" uri="?child" /></action></rule>
|
||
|
</template>
|
||
|
</listbox>
|
||
|
</window>
|