Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-pseudo/marker-variable-computed-style.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <title>::marker with variables</title>
    <style>
        .firstTest::marker {
            --alpha: 0.75;
            color: rgba(0 128 0 / var(--alpha));
        }
        .secondTest::marker {
            --color: rgb(0 128 0);
            color: var(--color);
        }
    </style>
</head>
<body>
    <ul>
        <li class="firstTest">Item 1</li>
        <li class="secondTest">Item 2</li>
    </ul>
    <script>
        test(() => {
            let firstTest = document.querySelector('.firstTest');
            let markerStyle = getComputedStyle(firstTest, '::marker');
            assert_equals(markerStyle.color, "rgba(0, 128, 0, 0.75)", "color is green with 0.75 opacity.");
        }, `getComputedStyle() for opacity defined by variable in ::marker`);
        test(() => {
            let secondTest = document.querySelector('.secondTest');
            let markerStyle = getComputedStyle(secondTest, '::marker');
            assert_equals(markerStyle.color, "rgb(0, 128, 0)", "color is green.");
        }, `getComputedStyle() for color defined by variable in ::marker`);
    </script>
</body>
</html>