Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: toolkit/content/tests/chrome/chrome.toml
<?xml version="1.0"?>
<!--
-->
onload="startThisTest()">
<!-- test results are displayed in the html:body -->
</body>
<tree id="testTree" height="200px">
<treecols>
<treecol flex="1" label="Name" id="name"/>
</treecols>
<treechildren>
<treeitem><treerow><treecell label="a"/></treerow></treeitem>
<treeitem><treerow><treecell label="z"/></treerow></treeitem>
</treechildren>
</tree>
<!-- test code goes here -->
<script type="application/javascript"><![CDATA[
SimpleTest.waitForExplicitFinish();
function startThisTest()
{
var treeElem = document.getElementById("testTree");
treeElem.view.selection.select(0);
treeElem.focus();
synthesizeKey("z", {ctrlKey: true});
ok(!treeElem.view.selection.isSelected(1), "Tree selection should not change for key events with ctrl pressed.");
SimpleTest.finish();
}
]]></script>
</window>