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

Side by Side Diff: LayoutTests/http/tests/w3c/webperf/approved/HighResolutionTime/resources/now_frame.html

Issue 1191043004: Import hr-time and user-timing tests, remove redundant webperf copies (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add idlharness result Created 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
5 <title>window.performance.now frame</title>
6 <link rel="author" title="Google" href="http://www.google.com/" />
7
8 <script>
9 var performanceNamespace = window.performance;
10 performanceNamespace.now = (function() {
11 return performanceNamespace.now ||
12 performanceNamespace.mozNow ||
13 performanceNamespace.msNow ||
14 performanceNamespace.oNow ||
15 performanceNamespace.webkitNow;
16 })();
17 </script>
18 </head>
19 <body></body>
20 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698