Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / textarea-initial-caret-position.html
blob34d6202b7ad1bc7b996fe2253e0a87e29f3c3dad
1 <html>
2 <head>
3 <script src="../../resources/js-test.js"></script>
4 </head>
5 <body>
6 <div>
7 <p>This tests the initial caret position for textareas.</p>
8 <p>Bug 11746: REGRESSION(r14931): Outlook Web Access incorrectly positions the insertion point when replying to e-mail<br>
9 <a href="http://bugs.webkit.org/show_bug.cgi?id=11746">http://bugs.webkit.org/show_bug.cgi?id=11746</a></p>
10 </div>
11 <div>
12 <textarea id="ta" rows="5" cols="10">
23 </textarea>
24 </div>
25 <div id="console"></div>
26 <script type="text/javascript">
27 var ta = document.getElementById('ta');
28 ta.focus();
29 shouldBe('ta.selectionStart', '0');
30 shouldBe('ta.selectionEnd', '0');
31 </script>
32 </body>
33 </html>