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

Side by Side Diff: LayoutTests/fast/forms/form-attribute-not-in-document.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 <form id=myform></form> 2 <form id=myform></form>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script> 4 <script>
5 description('Inserting a form control with a form attribute into a non-document tree should not cause it to get a form owner.'); 5 description('Inserting a form control with a form attribute into a non-document tree should not cause it to get a form owner.');
6 6
7 var input = document.createElement('input'); 7 var input = document.createElement('input');
8 input.setAttribute('form', 'myform'); 8 input.setAttribute('form', 'myform');
9 shouldBeNull('input.form'); 9 shouldBeNull('input.form');
10 10
11 var div = document.createElement('div'); 11 var div = document.createElement('div');
12 div.appendChild(input); 12 div.appendChild(input);
13 shouldBeNull('input.form'); 13 shouldBeNull('input.form');
14 </script> 14 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/form-attribute-nonexistence-form-id.html ('k') | LayoutTests/fast/forms/form-collection-elements.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698