chromium/third_party/blink/web_tests/external/wpt/paint-timing/fcp-only/fcp-pseudo-element-opacity.html

<!DOCTYPE html>
<head>
<title>Performance Paint Timing Test: FCP due to pseudo-element getting positive opacity</title>
<style>
    #main {
        position: relative;
        width: 100px;
        height: 100px;
    }

    #main:after {
        content: "TEXT";
        opacity: 0;
    }

    /* contentful class is defined in test_fcp script. */
    #main.contentful:after {
        opacity: 0.5;
    }
</style>
</head>
<body>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/utils.js"></script>
<div id="main">
</div>
<script>
    test_fcp("First contentful paint fires due to pseudo-element getting positive opacity.")
</script>
</body>
</html>