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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-dir.html

Issue 1942883002: [Devtools] isTrusted in CustomEvents shown twice in console (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/console-dir.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-dir.html b/third_party/WebKit/LayoutTests/inspector/console/console-dir.html
index b6d07461008e72928541b20efb10dd7c607de9f1..24c0e03379bd53b4f9c3b4b44403eb6136a8703c 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-dir.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-dir.html
@@ -38,6 +38,11 @@ function onload()
bigTypedArray["FAIL"] = "FAIL: Object.getOwnPropertyNames() should not have been run";
console.dir(bigTypedArray);
+ // document.createEvent("Event") has a special property "isTrusted" flagged "Unforgeable"
lushnikov 2016/05/02 18:38:19 style: comments should end with "."
allada 2016/05/02 19:06:12 Done.
+ var event = document.createEvent("Event");
+ Object.defineProperty(event, "timeStamp", {value: 0})
+ console.dir(event);
+
runTest();
}
//# sourceURL=console-dir.html

Powered by Google App Engine
This is Rietveld 408576698