1 description("This tests that DOMTimeStamp is a Number (and not a Date object).");
2 // See https://bugs.webkit.org/show_bug.cgi?id=49963
7 timestamp
= e
.timeStamp
;
8 shouldBeFalse("timestamp instanceof Date");
9 shouldBeTrue("timestamp == Number(timestamp)");
12 window
.jsTestIsAsync
= true;