Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-5-expected.txt |
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-5-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-5-expected.txt |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ce8a482892a92c034ae45373a8e16b5cbac25854 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/outline-javascript-5-expected.txt |
| @@ -0,0 +1,32 @@ |
| +Verify javascript outline |
| + |
| + |
| +Running: testComputedProperty |
| +Text: |
| + a.b[c] = function() { }; |
| +Outline: |
| + |
| +Running: testComputedPropertyInTheMiddle |
| +Text: |
| + a.b[c].d = function() { }; |
| +Outline: |
| + d():0:0 |
| + |
| +Running: testComputedPropertyForExpression |
| +Text: |
| + (a || b).c = function() { }; |
| +Outline: |
| + c():0:0 |
| + |
| +Running: testPropertyStringLiteral |
| +Text: |
| + var foo = { "bar": function() { }} |
| +Outline: |
| + "bar"():0:12 |
|
dgozman
2017/03/24 23:07:30
Let's drop this and next one
lushnikov
2017/03/25 06:38:34
Done.
|
| + |
| +Running: testPropertyNumberLiteral |
| +Text: |
| + var foo = { 42: function() { }} |
| +Outline: |
| + 42():0:12 |
| + |