/third_party/blink/web_tests/external/wpt/html/semantics/forms/textfieldselection/selection.html

http://github.com/chromium/chromium · HTML · 176 lines · 155 code · 21 blank · 0 comment · 0 complexity · 9b7f17899f073ee4cdb7724f74625507 MD5 · raw file

  1. <!DOCTYPE HTML>
  2. <title>test if select() API returns correct attributes</title>
  3. <meta charset="UTF-8">
  4. <meta name="timeout" content="long">
  5. <link rel="author" title="Koji Tashiro" href="mailto:koji.tashiro@gmail.com">
  6. <link rel="help" href="https://html.spec.whatwg.org/multipage/multipage/association-of-controls-and-forms.html#textFieldSelection">
  7. <script src="/resources/testharness.js"></script>
  8. <script src="/resources/testharnessreport.js"></script>
  9. <div id="log"></div>
  10. <script>
  11. var body = document.getElementsByTagName("body").item(0);
  12. var dirs = ['forward', 'backward', 'none'];
  13. var sampleText = "0123456789";
  14. var createInputElement = function(value, append = true) {
  15. var el = document.createElement("input");
  16. el.type = "text";
  17. el.value = value;
  18. el.id = "input" + (append ? "-appended" : "-not-appended");
  19. if (append) {
  20. body.appendChild(el);
  21. }
  22. return el;
  23. };
  24. var createTextareaElement = function(value, append = true) {
  25. var el = document.createElement("textarea");
  26. el.value = value;
  27. el.id = "textarea" + (append ? "-appended" : "-not-appended");
  28. if (append) {
  29. body.appendChild(el);
  30. }
  31. return el;
  32. };
  33. test(function() {
  34. var text = 'a';
  35. for (var i=0; i<255; i++) {
  36. var el = createInputElement(text);
  37. el.select();
  38. var selectionText = el.value.substring(el.selectionStart, el.selectionEnd);
  39. assert_equals(selectionText, text, "Selection text mismatched");
  40. el.parentNode.removeChild(el);
  41. text += 'a';
  42. }
  43. }, "test if selection text is correct for input");
  44. test(function() {
  45. var text = 'a';
  46. for (var i=0; i<255; i++) {
  47. var el = createTextareaElement(text);
  48. el.select();
  49. var selectionText = el.value.substring(el.selectionStart, el.selectionEnd);
  50. assert_equals(selectionText, text, "Selection text mismatched");
  51. el.parentNode.removeChild(el);
  52. text += 'a';
  53. }
  54. }, "test if selection text is correct for textarea");
  55. test(function() {
  56. var text = 'あ';
  57. for (var i=0; i<255; i++) {
  58. var el = createInputElement(text);
  59. el.select();
  60. var selectionText = el.value.substring(el.selectionStart, el.selectionEnd);
  61. assert_equals(selectionText, text, "Selection text mismatched");
  62. el.parentNode.removeChild(el);
  63. text += 'あ';
  64. }
  65. }, "test if non-ascii selection text is correct for input");
  66. test(function() {
  67. var text = 'あ';
  68. for (var i=0; i<255; i++) {
  69. var el = createTextareaElement(text);
  70. el.select();
  71. var selectionText = el.value.substring(el.selectionStart, el.selectionEnd);
  72. assert_equals(selectionText, text, "Selection text mismatched");
  73. el.parentNode.removeChild(el);
  74. text += 'あ';
  75. }
  76. }, "test if non-ascii selection text is correct for textarea");
  77. for (var append of [true, false]) {
  78. test(function() {
  79. var el = createInputElement(sampleText, append);
  80. // If there is no selection, then it must return the offset(in logical order)
  81. // to the character that immediately follows the text entry cursor.
  82. assert_equals(el.selectionStart, el.value.length,
  83. "SelectionStart offset without selection in " + el.id);
  84. if (!el.parentNode) {
  85. return;
  86. }
  87. el.select();
  88. assert_equals(el.selectionStart, 0, "SelectionStart offset");
  89. el.parentNode.removeChild(el);
  90. }, "test SelectionStart offset for input that is " +
  91. (append ? "appended" : " not appended"));
  92. }
  93. for (var append of [true, false]) {
  94. test(function() {
  95. var el = createTextareaElement(sampleText, append);
  96. // If there is no selection, then it must return the offset(in logical order)
  97. // to the character that immediately follows the text entry cursor.
  98. assert_equals(el.selectionStart, el.value.length,
  99. "SelectionStart offset without selection in " + el.id);
  100. if (!el.parentNode) {
  101. return;
  102. }
  103. el.select();
  104. assert_equals(el.selectionStart, 0, "SelectionStart offset");
  105. el.parentNode.removeChild(el);
  106. }, "test SelectionStart offset for textarea that is " +
  107. (append ? "appended" : " not appended"));
  108. }
  109. for (var append of [true, false]) {
  110. test(function() {
  111. var el = createInputElement(sampleText, append);
  112. // If there is no selection, then it must return the offset(in logical order)
  113. // to the character that immediately follows the text entry cursor.
  114. assert_equals(el.selectionEnd, el.value.length,
  115. "SelectionEnd offset without selection in " + el.id);
  116. if (!el.parentNode) {
  117. return;
  118. }
  119. el.select();
  120. assert_equals(el.selectionEnd, el.value.length, "SelectionEnd offset");
  121. el.parentNode.removeChild(el);
  122. }, "test SelectionEnd offset for input that is " +
  123. (append ? "appended" : " not appended"));
  124. }
  125. for (var append of [true, false]) {
  126. test(function() {
  127. var el = createTextareaElement(sampleText, append);
  128. // If there is no selection, then it must return the offset(in logical order)
  129. // to the character that immediately follows the text entry cursor.
  130. assert_equals(el.selectionEnd, el.value.length,
  131. "SelectionEnd offset without selection in " + el.id);
  132. if (!el.parentNode) {
  133. return;
  134. }
  135. el.select();
  136. assert_equals(el.selectionEnd, el.value.length, "SelectionEnd offset");
  137. el.parentNode.removeChild(el);
  138. }, "test SelectionEnd offset for textarea that is " +
  139. (append ? "appended" : " not appended"));
  140. }
  141. test(function() {
  142. var el = createInputElement(sampleText);
  143. assert_in_array(el.selectionDirection, dirs, "SelectionDirection");
  144. el.select();
  145. assert_in_array(el.selectionDirection, dirs, "SelectionDirection");
  146. el.parentNode.removeChild(el);
  147. }, "test SelectionDirection for input");
  148. test(function() {
  149. var el = createInputElement(sampleText);
  150. assert_in_array(el.selectionDirection, dirs, "SelectionDirection");
  151. el.select();
  152. assert_in_array(el.selectionDirection, dirs, "SelectionDirection");
  153. el.parentNode.removeChild(el);
  154. }, "test SelectionDirection for textarea");
  155. </script>