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

Side by Side Diff: LayoutTests/fast/forms/image-disconnected-during-parse.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> 2 <form>
3 <div id="target"> 3 <div id="target">
4 <script> 4 <script>
5 var d = document.getElementById('target'); 5 var d = document.getElementById('target');
6 d.parentNode.removeChild(d); 6 d.parentNode.removeChild(d);
7 </script> 7 </script>
8 <img name=myimage> 8 <img name=myimage>
9 </div> 9 </div>
10 </form> 10 </form>
11 <script src="../js/resources/js-test-pre.js"></script> 11 <script src="../../resources/js-test.js"></script>
12 <script> 12 <script>
13 description('Image elements should not be associated with forms in different tre es'); 13 description('Image elements should not be associated with forms in different tre es');
14 shouldBeUndefined('document.forms[0].myimage'); 14 shouldBeUndefined('document.forms[0].myimage');
15 </script> 15 </script>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/hidden/hidden-setrangetext.html ('k') | LayoutTests/fast/forms/image/image-setrangetext.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698