| Index: third_party/WebKit/LayoutTests/inspector/sources/compile-javascript.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/compile-javascript.html b/third_party/WebKit/LayoutTests/inspector/sources/compile-javascript.html
|
| index 1958b8ca335d9af6543d645cb080139856874f8e..f7cc8a53c86e9b3de74859c66d506892ed8b3fdc 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/compile-javascript.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/compile-javascript.html
|
| @@ -19,12 +19,7 @@ function test()
|
|
|
| function onCompilationFinished(sourceFrame)
|
| {
|
| - for (var bucket of sourceFrame._rowMessageBuckets.values()) {
|
| - for (var rowMessage of bucket._messages) {
|
| - var message = rowMessage.message();
|
| - InspectorTest.addResult(String.sprintf("%d:%d [%s] %s", message.lineNumber(), message.columnNumber(), message.level(), message.text()));
|
| - }
|
| - }
|
| + InspectorTest.dumpSourceFrameMessages(sourceFrame);
|
| InspectorTest.completeTest();
|
| }
|
| }
|
|
|