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

Side by Side Diff: LayoutTests/fast/forms/input-disconnected-during-parse.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 <form> 2 <form>
3 <div> 3 <div>
4 <script> 4 <script>
5 var d = document.querySelector('div'); 5 var d = document.querySelector('div');
6 d.parentNode.removeChild(d); 6 d.parentNode.removeChild(d);
7 </script> 7 </script>
8 <input> 8 <input>
9 </div> 9 </div>
10 </form> 10 </form>
11 <script src="../js/resources/js-test-pre.js"></script> 11 <script src="../js/resources/js-test-pre.js"></script>
12 <script> 12 <script>
13 description('FormAssociatedElements should not be associated with forms in diffe rent trees (and should not crash)'); 13 description('FormAssociatedElements should not be associated with forms in diffe rent trees (and should not crash)');
14 var unused = document.forms[0].elements.length; 14 var unused = document.forms[0].elements.length;
15 d = null; 15 d = null;
16 gc(); 16 gc();
17 shouldBeUndefined('document.forms[0].elements[0]'); 17 shouldBeUndefined('document.forms[0].elements[0]');
18 </script> 18 </script>
19 <script src="../js/resources/js-test-post.js"></script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/input-appearance-maxlength.html ('k') | LayoutTests/fast/forms/input-inputmode.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698