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

Side by Side Diff: chrome/test/data/guest_from_opener.html

Issue 1056533002: Implement <webview>.addContentScript/removeContentScript API [2] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@webview_addremove_contentscripts_2
Patch Set: nits. Created 5 years, 7 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <!-- 2 <!--
3 * Copyright (c) 2015 The Chromium Authors. All rights reserved. Use of this 3 * Copyright (c) 2015 The Chromium Authors. All rights reserved. Use of this
4 * source code is governed by a BSD-style license that can be found in the 4 * source code is governed by a BSD-style license that can be found in the
5 * LICENSE file. 5 * LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <title>A guest that opens a new window.</title> 9 <title>A guest that opens a new window.</title>
10 <script type="text/javascript"> 10 <script type="text/javascript">
11 window.onload = function() { 11 window.onload = function() {
12 window.open(document.documentURI); 12 window.open(document.documentURI);
13 }; 13 };
14 </script> 14 </script>
15 </head> 15 </head>
16 <body style="padding: 0; margin: 0;"> 16 <body style="padding: 0; margin: 0;">
17 </body> 17 </body>
18 </html> 18 </html>
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/webui_webview_browsertest.cc ('k') | chrome/test/data/webui/inject_comm_channel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698