| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="inspector-test.js"></script> | 4 <script src="inspector-test.js"></script> |
| 5 <script src="resources-test.js"></script> | 5 <script src="resources-test.js"></script> |
| 6 <script src="network-test.js"></script> | 6 <script src="network-test.js"></script> |
| 7 | 7 |
| 8 <script> | 8 <script> |
| 9 var test = function() | 9 var test = function() |
| 10 { | 10 { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "transferSize": testRequest.transferSize | 51 "transferSize": testRequest.transferSize |
| 52 } | 52 } |
| 53 }; | 53 }; |
| 54 InspectorTest.addObject(requestResults, {}, "", "Resource:"); | 54 InspectorTest.addObject(requestResults, {}, "", "Resource:"); |
| 55 | 55 |
| 56 var stillNondeterministic = { | 56 var stillNondeterministic = { |
| 57 "startedDateTime": "formatAsTypeName", | 57 "startedDateTime": "formatAsTypeName", |
| 58 "time": "formatAsTypeName", | 58 "time": "formatAsTypeName", |
| 59 "timings": "formatAsTypeName", | 59 "timings": "formatAsTypeName", |
| 60 "_transferSize": "formatAsTypeName", | 60 "_transferSize": "formatAsTypeName", |
| 61 "_error": "skip" | 61 "_error": "skip", |
| 62 "serverIPAddress": "formatAsTypeName" |
| 62 }; | 63 }; |
| 63 InspectorTest.addObject(new WebInspector.HAREntry(testRequest).build(), stil
lNondeterministic, "", "HAR:"); | 64 InspectorTest.addObject(new WebInspector.HAREntry(testRequest).build(), stil
lNondeterministic, "", "HAR:"); |
| 64 InspectorTest.completeTest(); | 65 InspectorTest.completeTest(); |
| 65 } | 66 } |
| 66 </script> | 67 </script> |
| 67 | 68 |
| 68 | 69 |
| 69 </head> | 70 </head> |
| 70 | 71 |
| 71 <body onload="runTest()"> | 72 <body onload="runTest()"> |
| 72 <p> | 73 <p> |
| 73 Tests the nondeterministic bits of HAR conversion via the magic of hard-coded va
lues. | 74 Tests the nondeterministic bits of HAR conversion via the magic of hard-coded va
lues. |
| 74 </p> | 75 </p> |
| 75 | 76 |
| 76 </body> | 77 </body> |
| 77 </html> | 78 </html> |
| OLD | NEW |