diff options
Diffstat (limited to 'layout/inspector/tests/test_bug462787.html')
-rw-r--r-- | layout/inspector/tests/test_bug462787.html | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/layout/inspector/tests/test_bug462787.html b/layout/inspector/tests/test_bug462787.html new file mode 100644 index 000000000..88c5c466f --- /dev/null +++ b/layout/inspector/tests/test_bug462787.html @@ -0,0 +1,100 @@ +<!DOCTYPE HTML> +<html> +<!-- +https://bugzilla.mozilla.org/show_bug.cgi?id=462787 +--> +<head> + <title>Test for Bug 462787</title> + <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> + <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> +</head> +<body> +<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=462787">Mozilla Bug 462787</a> +<p id="display"></p> +<div id="content" style="display: none"> + +</div> +<pre id="test"> +<script type="application/javascript"> + +/** Test for Bug 462787 **/ + +function do_test() { + const INVALID_POINTER = SpecialPowers.Cr.NS_ERROR_INVALID_POINTER; + + var utils = SpecialPowers.Cc["@mozilla.org/inspector/dom-utils;1"] + .getService(SpecialPowers.Ci.inIDOMUtils); + try { + utils.getCSSStyleRules(null); + ok(false, "expected an exception"); + } + catch(e) { + e = SpecialPowers.wrap(e); + is(e.result, INVALID_POINTER, "got the expected exception"); + } + + try { + utils.getRuleLine(null); + ok(false, "expected an exception"); + } + catch(e) { + e = SpecialPowers.wrap(e); + is(e.result, INVALID_POINTER, "got the expected exception"); + } + + try { + utils.isIgnorableWhitespace(null); + ok(false, "expected an exception"); + } + catch(e) { + e = SpecialPowers.wrap(e); + is(e.result, INVALID_POINTER, "got the expected exception"); + } + + try { + utils.getParentForNode(null, true); + ok(false, "expected an exception"); + } + catch(e) { + e = SpecialPowers.wrap(e); + is(e.result, INVALID_POINTER, "got the expected exception"); + } + + try { + utils.getBindingURLs(null); + ok(false, "expected an exception"); + } + catch(e) { + e = SpecialPowers.wrap(e); + is(e.result, INVALID_POINTER, "got the expected exception"); + } + + try { + utils.getContentState(null); + ok(false, "expected an exception"); + } + catch(e) { + e = SpecialPowers.wrap(e); + is(e.result, INVALID_POINTER, "got the expected exception"); + } + + try { + utils.setContentState(null, false); + ok(false, "expected an exception"); + } + catch(e) { + e = SpecialPowers.wrap(e); + is(e.result, INVALID_POINTER, "got the expected exception"); + } + + SimpleTest.finish(); +} + +SimpleTest.waitForExplicitFinish(); +addLoadEvent(do_test); + + +</script> +</pre> +</body> +</html> |