mirror of
https://github.com/servo/servo.git
synced 2025-10-03 18:19:14 +01:00
41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>High Resolution Time IDL tests</title>
|
|
<link rel="author" title="W3C" href="http://www.w3.org/" />
|
|
<link rel="help" href="http://www.w3.org/TR/hr-time/#sec-extenstions-performance-interface"/>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/WebIDLParser.js"></script>
|
|
<script src="/resources/idlharness.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>High Resolution Time IDL tests</h1>
|
|
<div id="log"></div>
|
|
<script>
|
|
'use strict';
|
|
|
|
function doTest([html, hr_time]) {
|
|
var idl_array = new IdlArray();
|
|
idl_array.add_untested_idls(html, { only: ['WindowOrWorkerGlobalScope'] });
|
|
idl_array.add_idls(hr_time);
|
|
idl_array.add_objects({
|
|
Performance: ["window.performance"],
|
|
Window: ["window"],
|
|
});
|
|
idl_array.test();
|
|
}
|
|
|
|
function fetchText(url) {
|
|
return fetch(url).then((response) => response.text());
|
|
}
|
|
|
|
promise_test(() => {
|
|
return Promise.all(['/interfaces/html.idl',
|
|
'/interfaces/hr-time.idl'].map(fetchText))
|
|
.then(doTest);
|
|
}, 'Test driver');
|
|
</script>
|
|
</body>
|
|
</html>
|