Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / text-iterator / first-letter-rtl-crash.html
blob8897d9d6afe8ad40462b221c1be488f7ff825d79
1 <!DOCTYPE html>
2 <html>
3 <style>
4 body:first-letter { color: black; }
5 </style>
6 <script>
8 function run() {
9 document.execCommand('findString', false, '!ABC');
10 document.body.innerHTML = '<br>This test ensures WebKit does not crash when first-letter rule is applied to LTR letters that ' +
11 ' are not visually contiguous to each other.<br>PASS';
12 if (window.testRunner)
13 testRunner.dumpAsText();
16 </script>
17 <body style="direction: rtl;" onload="run()">!ABC&#x202E;</body>