Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(328)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/user-timing/idlharness.html

Issue 2010163003: Fix paths of testharness*, WebIDLParser.js, idlharness.js, vendor-prefix.js for remaining files … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698