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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/observable.html

Issue 2860143002: Add tests for paint-timing, and move existing tests to same location (Closed)
Patch Set: add missing image resources Created 3 years, 7 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 <head> 2 <head>
3 <title>Performance Paint Timing Test</title> 3 <title>Performance Paint Timing Test</title>
4 </head> 4 </head>
5 <body> 5 <body>
6 <script src="../../resources/testharness.js"></script> 6 <script src="../../resources/testharness.js"></script>
7 <script src="../../resources/testharnessreport.js"></script> 7 <script src="../../resources/testharnessreport.js"></script>
8 <script> 8 <script>
9 9
10 async_test(function (t) { 10 async_test(function (t) {
(...skipping 16 matching lines...) Expand all
27 }) 27 })
28 ); 28 );
29 observer.observe({entryTypes: ["paint"]}); 29 observer.observe({entryTypes: ["paint"]});
30 30
31 }, "Both first-paint-timing and first-contentful-paint timing entry are obse rvable."); 31 }, "Both first-paint-timing and first-contentful-paint timing entry are obse rvable.");
32 32
33 </script> 33 </script>
34 <div style="background-color:black;color:white;padding:20px;">...test...</di v> 34 <div style="background-color:black;color:white;padding:20px;">...test...</di v>
35 </body> 35 </body>
36 </html> 36 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698