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

Side by Side Diff: LayoutTests/fast/performance/prefixed-deprecation-messages.html

Issue 130213008: Remove window.performance.webkit* (PrefixedUserTiming) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.waitUntilDone();
8 }
9
10 function test() {
11 performance.webkitMark("startTask1");
12 performance.webkitMark("endTask1");
13
14 var perfEntries = performance.webkitGetEntriesByType("mark");
15 testRunner.notifyDone();
16 }
17
18 window.addEventListener("load", test);
19 </script>
20 </head>
21 <body>
22 <p>Calling prefixed <code>window.performance</code> APIs should generate
23 deprecation warnings.</p>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698