idlharness.html (721B)
1 <!doctype html> 2 <meta charset="utf-8" /> 3 <meta name="author" title="Keith Cirkel" href="mailto:keithamus@github.com" /> 4 <link rel="help" href="https://github.com/WICG/observable" /> 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 idl_test(["observable.tentative"], ["dom"], (idl_array) => { 12 idl_array.add_objects({ 13 Observable: ["new Observable(() => {})"], 14 Subscriber: [ 15 "(() => { let s = null; new Observable(_s => s = _s).subscribe({}); return s })()", 16 ], 17 }); 18 }); 19 </script> 20 </t>