mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
116 lines
5.5 KiB
XML
116 lines
5.5 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"?>
|
|
|
|
<!--
|
|
html element - extended syntax with binding
|
|
-->
|
|
|
|
<window title="XUL Template Tests" width="500" height="600"
|
|
onload="test_template();"
|
|
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" style="height: 300px; overflow: auto;"/>
|
|
|
|
<script src="templates_shared.js"/>
|
|
|
|
<script>
|
|
<![CDATA[
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
var testid ="html element - extended syntax with binding";
|
|
var queryType = "rdf";
|
|
var isTreeBuilder = false;
|
|
var needsOpen = false;
|
|
var notWorkingYet = false;
|
|
var notWorkingYetDynamic = false;
|
|
var expectedOutput =
|
|
<output xmlns:html="http://www.w3.org/1999/xhtml">
|
|
<html:div id="http://www.some-fictitious-zoo.com/mammals/lion" title="Lion">
|
|
<html:em step="-2">4</html:em>
|
|
<html:em step="2">9</html:em>
|
|
</html:div>
|
|
<html:div id="http://www.some-fictitious-zoo.com/mammals/hippopotamus" title="HIPPOPOTAMUS">
|
|
<html:em>2</html:em>
|
|
</html:div>
|
|
<html:p id="http://www.some-fictitious-zoo.com/mammals/africanelephant">
|
|
African Elephant
|
|
<html:span title="14"/>
|
|
</html:p>
|
|
<html:p step="4" id="http://www.some-fictitious-zoo.com/mammals/chimpanzee">
|
|
Chimpanzee
|
|
<html:span step="-5"/>
|
|
<html:span step="5" title="3"/>
|
|
</html:p>
|
|
<html:div id="http://www.some-fictitious-zoo.com/mammals/llama" title="LLAMA">
|
|
<html:em>5</html:em>
|
|
</html:div>
|
|
<html:div id="http://www.some-fictitious-zoo.com/mammals/polarbear" title="Polar Bear">
|
|
<html:em step="-1">20</html:em>
|
|
<html:em step="1">5</html:em>
|
|
</html:div>
|
|
<html:div id="http://www.some-fictitious-zoo.com/mammals/aardvark" title="aardvark">
|
|
<html:em>2</html:em>
|
|
</html:div>
|
|
<html:p step="-3" id="http://www.some-fictitious-zoo.com/mammals/ninebandedarmadillo">
|
|
Nine-banded Armadillo
|
|
<html:span title="1"/>
|
|
</html:p>
|
|
<html:div id="http://www.some-fictitious-zoo.com/mammals/gorilla" title="Gorilla">
|
|
<html:em>7</html:em>
|
|
</html:div>
|
|
</output>;
|
|
|
|
var changes = [
|
|
// step 1
|
|
function(targetds, root) {
|
|
var subject = RDF.GetResource(ZOO_NS + 'mammals/polarbear');
|
|
var predicate = RDF.GetResource(ZOO_NS + 'rdf#specimens');
|
|
var oldval = targetds.GetTarget(subject, predicate, true);
|
|
targetds.Change(RDF.GetResource(ZOO_NS + 'mammals/polarbear'),
|
|
RDF.GetResource(ZOO_NS + 'rdf#specimens'),
|
|
oldval, RDF.GetLiteral('5'));
|
|
},
|
|
// step 2
|
|
function(targetds, root) {
|
|
var subject = RDF.GetResource(ZOO_NS + 'mammals/lion');
|
|
var predicate = RDF.GetResource(ZOO_NS + 'rdf#specimens');
|
|
var oldval = targetds.GetTarget(subject, predicate, true);
|
|
targetds.Change(RDF.GetResource(ZOO_NS + 'mammals/lion'),
|
|
RDF.GetResource(ZOO_NS + 'rdf#specimens'),
|
|
oldval, RDF.GetLiteral('9'));
|
|
},
|
|
// step 3
|
|
function(targetds, root) {
|
|
var container = ContainerUtils.MakeSeq(targetds,
|
|
RDF.GetResource(ZOO_NS + 'mammals'));
|
|
var removednode = container.RemoveElementAt('7', true);
|
|
targetds.Unassert(removednode, RDF.GetResource(ZOO_NS + 'rdf#name'),
|
|
RDF.GetLiteral('Nine-banded Armadillo'), true);
|
|
},
|
|
// step 4
|
|
function(targetds, root) {
|
|
var newnode = RDF.GetResource(ZOO_NS + 'mammals/chimpanzee');
|
|
targetds.Assert(newnode, RDF.GetResource(ZOO_NS + 'rdf#name'),
|
|
RDF.GetLiteral('Chimpanzee'), true);
|
|
var container = ContainerUtils.MakeSeq(targetds,
|
|
RDF.GetResource(ZOO_NS + 'mammals'));
|
|
container.InsertElementAt(newnode, '4', true);
|
|
},
|
|
// step 5
|
|
function(targetds, root) {
|
|
targetds.Assert(RDF.GetResource(ZOO_NS + 'mammals/chimpanzee'),
|
|
RDF.GetResource(ZOO_NS + 'rdf#specimens'),
|
|
RDF.GetLiteral('3'), true);
|
|
}
|
|
];
|
|
]]>
|
|
</script>
|
|
|
|
<div xmlns="http://www.w3.org/1999/xhtml" id="root" datasources="animals.rdf" ref="http://www.some-fictitious-zoo.com/mammals"><template xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="template"><rule><conditions><content uri="?uri"/><member container="?uri" child="?animal"/><triple subject="?animal" predicate="http://www.some-fictitious-zoo.com/rdf#name" object="?name"/><where subject="?name" rel="contains" value="an"/></conditions><bindings><binding subject="?animal" predicate="http://www.some-fictitious-zoo.com/rdf#specimens" object="?specimens"/></bindings><action><p xmlns="http://www.w3.org/1999/xhtml" uri="?animal"><textnode xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" value="?name"/><span title="?specimens"/></p></action></rule><rule><conditions><content uri="?uri"/><member container="?uri" child="?animal"/><triple subject="?animal" predicate="http://www.some-fictitious-zoo.com/rdf#name" object="?name"/></conditions><bindings><binding subject="?animal" predicate="http://www.some-fictitious-zoo.com/rdf#specimens" object="?specimens"/></bindings><action><div xmlns="http://www.w3.org/1999/xhtml" uri="?animal" title="?name"><em><textnode xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" value="?specimens"/></em></div></action></rule></template></div>
|
|
</window>
|