mirror of
https://github.com/servo/servo.git
synced 2025-07-30 10:40:27 +01:00
9 lines
287 B
JavaScript
9 lines
287 B
JavaScript
importScripts("/resources/testharness.js");
|
|
|
|
test(() => {
|
|
assert_throws(new TypeError(), () => {
|
|
performance.measure('name', 'navigationStart', 'navigationStart');
|
|
});
|
|
}, "When converting 'navigationStart' to a timestamp, the global object has to be a Window object.");
|
|
|
|
done();
|