Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=900724 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <title>Test for form-association in template contents.</title> |
michael@0 | 8 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 9 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 10 | </head> |
michael@0 | 11 | <body> |
michael@0 | 12 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=900724">Bug 900724</a> |
michael@0 | 13 | <form id="formone"><template id="templateone"><input></template></form> |
michael@0 | 14 | <form id="formthree"><template id="templatethree"></template></form> |
michael@0 | 15 | <form id="formfive"><template id="templatefive"></template></form> |
michael@0 | 16 | <script> |
michael@0 | 17 | is($("formone").elements.length, 0, "Forms should have no association with controls in template contents."); |
michael@0 | 18 | |
michael@0 | 19 | var templateOneInput = $("templateone").content.firstChild; |
michael@0 | 20 | is(templateOneInput.form, null, "Form controls inside template contents should not associate with forms."); |
michael@0 | 21 | |
michael@0 | 22 | // Try dynamically adding form/form controls using innerHTML. |
michael@0 | 23 | $("templatethree").innerHTML = '<input>'; |
michael@0 | 24 | is($("formthree").elements.length, 0, "Form controls inside template contents should not associate with forms."); |
michael@0 | 25 | |
michael@0 | 26 | // Append a form control as a child of the template (not template contents) and make sure form is associated. |
michael@0 | 27 | var formFiveInput = document.createElement("input"); |
michael@0 | 28 | $("templatefive").appendChild(formFiveInput); |
michael@0 | 29 | is($("formfive").elements.length, 1, "Form control should associate with form control not in template contents."); |
michael@0 | 30 | </script> |
michael@0 | 31 | </body> |
michael@0 | 32 | </html> |