Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: LayoutTests/fast/forms/form-collection-radio-node-list.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <script src="../js/resources/js-test-pre.js"></script> 4 <script src="../js/resources/js-test-pre.js"></script>
5 <p id="description"></p> 5 <p id="description"></p>
6 <div id="divId"> 6 <div id="divId">
7 <form id="form1"> 7 <form id="form1">
8 <button id=button1></button> 8 <button id=button1></button>
9 <fieldset id=fieldset1><legend id=legend1></legend></fieldset> 9 <fieldset id=fieldset1><legend id=legend1></legend></fieldset>
10 <input id=inputhidden type=hidden> 10 <input id=inputhidden type=hidden>
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 shouldBe('radioNodeList.length', '5'); 128 shouldBe('radioNodeList.length', '5');
129 129
130 debug(""); 130 debug("");
131 debug("Check that object element does not reflect in RadioNodeList if its owner form is not present."); 131 debug("Check that object element does not reflect in RadioNodeList if its owner form is not present.");
132 var nonSubtreeObjectElement = document.createElement("object"); 132 var nonSubtreeObjectElement = document.createElement("object");
133 nonSubtreeObjectElement.setAttribute("id", "inputcommon"); 133 nonSubtreeObjectElement.setAttribute("id", "inputcommon");
134 shouldBe('container.appendChild(nonSubtreeObjectElement); radioNodeList.length', '5'); 134 shouldBe('container.appendChild(nonSubtreeObjectElement); radioNodeList.length', '5');
135 135
136 container.parentNode.removeChild(container); 136 container.parentNode.removeChild(container);
137 </script> 137 </script>
138 <script src="../js/resources/js-test-post.js"></script>
139 </body> 138 </body>
140 </html> 139 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/form-collection-elements-order.html ('k') | LayoutTests/fast/forms/form-dirname-attribute.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698