зеркало из https://github.com/mozilla/gecko-dev.git
test for bug 333983
This commit is contained in:
Родитель
db2869156b
Коммит
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',
|
||||
|
|
|
@ -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>
|
||||
|
Загрузка…
Ссылка в новой задаче