| Index: third_party/WebKit/LayoutTests/inspector/console/inspect-html-all-collection.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/console/inspect-html-all-collection.html b/third_party/WebKit/LayoutTests/inspector/console/inspect-html-all-collection.html
|
| index d044a1fee2c75fa27fc876b69ce827c46576e01f..251cb3981eaa6dfd7245e6f2544f65eeae653d74 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/console/inspect-html-all-collection.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/console/inspect-html-all-collection.html
|
| @@ -6,9 +6,9 @@
|
| function test()
|
| {
|
| InspectorTest.RuntimeAgent.evaluate("document.all", "console", false, didGetHTMLAllCollection.bind(this));
|
| - function didGetHTMLAllCollection(error, result, wasThrown)
|
| + function didGetHTMLAllCollection(error, result, exceptionDetails)
|
| {
|
| - if (error || wasThrown) {
|
| + if (error || exceptionDetails) {
|
| InspectorTest.addResult("FAILED: " + error);
|
| InspectorTest.completeTest();
|
| return;
|
|
|