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

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

Issue 718203005: Implement declarative content script API for <webview> [js part]. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move to experimantal. Created 6 years 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/main.js
diff --git a/chrome/test/data/extensions/platform_apps/web_view/shim/main.js b/chrome/test/data/extensions/platform_apps/web_view/shim/main.js
index 4778664caca6ef91b607e19702baebf3d8fd0f18..01cc78490f40f1b34095756c050fd34e75f1b8b1 100644
--- a/chrome/test/data/extensions/platform_apps/web_view/shim/main.js
+++ b/chrome/test/data/extensions/platform_apps/web_view/shim/main.js
@@ -513,7 +513,9 @@ function testWebRequestAPIExistence() {
'onBeforeRedirect',
'onResponseStarted',
'onCompleted',
- 'onErrorOccurred'
+ 'onErrorOccurred',
+ // Declarative Content API.
+ 'onPageChanged'
];
var webview = document.createElement('webview');
webview.setAttribute('partition', arguments.callee.name);

Powered by Google App Engine
This is Rietveld 408576698