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

Side by Side Diff: LayoutTests/dart/resources/multi-wrapper-frame-child.html

Issue 1663753002: Apply all blink changes between @202695 and tip of trunk (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/2454_1
Patch Set: Created 4 years, 10 months 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 <html> 1 <html>
2 <body> 2 <body>
3 3
4 <div id="child-div"></div> 4 <div id="child-div"></div>
5 5
6 <script type="application/dart"> 6 <script type="application/dart">
7 import 'dart:html'; 7 import 'dart:html';
8 import 'dart:js'; 8 import 'dart:js';
9 9
10 var childWindow; 10 var childWindow;
11 var childDocument; 11 var childDocument;
12 var childHistory; 12 var childHistory;
13 var childLocation; 13 var childLocation;
14 14
15 var parentWindow; 15 var parentWindow;
16 var parentDocument; 16 var parentDocument;
17 var parentHistory; 17 var parentHistory;
18 var parentLocation; 18 var parentLocation;
19 19
20 void main() { 20 void main() {
21 print("Child"); 21 print("Child");
22 22
23 childWindow = window; 23 childWindow = window;
24 childDocument = window.document; 24 childDocument = window.document;
25 childHistory = window.history; 25 childHistory = window.history;
26 childLocation = window.location; 26 childLocation = window.location;
27 27
28 parentWindow = context['parent']; 28 parentWindow = context['parent'];
29 parentDocument = context['parent']['document']; 29 parentDocument = parentWindow.document;
30 parentHistory = context['parent']['history']; 30 parentHistory = parentWindow.history;
31 parentLocation = context['parent']['location']; 31 parentLocation = parentWindow.location;
32 } 32 }
33 33
34 </script> 34 </script>
35 35
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW
« no previous file with comments | « LayoutTests/dart/multiscript-js-interop-expected.txt ('k') | Source/bindings/core/dart/DartApplicationLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698