Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / local-object-properties-section.html
blobd2d9d4a23d519f13102b5a4eb9f1906a6aeb55fc
1 <html>
2 <head>
3 <script src="../http/tests/inspector/inspector-test.js"></script>
4 <script>
6 function test()
8 var d = [];
9 for (var i = 1000; i < 1256; ++i)
10 d.push(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();
22 </script>
23 </head>
25 <body onload="runTest()">
26 <p>Test that ObjectPropertiesSection works with local remote objects.</p>
27 </body>
28 </html>