3 <script src=
"../http/tests/inspector/inspector-test.js"></script>
9 for (var i
= 1000; i
< 1256; ++i
)
11 var object
= {a
: "b", c
: d
};
12 var localObject
= WebInspector
.RemoteObject
.fromLocalObject(object
);
14 var propertiesSection
= new WebInspector
.ObjectPropertiesSection(localObject
, "local object");
15 propertiesSection
.expand();
16 propertiesSection
.objectTreeElement().childAt(1).expand();
18 InspectorTest
.addResult(InspectorTest
.textContentWithLineBreaks(propertiesSection
.element
));
19 InspectorTest
.completeTest();
25 <body onload=
"runTest()">
26 <p>Test that ObjectPropertiesSection works with local remote objects.
</p>