blob: 678a07a3ded268ab5ec23c3d90199efcc98f62c7 [file] [log] [blame]
<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.layoutTestController)
layoutTestController.dumpAsText();
var appearance = document.getElementById("target").style.webkitAppearance;
document.getElementById("result").innerText = appearance === "" ? "PASS" : "FAIL: parsed as " + appearance;
</script>