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

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

Issue 2042483002: Fix web_accesible_resources enforcement for Site Isolation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove stale comment. Created 4 years, 6 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/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 07697b6ac2561f74c4b0da63bef2508929c3400a..9ff583323fdbd48247d99945368bc4dd35db5c62 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
@@ -1976,8 +1976,8 @@ function testLoadAbortChromeExtensionURLWrongPartition() {
var localResource = chrome.runtime.getURL('guest.html');
var webview = document.createElement('webview');
webview.addEventListener('loadabort', function(e) {
- embedder.test.assertEq(-109, e.code);
- embedder.test.assertEq('ERR_ADDRESS_UNREACHABLE', e.reason);
+ embedder.test.assertEq(-20, e.code);
+ embedder.test.assertEq('ERR_BLOCKED_BY_CLIENT', e.reason);
embedder.test.succeed();
});
webview.addEventListener('loadstop', function(e) {
« no previous file with comments | « chrome/browser/extensions/extension_protocols_unittest.cc ('k') | content/browser/frame_host/navigation_handle_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698