| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../../http/tests/inspector/debugger-test.js"></script> | 4 <script src="../../../http/tests/inspector/debugger-test.js"></script> |
| 5 <script> | 5 <script> |
| 6 var p1, p2, p3; | 6 var p1, p2, p3; |
| 7 | 7 |
| 8 function testFunction() | 8 function testFunction() |
| 9 { | 9 { |
| 10 debugger; // <- will turn on async call stacks here. | 10 debugger; // <- will turn on async call stacks here. |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 ]; | 96 ]; |
| 97 | 97 |
| 98 function step4() | 98 function step4() |
| 99 { | 99 { |
| 100 var text = searchValues.shift(); | 100 var text = searchValues.shift(); |
| 101 if (!text) { | 101 if (!text) { |
| 102 InspectorTest.completeDebuggerTest(); | 102 InspectorTest.completeDebuggerTest(); |
| 103 return; | 103 return; |
| 104 } | 104 } |
| 105 InspectorTest.addResult("\nSetting search value: " + text); | 105 InspectorTest.addResult("\nSetting search value: " + text); |
| 106 promisePane._filter._textFilterUI.setValue(text); | 106 promisePane._textFilterUI.setValue(text); |
| 107 promisePane._refresh(); | 107 promisePane._refresh(); |
| 108 dumpPromiseDataGrid(step4); | 108 dumpPromiseDataGrid(step4); |
| 109 } | 109 } |
| 110 } | 110 } |
| 111 | 111 |
| 112 </script> | 112 </script> |
| 113 </head> | 113 </head> |
| 114 | 114 |
| 115 <body onload="runTest()"> | 115 <body onload="runTest()"> |
| 116 <p> | 116 <p> |
| 117 Tests promise pane view. | 117 Tests promise pane view. |
| 118 </p> | 118 </p> |
| 119 </body> | 119 </body> |
| 120 </html> | 120 </html> |
| OLD | NEW |