Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / mailto / get-non-ascii-always-utf-8.html
blob84bcf780fcce1c62169742025747d68d2556ba4b
1 <meta charset="windows-1251">
2 <body onload="test()">
3 <form method="get" action="mailto:one@example.org">
4 <input type="text" size="10" maxlength="40" name="subject" value="Fr&egrave;re Fran&ccedil;ois">
5 <input type="text" size="10" maxlength="40" name="body" value="Ïðîâåðêà">
6 <input type="submit" value="Send">
7 </form>
8 <script>
9 function test() {
10 if (window.testRunner) {
11 testRunner.dumpAsText();
12 testRunner.waitForPolicyDelegate();
13 document.getElementsByTagName("form")[0].submit();
16 </script>