(messageObject)
| 32 | }); |
| 33 | |
| 34 | function didCollectProfiles(messageObject) |
| 35 | { |
| 36 | if (headers.length !== 2) |
| 37 | return InspectorTest.fail("Cannot retrive headers: " + JSON.stringify(messageObject, null, 4)); |
| 38 | for (var i = 0; i < headers.length; i++) { |
| 39 | if (headers[i].title === "42") { |
| 40 | checkInnerProfile(headers[i].profile); |
| 41 | return; |
| 42 | } |
| 43 | } |
| 44 | InspectorTest.fail("Cannot find '42' profile header"); |
| 45 | } |
| 46 | |
| 47 | function checkInnerProfile(profile) |
| 48 | { |
nothing calls this directly
no test coverage detected