Chromium Code Reviews| 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 |