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

Side by Side Diff: LayoutTests/fast/js/resources/document-all-between-frames-subframe.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 <title>Subframe</title> 4 <title>Subframe</title>
5 <script src="resources/js-test-pre.js"></script> 5 <script src=".../resources/js-test.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <script> 8 <script>
9 var documentDotAll = window.passDown; 9 var documentDotAll = window.passDown;
10 window.parent.passUp = []; 10 window.parent.passUp = [];
11 11
12 if (document.all) { 12 if (document.all) {
13 window.parent.passUp.push("FAIL: if (document.all) didn't masqueraded as und efined"); 13 window.parent.passUp.push("FAIL: if (document.all) didn't masqueraded as und efined");
14 } else { 14 } else {
15 window.parent.passUp.push("if (document.all) masqueraded as undefined"); 15 window.parent.passUp.push("if (document.all) masqueraded as undefined");
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 66
67 if (typeof documentDotAll === "undefined") { 67 if (typeof documentDotAll === "undefined") {
68 window.parent.passUp.push("FAIL: if (typeof documentDotAll === \"undefined\" ) masqueraded as undefined"); 68 window.parent.passUp.push("FAIL: if (typeof documentDotAll === \"undefined\" ) masqueraded as undefined");
69 } else { 69 } else {
70 window.parent.passUp.push("if (typeof documentDotAll === \"undefined\") did not masquerade as undefined"); 70 window.parent.passUp.push("if (typeof documentDotAll === \"undefined\") did not masquerade as undefined");
71 } 71 }
72 } 72 }
73 </script> 73 </script>
74 </body> 74 </body>
75 </html> 75 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698