Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / findString-diacriticals.html
blob41ef942626b4033e0323870e9688165b8ec18e19
1 <p>
2 Test for <i><a href="https://bugs.webkit.org/show_bug.cgi?id=23051">https://bugs.webkit.org/show_bug.cgi?id=23051</a>
3 web page searching should use ICU's search so it can ignore diacritical differences</i>.
4 </p>
5 <p>
6 The word "s&eacute;lect" should be selected.
7 </p>
8 <hr>
9 <p id="result">
10 FAIL
11 </p>
12 <script>
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 if (document.execCommand("FindString", false, "Sel" + String.fromCharCode(0x00CB) + "ct"))
16 document.getElementById("result").innerText = "PASS";
17 </script>