Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / placeholder-crash-with-scrollbar-corner.html
blob864ec11d96b892d202ff86282ae8f8775f1d958b
1 <style>
2 ::-webkit-scrollbar-corner {
3 color: Red;
5 </style>
6 <p>Focus on the input and hit Escape and see if the browser crashes.</p>
7 <input placeholder="foo" id=i>
8 <div id=console></div>
9 <script>
10 document.getElementById('i').addEventListener("keydown", function() {
11 this.style.display = "none";
12 document.getElementById('console').innerText = 'PASS (not crashed)';
13 if (window.testRunner)
14 testRunner.notifyDone();
15 });
17 if (window.testRunner && window.eventSender) {
18 testRunner.dumpAsText();
19 testRunner.waitUntilDone();
20 setTimeout(function() {
21 document.getElementById('i').focus();
22 eventSender.keyDown('a');
23 }, 0);
26 </script>