| <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> |