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

Side by Side Diff: security/cross-frame-access.html

Issue 12244003: Fix individual tests to use the new location of test_controller.js (Closed) Base URL: svn://svn.chromium.org/multivm/trunk/webkit/LayoutTests/dart
Patch Set: Created 7 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
« dom/Workers.html ('K') | « package-test.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <body> 2 <body>
3 <script type='application/javascript' src='../../../../../dart/pkg/unittest/test _controller.js'></script> 3 <script type='application/javascript' src='../../../../../dart/pkg/unittest/lib/ test_controller.js'></script>
4 <script type=application/dart> 4 <script type=application/dart>
5 #import('../../../../../dart/pkg/unittest/lib/unittest.dart'); 5 #import('../../../../../dart/pkg/unittest/lib/unittest.dart');
6 #import('../../../../../dart/pkg/unittest/lib/html_config.dart'); 6 #import('../../../../../dart/pkg/unittest/lib/html_config.dart');
7 #import('dart:html'); 7 #import('dart:html');
8 8
9 main() { 9 main() {
10 useHtmlConfiguration(true); 10 useHtmlConfiguration(true);
11 11
12 final sameOriginIFrame = new Element.tag('iframe'); 12 final sameOriginIFrame = new Element.tag('iframe');
13 sameOriginIFrame.src = 'resources/cross-frame-access-iframe.html'; 13 sameOriginIFrame.src = 'resources/cross-frame-access-iframe.html';
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 } 102 }
103 103
104 testIFrameElement(IFrameElement iframe) { 104 testIFrameElement(IFrameElement iframe) {
105 expectThrow(() => iframe.contentDocument); 105 expectThrow(() => iframe.contentDocument);
106 expectThrow(() => iframe.getSVGDocument()); 106 expectThrow(() => iframe.getSVGDocument());
107 } 107 }
108 </script> 108 </script>
109 109
110 </body> 110 </body>
111 </html> 111 </html>
OLDNEW
« dom/Workers.html ('K') | « package-test.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698