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

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

Issue 1308273003: Resend unconsumed scroll update from guest back to embedder (WebView Scroll Bubble). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't require GestureScrollBegin for touch-pad GestureFlingStart. Created 5 years, 3 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/scrollable_embedder_and_guest/test.js
diff --git a/chrome/test/data/extensions/platform_apps/extension_view/test.js b/chrome/test/data/extensions/platform_apps/web_view/scrollable_embedder_and_guest/test.js
similarity index 68%
copy from chrome/test/data/extensions/platform_apps/extension_view/test.js
copy to chrome/test/data/extensions/platform_apps/web_view/scrollable_embedder_and_guest/test.js
index d01f8765f7e8d69587d37944c57e58a77905a64f..031a1b7f586f8434cb01db1fe8701190a8ab6183 100644
--- a/chrome/test/data/extensions/platform_apps/extension_view/test.js
+++ b/chrome/test/data/extensions/platform_apps/web_view/scrollable_embedder_and_guest/test.js
@@ -3,5 +3,7 @@
// found in the LICENSE file.
chrome.app.runtime.onLaunched.addListener(function() {
- chrome.app.window.create('main.html', {}, function () {});
+ chrome.app.window.create('main.html', {
+ bounds: { width: 400, height: 200 }
+ }, function() {});
});

Powered by Google App Engine
This is Rietveld 408576698