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

Side by Side Diff: LayoutTests/fast/dom/Document/document-current-script-async.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 <script src="../../js/resources/js-test-pre.js"></script> 2 <script src="../../js/resources/js-test-pre.js"></script>
3 <script> 3 <script>
4 4
5 jsTestIsAsync = true; 5 jsTestIsAsync = true;
6 6
7 description('Test usage of document.currentScript with async') 7 description('Test usage of document.currentScript with async')
8 8
9 var seenIds = []; 9 var seenIds = [];
10 10
(...skipping 25 matching lines...) Expand all
36 logCurrentScript('e'); 36 logCurrentScript('e');
37 37
38 var script = document.createElement('script'); 38 var script = document.createElement('script');
39 script.id = 'f' 39 script.id = 'f'
40 script.async = true; 40 script.async = true;
41 script.defer = false; 41 script.defer = false;
42 script.src = 'resources/log-current-script-f.js'; 42 script.src = 'resources/log-current-script-f.js';
43 document.head.appendChild(script); 43 document.head.appendChild(script);
44 </script> 44 </script>
45 45
46 <script src="../../js/resources/js-test-post.js"></script>
47 </body> 46 </body>
48 </html> 47 </html>
49 48
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Document/document-current-script.html ('k') | LayoutTests/fast/dom/Document/document-title-get.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698