| Index: third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-svg.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html b/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-svg.html
|
| similarity index 78%
|
| copy from third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html
|
| copy to third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-svg.html
|
| index e73b9e6e7e717a4dee0baa41fd4e0744280d91b3..8bc773295ed82183c22ca54e3b2cdc0e9358e0d2 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/performance/performance-paint-timing-observable.html
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-contentful-svg.html
|
| @@ -6,7 +6,6 @@
|
| <script src="../../resources/testharness.js"></script>
|
| <script src="../../resources/testharnessreport.js"></script>
|
| <script>
|
| -
|
| async_test(function (t) {
|
| var observer = new PerformanceObserver(
|
| t.step_func(function (entryList) {
|
| @@ -28,9 +27,17 @@
|
| );
|
| observer.observe({entryTypes: ["paint"]});
|
|
|
| - }, "Both first-paint-timing and first-contentful-paint timing entry are observable.");
|
| + }, "First contentful paint fires due to svg.");
|
| + </script>
|
|
|
| + <script>
|
| + window.onload = function() {
|
| + var img = document.createElement("IMG");
|
| + img.src = "resources/circle.svg";
|
| + document.getElementById('svg').appendChild(img);
|
| + }
|
| </script>
|
| - <div style="background-color:black;color:white;padding:20px;">...test...</div>
|
| +
|
| + <div id="svg"></div>
|
| </body>
|
| -</html>
|
| +</html>
|
|
|