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

Unified Diff: chrome/test/data/extensions/platform_apps/web_view/shim/guest.html

Issue 237793003: Use default CSP for resource loading in webview (instead of platform app's CSP) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/extensions/platform_apps/web_view/shim/guest.html
diff --git a/chrome/test/data/extensions/platform_apps/web_view/shim/guest.html b/chrome/test/data/extensions/platform_apps/web_view/shim/guest.html
index f893348671a20cf7e6938b5a281fc7ffa881892d..ecc9db7281c79753417c983d0de566a58bdd487c 100644
--- a/chrome/test/data/extensions/platform_apps/web_view/shim/guest.html
+++ b/chrome/test/data/extensions/platform_apps/web_view/shim/guest.html
@@ -6,14 +6,11 @@
-->
<html>
<head>
- <title>A guest that opens a new window.</title>
- <script type="text/javascript">
- window.onload = function() {
- window.open(
- 'data:text/html,<html><body>Initial dummy guest</body></html>');
- };
- </script>
+ <title>A guest page.</title>
</head>
<body style="padding: 0; margin: 0;">
+ <script>
+ window.console.log('guest.html: Inline script ran');
+ </script>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698