idlharness.html (603B)
1 <!doctype html> 2 <title>Page Lifecycle IDL tests</title> 3 <meta name="timeout" content="long"> 4 <link rel="help" href="https://wicg.github.io/page-lifecycle/"> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <script src="/resources/WebIDLParser.js"></script> 8 <script src="/resources/idlharness.js"></script> 9 10 <script> 11 'use strict'; 12 13 idl_test( 14 ['page-lifecycle'], 15 ['service-workers', 'html', 'dom'], 16 idl_array => { 17 idl_array.add_objects({ 18 Document: ['document'], 19 // TODO: Client. 20 }); 21 } 22 ); 23 </script>