| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>User Timing IDL tests</title> | 5 <title>User Timing IDL tests</title> |
| 6 <link rel="author" title="W3C" href="http://www.w3.org/" /> | 6 <link rel="author" title="W3C" href="http://www.w3.org/" /> |
| 7 <link rel="help" href="http://www.w3.org/TR/user-timing/#extensions-performance-
interface"/> | 7 <link rel="help" href="http://www.w3.org/TR/user-timing/#extensions-performance-
interface"/> |
| 8 <link rel="help" href="http://www.w3.org/TR/user-timing/#performancemark"/> | 8 <link rel="help" href="http://www.w3.org/TR/user-timing/#performancemark"/> |
| 9 <link rel="help" href="http://www.w3.org/TR/user-timing/#performancemeasure"/> | 9 <link rel="help" href="http://www.w3.org/TR/user-timing/#performancemeasure"/> |
| 10 <script src="/resources/testharness.js"></script> | 10 <script src="/resources/testharness.js"></script> |
| 11 <script src="/resources/testharnessreport.js"></script> | 11 <script src="/resources/testharnessreport.js"></script> |
| 12 <script src="../../../resources/WebIDLParser.js"></script> | 12 <script src="/resources/WebIDLParser.js"></script> |
| 13 <script src="../../../resources/idlharness.js"></script> | 13 <script src="/resources/idlharness.js"></script> |
| 14 </head> | 14 </head> |
| 15 <body> | 15 <body> |
| 16 <h1>User Timing IDL tests</h1> | 16 <h1>User Timing IDL tests</h1> |
| 17 <div id="log"></div> | 17 <div id="log"></div> |
| 18 | 18 |
| 19 <pre id='untested_idl' style='display:none'> | 19 <pre id='untested_idl' style='display:none'> |
| 20 interface Performance { | 20 interface Performance { |
| 21 }; | 21 }; |
| 22 | 22 |
| 23 interface PerformanceEntry { | 23 interface PerformanceEntry { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 50 idl_array.add_idls(document.getElementById("idl").textContent); | 50 idl_array.add_idls(document.getElementById("idl").textContent); |
| 51 | 51 |
| 52 idl_array.add_objects({Performance: ["window.performance"]}); | 52 idl_array.add_objects({Performance: ["window.performance"]}); |
| 53 | 53 |
| 54 idl_array.test(); | 54 idl_array.test(); |
| 55 })(); | 55 })(); |
| 56 | 56 |
| 57 </script> | 57 </script> |
| 58 </body> | 58 </body> |
| 59 </html> | 59 </html> |
| OLD | NEW |