Bug 377413 - Add a regression test for the named getter on form elements; r=Ms2ger

This commit is contained in:
Hallvord R. M. Steen 2014-06-06 10:06:27 +02:00
parent 52084fb878
commit 2652eea04b
2 changed files with 55 additions and 0 deletions

View File

@ -15,6 +15,7 @@ skip-if = (buildapp == 'b2g' && toolkit != 'gonk') #Bug 931116, b2g desktop spec
[test_form_attribute-3.html]
[test_form_attribute-4.html]
[test_form_attributes_reflection.html]
[test_form_named_getter_dynamic.html]
[test_formaction_attribute.html]
[test_formnovalidate_attribute.html]
[test_input_attributes_reflection.html]

View File

@ -0,0 +1,54 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=377413
-->
<head>
<title>Test for Bug 377413</title>
<script type="text/javascript" src="/resources/testharness.js"></script>
<link rel='stylesheet' href='/resources/testharness.css'>
<script type="text/javascript" src="/resources/testharnessreport.js"></script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=377413">Mozilla Bug 377413</a>
<p id="log"></p>
<div id="content">
<form>
<table>
<tbody>
</tbody>
</table>
</form>
</div>
<script type="text/javascript">
/** Tests for Bug 377413 **/
var tb = document.getElementsByTagName('tbody')[0];
test(function(){
tb.innerHTML = '<tr><td><input name="fooboo"></td></tr>';
document.forms[0].fooboo.value = 'testme';
document.getElementsByTagName('table')[0].deleteRow(0);
assert_equals(document.forms[0].fooboo, undefined);
}, "no element reference after deleting it with deleteRow()");
test(function(){
var b = tb.appendChild(document.createElement('tr')).appendChild(document.createElement('td')).appendChild(document.createElement('button'));
b.name = b.value = 'boofoo';
assert_equals(document.forms[0].elements[0].value, 'boofoo');
}, 'element value set correctly');
test(function(){
assert_true('boofoo' in document.forms[0]);
}, 'element name has created property on form');
test(function(){
tb.innerHTML = '';
assert_false('boofoo' in document.forms[0]);
}, "no element reference after deleting it by setting innerHTML");
</script>
</body>
</html>