chromium/third_party/blink/web_tests/wpt_internal/css/css-overflow/scroll-marker-group-010.tentative.html

<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <title>CSS Test: ::scroll-marker-group is not created without scroll container</title>
    <link rel="author" href="mailto:[email protected]">
    <link rel="match" href="scroll-marker-group-006-ref.tentative.html">
    <link rel="help" href="https://github.com/flackr/carousel/tree/main/scroll-marker">
    <style>
        div {
            scroll-marker-group: after;
        }

        div::scroll-marker-group {
            background-color: red;
            display: flex;
            height: 100px;
            width: 100px;
        }
    </style>
</head>

<body>
    <p>Test passes if there is <strong>no red rectangle</strong>.
    <div></div>
</body>

</html>