Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(705)

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/inspect-html-all-collection.html

Issue 2234983002: [DevTools] Removed wasThrown from evaluate-like protocol methods (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: a Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698