mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
22 lines
627 B
HTML
22 lines
627 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>Async Cookies: IDL tests</title>
|
|
<link rel="help" href="https://github.com/WICG/cookie-store"/>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/WebIDLParser.js"></script>
|
|
<script src="/resources/idlharness.js"></script>
|
|
<script>
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['cookie-store'],
|
|
['SVG', 'service-workers', 'uievents', 'html', 'dom'],
|
|
idl_array => {
|
|
idl_array.add_objects({
|
|
CookieStore: ['cookieStore'],
|
|
CookieChangeEvent: ['new CookieChangeEvent("change")'],
|
|
});
|
|
}
|
|
);
|
|
</script>
|