| 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());
|
| }
|
|
|
|
|