Chromium Code Reviews| Index: test/inspector/runtime/get-properties-preview-expected.txt |
| diff --git a/test/inspector/runtime/get-properties-preview-expected.txt b/test/inspector/runtime/get-properties-preview-expected.txt |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..fd1f31a4c2a3adcaf519d399008b1ea838b48558 |
| --- /dev/null |
| +++ b/test/inspector/runtime/get-properties-preview-expected.txt |
| @@ -0,0 +1,32 @@ |
| +p1 : Object |
| +p2 : Object |
| +p1 : { |
| + "type": "object", |
| + "description": "Object", |
| + "overflow": false, |
| + "properties": [ |
| + { |
| + "name": "a", |
| + "type": "number", |
| + "value": "1" |
| + } |
| + ] |
| +} |
| +p2 : { |
| + "type": "object", |
| + "description": "Object", |
| + "overflow": false, |
| + "properties": [ |
| + { |
| + "name": "b", |
| + "type": "string", |
| + "value": "foo" |
| + }, |
| + { |
| + "name": "bb", |
| + "type": "string", |
| + "value": "bar" |
| + } |
| + ] |
| +} |
| + |