| Index: third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-paint-bg-color.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-paint-bg-color.html b/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-paint-bg-color.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2f7d6cba68615c9ee9bb758d24e2ff0d84402ca4
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/performance-timing/paint-timing/first-paint-bg-color.html
|
| @@ -0,0 +1,24 @@
|
| +<!DOCTYPE html>
|
| +<head>
|
| +<title>Performance Paint Timing Test: FP due to background color</title>
|
| +</head>
|
| +<body>
|
| + <script src="../../resources/testharness.js"></script>
|
| + <script src="../../resources/testharnessreport.js"></script>
|
| + <div id="main"></div>
|
| +</body>
|
| +<footer>
|
| + <script>
|
| + async_test(function (t) {
|
| + document.body.style.backgroundColor = "#AA0000";
|
| +
|
| + testRunner.capturePixelsAsyncThen(t.step_func_done(function() {
|
| + bufferedEntries = performance.getEntriesByType('paint');
|
| + assert_equals(bufferedEntries.length, 1, "FP should fire for background color, not FCP");
|
| + assert_equals(bufferedEntries[0].entryType, "paint");
|
| + assert_equals(bufferedEntries[0].name, "first-paint");
|
| + }));
|
| + }, "First paint fires due to background color. No FCP");
|
| + </script>
|
| +<footer>
|
| +</html>
|
|
|