chromium/third_party/blink/web_tests/fast/forms/text/input-placeholder-paint-order-2-expected.html

<!DOCTYPE html>
<body>
<style>
input {
    color: lime;
    text-indent: 1px;
    zoom: 8;
}

input::-webkit-input-placeholder {
    text-indent: -1px;
    font-weight: bold;
    color: red;
}
</style>
<p>The green caret in the following text box should painted over the red placeholder text.</p>
<input placeholder="Placeholder">
<script>
document.querySelector('input').focus();
</script>
</body>