mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
test for bug 333983
This commit is contained in:
parent
db2869156b
commit
267b38ccd2
@ -64,6 +64,7 @@ RunSet.runall = function() {
|
||||
'test_bug237071.html',
|
||||
'test_bug302186.html',
|
||||
'test_bug308856.html',
|
||||
'test_bug333983.html',
|
||||
'test_bug337124.html',
|
||||
'test_bug337631.html',
|
||||
'test_bug338541.xhtml',
|
||||
|
36
testing/mochitest/tests/test_bug333983.html
Normal file
36
testing/mochitest/tests/test_bug333983.html
Normal file
@ -0,0 +1,36 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=333983
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 333983</title>
|
||||
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="text/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=333983">Mozilla Bug 333983</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" style="display: none">
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 333983 **/
|
||||
HTMLElement.prototype.foopy = function () { return "foopy"; }
|
||||
|
||||
var foopy = "";
|
||||
try {
|
||||
foopy = document.body.foopy()
|
||||
} catch (ex) {
|
||||
foopy = ex + "";
|
||||
}
|
||||
|
||||
is(foopy, "foopy", "HTMLElement.prototype functions work");
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user