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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/resource-tree/resource-tree-events.html

Issue 2172753002: [DevTools] No longer store security origins in ResourceTreeModel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test failures Created 4 years, 5 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: third_party/WebKit/LayoutTests/http/tests/inspector/resource-tree/resource-tree-events.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-tree/resource-tree-events.html b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-tree/resource-tree-events.html
index 15351adcc799dab95611ff724ac545e6a84dd6ec..f0d5e130df1eca3045f3981675112d443a67976c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-tree/resource-tree-events.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-tree/resource-tree-events.html
@@ -17,6 +17,8 @@ function test()
for (var eventName in WebInspector.ResourceTreeModel.EventTypes)
InspectorTest.resourceTreeModel.addEventListener(WebInspector.ResourceTreeModel.EventTypes[eventName], eventHandler.bind(this, eventName));
+ for (var eventName in WebInspector.SecurityOriginManager.EventTypes)
+ InspectorTest.securityOriginManager.addEventListener(WebInspector.SecurityOriginManager.EventTypes[eventName], eventHandler.bind(this, eventName));
function eventHandler(eventName, event)
{

Powered by Google App Engine
This is Rietveld 408576698