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

Unified Diff: LayoutTests/inspector/map.html

Issue 218613013: DevTools: Decouple shortcuts from actions, introduce shortcut contexts (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased patch Created 6 years, 8 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
« no previous file with comments | « no previous file | Source/devtools/devtools.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/map.html
diff --git a/LayoutTests/inspector/map.html b/LayoutTests/inspector/map.html
index 99f2a47949d99c3db42a7106480d04f2c1892f40..49f56bc589c924d7c2d6474441cabc49be254742 100644
--- a/LayoutTests/inspector/map.html
+++ b/LayoutTests/inspector/map.html
@@ -73,8 +73,8 @@ var test = function()
{
function dumpSet(set, key1, key2)
{
- InspectorTest.addResult(" key1 : " + set.hasItem(key1));
- InspectorTest.addResult(" key2 : " + set.hasItem(key2));
+ InspectorTest.addResult(" key1 : " + set.contains(key1));
+ InspectorTest.addResult(" key2 : " + set.contains(key2));
InspectorTest.addResult(" size : " + set.size());
}
« no previous file with comments | « no previous file | Source/devtools/devtools.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698