| Index: third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-canvas.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-canvas.html b/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-canvas.html
|
| index d07d06ef423e233f9b8dc1575af39b59c95a5f2d..c485b3771a23773f7134ad9b534c7e61bddac681 100644
|
| --- a/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-canvas.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-canvas.html
|
| @@ -5,42 +5,27 @@
|
| <body>
|
| <script src="../../resources/testharness.js"></script>
|
| <script src="../../resources/testharnessreport.js"></script>
|
| + <canvas id="canvas" width="200" height="200" ></canvas>
|
| +
|
| <script>
|
| async_test(function (t) {
|
| - var observer = new PerformanceObserver(
|
| - t.step_func(function (entryList) {
|
| - var entries = entryList.getEntries();
|
| - assert_equals(entries.length, 2,
|
| - "There should be two paint timing instances.");
|
| - assert_equals(entries[0].entryType, "paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(entries[0].duration, 0,
|
| - "Expected duration to be: 0.");
|
| + var c=document.getElementById("canvas");
|
| + var ctx=c.getContext("2d");
|
| + ctx.beginPath();
|
| + ctx.moveTo(0,0);
|
| + ctx.lineTo(300,150);
|
| + ctx.stroke();
|
|
|
| - assert_equals(entries[1].entryType, "paint",
|
| - "Expected entryType to be: paint.");
|
| - assert_equals(entries[1].duration, 0,
|
| - "Expected duration to be: 0.");
|
| - observer.disconnect();
|
| - t.done();
|
| - })
|
| - );
|
| - observer.observe({entryTypes: ["paint"]});
|
| + testRunner.capturePixelsAsyncThen(t.step_func_done(function() {
|
| + bufferedEntries = performance.getEntriesByType('paint');
|
| + assert_equals(bufferedEntries.length, 2, "There should be two paint timing instances.");
|
| + assert_equals(bufferedEntries[0].entryType, "paint");
|
| + assert_equals(bufferedEntries[0].name, "first-paint");
|
| + assert_equals(bufferedEntries[1].entryType, "paint");
|
| + assert_equals(bufferedEntries[1].name, "first-contentful-paint");
|
| + }));
|
|
|
| }, "First contentful paint fires due to canvas render.");
|
| </script>
|
| -
|
| - <script>
|
| - window.onload = function() {
|
| - var c=document.getElementById("canvas");
|
| - var ctx=c.getContext("2d");
|
| - ctx.beginPath();
|
| - ctx.moveTo(0,0);
|
| - ctx.lineTo(300,150);
|
| - ctx.stroke();
|
| - }
|
| - </script>
|
| -
|
| - <canvas id="canvas" width="200" height="200" ></canvas>
|
| </body>
|
| </html>
|
|
|