Commit d5e03bd4 authored by Aaron Leventhal's avatar Aaron Leventhal Committed by Commit Bot

Long text should not be truncated in a11y container name

Bug: 896359
Change-Id: Idf548dee9fe65183a9093132560741dee9ae4029
Reviewed-on: https://chromium-review.googlesource.com/c/1388552
Commit-Queue: Aaron Leventhal <aleventhal@chromium.org>
Reviewed-by: default avatarDominic Mazzoni <dmazzoni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#618680}
parent 7097bea9
......@@ -1604,6 +1604,10 @@ IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityListMarkers) {
RunHtmlTest(FILE_PATH_LITERAL("list-markers.html"));
}
IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityLongText) {
RunHtmlTest(FILE_PATH_LITERAL("long-text.html"));
}
IN_PROC_BROWSER_TEST_F(DumpAccessibilityTreeTest, AccessibilityMain) {
RunHtmlTest(FILE_PATH_LITERAL("main.html"));
}
......
......@@ -483,8 +483,11 @@ void BlinkAXTreeSource::SerializeNode(WebAXObject src,
blink::WebString web_name = src.GetName(nameFrom, nameObjects);
if ((!web_name.IsEmpty() && !web_name.IsNull()) ||
nameFrom == ax::mojom::NameFrom::kAttributeExplicitlyEmpty) {
int max_length = dst->role == ax::mojom::Role::kStaticText
? kMaxStaticTextLength
: kMaxStringAttributeLength;
TruncateAndAddStringAttribute(dst, ax::mojom::StringAttribute::kName,
web_name.Utf8());
web_name.Utf8(), max_length);
dst->SetNameFrom(nameFrom);
AddIntListAttributeFromWebObjects(
ax::mojom::IntListAttribute::kLabelledbyIds, nameObjects, dst);
......@@ -1011,11 +1014,11 @@ WebAXObject BlinkAXTreeSource::ComputeRoot() const {
void BlinkAXTreeSource::TruncateAndAddStringAttribute(
AXContentNodeData* dst,
ax::mojom::StringAttribute attribute,
const std::string& value) const {
if (value.size() > BlinkAXTreeSource::kMaxStringAttributeLength) {
const std::string& value,
uint32_t max_len) const {
if (value.size() > max_len) {
std::string truncated;
base::TruncateUTF8ToByteSize(
value, BlinkAXTreeSource::kMaxStringAttributeLength, &truncated);
base::TruncateUTF8ToByteSize(value, max_len, &truncated);
dst->AddStringAttribute(attribute, truncated);
} else {
dst->AddStringAttribute(attribute, value);
......
......@@ -110,10 +110,16 @@ class BlinkAXTreeSource
blink::WebAXObject ComputeRoot() const;
uint32_t kMaxStringAttributeLength = 10000;
void TruncateAndAddStringAttribute(AXContentNodeData* dst,
ax::mojom::StringAttribute attribute,
const std::string& value) const;
// Max length for attributes such as aria-label.
static const uint32_t kMaxStringAttributeLength = 10000;
// Max length for a static text name.
// Length of War and Peace (http://www.gutenberg.org/files/2600/2600-0.txt).
static const uint32_t kMaxStaticTextLength = 3227574;
void TruncateAndAddStringAttribute(
AXContentNodeData* dst,
ax::mojom::StringAttribute attribute,
const std::string& value,
uint32_t max_len = kMaxStringAttributeLength) const;
RenderFrameImpl* render_frame_;
......
rootWebArea
++pre
++++staticText name='1. The quick brown fox jumps over the lazy dog.<newline>2. The quick brown fox jumps over the lazy dog.<newline>3. The quick brown fox jumps over the lazy dog.<newline>4. The quick brown fox jumps over the lazy dog.<newline>5. The quick brown fox jumps over the lazy dog.<newline>6. The quick brown fox jumps over the lazy dog.<newline>7. The quick brown fox jumps over the lazy dog.<newline>8. The quick brown fox jumps over the lazy dog.<newline>9. The quick brown fox jumps over the lazy dog.<newline>10. The quick brown fox jumps over the lazy dog.<newline>11. The quick brown fox jumps over the lazy dog.<newline>12. The quick brown fox jumps over the lazy dog.<newline>13. The quick brown fox jumps over the lazy dog.<newline>14. The quick brown fox jumps over the lazy dog.<newline>15. The quick brown fox jumps over the lazy dog.<newline>16. The quick brown fox jumps over the lazy dog.<newline>17. The quick brown fox jumps over the lazy dog.<newline>18. The quick brown fox jumps over the lazy dog.<newline>19. The quick brown fox jumps over the lazy dog.<newline>20. The quick brown fox jumps over the lazy dog.<newline>21. The quick brown fox jumps over the lazy dog.<newline>22. The quick brown fox jumps over the lazy dog.<newline>23. The quick brown fox jumps over the lazy dog.<newline>24. The quick brown fox jumps over the lazy dog.<newline>25. The quick brown fox jumps over the lazy dog.<newline>26. The quick brown fox jumps over the lazy dog.<newline>27. The quick brown fox jumps over the lazy dog.<newline>28. The quick brown fox jumps over the lazy dog.<newline>29. The quick brown fox jumps over the lazy dog.<newline>30. The quick brown fox jumps over the lazy dog.<newline>31. The quick brown fox jumps over the lazy dog.<newline>32. The quick brown fox jumps over the lazy dog.<newline>33. The quick brown fox jumps over the lazy dog.<newline>34. The quick brown fox jumps over the lazy dog.<newline>35. The quick brown fox jumps over the lazy dog.<newline>36. The quick brown fox jumps over the lazy dog.<newline>37. The quick brown fox jumps over the lazy dog.<newline>38. The quick brown fox jumps over the lazy dog.<newline>39. The quick brown fox jumps over the lazy dog.<newline>40. The quick brown fox jumps over the lazy dog.<newline>41. The quick brown fox jumps over the lazy dog.<newline>42. The quick brown fox jumps over the lazy dog.<newline>43. The quick brown fox jumps over the lazy dog.<newline>44. The quick brown fox jumps over the lazy dog.<newline>45. The quick brown fox jumps over the lazy dog.<newline>46. The quick brown fox jumps over the lazy dog.<newline>47. The quick brown fox jumps over the lazy dog.<newline>48. The quick brown fox jumps over the lazy dog.<newline>49. The quick brown fox jumps over the lazy dog.<newline>50. The quick brown fox jumps over the lazy dog.<newline>51. The quick brown fox jumps over the lazy dog.<newline>52. The quick brown fox jumps over the lazy dog.<newline>53. The quick brown fox jumps over the lazy dog.<newline>54. The quick brown fox jumps over the lazy dog.<newline>55. The quick brown fox jumps over the lazy dog.<newline>56. The quick brown fox jumps over the lazy dog.<newline>57. The quick brown fox jumps over the lazy dog.<newline>58. The quick brown fox jumps over the lazy dog.<newline>59. The quick brown fox jumps over the lazy dog.<newline>60. The quick brown fox jumps over the lazy dog.<newline>61. The quick brown fox jumps over the lazy dog.<newline>62. The quick brown fox jumps over the lazy dog.<newline>63. The quick brown fox jumps over the lazy dog.<newline>64. The quick brown fox jumps over the lazy dog.<newline>65. The quick brown fox jumps over the lazy dog.<newline>66. The quick brown fox jumps over the lazy dog.<newline>67. The quick brown fox jumps over the lazy dog.<newline>68. The quick brown fox jumps over the lazy dog.<newline>69. The quick brown fox jumps over the lazy dog.<newline>70. The quick brown fox jumps over the lazy dog.<newline>71. The quick brown fox jumps over the lazy dog.<newline>72. The quick brown fox jumps over the lazy dog.<newline>73. The quick brown fox jumps over the lazy dog.<newline>74. The quick brown fox jumps over the lazy dog.<newline>75. The quick brown fox jumps over the lazy dog.<newline>76. The quick brown fox jumps over the lazy dog.<newline>77. The quick brown fox jumps over the lazy dog.<newline>78. The quick brown fox jumps over the lazy dog.<newline>79. The quick brown fox jumps over the lazy dog.<newline>80. The quick brown fox jumps over the lazy dog.<newline>81. The quick brown fox jumps over the lazy dog.<newline>82. The quick brown fox jumps over the lazy dog.<newline>83. The quick brown fox jumps over the lazy dog.<newline>84. The quick brown fox jumps over the lazy dog.<newline>85. The quick brown fox jumps over the lazy dog.<newline>86. The quick brown fox jumps over the lazy dog.<newline>87. The quick brown fox jumps over the lazy dog.<newline>88. The quick brown fox jumps over the lazy dog.<newline>89. The quick brown fox jumps over the lazy dog.<newline>90. The quick brown fox jumps over the lazy dog.<newline>91. The quick brown fox jumps over the lazy dog.<newline>92. The quick brown fox jumps over the lazy dog.<newline>93. The quick brown fox jumps over the lazy dog.<newline>94. The quick brown fox jumps over the lazy dog.<newline>95. The quick brown fox jumps over the lazy dog.<newline>96. The quick brown fox jumps over the lazy dog.<newline>97. The quick brown fox jumps over the lazy dog.<newline>98. The quick brown fox jumps over the lazy dog.<newline>99. The quick brown fox jumps over the lazy dog.<newline>100. The quick brown fox jumps over the lazy dog.<newline>101. The quick brown fox jumps over the lazy dog.<newline>102. The quick brown fox jumps over the lazy dog.<newline>103. The quick brown fox jumps over the lazy dog.<newline>104. The quick brown fox jumps over the lazy dog.<newline>105. The quick brown fox jumps over the lazy dog.<newline>106. The quick brown fox jumps over the lazy dog.<newline>107. The quick brown fox jumps over the lazy dog.<newline>108. The quick brown fox jumps over the lazy dog.<newline>109. The quick brown fox jumps over the lazy dog.<newline>110. The quick brown fox jumps over the lazy dog.<newline>111. The quick brown fox jumps over the lazy dog.<newline>112. The quick brown fox jumps over the lazy dog.<newline>113. The quick brown fox jumps over the lazy dog.<newline>114. The quick brown fox jumps over the lazy dog.<newline>115. The quick brown fox jumps over the lazy dog.<newline>116. The quick brown fox jumps over the lazy dog.<newline>117. The quick brown fox jumps over the lazy dog.<newline>118. The quick brown fox jumps over the lazy dog.<newline>119. The quick brown fox jumps over the lazy dog.<newline>120. The quick brown fox jumps over the lazy dog.<newline>121. The quick brown fox jumps over the lazy dog.<newline>122. The quick brown fox jumps over the lazy dog.<newline>123. The quick brown fox jumps over the lazy dog.<newline>124. The quick brown fox jumps over the lazy dog.<newline>125. The quick brown fox jumps over the lazy dog.<newline>126. The quick brown fox jumps over the lazy dog.<newline>127. The quick brown fox jumps over the lazy dog.<newline>128. The quick brown fox jumps over the lazy dog.<newline>129. The quick brown fox jumps over the lazy dog.<newline>130. The quick brown fox jumps over the lazy dog.<newline>131. The quick brown fox jumps over the lazy dog.<newline>132. The quick brown fox jumps over the lazy dog.<newline>133. The quick brown fox jumps over the lazy dog.<newline>134. The quick brown fox jumps over the lazy dog.<newline>135. The quick brown fox jumps over the lazy dog.<newline>136. The quick brown fox jumps over the lazy dog.<newline>137. The quick brown fox jumps over the lazy dog.<newline>138. The quick brown fox jumps over the lazy dog.<newline>139. The quick brown fox jumps over the lazy dog.<newline>140. The quick brown fox jumps over the lazy dog.<newline>141. The quick brown fox jumps over the lazy dog.<newline>142. The quick brown fox jumps over the lazy dog.<newline>143. The quick brown fox jumps over the lazy dog.<newline>144. The quick brown fox jumps over the lazy dog.<newline>145. The quick brown fox jumps over the lazy dog.<newline>146. The quick brown fox jumps over the lazy dog.<newline>147. The quick brown fox jumps over the lazy dog.<newline>148. The quick brown fox jumps over the lazy dog.<newline>149. The quick brown fox jumps over the lazy dog.<newline>150. The quick brown fox jumps over the lazy dog.<newline>151. The quick brown fox jumps over the lazy dog.<newline>152. The quick brown fox jumps over the lazy dog.<newline>153. The quick brown fox jumps over the lazy dog.<newline>154. The quick brown fox jumps over the lazy dog.<newline>155. The quick brown fox jumps over the lazy dog.<newline>156. The quick brown fox jumps over the lazy dog.<newline>157. The quick brown fox jumps over the lazy dog.<newline>158. The quick brown fox jumps over the lazy dog.<newline>159. The quick brown fox jumps over the lazy dog.<newline>160. The quick brown fox jumps over the lazy dog.<newline>161. The quick brown fox jumps over the lazy dog.<newline>162. The quick brown fox jumps over the lazy dog.<newline>163. The quick brown fox jumps over the lazy dog.<newline>164. The quick brown fox jumps over the lazy dog.<newline>165. The quick brown fox jumps over the lazy dog.<newline>166. The quick brown fox jumps over the lazy dog.<newline>167. The quick brown fox jumps over the lazy dog.<newline>168. The quick brown fox jumps over the lazy dog.<newline>169. The quick brown fox jumps over the lazy dog.<newline>170. The quick brown fox jumps over the lazy dog.<newline>171. The quick brown fox jumps over the lazy dog.<newline>172. The quick brown fox jumps over the lazy dog.<newline>173. The quick brown fox jumps over the lazy dog.<newline>174. The quick brown fox jumps over the lazy dog.<newline>175. The quick brown fox jumps over the lazy dog.<newline>176. The quick brown fox jumps over the lazy dog.<newline>177. The quick brown fox jumps over the lazy dog.<newline>178. The quick brown fox jumps over the lazy dog.<newline>179. The quick brown fox jumps over the lazy dog.<newline>180. The quick brown fox jumps over the lazy dog.<newline>181. The quick brown fox jumps over the lazy dog.<newline>182. The quick brown fox jumps over the lazy dog.<newline>183. The quick brown fox jumps over the lazy dog.<newline>184. The quick brown fox jumps over the lazy dog.<newline>185. The quick brown fox jumps over the lazy dog.<newline>186. The quick brown fox jumps over the lazy dog.<newline>187. The quick brown fox jumps over the lazy dog.<newline>188. The quick brown fox jumps over the lazy dog.<newline>189. The quick brown fox jumps over the lazy dog.<newline>190. The quick brown fox jumps over the lazy dog.<newline>191. The quick brown fox jumps over the lazy dog.<newline>192. The quick brown fox jumps over the lazy dog.<newline>193. The quick brown fox jumps over the lazy dog.<newline>194. The quick brown fox jumps over the lazy dog.<newline>195. The quick brown fox jumps over the lazy dog.<newline>196. The quick brown fox jumps over the lazy dog.<newline>197. The quick brown fox jumps over the lazy dog.<newline>198. The quick brown fox jumps over the lazy dog.<newline>199. The quick brown fox jumps over the lazy dog.<newline>200. The quick brown fox jumps over the lazy dog.<newline>201. The quick brown fox jumps over the lazy dog.<newline>202. The quick brown fox jumps over the lazy dog.<newline>203. The quick brown fox jumps over the lazy dog.<newline>204. The quick brown fox jumps over the lazy dog.<newline>205. The quick brown fox jumps over the lazy dog.<newline>206. The quick brown fox jumps over the lazy dog.<newline>207. The quick brown fox jumps over the lazy dog.<newline>208. The quick brown fox jumps over the lazy dog.<newline>209. The quick brown fox jumps over the lazy dog.<newline>210. The quick brown fox jumps over the lazy dog.<newline>211. The quick brown fox jumps over the lazy dog.<newline>212. The quick brown fox jumps over the lazy dog.<newline>213. The quick brown fox jumps over the lazy dog.<newline>214. The quick brown fox jumps over the lazy dog.<newline>215. The quick brown fox jumps over the lazy dog.<newline>216. The quick brown fox jumps over the lazy dog.<newline>217. The quick brown fox jumps over the lazy dog.<newline>218. The quick brown fox jumps over the lazy dog.<newline>219. The quick brown fox jumps over the lazy dog.<newline>220. The quick brown fox jumps over the lazy dog.<newline>221. The quick brown fox jumps over the lazy dog.<newline>222. The quick brown fox jumps over the lazy dog.<newline>223. The quick brown fox jumps over the lazy dog.<newline>224. The quick brown fox jumps over the lazy dog.<newline>225. The quick brown fox jumps over the lazy dog.<newline>226. The quick brown fox jumps over the lazy dog.<newline>227. The quick brown fox jumps over the lazy dog.<newline>228. The quick brown fox jumps over the lazy dog.<newline>229. The quick brown fox jumps over the lazy dog.<newline>230. The quick brown fox jumps over the lazy dog.<newline>231. The quick brown fox jumps over the lazy dog.<newline>232. The quick brown fox jumps over the lazy dog.<newline>233. The quick brown fox jumps over the lazy dog.<newline>234. The quick brown fox jumps over the lazy dog.<newline>235. The quick brown fox jumps over the lazy dog.<newline>236. The quick brown fox jumps over the lazy dog.<newline>237. The quick brown fox jumps over the lazy dog.<newline>238. The quick brown fox jumps over the lazy dog.<newline>239. The quick brown fox jumps over the lazy dog.<newline>240. The quick brown fox jumps over the lazy dog.<newline>241. The quick brown fox jumps over the lazy dog.<newline>242. The quick brown fox jumps over the lazy dog.<newline>243. The quick brown fox jumps over the lazy dog.<newline>244. The quick brown fox jumps over the lazy dog.<newline>245. The quick brown fox jumps over the lazy dog.<newline>246. The quick brown fox jumps over the lazy dog.<newline>247. The quick brown fox jumps over the lazy dog.<newline>248. The quick brown fox jumps over the lazy dog.<newline>249. The quick brown fox jumps over the lazy dog.<newline>250. The quick brown fox jumps over the lazy dog.<newline>'
++++++inlineTextBox name='1. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='2. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='3. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='4. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='5. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='6. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='7. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='8. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='9. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='10. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='11. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='12. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='13. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='14. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='15. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='16. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='17. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='18. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='19. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='20. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='21. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='22. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='23. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='24. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='25. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='26. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='27. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='28. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='29. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='30. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='31. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='32. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='33. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='34. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='35. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='36. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='37. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='38. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='39. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='40. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='41. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='42. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='43. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='44. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='45. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='46. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='47. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='48. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='49. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='50. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='51. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='52. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='53. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='54. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='55. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='56. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='57. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='58. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='59. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='60. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='61. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='62. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='63. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='64. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='65. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='66. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='67. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='68. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='69. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='70. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='71. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='72. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='73. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='74. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='75. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='76. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='77. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='78. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='79. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='80. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='81. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='82. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='83. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='84. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='85. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='86. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='87. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='88. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='89. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='90. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='91. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='92. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='93. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='94. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='95. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='96. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='97. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='98. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='99. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='100. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='101. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='102. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='103. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='104. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='105. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='106. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='107. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='108. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='109. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='110. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='111. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='112. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='113. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='114. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='115. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='116. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='117. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='118. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='119. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='120. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='121. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='122. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='123. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='124. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='125. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='126. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='127. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='128. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='129. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='130. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='131. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='132. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='133. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='134. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='135. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='136. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='137. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='138. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='139. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='140. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='141. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='142. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='143. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='144. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='145. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='146. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='147. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='148. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='149. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='150. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='151. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='152. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='153. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='154. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='155. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='156. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='157. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='158. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='159. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='160. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='161. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='162. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='163. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='164. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='165. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='166. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='167. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='168. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='169. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='170. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='171. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='172. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='173. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='174. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='175. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='176. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='177. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='178. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='179. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='180. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='181. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='182. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='183. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='184. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='185. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='186. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='187. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='188. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='189. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='190. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='191. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='192. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='193. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='194. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='195. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='196. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='197. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='198. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='199. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='200. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='201. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='202. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='203. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='204. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='205. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='206. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='207. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='208. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='209. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='210. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='211. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='212. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='213. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='214. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='215. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='216. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='217. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='218. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='219. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='220. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='221. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='222. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='223. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='224. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='225. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='226. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='227. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='228. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='229. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='230. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='231. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='232. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='233. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='234. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='235. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='236. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='237. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='238. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='239. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='240. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='241. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='242. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='243. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='244. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='245. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='246. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='247. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='248. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='249. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
++++++inlineTextBox name='250. The quick brown fox jumps over the lazy dog.'
++++++inlineTextBox name='<newline>'
<body>
<pre style="word-wrap: break-word; white-space: pre-wrap;"><script>
for (let count = 1; count <= 250; count ++)
document.write('' + count + '. The quick brown fox jumps over the lazy dog.\n');
</script></pre>
</body>
<!DOCTYPE HTML>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<pre id="pre" style="word-wrap: break-word; white-space: pre-wrap;"><script>
for (let count = 1; count <= 250; count ++)
document.write('' + count + '. The quick brown fox jumps over the lazy dog. ');
</script></pre>
</body>
<script>
test(function(t) {
var axPre = accessibilityController.accessibleElementById("pre");
var axStaticText = axPre.childAtIndex(0);
console.log(axStaticText.name);
assert_equals(axStaticText.name.substr(-50), "250. The quick brown fox jumps over the lazy dog. ");
}, "Accessible name should not be truncated.");
</script>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment