Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: layout/base/tests/chrome/chrome.toml
<?xml version="1.0"?>
type="text/css"?>
<!--
-->
onload="doTest()">
<textarea></textarea>
</body>
<!-- test code goes here -->
<script type="application/javascript">
<![CDATA[
SimpleTest.waitForExplicitFinish();
function doTest()
{
var viewer = window.docShell.docViewer;
viewer.authorStyleDisabled = true;
document.documentElement.getBoundingClientRect();
ok(true, "Didn't crash");
viewer.authorStyleDisabled = false;
SimpleTest.finish();
}
]]></script>
</window>