This commit is contained in:
sayrer%gmail.com 2006-10-29 19:45:24 +00:00
Родитель 997d50474b
Коммит 6964cb17ef
2 изменённых файлов: 30 добавлений и 0 удалений

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

@ -47,6 +47,7 @@ RunSet.runall = function() {
'test_bug589.html',
'test_bug691.html',
'test_bug694.html',
'test_bug696.html',
'test_bug2082.html',
'test_bug3348.html',
'test_bug100533.html',

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

@ -0,0 +1,29 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=696
-->
<head>
<title>Test for Bug 696</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=696">Mozilla Bug 696</a>
<p id="display"></p>
<div id="content" style="display: none">
<table><tr id="mytr"><td>Foo</td><td>Bar</td></tr></table>
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 696 **/
var mytr = $("content").getElementsByTagName("TR")[0];
is(mytr.getAttribute("ID"),"mytr","TR tags expose their ID attribute");
</script>
</pre>
</body>
</html>