https://github.com/web-platform-tests/wpt
Revision aceba7094d3d8145b85544ecca7c44de5f4b4f3a authored by plehegar on 16 May 2018, 11:21:12 UTC, committed by plehegar on 16 May 2018, 11:21:12 UTC
1 parent 74acc7e
Raw File
Tip revision: aceba7094d3d8145b85544ecca7c44de5f4b4f3a authored by plehegar on 16 May 2018, 11:21:12 UTC
Fixed moderators
Tip revision: aceba70
style-first-letter-pseudo.html
<!DOCTYPE html>
<html class="reftest-wait">
<link rel="match" href="style-first-letter-pseudo-ref.html">
<style>
div {
    color: rgb(0, 255, 0);
    line-height: 1px;
    height: 10px;
}

div::first-letter {
    background-image: paint(geometry);
    color: rgb(255, 0, 0);
    line-height: 2px;
}
</style>
<script src="../common/reftest-wait.js"></script>
<script src="../common/css-paint-tests.js"></script>
<body style="font: 10px/1 Ahem;">
<div>ppp</div>

<script id="code" type="text/worklet">
registerPaint('geometry', class {
    static get inputProperties() {
        return [
            'color',
            'line-height',
        ];
    }
    paint(ctx, geom, styleMap) {
        const properties = styleMap.getProperties().sort();
        var serializedStrings = [];
        for (let i = 0; i < properties.length; i++) {
            const value = styleMap.get(properties[i]);
            let serialized;
            if (value)
                serialized = properties[i].toString() + ': [' + value.constructor.name + '=' + value.toString() + ']';
            else
                serialized = properties[i].toString() + ': [null]';
            serializedStrings.push(serialized);
        }
        ctx.strokeStyle = 'green';
        if (serializedStrings[0] != "color: [CSSStyleValue=rgb(255, 0, 0)]")
            ctx.strokeStyle = 'red';
        if (serializedStrings[1] != "line-height: [CSSUnitValue=2px]")
            ctx.strokeStyle = 'blue';
        ctx.lineWidth = 4;
        ctx.strokeRect(0, 0, geom.width, geom.height);
    }
});
</script>

<script>
    importPaintWorkletAndTerminateTestAfterAsyncPaint(document.getElementById('code').textContent);
</script>
</body>
</html>
back to top