chromium/third_party/blink/web_tests/fast/css/appearance-caps-lock-indicator.html

<p>
    Test that the CSS parser does not accept <tt>caps-lock-indicator</tt> as a <tt>-webkit-appearance</tt>
    value.
</p>
<p id="result">FAIL: Test did not run</p>
<div id="target" style="display: none; -webkit-appearance: caps-lock-indicator;"></div>
<script>
    if (window.testRunner)
        testRunner.dumpAsText();

    var appearance = document.getElementById("target").style.webkitAppearance;
    document.getElementById("result").innerText = appearance === "" ? "PASS" : "FAIL: parsed as " + appearance;
</script>