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