| 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..219ae2f48c3cff3722aab8f6e708a4a25b350643 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".
|
| + var event = document.createEvent("Event");
|
| + Object.defineProperty(event, "timeStamp", {value: 0})
|
| + console.dir(event);
|
| +
|
| runTest();
|
| }
|
| //# sourceURL=console-dir.html
|
|
|