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

Unified Diff: chrome/test/data/extensions/platform_apps/web_view/simple/main.js

Issue 1065413002: <webview>: Don't reset allowtransparency and allowscaling between createGuest and attachGuest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/simple/main.js
diff --git a/chrome/test/data/extensions/platform_apps/web_view/simple/main.js b/chrome/test/data/extensions/platform_apps/web_view/simple/main.js
index 7e0648395a1d2d3db36a9b2bc03d581e8fe96823..dee6c63d5d6c5ec30903a587510f75bce4321179 100644
--- a/chrome/test/data/extensions/platform_apps/web_view/simple/main.js
+++ b/chrome/test/data/extensions/platform_apps/web_view/simple/main.js
@@ -4,6 +4,8 @@
function CreateWebViewAndGuest(callback) {
var webview = document.createElement('webview');
+ webview.allowtransparency = true;
+ webview.allowscaling = true;
var onLoadStop = function(e) {
chrome.test.sendMessage('WebViewTest.LAUNCHED');
webview.removeEventListener('loadstop', onLoadStop);
« no previous file with comments | « chrome/browser/apps/guest_view/web_view_browsertest.cc ('k') | extensions/browser/guest_view/web_view/web_view_guest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698