| Index: LayoutTests/inspector-protocol/page/javascriptDialogEvents.html
|
| diff --git a/LayoutTests/inspector-protocol/page/javascriptDialogEvents.html b/LayoutTests/inspector-protocol/page/javascriptDialogEvents.html
|
| index 6996e2650e8fa1665675089a4b194a0e44d7d957..8d8303aeef61eaf82b322dfa67f0d65afd87e159 100644
|
| --- a/LayoutTests/inspector-protocol/page/javascriptDialogEvents.html
|
| +++ b/LayoutTests/inspector-protocol/page/javascriptDialogEvents.html
|
| @@ -19,11 +19,12 @@ function test()
|
|
|
| function onOpening(event)
|
| {
|
| - InspectorTest.log("Opening with message: " + event.params.message);
|
| + InspectorTest.log("Opening dialog: type=" + event.params.type + "; message=" + event.params.message);
|
| }
|
| - function onClosed()
|
| +
|
| + function onClosed(event)
|
| {
|
| - InspectorTest.log("Closed");
|
| + InspectorTest.log("Closed dialog: result=" + event.params.result);
|
| }
|
|
|
| InspectorTest.sendCommand("Page.navigate", { "url": "http://nosuchurl" });
|
|
|