OLD | NEW |
(Empty) | |
| 1 Verify javascript outline |
| 2 |
| 3 |
| 4 Running: testComputedProperty |
| 5 Text: |
| 6 a.b[c] = function() { }; |
| 7 Outline: |
| 8 |
| 9 Running: testComputedPropertyInTheMiddle |
| 10 Text: |
| 11 a.b[c].d = function() { }; |
| 12 Outline: |
| 13 d():0:0 |
| 14 |
| 15 Running: testComputedPropertyForExpression |
| 16 Text: |
| 17 (a || b).c = function() { }; |
| 18 Outline: |
| 19 c():0:0 |
| 20 |
| 21 Running: testPropertyStringLiteral |
| 22 Text: |
| 23 var foo = { "bar": function() { }} |
| 24 Outline: |
| 25 |
| 26 Running: testPropertyNumberLiteral |
| 27 Text: |
| 28 var foo = { 42: function() { }} |
| 29 Outline: |
| 30 |
OLD | NEW |