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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt

Issue 2563883002: DevTools: sort non-enumerable and underscore properties lower in logged object (Closed)
Patch Set: rebase again Created 4 years 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/console-format-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt b/third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt
index 15fc78726bfa044a807b4e426034809de913ca19..d7e22188bfaefd10f16bf8d92ef8a9bce3e08b10 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-format-expected.txt
@@ -225,10 +225,10 @@ console-format.html:7
console-format.html:8 [svg#svg-node]
globals[25]
<svg id="svg-node"></svg>
-console-format.html:7 Object {getFoo: function}
+console-format.html:7 Object {enumerableProp: 4, __underscoreEnumerableProp__: 5, __underscoreNonEnumerableProp: 2, abc: 3, getFoo: function…}
console-format.html:8 [Object]
globals[26]
-Object {getFoo: function}
+Object {enumerableProp: 4, __underscoreEnumerableProp__: 5, __underscoreNonEnumerableProp: 2, abc: 3, getFoo: function…}
console-format.html:7 -0
console-format.html:8 [-0]
globals[27]
@@ -533,8 +533,12 @@ console-format.html:8 Array(1)
globals[25]
<svg id="svg-node"></svg>
console-format.html:7 Object
+ enumerableProp: 4
+ __underscoreEnumerableProp__: 5
+ abc: 3
bar: (...)
getFoo: function ()
+ __underscoreNonEnumerableProp: 2
get bar: function ()
set bar: function (x)
__proto__: Object
@@ -544,8 +548,12 @@ console-format.html:8 Array(1)
__proto__: Array(0)
globals[26]
Object
+ enumerableProp: 4
+ __underscoreEnumerableProp__: 5
+ abc: 3
bar: (...)
getFoo: function ()
+ __underscoreNonEnumerableProp: 2
get bar: function ()
set bar: function (x)
__proto__: Object
@@ -573,10 +581,6 @@ console-format.html:8 Array(1)
globals[29]
function Object() { [native code] }
console-format.html:7 Object
- __defineGetter__: function __defineGetter__()
- __defineSetter__: function __defineSetter__()
- __lookupGetter__: function __lookupGetter__()
- __lookupSetter__: function __lookupSetter__()
constructor: function Object()
hasOwnProperty: function hasOwnProperty()
isPrototypeOf: function isPrototypeOf()
@@ -584,6 +588,10 @@ console-format.html:7 Object
toLocaleString: function toLocaleString()
toString: function toString()
valueOf: function valueOf()
+ __defineGetter__: function __defineGetter__()
+ __defineSetter__: function __defineSetter__()
+ __lookupGetter__: function __lookupGetter__()
+ __lookupSetter__: function __lookupSetter__()
get __proto__: function __proto__()
set __proto__: function __proto__()
console-format.html:8 Array(1)
@@ -592,10 +600,6 @@ console-format.html:8 Array(1)
__proto__: Array(0)
globals[30]
Object
- __defineGetter__: function __defineGetter__()
- __defineSetter__: function __defineSetter__()
- __lookupGetter__: function __lookupGetter__()
- __lookupSetter__: function __lookupSetter__()
constructor: function Object()
hasOwnProperty: function hasOwnProperty()
isPrototypeOf: function isPrototypeOf()
@@ -603,6 +607,10 @@ Object
toLocaleString: function toLocaleString()
toString: function toString()
valueOf: function valueOf()
+ __defineGetter__: function __defineGetter__()
+ __defineSetter__: function __defineSetter__()
+ __lookupGetter__: function __lookupGetter__()
+ __lookupSetter__: function __lookupSetter__()
get __proto__: function __proto__()
set __proto__: function __proto__()
console-format.html:7 function ( /**/ foo/**/, /*/**/bar,

Powered by Google App Engine
This is Rietveld 408576698