Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: toolkit/content/tests/widgets/chrome.toml
<?xml version="1.0"?>
<window title="Label Checkbox Tests"
onload="onLoad()"
<title>Label Checkbox Tests</title>
<script>
SimpleTest.waitForExplicitFinish();
function onLoad()
{
runTest();
}
function runTest()
{
window.open("window_label_checkbox.xhtml", "_blank", "width=600,height=600");
}
onmessage = function onMessage()
{
SimpleTest.finish();
}
</script>
<p id="display">
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
</window>