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

Side by Side Diff: LayoutTests/inspector/console/only-one-deprecation-warning.html

Issue 253353002: Remove window.performance.webkitGet* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 8 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script> 4 <script>
5 if (window.testRunner) 5 if (window.testRunner)
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 7
8 // These three all map to PrefixedPerformanceTimeline 8 var x = window.webkitStorageInfo;
9 var x = window.performance.webkitGetEntries(); 9 var y = window.webkitStorageInfo;
10 x = window.performance.webkitGetEntriesByName('');
11 x = window.performance.webkitGetEntriesByType('');
12 </script> 10 </script>
13 </head> 11 </head>
14 <body> 12 <body>
15 This test passes if only one deprecation warning is presented in the console. 13 This test passes if only one deprecation warning is presented in the console.
16 </body> 14 </body>
17 </html> 15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698