This commit is contained in:
sayrer%gmail.com 2006-11-12 22:03:01 +00:00
Родитель db2869156b
Коммит 267b38ccd2
2 изменённых файлов: 37 добавлений и 0 удалений

Просмотреть файл

@ -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',

Просмотреть файл

@ -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>