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

Side by Side Diff: LayoutTests/fast/forms/radionodelist-whose-form-element-detached-from-domtree.html

Issue 58533003: Move fast/js/resources files to resources. (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 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../../resources/js-test.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <div id="container"> 8 <div id="container">
9 <form id="testForm"> 9 <form id="testForm">
10 Radio button array: 10 Radio button array:
11 <input type="radio" name="type1" value="value1"> 11 <input type="radio" name="type1" value="value1">
12 <input type="radio" name="type1" value="value2"> 12 <input type="radio" name="type1" value="value2">
13 <input type="radio" name="type2" value="value4"> 13 <input type="radio" name="type2" value="value4">
14 <input type="radio" name="type2" value="value5"> 14 <input type="radio" name="type2" value="value5">
15 <br> 15 <br>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 document.body.appendChild(container); 84 document.body.appendChild(container);
85 85
86 debug(""); 86 debug("");
87 debug("form again added to dom tree"); 87 debug("form again added to dom tree");
88 testRadioNodeList(3); 88 testRadioNodeList(3);
89 89
90 container.parentNode.removeChild(container); 90 container.parentNode.removeChild(container);
91 </script> 91 </script>
92 </body> 92 </body>
93 </html> 93 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/radionodelist-image-type.html ('k') | LayoutTests/fast/forms/range/input-range-validation-message.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698