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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/security/origin-group-names-unique.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/security/origin-group-names-unique.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/security/origin-group-names-unique.html b/third_party/WebKit/LayoutTests/http/tests/inspector/security/origin-group-names-unique.html
index e4282b5671838c696e7ea2b13432b71dfad93f04..4663a3830b3cb030ecedd9020043dfc0f8b2baba 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/security/origin-group-names-unique.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/security/origin-group-names-unique.html
@@ -5,11 +5,11 @@
<script>
function test()
{
- var originGroupNameSize = Object.keys(WebInspector.SecurityPanelSidebarTree.OriginGroupName).length;
+ var originGroupNameSize = Object.keys(Security.SecurityPanelSidebarTree.OriginGroupName).length;
var deduplicatedNames = new Set();
- for (var key in WebInspector.SecurityPanelSidebarTree.OriginGroupName) {
- var name = WebInspector.SecurityPanelSidebarTree.OriginGroupName[key];
+ for (var key in Security.SecurityPanelSidebarTree.OriginGroupName) {
+ var name = Security.SecurityPanelSidebarTree.OriginGroupName[key];
deduplicatedNames.add(name);
}

Powered by Google App Engine
This is Rietveld 408576698