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

Side by Side Diff: LayoutTests/fast/dom/wrapper-scope.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 <body> 2 <body>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../js/resources/js-test-pre.js"></script>
4 <script> 4 <script>
5 5
6 description('Make sure wrappers are setup using the window the property came fro m, instead of the lexical global object.'); 6 description('Make sure wrappers are setup using the window the property came fro m, instead of the lexical global object.');
7 7
8 var frame = document.createElement('iframe'); 8 var frame = document.createElement('iframe');
9 document.body.appendChild(frame); 9 document.body.appendChild(frame);
10 var inner = frame.contentWindow; 10 var inner = frame.contentWindow;
(...skipping 17 matching lines...) Expand all
28 function testPath(path) { 28 function testPath(path) {
29 shouldBeTrue('inner.' + path + '.isInner'); 29 shouldBeTrue('inner.' + path + '.isInner');
30 shouldBeTrue('inner.' + path + '.constructor.isInner'); 30 shouldBeTrue('inner.' + path + '.constructor.isInner');
31 shouldBeTrue('inner.' + path + '.constructor.prototype.isInner'); 31 shouldBeTrue('inner.' + path + '.constructor.prototype.isInner');
32 shouldBeTrue('inner.' + path + '.__proto__.isInner'); 32 shouldBeTrue('inner.' + path + '.__proto__.isInner');
33 } 33 }
34 34
35 pathsToTest.forEach(testPath); 35 pathsToTest.forEach(testPath);
36 36
37 </script> 37 </script>
38 <script src="../js/resources/js-test-post.js"></script>
39 </body> 38 </body>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/window-scroll-scaling.html ('k') | LayoutTests/fast/domurl/check-instanceof-domurl-functions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698