Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: layout/style/test/chrome/chrome.toml
<?xml version="1.0"?>
<!--
-->
<!-- test results are displayed in the html:body -->
</body>
<iframe id="f"/>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
SimpleTest.waitForExplicitFinish();
window.addEventListener("load", function() {
});
function htmlLoaded() {
}
function xulLoaded() {
var doc = $("f").contentDocument;
is(doc.defaultView.getComputedStyle(doc.getElementById("s")).color,
"rgb(0, 128, 0)");
SimpleTest.finish();
}
]]>
</script>
</window>