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/timeline-test.js"></script> | 4 <script src="../../../http/tests/inspector/timeline-test.js"></script> |
5 <script> | 5 <script> |
6 | 6 |
7 function test() | 7 function test() |
8 { | 8 { |
9 function performActions(callback) | 9 function performActions(callback) |
10 { | 10 { |
11 var timerOne = setTimeout("1 + 1", 10); | 11 var timerOne = setTimeout("1 + 1", 10); |
12 var timerTwo = setInterval(intervalTimerWork, 20); | 12 var timerTwo = setInterval(intervalTimerWork, 20); |
13 var iteration = 0; | 13 var iteration = 0; |
14 | 14 |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 </head> | 61 </head> |
62 | 62 |
63 <body onload="runTest()"> | 63 <body onload="runTest()"> |
64 <p> | 64 <p> |
65 Test that checks location resolving mechanics for TimerInstall TimerRemove and F
unctionCall events with scriptId. | 65 Test that checks location resolving mechanics for TimerInstall TimerRemove and F
unctionCall events with scriptId. |
66 </p><p> | 66 </p><p> |
67 It expects two FunctionCall for InjectedScript, two TimerInstall events, two Fun
ctionCall events and one TimerRemove event to be logged with performActions.js s
cript name and some line number. | 67 It expects two FunctionCall for InjectedScript, two TimerInstall events, two Fun
ctionCall events and one TimerRemove event to be logged with performActions.js s
cript name and some line number. |
68 </p> | 68 </p> |
69 </body> | 69 </body> |
70 </html> | 70 </html> |
OLD | NEW |