OLD | NEW |
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> |
OLD | NEW |