1 2014-10-17 Sergio Villar Senin <svillar@igalia.com>
3 ASSERTION FAILED: growthShare > 0 in WebCore::RenderGrid::distributeSpaceToTracks
4 https://bugs.webkit.org/show_bug.cgi?id=137772
6 Reviewed by Andreas Kling.
8 * fast/css-grid-layout/tracks-number-greatly-exceeding-available-size-crash-expected.txt: Added.
9 * fast/css-grid-layout/tracks-number-greatly-exceeding-available-size-crash.html: Added.
11 2014-10-29 Chris Dumez <cdumez@apple.com>
13 Crash in CachedRawResource::canReuse() when reloading http://dnd.wizards.com/dungeons-and-dragons/story
14 https://bugs.webkit.org/show_bug.cgi?id=138164
16 Reviewed by Andreas Kling.
18 Add a layout test that does XHR loads from cache with only uncommon
19 HTTP headers to reproduce a crash in CachedRawResource::canReuse()
20 when iterating over a HTTPHeaderMap that had uncommon HTTP headers
23 * http/tests/cache/xhr-uncommon-header-expected.txt: Added.
24 * http/tests/cache/xhr-uncommon-header.html: Added.
26 2014-10-28 Benjamin Poulain <benjamin@webkit.org>
28 CSS4 Selectors: Add the pseudo class :any-link
29 https://bugs.webkit.org/show_bug.cgi?id=138128
31 Reviewed by Andreas Kling.
33 Story time: I implement only half of the patch and run
34 fast/selectors/webkit-any-link.html to make sure it fails...
35 and the test happily PASS.
37 I look into it and sure enough, a last minute change in
38 html-link-type-tests.js made it test nothing but :link.
40 I update html-link-type-tests.js to actually test the desired selector,
41 run the test again: PASS.
43 I debug a bit and I find why my code is not tested: html-link-type-tests.js
44 uses Element.matches() and that does not use the CSS JIT.
46 Fair enough, I add a querySelectorAll("#target' + selector + '") to run
47 through the JIT: PASS.
49 Since that selector is simple-#id + simple selector, we go through a fast
50 path for ids and skip the JIT. Arrrrg!
52 Finally, I added querySelectorAll(".target' + selector + '"), which covers
55 The nice thing is: all those cases are tested now :)
57 * fast/css/css-selector-text-expected.txt:
58 * fast/css/css-selector-text.html:
59 * fast/css/css-set-selector-text-expected.txt:
60 * fast/css/css-set-selector-text.html:
61 * fast/selectors/any-link-basics-2-expected.txt: Added.
62 * fast/selectors/any-link-basics-2.html: Added.
63 * fast/selectors/any-link-basics-expected.txt: Added.
64 * fast/selectors/any-link-basics.html: Added.
65 * fast/selectors/any-link-styling-expected.html: Added.
66 * fast/selectors/any-link-styling.html: Added.
67 * fast/selectors/images-with-usemap-should-not-match-link-expected.txt:
68 * fast/selectors/images-with-usemap-should-not-match-link.html:
69 * fast/selectors/link-basics-expected.txt:
70 * fast/selectors/link-basics-xhtml-expected.txt:
71 * fast/selectors/resources/html-link-type-tests.js:
73 (testHTMLTagsForLink):
74 * fast/selectors/webkit-any-link-basics-expected.txt:
76 2014-10-28 Alexey Proskuryakov <ap@apple.com>
78 fast/multicol/multicol-crazy-nesting.html sometimes crashes
79 https://bugs.webkit.org/show_bug.cgi?id=138145
81 * TestExpectations: Skipping for now.
83 2014-10-28 Jer Noble <jer.noble@apple.com>
85 REGRESSION(r171593) [Mac] Media controls create a large (and unnecessary) backing store
86 https://bugs.webkit.org/show_bug.cgi?id=137757
88 Reviewed by Eric Carlson.
90 * platform/mac-mavericks/media/audio-controls-rendering-expected.png:
91 * platform/mac-mavericks/media/audio-controls-rendering-expected.txt:
92 * platform/mac-mavericks/media/controls-strict-expected.txt:
93 * platform/mac-mavericks/media/controls-without-preload-expected.txt: Copied from LayoutTests/platform/mac/media/controls-without-preload-expected.txt.
94 * platform/mac-mavericks/media/video-controls-rendering-expected.txt:
95 * platform/mac-mavericks/media/video-display-toggle-expected.txt:
96 * platform/mac-mavericks/media/video-empty-source-expected.txt: Copied from LayoutTests/platform/mac/media/video-empty-source-expected.txt.
97 * platform/mac-mavericks/media/video-no-audio-expected.png:
98 * platform/mac-mavericks/media/video-no-audio-expected.txt:
99 * platform/mac-mavericks/media/video-volume-slider-expected.txt:
100 * platform/mac-mavericks/media/video-zoom-controls-expected.png:
101 * platform/mac-mavericks/media/video-zoom-controls-expected.txt:
102 * platform/mac/fast/hidpi/video-controls-in-hidpi-expected.txt:
103 * platform/mac/fast/layers/video-layer-expected.txt:
104 * platform/mac/media/audio-controls-rendering-expected.png:
105 * platform/mac/media/audio-controls-rendering-expected.txt:
106 * platform/mac/media/controls-after-reload-expected.png:
107 * platform/mac/media/controls-after-reload-expected.txt:
108 * platform/mac/media/controls-strict-expected.png:
109 * platform/mac/media/controls-strict-expected.txt:
110 * platform/mac/media/controls-without-preload-expected.png:
111 * platform/mac/media/controls-without-preload-expected.txt:
112 * platform/mac/media/media-controls-clone-expected.png:
113 * platform/mac/media/media-controls-clone-expected.txt:
114 * platform/mac/media/video-controls-rendering-expected.png:
115 * platform/mac/media/video-controls-rendering-expected.txt:
116 * platform/mac/media/video-display-toggle-expected.png:
117 * platform/mac/media/video-display-toggle-expected.txt:
118 * platform/mac/media/video-empty-source-expected.png:
119 * platform/mac/media/video-empty-source-expected.txt:
120 * platform/mac/media/video-no-audio-expected.png:
121 * platform/mac/media/video-no-audio-expected.txt:
122 * platform/mac/media/video-volume-slider-expected.png:
123 * platform/mac/media/video-volume-slider-expected.txt:
124 * platform/mac/media/video-zoom-controls-expected.png:
125 * platform/mac/media/video-zoom-controls-expected.txt:
127 2014-10-28 Alexey Proskuryakov <ap@apple.com>
129 text-combine needs to center glyphs within the vertical area.
130 https://bugs.webkit.org/show_bug.cgi?id=138056
132 Adding pre-Yosemite test results.
134 * platform/mac-mavericks/fast/text/tatechuyoko-expected.png: Added.
135 * platform/mac-mavericks/fast/text/tatechuyoko-expected.txt: Added.
137 2014-10-28 Pascal Jacquemart <p.jacquemart@samsung.com>
139 Abandoned select option is reselected when shift selecting new options
140 https://bugs.webkit.org/show_bug.cgi?id=137553
142 Reviewed by Ryosuke Niwa.
144 Test checking a combination of mouse and keyboard selection events
145 on select-multiple element
147 * fast/forms/listbox-selection-after-typeahead-expected.txt: Added.
148 * fast/forms/listbox-selection-after-typeahead.html: Added.
150 2014-10-28 Zalan Bujtas <zalan@apple.com>
152 Speed up line parsing for simple line layout.
153 https://bugs.webkit.org/show_bug.cgi?id=137275
155 Reviewed by Antti Koivisto.
157 This patch removes empty line-break runs. Rebaseline.
159 * platform/mac-mountainlion/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
160 * platform/mac/css1/basic/containment-expected.txt:
161 * platform/mac/css1/basic/contextual_selectors-expected.txt:
162 * platform/mac/css1/basic/grouping-expected.txt:
163 * platform/mac/css1/basic/id_as_selector-expected.txt:
164 * platform/mac/css1/basic/inheritance-expected.txt:
165 * platform/mac/css1/box_properties/border-expected.txt:
166 * platform/mac/css1/box_properties/border_bottom-expected.txt:
167 * platform/mac/css1/box_properties/border_bottom_inline-expected.txt:
168 * platform/mac/css1/box_properties/border_bottom_width-expected.txt:
169 * platform/mac/css1/box_properties/border_bottom_width_inline-expected.txt:
170 * platform/mac/css1/box_properties/border_color-expected.txt:
171 * platform/mac/css1/box_properties/border_color_inline-expected.txt:
172 * platform/mac/css1/box_properties/border_inline-expected.txt:
173 * platform/mac/css1/box_properties/border_left-expected.txt:
174 * platform/mac/css1/box_properties/border_left_inline-expected.txt:
175 * platform/mac/css1/box_properties/border_left_width-expected.txt:
176 * platform/mac/css1/box_properties/border_left_width_inline-expected.txt:
177 * platform/mac/css1/box_properties/border_right-expected.txt:
178 * platform/mac/css1/box_properties/border_right_inline-expected.txt:
179 * platform/mac/css1/box_properties/border_right_width-expected.txt:
180 * platform/mac/css1/box_properties/border_right_width_inline-expected.txt:
181 * platform/mac/css1/box_properties/border_style-expected.txt:
182 * platform/mac/css1/box_properties/border_style_inline-expected.txt:
183 * platform/mac/css1/box_properties/border_top-expected.txt:
184 * platform/mac/css1/box_properties/border_top_inline-expected.txt:
185 * platform/mac/css1/box_properties/border_top_width-expected.txt:
186 * platform/mac/css1/box_properties/border_top_width_inline-expected.txt:
187 * platform/mac/css1/box_properties/border_width-expected.txt:
188 * platform/mac/css1/box_properties/border_width_inline-expected.txt:
189 * platform/mac/css1/box_properties/clear-expected.txt:
190 * platform/mac/css1/box_properties/clear_float-expected.txt:
191 * platform/mac/css1/box_properties/float-expected.txt:
192 * platform/mac/css1/box_properties/float_elements_in_series-expected.txt:
193 * platform/mac/css1/box_properties/float_margin-expected.txt:
194 * platform/mac/css1/box_properties/height-expected.txt:
195 * platform/mac/css1/box_properties/margin-expected.txt:
196 * platform/mac/css1/box_properties/margin_bottom-expected.txt:
197 * platform/mac/css1/box_properties/margin_bottom_inline-expected.txt:
198 * platform/mac/css1/box_properties/margin_inline-expected.txt:
199 * platform/mac/css1/box_properties/margin_left-expected.txt:
200 * platform/mac/css1/box_properties/margin_left_inline-expected.txt:
201 * platform/mac/css1/box_properties/margin_right-expected.txt:
202 * platform/mac/css1/box_properties/margin_right_inline-expected.txt:
203 * platform/mac/css1/box_properties/margin_top-expected.txt:
204 * platform/mac/css1/box_properties/margin_top_inline-expected.txt:
205 * platform/mac/css1/box_properties/padding-expected.txt:
206 * platform/mac/css1/box_properties/padding_bottom-expected.txt:
207 * platform/mac/css1/box_properties/padding_bottom_inline-expected.txt:
208 * platform/mac/css1/box_properties/padding_inline-expected.txt:
209 * platform/mac/css1/box_properties/padding_left-expected.txt:
210 * platform/mac/css1/box_properties/padding_left_inline-expected.txt:
211 * platform/mac/css1/box_properties/padding_right-expected.txt:
212 * platform/mac/css1/box_properties/padding_right_inline-expected.txt:
213 * platform/mac/css1/box_properties/padding_top-expected.txt:
214 * platform/mac/css1/box_properties/padding_top_inline-expected.txt:
215 * platform/mac/css1/box_properties/width-expected.txt:
216 * platform/mac/css1/cascade/cascade_order-expected.txt:
217 * platform/mac/css1/cascade/important-expected.txt:
218 * platform/mac/css1/classification/display-expected.txt:
219 * platform/mac/css1/classification/list_style-expected.txt:
220 * platform/mac/css1/classification/list_style_image-expected.txt:
221 * platform/mac/css1/classification/list_style_position-expected.txt:
222 * platform/mac/css1/classification/list_style_type-expected.txt:
223 * platform/mac/css1/classification/white_space-expected.txt:
224 * platform/mac/css1/color_and_background/background-expected.txt:
225 * platform/mac/css1/color_and_background/background_attachment-expected.txt:
226 * platform/mac/css1/color_and_background/background_color-expected.txt:
227 * platform/mac/css1/color_and_background/background_image-expected.txt:
228 * platform/mac/css1/color_and_background/background_position-expected.txt:
229 * platform/mac/css1/color_and_background/background_repeat-expected.txt:
230 * platform/mac/css1/color_and_background/color-expected.txt:
231 * platform/mac/css1/conformance/forward_compatible_parsing-expected.txt:
232 * platform/mac/css1/font_properties/font-expected.txt:
233 * platform/mac/css1/font_properties/font_family-expected.txt:
234 * platform/mac/css1/font_properties/font_size-expected.txt:
235 * platform/mac/css1/font_properties/font_style-expected.txt:
236 * platform/mac/css1/font_properties/font_variant-expected.txt:
237 * platform/mac/css1/font_properties/font_weight-expected.txt:
238 * platform/mac/css1/formatting_model/canvas-expected.txt:
239 * platform/mac/css1/formatting_model/floating_elements-expected.txt:
240 * platform/mac/css1/formatting_model/height_of_lines-expected.txt:
241 * platform/mac/css1/formatting_model/inline_elements-expected.txt:
242 * platform/mac/css1/formatting_model/replaced_elements-expected.txt:
243 * platform/mac/css1/formatting_model/vertical_formatting-expected.txt:
244 * platform/mac/css1/pseudo/anchor-expected.txt:
245 * platform/mac/css1/pseudo/firstletter-expected.txt:
246 * platform/mac/css1/pseudo/firstline-expected.txt:
247 * platform/mac/css1/pseudo/multiple_pseudo_elements-expected.txt:
248 * platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.txt:
249 * platform/mac/css1/text_properties/letter_spacing-expected.txt:
250 * platform/mac/css1/text_properties/line_height-expected.txt:
251 * platform/mac/css1/text_properties/text_align-expected.txt:
252 * platform/mac/css1/text_properties/text_decoration-expected.txt:
253 * platform/mac/css1/text_properties/text_indent-expected.txt:
254 * platform/mac/css1/text_properties/text_transform-expected.txt:
255 * platform/mac/css1/text_properties/vertical_align-expected.txt:
256 * platform/mac/css1/text_properties/word_spacing-expected.txt:
257 * platform/mac/css1/units/color_units-expected.txt:
258 * platform/mac/css1/units/length_units-expected.txt:
259 * platform/mac/css1/units/percentage_units-expected.txt:
260 * platform/mac/css1/units/urls-expected.txt:
261 * platform/mac/css2.1/t100801-c548-ln-ht-00-c-a-expected.txt:
262 * platform/mac/css2.1/t1606-c562-white-sp-00-b-ag-expected.txt:
263 * platform/mac/editing/selection/designmode-no-caret-expected.txt:
264 * platform/mac/fast/css/empty-pseudo-class-expected.txt:
265 * platform/mac/fast/css/first-child-pseudo-class-expected.txt:
266 * platform/mac/fast/css/last-child-pseudo-class-expected.txt:
267 * platform/mac/fast/css/only-child-pseudo-class-expected.txt:
268 * platform/mac/fast/forms/targeted-frame-submission-expected.txt:
269 * platform/mac/fast/frames/onlyCommentInIFrame-expected.txt:
270 * platform/mac/fast/html/listing-expected.txt:
271 * platform/mac/fast/invalid/junk-data-expected.txt:
272 * platform/mac/fast/invalid/missing-end-tag-expected.txt:
273 * platform/mac/fast/loader/text-document-wrapping-expected.txt:
274 * platform/mac/fast/overflow/clip-rects-fixed-ancestor-expected.txt:
275 * platform/mac/fast/parser/xhtml-alternate-entities-expected.txt:
276 * platform/mac/fast/table/border-collapsing/004-expected.txt:
277 * platform/mac/fast/table/border-collapsing/004-vertical-expected.txt:
278 * platform/mac/fast/text/whitespace/001-expected.txt: Added.
279 * platform/mac/fast/text/whitespace/013-expected.txt: Added.
280 * platform/mac/fast/text/whitespace/014-expected.txt: Added.
281 * platform/mac/fast/text/whitespace/022-expected.txt: Added.
282 * platform/mac/fast/text/whitespace/024-expected.txt:
283 * platform/mac/fast/text/whitespace/030-expected.txt:
284 * platform/mac/fast/xsl/xslt-extra-content-at-end-expected.txt:
285 * platform/mac/fast/xsl/xslt-missing-namespace-in-xslt-expected.txt:
286 * platform/mac/http/tests/misc/acid3-expected.txt:
287 * platform/mac/svg/custom/bug45331-expected.txt:
288 * platform/mac/svg/custom/junk-data-expected.txt:
289 * platform/mac/svg/custom/missing-xlink-expected.txt:
290 * platform/mac/svg/custom/path-bad-data-expected.txt:
291 * platform/mac/svg/custom/use-font-face-crash-expected.txt:
292 * platform/mac/svg/hixie/error/012-expected.txt:
293 * platform/mac/tables/mozilla/bugs/45621-expected.txt:
294 * platform/mac/tables/mozilla/bugs/bug139524-2-expected.txt:
295 * platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
296 * platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.txt:
297 * platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.txt:
298 * platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
299 * platform/mac/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
301 2014-10-28 Rebecca Hauck <rhauck@adobe.com>
303 Update CSS shapes suite import
304 https://bugs.webkit.org/show_bug.cgi?id=138045
306 This patch is a full re-import of the CSS Shapes test suite from the W3C
307 test repo and an updated TestExpectations file to match the current
310 Reviewed by Benjamin Poulain.
313 * css3/shapes/shape-outside/shape-box/w3c-import.log:
314 * css3/shapes/shape-outside/shape-image/gradients/w3c-import.log:
315 * css3/shapes/shape-outside/shape-image/shape-image-000-expected.html:
316 * css3/shapes/shape-outside/shape-image/shape-image-001-expected.html:
317 * css3/shapes/shape-outside/shape-image/shape-image-002-expected.html:
318 * css3/shapes/shape-outside/shape-image/shape-image-002.html:
319 * css3/shapes/shape-outside/shape-image/shape-image-003-expected.html:
320 * css3/shapes/shape-outside/shape-image/shape-image-003.html:
321 * css3/shapes/shape-outside/shape-image/shape-image-004-expected.html:
322 * css3/shapes/shape-outside/shape-image/shape-image-005-expected.html:
323 * css3/shapes/shape-outside/shape-image/shape-image-005.html:
324 * css3/shapes/shape-outside/shape-image/shape-image-006-expected.html: Added.
325 * css3/shapes/shape-outside/shape-image/shape-image-006.html: Added.
326 * css3/shapes/shape-outside/shape-image/shape-image-007-expected.html: Added.
327 * css3/shapes/shape-outside/shape-image/shape-image-007.html: Added.
328 * css3/shapes/shape-outside/shape-image/shape-image-008-expected.html: Added.
329 * css3/shapes/shape-outside/shape-image/shape-image-008.html: Added.
330 * css3/shapes/shape-outside/shape-image/shape-image-009-expected.html: Added.
331 * css3/shapes/shape-outside/shape-image/shape-image-009.html: Added.
332 * css3/shapes/shape-outside/shape-image/shape-image-010-expected.html: Added.
333 * css3/shapes/shape-outside/shape-image/shape-image-010.html: Added.
334 * css3/shapes/shape-outside/shape-image/shape-image-011-expected.html: Added.
335 * css3/shapes/shape-outside/shape-image/shape-image-011.html: Added.
336 * css3/shapes/shape-outside/shape-image/shape-image-013-expected.html:
337 * css3/shapes/shape-outside/shape-image/shape-image-013.html:
338 * css3/shapes/shape-outside/shape-image/shape-image-014-expected.html:
339 * css3/shapes/shape-outside/shape-image/shape-image-014.html:
340 * css3/shapes/shape-outside/shape-image/shape-image-015-expected.html:
341 * css3/shapes/shape-outside/shape-image/shape-image-015.html:
342 * css3/shapes/shape-outside/shape-image/shape-image-016-expected.html:
343 * css3/shapes/shape-outside/shape-image/shape-image-016.html:
344 * css3/shapes/shape-outside/shape-image/shape-image-017-expected.html:
345 * css3/shapes/shape-outside/shape-image/shape-image-017.html:
346 * css3/shapes/shape-outside/shape-image/shape-image-024-expected.html: Added.
347 * css3/shapes/shape-outside/shape-image/shape-image-024.html: Added.
348 * css3/shapes/shape-outside/shape-image/shape-image-025-expected.html: Added.
349 * css3/shapes/shape-outside/shape-image/shape-image-025.html: Added.
350 * css3/shapes/shape-outside/shape-image/support/animated.gif: Added.
351 * css3/shapes/shape-outside/shape-image/support/left-half-rectangle-20.png:
352 * css3/shapes/shape-outside/shape-image/support/right-half-rectangle-20.png:
353 * css3/shapes/shape-outside/shape-image/support/w3c-import.log:
354 * css3/shapes/shape-outside/shape-image/w3c-import.log:
355 * css3/shapes/shape-outside/supported-shapes/circle/w3c-import.log:
356 * css3/shapes/shape-outside/supported-shapes/ellipse/w3c-import.log:
357 * css3/shapes/shape-outside/supported-shapes/inset/w3c-import.log:
358 * css3/shapes/shape-outside/supported-shapes/polygon/shape-outside-polygon-012.html:
359 * css3/shapes/shape-outside/supported-shapes/polygon/w3c-import.log:
360 * css3/shapes/shape-outside/supported-shapes/support/w3c-import.log: Copied from LayoutTests/css3/shapes/shape-outside/values/support/w3c-import.log.
361 * css3/shapes/shape-outside/values/shape-image-threshold-001.html:
362 * css3/shapes/shape-outside/values/support/w3c-import.log:
363 * css3/shapes/shape-outside/values/w3c-import.log:
364 * css3/shapes/spec-examples/shape-outside-019-expected.html:
365 * css3/shapes/spec-examples/support/w3c-import.log:
366 * css3/shapes/spec-examples/w3c-import.log:
367 * css3/shapes/w3c-import.log:
369 2014-10-27 Mark Lam <mark.lam@apple.com>
371 Crash when attempting to perform array iteration on a non-array with numeric keys not initialized.
372 <https://webkit.org/b/137814>
374 Reviewed by Geoffrey Garen.
376 * js/array-length-shortening-expected.txt: Added.
377 * js/array-length-shortening.html: Added.
378 * js/for-of-crash-expected.txt: Added.
379 * js/for-of-crash.html: Added.
380 * js/script-tests/array-length-shortening.js: Added.
381 (testLengthShortening):
382 (denseInt32Elements):
383 (denseDoubleElements):
384 (denseObjectElements):
385 (holeyInt32Elements):
386 (holeyDoubleElements):
387 (holeyObjectElements):
388 (arrayStorageInt32Elements):
389 (arrayStorageDoubleElements):
390 (arrayStorageObjectElements):
391 (sparseInt32Elements):
392 (sparseDoubleElements):
393 (sparseObjectElements):
394 * js/script-tests/for-of-crash.js: Added.
397 2014-10-27 Chris Fleizach <cfleizach@apple.com>
399 AX: input type=hidden is being exposed when aria-hidden=false
400 https://bugs.webkit.org/show_bug.cgi?id=138106
402 Reviewed by Benjamin Poulain.
404 * accessibility/input-type-hidden-in-aria-hidden-false-expected.txt: Added.
405 * accessibility/input-type-hidden-in-aria-hidden-false.html: Added.
407 2014-10-24 David Hyatt <hyatt@apple.com>
409 text-combine needs to center text within the vertical space using glyph bounds
410 https://bugs.webkit.org/show_bug.cgi?id=138056
411 <rdar://problem/15403667>
413 Reviewed by Dean Jackson.
415 * fast/text/tatechuyoko.html: Added.
416 * platform/mac/fast/text/tatechuyoko-expected.png: Added.
417 * platform/mac/fast/text/tatechuyoko-expected.txt: Added.
419 2014-10-27 Alexey Proskuryakov <ap@apple.com>
421 http/tests/cookies/third-party-cookie-relaxing.html is flaky on bots
422 https://bugs.webkit.org/show_bug.cgi?id=138098
424 Reviewed by Anders Carlsson.
426 * platform/mac-wk1/TestExpectations: Removed the test from expectations. It's still
427 skipped on WK2, because we don't yet implement the necessary WKTR functionality.
429 2014-10-27 Alexey Proskuryakov <ap@apple.com>
431 Add [ Yosemite ] modifier to a couple of tests in section 7.
433 These two tests fail with PPT, so they are expected to pass on 10.8. Our current
434 approach is a have separate sections for Mavericks and Yosemite, even for PPT
435 specific failures that affect both.
437 * platform/mac-wk2/TestExpectations:
439 2014-10-27 Stephanie Lewis <slewis@apple.com>
441 http/tests/cookies/third-party-cookie-relaxing.html is flaky on bots.
442 https://bugs.webkit.org/show_bug.cgi?id=138098.
444 Updated Expectations.
446 * platform/mac-wk1/TestExpectations:
448 2014-10-27 Piotr Grad <p.grad@samsung.com>
450 Some test for multicol were redundant.
451 https://bugs.webkit.org/show_bug.cgi?id=133084
453 Reviewed by Andreas Kling.
455 * fast/multicol/newmulticol/compare-with-old-impl/anonymous-block-split-crash-expected.txt: Removed.
456 * fast/multicol/newmulticol/compare-with-old-impl/anonymous-block-split-crash.html: Removed.
457 * fast/multicol/newmulticol/compare-with-old-impl/clone-before-after-content-crash-expected.txt: Removed.
458 * fast/multicol/newmulticol/compare-with-old-impl/clone-before-after-content-crash.html: Removed.
459 * fast/multicol/newmulticol/compare-with-old-impl/clone-block-children-inline-mismatch-crash-expected.txt: Removed.
460 * fast/multicol/newmulticol/compare-with-old-impl/clone-block-children-inline-mismatch-crash.html: Removed.
461 * fast/multicol/newmulticol/compare-with-old-impl/clone-flexbox-expected.txt: Removed.
462 * fast/multicol/newmulticol/compare-with-old-impl/clone-flexbox.html: Removed.
463 * fast/multicol/newmulticol/compare-with-old-impl/continuation-crash-expected.txt: Removed.
464 * fast/multicol/newmulticol/compare-with-old-impl/continuation-crash.html: Removed.
465 * fast/multicol/newmulticol/compare-with-old-impl/double-merge-anonymous-block-crash-expected.txt: Removed.
466 * fast/multicol/newmulticol/compare-with-old-impl/double-merge-anonymous-block-crash.html: Removed.
467 * fast/multicol/newmulticol/compare-with-old-impl/empty-anonymous-block-split-crash-expected.txt: Removed.
468 * fast/multicol/newmulticol/compare-with-old-impl/empty-anonymous-block-split-crash.html: Removed.
469 * fast/multicol/newmulticol/compare-with-old-impl/float-not-removed-crash-expected.txt: Removed.
470 * fast/multicol/newmulticol/compare-with-old-impl/float-not-removed-crash.html: Removed.
471 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-above-or-below-expected.txt: Removed.
472 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-above-or-below.html: Removed.
473 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-block-axis-flipped-expected.txt: Removed.
474 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-block-axis-flipped.html: Removed.
475 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-end-of-column-expected.txt: Removed.
476 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-end-of-column.html: Removed.
477 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-float-expected.txt: Removed.
478 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-float.html: Removed.
479 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-gap-between-pages-expected.txt: Removed.
480 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-gap-between-pages-flipped-expected.txt: Removed.
481 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-gap-between-pages-flipped.html: Removed.
482 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-gap-between-pages.html: Removed.
483 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-gap-block-axis-expected.txt: Removed.
484 * fast/multicol/newmulticol/compare-with-old-impl/hit-test-gap-block-axis.html: Removed.
485 * fast/multicol/newmulticol/compare-with-old-impl/list-multi-column-crash-expected.txt: Removed.
486 * fast/multicol/newmulticol/compare-with-old-impl/list-multi-column-crash.html: Removed.
487 * fast/multicol/newmulticol/compare-with-old-impl/multicol-with-child-renderLayer-for-input-expected.html: Removed.
488 * fast/multicol/newmulticol/compare-with-old-impl/multicol-with-child-renderLayer-for-input.html: Removed.
489 * fast/multicol/newmulticol/compare-with-old-impl/positioned-child-not-removed-crash-expected.txt: Removed.
490 * fast/multicol/newmulticol/compare-with-old-impl/positioned-child-not-removed-crash.html: Removed.
491 * fast/multicol/newmulticol/compare-with-old-impl/positioned-objects-not-removed-crash-expected.txt: Removed.
492 * fast/multicol/newmulticol/compare-with-old-impl/positioned-objects-not-removed-crash.html: Removed.
493 * fast/multicol/newmulticol/compare-with-old-impl/recursive-split-flow-crash-expected.txt: Removed.
494 * fast/multicol/newmulticol/compare-with-old-impl/recursive-split-flow-crash.html: Removed.
495 * fast/multicol/newmulticol/compare-with-old-impl/removal-of-multicol-span-crash-expected.txt: Removed.
496 * fast/multicol/newmulticol/compare-with-old-impl/removal-of-multicol-span-crash.html: Removed.
497 * fast/multicol/newmulticol/compare-with-old-impl/remove-child-split-flow-crash-expected.txt: Removed.
498 * fast/multicol/newmulticol/compare-with-old-impl/remove-child-split-flow-crash.html: Removed.
499 * fast/multicol/newmulticol/compare-with-old-impl/split-flow-anonymous-wrapper-crash-expected.txt: Removed.
500 * fast/multicol/newmulticol/compare-with-old-impl/split-flow-anonymous-wrapper-crash.html: Removed.
501 * fast/multicol/newmulticol/compare-with-old-impl/split-inline-wrong-post-block-crash-expected.txt: Removed.
502 * fast/multicol/newmulticol/compare-with-old-impl/split-inline-wrong-post-block-crash.html: Removed.
503 * fast/multicol/newmulticol/compare-with-old-impl/table-multi-column-crash-expected.txt: Removed.
504 * fast/multicol/newmulticol/compare-with-old-impl/table-multi-column-crash.html: Removed.
505 * fast/multicol/newmulticol/compare-with-old-impl/textbox-not-removed-crash-expected.txt: Removed.
506 * fast/multicol/newmulticol/compare-with-old-impl/textbox-not-removed-crash.html: Removed.
507 * fast/multicol/newmulticol/compare-with-old-impl/update-after-content-before-child-crash-expected.txt: Removed.
508 * fast/multicol/newmulticol/compare-with-old-impl/update-after-content-before-child-crash.html: Removed.
510 2014-10-27 Alexey Proskuryakov <ap@apple.com>
512 media/track/audio-track.html is flaky on Yosemite
513 https://bugs.webkit.org/show_bug.cgi?id=137882
515 * platform/mac/TestExpectations: Marking it as such.
517 2014-10-26 Benjamin Poulain <benjamin@webkit.org>
519 Images with usemap should not have a link state
520 https://bugs.webkit.org/show_bug.cgi?id=138071
522 Reviewed by Andreas Kling.
524 * fast/selectors/images-with-usemap-should-not-match-link-expected.txt: Added.
525 * fast/selectors/images-with-usemap-should-not-match-link.html: Added.
527 2014-10-25 Gwang Yoon Hwang <yoon@igalia.com>
529 [GTK] Unreviewed GTK gardening after r174685.
531 * platform/gtk/TestExpectations: Report new failures and update expectations.
533 2014-10-25 Alexey Proskuryakov <ap@apple.com>
535 Land Yosemite results for six editing/selection/vertical* tests.
537 These failures used to be mostly hidden because of bug 138070, now they are visible.
538 The change is due to different fonts.
540 * platform/mac-mavericks/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt.
541 * platform/mac-mavericks/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt.
542 * platform/mac-mavericks/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt.
543 * platform/mac-mavericks/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt.
544 * platform/mac-mavericks/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt.
545 * platform/mac-mavericks/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt.
546 * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added.
547 * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt:
548 * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added.
549 * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt:
550 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added.
551 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt:
552 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added.
553 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt:
554 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added.
555 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt:
556 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added.
557 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt:
559 2014-10-25 Alexey Proskuryakov <ap@apple.com>
561 Add Mavericks results for platform/mac/editing/spelling/delete-autocorrected-word-2.html, too.
563 Yosemite, Mavericks and Mountain Lion all have different results.
565 * platform/mac-mavericks/platform/mac/editing/spelling/delete-autocorrected-word-2-expected.txt: Added.
567 2014-10-25 Alexey Proskuryakov <ap@apple.com>
569 Update Yosemite results for platform/mac/editing/spelling/delete-autocorrected-word-2.html.
571 Looks like this got confused during Yosemite tests landing.
573 This test is currently marked as failing on WK2, but it passed for me, so maybe we
574 can mark it as passing there too. Tracked as bug 105616.
576 * platform/mac/editing/spelling/delete-autocorrected-word-2-expected.png:
577 * platform/mac/editing/spelling/delete-autocorrected-word-2-expected.txt:
579 2014-10-25 Alexey Proskuryakov <ap@apple.com>
581 Update results for compositing/rtl/rtl-fixed-overflow-scrolled.html.
583 Prior to Yosemite results landing, this test was marked as failing on WK2, and its
584 results matched WK1. It got changed several times during the merge, so it ended
585 up being marked as failing on WK1, but with WK1 results landed.
587 Let's land WK2 results and keep testing on WK2. Also, Mavericks results were no different
590 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Removed.
591 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Removed.
592 * platform/mac/compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Copied from LayoutTests/compositing/rtl/rtl-fixed-overflow-scrolled-expected.png.
593 * platform/mac/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt:
595 2014-10-24 Said Abou-Hallawa <sabouhallawa@apple.com>
597 Clamp wordSpacing percentage value.
598 https://bugs.webkit.org/show_bug.cgi?id=129350.
600 Reviewed by Zalan Bujtas.
602 Make sure that setting the CSS style wordSpacing property to very huge percentage
603 value and blending this value with other values for animating key frames does
604 not assert or crash. The expectation is to have this huge value to be clamped to
605 the pre-defined min/max values for the CSS length type. So when blending the clamped
606 value with other wordSpacing values, the result can't be NaN. This should be very
607 similar to the case when it is set to a huge <length> value.
609 * css3/infinite-word-spacing-expected.txt: Added.
610 * css3/infinite-word-spacing.html: Added.
612 2014-10-24 Alexey Proskuryakov <ap@apple.com>
614 Update Yosemite results for fast/block/float/overhanging-tall-block.html for
615 font size differences.
617 The test fails pixel results, filed bug 138065 to track that.
619 * platform/mac-mavericks/fast/block/float: Added.
620 * platform/mac-mavericks/fast/block/float/overhanging-tall-block-expected.png: Copied from LayoutTests/platform/mac/fast/block/float/overhanging-tall-block-expected.png.
621 * platform/mac-mavericks/fast/block/float/overhanging-tall-block-expected.txt: Copied from LayoutTests/platform/mac/fast/block/float/overhanging-tall-block-expected.txt.
622 * platform/mac/fast/block/float/overhanging-tall-block-expected.txt:
624 2014-10-24 Alexey Proskuryakov <ap@apple.com>
626 Update media test results for Yosemite.
628 media/controls-styling.html appears to actually fail, filed bug 138064 about that.
629 media/video-zoom-controls.html results are not great; Dean reportedly has a fix for that.
631 * platform/mac-mavericks/media/controls-styling-expected.png: Copied from LayoutTests/platform/mac/media/controls-styling-expected.png.
632 * platform/mac-mavericks/media/controls-styling-expected.txt: Copied from LayoutTests/platform/mac/media/controls-styling-expected.txt.
633 * platform/mac-mavericks/media/video-zoom-controls-expected.png: Copied from LayoutTests/platform/mac/media/video-zoom-controls-expected.png.
634 * platform/mac-mavericks/media/video-zoom-controls-expected.txt: Copied from LayoutTests/platform/mac/media/video-zoom-controls-expected.txt.
635 * platform/mac/media/controls-styling-expected.png:
636 * platform/mac/media/controls-styling-expected.txt:
637 * platform/mac/media/video-zoom-controls-expected.png:
638 * platform/mac/media/video-zoom-controls-expected.txt:
640 2014-10-24 Alexey Proskuryakov <ap@apple.com>
642 Remove MountainLion results that I incorrectly copied. These are the same as Mavericks.
644 * platform/mac-mountainlion/fast/writing-mode: Removed.
645 * platform/mac-mountainlion/fast/writing-mode/Kusa-Makura-background-canvas-expected.png: Removed.
646 * platform/mac-mountainlion/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt: Removed.
647 * platform/mac-mountainlion/mathml: Removed.
648 * platform/mac-mountainlion/mathml/opentype: Removed.
649 * platform/mac-mountainlion/mathml/opentype/opentype-stretchy-horizontal-expected.txt: Removed.
651 2014-10-24 Roger Fong <roger_fong@apple.com>
653 [Win] More unreviewed gardening/rebaselining of Windows tests.
655 * platform/win/TestExpectations:
656 * platform/win/fast/repaint/select-option-background-color-expected.txt:
657 * platform/win/fast/repaint/slider-thumb-drag-release-expected.txt: Added.
658 * platform/win/fast/repaint/slider-thumb-float-expected.txt: Added.
659 * platform/win/fast/replaced/table-percent-height-expected.txt: Added.
660 * platform/win/fast/replaced/three-selects-break-expected.txt: Added.
661 * platform/win/fast/table/remove-td-display-none-expected.txt:
662 * platform/win/fast/transforms: Added.
663 * platform/win/fast/transforms/transformed-focused-text-input-expected.txt: Added.
664 * platform/win/platform/win/accessibility: Added.
665 * platform/win/platform/win/accessibility/option-element-position-and-size-expected.txt: Added.
667 2014-10-24 Alexey Proskuryakov <ap@apple.com>
669 Update some results that were incorrect for Yosemite.
671 * platform/mac-mavericks/fast/text/international/hindi-spacing-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/hindi-spacing-expected.png.
672 * platform/mac-mavericks/fast/text/international/hindi-spacing-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/hindi-spacing-expected.txt.
673 * platform/mac-mavericks/fast/writing-mode: Added.
674 * platform/mac-mavericks/fast/writing-mode/Kusa-Makura-background-canvas-expected.png: Copied from LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.png.
675 * platform/mac-mavericks/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt: Copied from LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt.
676 * platform/mac-mountainlion/fast/writing-mode: Added.
677 * platform/mac-mountainlion/fast/writing-mode/Kusa-Makura-background-canvas-expected.png: Copied from LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.png.
678 * platform/mac-mountainlion/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt: Copied from LayoutTests/platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt.
679 * platform/mac-mountainlion/mathml: Added.
680 * platform/mac-mountainlion/mathml/opentype: Added.
681 * platform/mac-mountainlion/mathml/opentype/opentype-stretchy-horizontal-expected.txt: Copied from LayoutTests/platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.txt.
682 * platform/mac-wk2/fast/writing-mode/Kusa-Makura-background-canvas-expected.png: Removed.
683 * platform/mac/fast/text/international/hindi-spacing-expected.png:
684 * platform/mac/fast/text/international/hindi-spacing-expected.txt:
685 * platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.png:
686 * platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt:
687 * platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.txt:
689 2014-10-24 Alexey Proskuryakov <ap@apple.com>
691 fast/multicol/fixed-stack.html failing since introduction.
692 https://bugs.webkit.org/show_bug.cgi?id=132421
694 * platform/mac-wk1/TestExpectations: As of Yosemite, it's failing on mac-wk1 too.
696 * platform/gtk/TestExpectations: [ Pass ] is no longer needed, because we don't have
697 an entry in global TestExpectations now.
699 2014-10-24 Roger Fong <roger_fong@apple.com>
701 [Windows] Skip tests after removing SafariTheme that fail because background renders too dark.
702 https://bugs.webkit.org/show_bug.cgi?id=138042.
704 * platform/win/TestExpectations:
706 2014-10-24 Roger Fong <roger_fong@apple.com>
708 [Windows] Skip tests after removing SafariTheme that fail because borders now render too dark.
709 https://bugs.webkit.org/show_bug.cgi?id=138041.
711 * platform/win/TestExpectations:
713 2014-10-24 Roger Fong <roger_fong@apple.com>
715 [Windows] More unreviewed gardening after getting rid of SafariTheme.
717 * platform/win/TestExpectations: Skip a handful of tests that were failing
718 on the Windows bots after removing SafariTheme for miscellaneous reasons.
720 2014-10-24 Roger Fong <roger_fong@apple.com>
722 [Windows] More unreviewed gardening after getting rid of SafariTheme.
723 https://bugs.webkit.org/show_bug.cgi?id=138025
725 * platform/win/TestExpectations: These tests fail seemingly due to text size difference,
726 which consequently cause the text containers to be too larger as well.
728 2014-10-24 Roger Fong <roger_fong@apple.com>
730 [Windows] More rebaselining of Windows tests after removing SafariTheme.
732 * platform/win/editing/selection/select-across-readonly-input-1-expected.txt:
733 * platform/win/editing/selection/select-across-readonly-input-2-expected.txt:
734 * platform/win/editing/selection/select-across-readonly-input-3-expected.txt:
735 * platform/win/fast/block/positioning/inline-block-relposition-expected.txt:
736 * platform/win/fast/canvas/fallback-content-expected.txt: Added.
737 * platform/win/fast/css/button-height-expected.txt:
738 * platform/win/fast/dom/HTMLInputElement: Added.
739 * platform/win/fast/dom/HTMLInputElement/input-slider-update-expected.txt: Added.
740 * platform/win/fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: Added.
741 * platform/win/fast/dom/tabindex-clamp-expected.txt: Added.
742 * platform/win/fast/dynamic/positioned-movement-with-positioned-children-expected.txt:
743 * platform/win/fast/html/details-no-summary4-expected.txt: Added.
744 * platform/win/fast/html/details-open-javascript-expected.txt: Added.
745 * platform/win/fast/html/details-open2-expected.txt: Added.
746 * platform/win/fast/html/details-open4-expected.txt: Added.
747 * platform/win/fast/html/details-replace-summary-child-expected.txt:
748 * platform/win/fast/html/details-replace-text-expected.txt:
750 2014-10-23 Myles C. Maxfield <mmaxfield@apple.com>
752 Carets in GMail and iCloud compositions are the foreground text color
753 https://bugs.webkit.org/show_bug.cgi?id=138029
755 Reviewed by Simon Fraser.
757 Test the case where the content editable root has a background color specified.
759 * editing/caret/color-span-inside-editable-background-expected.html: Added.
760 * editing/caret/color-span-inside-editable-background.html: Added.
762 2014-10-23 Roger Fong <roger_fong@apple.com>
764 [Windows] Unreviewed gardening after removing SafariTheme.
765 https://bugs.webkit.org/show_bug.cgi?id=138025.
767 * platform/win/TestExpectations:
769 2014-10-23 Roger Fong <roger_fong@apple.com>
771 [Win] Rebaseline a bunch of forms tests that no longer match after removing SafariTheme.
772 https://bugs.webkit.org/show_bug.cgi?id=138022.
774 * platform/win/fast/forms/HTMLOptionElement_label06-expected.txt: Added.
775 * platform/win/fast/forms/basic-inputs-expected.txt:
776 * platform/win/fast/forms/basic-textareas-expected.txt: Added.
777 * platform/win/fast/forms/basic-textareas-quirks-expected.txt: Added.
778 * platform/win/fast/forms/blankbuttons-expected.txt:
779 * platform/win/fast/forms/button-generated-content-expected.txt:
780 * platform/win/fast/forms/button-inner-block-reuse-expected.txt: Added.
781 * platform/win/fast/forms/control-clip-expected.txt: Added.
782 * platform/win/fast/forms/fieldset-align-expected.txt: Added.
783 * platform/win/fast/forms/fieldset-legend-padding-unclipped-fieldset-border-expected.txt: Added.
784 * platform/win/fast/forms/fieldset-with-float-expected.txt: Added.
785 * platform/win/fast/forms/float-before-fieldset-expected.txt: Added.
786 * platform/win/fast/forms/focus-selection-textarea-expected.txt: Added.
787 * platform/win/fast/forms/indeterminate-expected.txt: Added.
788 * platform/win/fast/forms/input-appearance-readonly-expected.txt: Added.
789 * platform/win/fast/forms/input-appearance-visibility-expected.txt: Added.
790 * platform/win/fast/forms/input-first-letter-expected.txt: Added.
791 * platform/win/fast/forms/input-readonly-dimmed-expected.txt: Added.
792 * platform/win/fast/forms/input-spaces-expected.txt: Added.
793 * platform/win/fast/forms/input-text-click-outside-expected.txt: Added.
794 * platform/win/fast/forms/input-type-text-min-width-expected.txt: Added.
795 * platform/win/fast/forms/input-width-expected.txt: Added.
796 * platform/win/fast/forms/listbox-onchange-expected.txt: Added.
797 * platform/win/fast/forms/menulist-clip-expected.txt:
798 * platform/win/fast/forms/menulist-option-wrap-expected.txt: Added.
799 * platform/win/fast/forms/menulist-separator-painting-expected.txt: Added.
800 * platform/win/fast/forms/menulist-width-change-expected.txt:
801 * platform/win/fast/forms/negativeLineHeight-expected.txt: Added.
802 * platform/win/fast/forms/onselect-textarea-expected.txt: Added.
803 * platform/win/fast/forms/option-script-expected.txt:
804 * platform/win/fast/forms/option-text-clip-expected.txt:
805 * platform/win/fast/forms/placeholder-pseudo-style-expected.txt: Added.
806 * platform/win/fast/forms/range/input-appearance-range-expected.txt: Added.
807 * platform/win/fast/forms/range/range-thumb-height-percentage-expected.txt: Added.
808 * platform/win/fast/forms/range/slider-padding-expected.txt: Added.
809 * platform/win/fast/forms/range/slider-thumb-shared-style-expected.txt: Added.
810 * platform/win/fast/forms/range/slider-thumb-stylability-expected.txt: Added.
811 * platform/win/fast/forms/range/thumbslider-no-parent-slider-expected.txt: Added.
812 * platform/win/fast/forms/search-cancel-button-style-sharing-expected.txt: Added.
813 * platform/win/fast/forms/search-display-none-cancel-button-expected.txt: Added.
814 * platform/win/fast/forms/search-rtl-expected.txt: Added.
815 * platform/win/fast/forms/search-styled-expected.txt:
816 * platform/win/fast/forms/search-vertical-alignment-expected.txt: Added.
817 * platform/win/fast/forms/select-background-none-expected.txt: Added.
818 * platform/win/fast/forms/select-empty-option-height-expected.txt: Added.
819 * platform/win/fast/forms/select-size-expected.txt: Added.
820 * platform/win/fast/forms/select-style-expected.txt: Added.
821 * platform/win/fast/forms/select-visual-hebrew-expected.txt: Added.
822 * platform/win/fast/forms/select-writing-direction-natural-expected.txt:
823 * platform/win/fast/forms/selectlist-minsize-expected.txt: Added.
824 * platform/win/fast/forms/stuff-on-my-optgroup-expected.txt: Added.
825 * platform/win/fast/forms/textAreaLineHeight-expected.txt: Added.
826 * platform/win/fast/forms/textarea-align-expected.txt: Added.
827 * platform/win/fast/forms/textarea-metrics-expected.txt: Added.
828 * platform/win/fast/forms/textarea-placeholder-pseudo-style-expected.txt: Added.
829 * platform/win/fast/forms/textarea-placeholder-visibility-1-expected.txt:
830 * platform/win/fast/forms/textarea-placeholder-visibility-2-expected.txt:
831 * platform/win/fast/forms/textarea-scroll-height-expected.txt: Added.
832 * platform/win/fast/forms/textarea-scrollbar-expected.txt:
833 * platform/win/fast/forms/textarea-scrolled-type-expected.txt: Added.
834 * platform/win/fast/forms/textarea-setinnerhtml-expected.txt: Added.
835 * platform/win/fast/forms/textarea-width-expected.txt:
836 * platform/win/fast/forms/textfield-overflow-by-value-update-expected.txt: Added.
837 * platform/win/fast/forms/textfield-overflow-expected.txt: Added.
839 2014-10-23 Jer Noble <jer.noble@apple.com>
841 [Mac] Safari cannot play 'audio/amr' content.
842 https://bugs.webkit.org/show_bug.cgi?id=137894
844 Reviewed by Eric Carlson.
846 * media/media-can-play-case-insensitive-expected.txt: Added.
847 * media/media-can-play-case-insensitive.html: Added.
849 2014-10-23 Yusuke Suzuki <utatane.tea@gmail.com>
851 CSS JIT: Implement :matches
852 https://bugs.webkit.org/show_bug.cgi?id=137947
854 Reviewed by Benjamin Poulain.
856 * fast/selectors/matches-backtracking-expected.txt: Added.
857 * fast/selectors/matches-backtracking.html: Added.
858 * fast/selectors/matches-complex-expected.txt: Added.
859 * fast/selectors/matches-complex.html: Added.
862 - :matches with CannotMatchAnything
864 - :matches(with a lot of selectors)
867 2014-10-22 Simon Fraser <simon.fraser@apple.com>
869 [iOS] Toggling overflow:scroll to hidden on element with -webkit-overflow-scrolling:touch can cause children to disappear
870 https://bugs.webkit.org/show_bug.cgi?id=137999
871 rdar://problem/18425550
873 Reviewed by Zalan Bujtas.
875 Test that toggles overflow on a touch scrolling div, and dumps layers.
877 * compositing/scrolling/touch-scroll-to-clip-expected.txt: Added.
878 * compositing/scrolling/touch-scroll-to-clip.html: Added.
879 * platform/ios-simulator/compositing/scrolling/touch-scroll-to-clip-expected.txt: Added.
881 2014-10-22 Byungseon Shin <sun.shin@lge.com>
883 String(new Date(Mar 30 2014 01:00:00)) is wrong in CET
884 https://bugs.webkit.org/show_bug.cgi?id=130967
886 Reviewed by Mark Lam.
888 Set latest DST timezone boundary values on
889 <http://www.timeanddate.com/time/zone/usa/los-angeles>
891 * js/dom/script-tests/date-DST-time-cusps.js:
893 2014-10-22 Brent Fulgham <bfulgham@apple.com>
895 [Win] Rebaseline various tests after switching to Windows rendering for native controls.
897 * platform/win/editing/inserting/before-after-input-element-expected.txt: Added.
898 * platform/win/editing/pasteboard/4806874-expected.txt: Added.
899 * platform/win/editing/pasteboard/pasting-tabs-expected.txt:
900 * platform/win/editing/selection/4397952-expected.txt:
901 * platform/win/editing/selection/4895428-3-expected.txt: Added.
902 * platform/win/editing/selection/select-across-readonly-input-4-expected.txt:
903 * platform/win/editing/selection/select-across-readonly-input-5-expected.txt:
904 * platform/win/fast/block/basic: Added.
905 * platform/win/fast/block/basic/fieldset-stretch-to-legend-expected.txt: Added.
906 * platform/win/fast/block/float/032-expected.txt: Added.
907 * platform/win/fast/css/text-input-with-webkit-border-radius-expected.txt:
908 * platform/win/fast/dom/isindex-001-expected.txt: Added.
909 * platform/win/fast/dom/isindex-002-expected.txt: Added.
910 * platform/win/fast/forms/007-expected.txt: Added.
911 * platform/win/fast/forms/button-align-expected.txt: Added.
912 * platform/win/fast/forms/button-cannot-be-nested-expected.txt: Added.
913 * platform/win/fast/forms/button-default-title-expected.txt:
914 * platform/win/fast/forms/button-table-styles-expected.txt:
915 * platform/win/fast/forms/button-white-space-expected.txt: Added.
916 * platform/win/fast/forms/encoding-test-expected.txt: Added.
917 * platform/win/fast/forms/floating-textfield-relayout-expected.txt: Added.
918 * platform/win/fast/forms/input-align-expected.txt: Added.
919 * platform/win/fast/forms/input-appearance-bkcolor-expected.txt: Added.
920 * platform/win/fast/forms/input-appearance-default-bkcolor-expected.txt: Added.
921 * platform/win/fast/forms/input-appearance-disabled-expected.txt: Added.
922 * platform/win/fast/forms/input-appearance-preventDefault-expected.txt: Added.
923 * platform/win/fast/forms/input-appearance-width-expected.txt: Added.
924 * platform/win/fast/forms/input-baseline-expected.txt: Added.
925 * platform/win/fast/forms/input-disabled-color-expected.txt: Added.
926 * platform/win/fast/forms/input-field-text-truncated-expected.txt: Added.
927 * platform/win/fast/forms/input-placeholder-visibility-1-expected.txt: Added.
928 * platform/win/fast/forms/input-placeholder-visibility-3-expected.txt: Added.
929 * platform/win/fast/forms/input-readonly-empty-expected.txt: Added.
930 * platform/win/fast/forms/input-table-expected.txt: Added.
931 * platform/win/fast/forms/input-text-click-inside-expected.txt: Added.
932 * platform/win/fast/forms/input-text-option-delete-expected.txt: Added.
933 * platform/win/fast/forms/input-text-scroll-left-on-blur-expected.txt: Added.
934 * platform/win/fast/forms/input-text-self-emptying-click-expected.txt: Added.
935 * platform/win/fast/forms/input-text-word-wrap-expected.txt: Added.
936 * platform/win/fast/forms/menulist-restrict-line-height-expected.txt: Added.
937 * platform/win/fast/forms/menulist-style-color-expected.txt:
938 * platform/win/fast/forms/minWidthPercent-expected.txt: Added.
939 * platform/win/fast/forms/placeholder-position-expected.txt: Added.
940 * platform/win/fast/forms/select-listbox-multiple-no-focusring-expected.txt:
941 * platform/win/fast/forms/select-overflow-scroll-expected.txt:
942 * platform/win/fast/forms/select-overflow-scroll-inherited-expected.txt:
943 * platform/win/fast/forms/text-style-color-expected.txt: Added.
944 * platform/win/fast/forms/textfield-focus-ring-expected.txt: Added.
945 * platform/win/fast/forms/textfield-outline-expected.txt: Added.
946 * platform/win/fast/forms/visual-hebrew-text-field-expected.txt: Added.
947 * platform/win/fast/lists/dynamic-marker-crash-expected.txt: Added.
948 * platform/win/fast/table/spanOverlapRepaint-expected.txt: Added.
949 * platform/win/fast/table/text-field-baseline-expected.txt: Added.
950 * platform/win/fast/text/textIteratorNilRenderer-expected.txt:
951 * platform/win/svg/custom/inline-svg-in-html-expected.txt: Added.
952 * platform/win/svg/hixie/mixed: Added.
953 * platform/win/svg/hixie/mixed/003-expected.txt: Added.
954 * platform/win/tables/mozilla/bugs/45621-expected.txt: Added.
955 * platform/win/tables/mozilla/bugs/bug138725-expected.txt:
956 * platform/win/tables/mozilla/bugs/bug194024-expected.txt: Added.
957 * platform/win/tables/mozilla/bugs/bug24200-expected.txt: Added.
958 * platform/win/tables/mozilla/bugs/bug2479-3-expected.txt:
959 * platform/win/tables/mozilla/bugs/bug2479-4-expected.txt:
960 * platform/win/tables/mozilla/bugs/bug39209-expected.txt:
961 * platform/win/tables/mozilla/bugs/bug4527-expected.txt:
962 * platform/win/tables/mozilla/bugs/bug46368-1-expected.txt:
963 * platform/win/tables/mozilla/bugs/bug46368-2-expected.txt:
964 * platform/win/tables/mozilla/bugs/bug51727-expected.txt:
965 * platform/win/tables/mozilla/bugs/bug52505-expected.txt:
966 * platform/win/tables/mozilla/bugs/bug52506-expected.txt:
967 * platform/win/tables/mozilla/bugs/bug59354-expected.txt: Added.
968 * platform/win/tables/mozilla/bugs/bug60749-expected.txt:
969 * platform/win/tables/mozilla/bugs/bug68912-expected.txt: Added.
970 * platform/win/tables/mozilla/bugs/bug7342-expected.txt:
971 * platform/win/tables/mozilla/bugs/bugs28928-expected.txt: Added.
972 * platform/win/tables/mozilla/collapsing_borders/bug41262-4-expected.txt:
973 * platform/win/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt: Added.
974 * platform/win/tables/mozilla_expected_failures/collapsing_borders: Added.
975 * platform/win/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt: Added.
976 * platform/win/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt: Added.
977 * platform/win/tables/mozilla_expected_failures/core/captions1-expected.txt:
978 * platform/win/tables/mozilla_expected_failures/core/captions2-expected.txt:
980 2014-10-22 Said Abou-Hallawa <sabouhallawa@apple.com>
982 SVG loaded through html <img> can't request to load any external resources.
983 https://bugs.webkit.org/show_bug.cgi?id=137762.
985 Reviewed by Daniel Bates.
987 Ensure that SVG images, which are loaded through the <img> tag or through the
988 CSS background image, cannot load any external sub-resource except for data-
989 URL resources (though this doesn't work at the time of writing, see bug #137941).
990 Also ensure the same rule is enforced on cached resources.
992 The tests are ported but modified a little from the chromium fix:
993 http://src.chromium.org/viewvc/blink?view=rev&rev=176084
995 Set the circle background to orange
996 * http/tests/security/resources/image-with-css-cross-domain-circle.css: Added.
999 Set the circle stroke-width = 2 and the circle stroke = red
1000 * http/tests/security/resources/image-with-css-cross-domain-circle2.css: Added.
1003 This svg references the two css files: one is relative path and the other is absolute path
1004 * http/tests/security/resources/image-with-css-cross-domain.svg: Added.
1006 This svg references an external image.
1007 * http/tests/security/resources/image-with-remote-image.svg: Added.
1009 A helper css which sets the formatting style for some html tags
1010 * http/tests/security/svg-image-with-css-cross-domain.css: Added.
1012 (span.circle-css-cross-domain):
1016 Test the svg which is referenced as a cached image by an <object> tag, does not load
1017 external sub-resource.
1018 * http/tests/security/svg-image-with-cached-remote-image-expected.html: Added.
1019 * http/tests/security/svg-image-with-cached-remote-image.html: Added.
1021 Test loading sub-resources for an svg which is included in the html by different ways
1022 and which references external css files.
1023 Ensure the image object does not load any external sub-resources.
1024 * http/tests/security/svg-image-with-css-cross-domain-expected.html: Added.
1025 * http/tests/security/svg-image-with-css-cross-domain.html: Added.
1027 2014-10-21 Ada Chan <adachan@apple.com>
1029 MediaPlayerPrivateAVFoundation::hasAudio() returns false even when there is an audible AVMediaSelectionOption selected
1030 https://bugs.webkit.org/show_bug.cgi?id=137935
1032 Reviewed by Eric Carlson.
1034 * http/tests/media/hls/hls-audio-tracks-has-audio-expected.txt: Added.
1035 * http/tests/media/hls/hls-audio-tracks-has-audio.html: Added.
1037 2014-10-22 Hunseop Jeong <hs85.jeong@samsung.com>
1039 [EFL] Unreviewed EFL gardening.
1040 https://bugs.webkit.org/show_bug.cgi?id=137950
1042 Some tests that are passed in latest build.
1044 * platform/efl/TestExpectations: Remove passing tests from TestExceptation file.
1046 2014-10-22 Brent Fulgham <bfulgham@apple.com>
1048 [Win] Mark a number of tests as failing due to white selected text color.
1049 https://bugs.webkit.org/show_bug.cgi?id=137963
1051 * platform/win/TestExpectations:
1053 2014-10-22 Brent Fulgham <bfulgham@apple.com>
1055 [Win] Mark a number of tests as failing due to <select> bug.
1056 https://bugs.webkit.org/show_bug.cgi?id=137962
1058 * platform/win/TestExpectations:
1060 2014-10-22 Shivakumar JM <shiva.jm@samsung.com>
1062 XMLHttpRequest should support attribute responseURL as per latest XHR spec.
1063 https://bugs.webkit.org/show_bug.cgi?id=136938
1065 Reviewed by Alexey Proskuryakov.
1067 Added test to check responseURL attribute in XMLHttpRequest.
1069 * http/tests/xmlhttprequest/basic-auth-responseURL-expected.txt: Added.
1070 * http/tests/xmlhttprequest/basic-auth-responseURL.html: Added.
1071 * http/tests/xmlhttprequest/cross-origin-redirect-responseURL-expected.txt: Added.
1072 * http/tests/xmlhttprequest/cross-origin-redirect-responseURL.html: Added.
1073 * http/tests/xmlhttprequest/redirect-credentials-responseURL-expected.txt: Added.
1074 * http/tests/xmlhttprequest/redirect-credentials-responseURL.html: Added.
1075 * http/tests/xmlhttprequest/xmlhttprequest-responseURL-expected.txt: Added.
1076 * http/tests/xmlhttprequest/xmlhttprequest-responseURL.html: Added.
1078 2014-10-22 Carlos Garcia Campos <cgarcia@igalia.com>
1080 [GStreamer] Do not use CachedResourceLoader, SecurityOrigin, ResourceBuffer and other WebCore types
1081 https://bugs.webkit.org/show_bug.cgi?id=137064
1083 Reviewed by Philippe Normand.
1085 Update expected results of http/tests/security/video-cross-origin-accessfailure.html, since
1086 now the error is also logged in the console.
1088 * http/tests/security/video-cross-origin-accessfailure-expected.txt:
1090 2014-10-22 Tibor Meszaros <tmeszaros.u-szeged@partner.samsung.com>
1092 Match spec for font-weight: bolder|lighter
1093 https://bugs.webkit.org/show_bug.cgi?id=137919
1095 Reviewed by Andreas Kling.
1097 This patch is a merge of Blink's
1098 https://chromiumcodereview.appspot.com/15994009 and
1099 https://codereview.chromium.org/137813004
1101 * css3/font-weight-expected.txt: Added.
1102 * css3/font-weight-multiple-selectors-expected.txt: Added.
1103 * css3/font-weight-multiple-selectors.html: Added.
1104 * css3/font-weight.html: Added.
1106 2014-10-22 Dhi Aurrahman <diorahman@rockybars.com>
1108 Add relList to the anchor, area and link elements
1109 https://bugs.webkit.org/show_bug.cgi?id=137860
1111 Reviewed by Darin Adler and Chris Dumez.
1113 Tests relList aspects for anchor, area and list elements.
1114 Update dom static property for-in iteration test result to include relList.
1116 * fast/dom/rel-list-expected.txt: Added.
1117 * fast/dom/rel-list-gc-expected.txt: Added.
1118 * fast/dom/rel-list-gc.html: Added.
1119 * fast/dom/rel-list.html: Added.
1120 * js/dom/dom-static-property-for-in-iteration-expected.txt: Updated results.
1121 * perf/rel-list-remove-expected.txt: Added.
1122 * perf/rel-list-remove.html: Added.
1124 2014-10-21 Brent Fulgham <bfulgham@apple.com>
1126 [Win] More rebaselines.
1128 * platform/win/css1/box_properties/acid_test-expected.txt:
1129 * platform/win/editing/selection/3690719-expected.txt:
1130 * platform/win/editing/selection/move-left-right-expected.txt:
1131 * platform/win/fast/css/continuationCrash-expected.txt:
1132 * platform/win/fast/css/fieldset-display-row-expected.txt:
1133 * platform/win/fast/css/margin-top-bottom-dynamic-expected.txt:
1134 * platform/win/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt:
1135 * platform/win/fast/forms/file/file-input-direction-expected.txt:
1136 * platform/win/fast/forms/file/file-input-disabled-expected.txt:
1137 * platform/win/fast/forms/file/input-file-re-render-expected.txt:
1138 * platform/win/fast/forms/formmove-expected.txt:
1139 * platform/win/fast/forms/formmove2-expected.txt:
1140 * platform/win/fast/forms/formmove3-expected.txt:
1141 * platform/win/fast/forms/input-appearance-height-expected.txt:
1142 * platform/win/fast/forms/input-button-sizes-expected.txt:
1143 * platform/win/fast/forms/input-step-as-double-expected.txt: Removed.
1144 * platform/win/fast/forms/input-text-drag-down-expected.txt:
1145 * platform/win/fast/forms/input-value-expected.txt:
1146 * platform/win/fast/forms/listbox-bidi-align-expected.txt:
1147 * platform/win/fast/forms/targeted-frame-submission-expected.txt:
1148 * platform/win/fast/forms/text-control-intrinsic-widths-expected.txt:
1150 2014-10-21 Benjamin Poulain <bpoulain@apple.com>
1152 CSS Rule features are ignored for nested CSS Selector lists
1153 https://bugs.webkit.org/show_bug.cgi?id=137908
1155 Reviewed by Andreas Kling.
1157 * fast/selectors/class-style-update-with-not-expected.txt: Added.
1158 * fast/selectors/class-style-update-with-not.html: Added.
1159 Parts of this test fail due to a bug with specificity. This will be addressed
1162 * fast/css/class-style-invalidation-optimization-expected.txt: Added.
1163 * fast/css/class-style-invalidation-optimization.html: Added.
1164 * fast/css/direct-adjacent-style-sharing-1-expected.html: Added.
1165 * fast/css/direct-adjacent-style-sharing-1.html: Added.
1166 * fast/css/direct-adjacent-style-sharing-2-expected.html: Added.
1167 * fast/css/direct-adjacent-style-sharing-2.html: Added.
1168 * fast/css/direct-adjacent-style-sharing-3-expected.html: Added.
1169 * fast/css/direct-adjacent-style-sharing-3.html: Added.
1170 * fast/css/id-style-invalidation-optimization-expected.txt: Added.
1171 * fast/css/id-style-invalidation-optimization.html: Added.
1172 * fast/selectors/class-style-update-expected.txt: Added.
1173 * fast/selectors/class-style-update-with-nth-child-of-expected.txt: Added.
1174 * fast/selectors/class-style-update-with-nth-child-of.html: Added.
1175 * fast/selectors/class-style-update.html: Added.
1177 2014-10-21 Brent Fulgham <bfulgham@apple.com>
1179 [Win] Unreviewed test updates after switching to Windows theme for tests.
1180 https://bugs.webkit.org/show_bug.cgi?id=137932
1182 * platform/win/css1/box_properties/acid_test-expected.txt:
1183 * platform/win/editing/inserting/4960120-1-expected.txt:
1185 2014-10-21 Jaehun Lim <ljaehun.lim@samsung.com>
1187 'true' isn't a valid value for justify-self
1188 https://bugs.webkit.org/show_bug.cgi?id=137913
1190 Reviewed by Andreas Kling.
1192 Merged from Blink (patch by dstockwell):
1193 <https://src.chromium.org/viewvc/blink?view=rev&revision=174638>
1195 CSS Box Alignment Module Level 3:
1196 http://dev.w3.org/csswg/css-align/#justify-self-property
1198 Add a bad case where "justify-self: true"
1200 * fast/css/parse-justify-self-expected.txt:
1201 * fast/css/parse-justify-self.html:
1203 2014-10-21 Michael Saboff <msaboff@apple.com>
1205 Change native call frames to use the scope from their Callee instead of their caller's scope
1206 https://bugs.webkit.org/show_bug.cgi?id=137907
1208 Updated tests to reflect that the results of changing where a native call frame
1209 and therefore the lexicalGlobalObject came from. Verified that these tests changes
1210 are consistent with the HTML standard. These changes are also closer to the behavior
1213 Reviewed by Mark Lam.
1215 * fast/frames/sandboxed-iframe-navigation-parent-expected.txt:
1216 * fast/frames/sandboxed-iframe-navigation-parent.html:
1217 Changed the test and results to show that a sandboxed iframe can navigate its
1218 ancesters when it is sandbox with both "allow-scripts" and "allow-same-origin".
1220 * http/tests/security/calling-versus-current.html:
1221 Updated the test to really have a different domain. We do a simple string comparison
1222 to check for that we are part of the same domain. The test expected that 0.0.1 was
1223 from the same domain as 127.0.0.1. Changed the test to try 0.0.2 and expect a
1226 * http/tests/security/frameNavigation/context-for-location-assign-expected.txt:
1227 Updated test results.
1229 * traversal/node-iterator-prototype-expected.txt:
1230 * traversal/node-iterator-prototype.html:
1231 Fixed as a result of this change.
1233 2014-10-21 Joanmarie Diggs <jdiggs@igalia.com>
1235 AX: [ATK] CSS-generated text content not exposed to assistive technologies
1236 https://bugs.webkit.org/show_bug.cgi?id=137669
1238 Reviewed by Chris Fleizach.
1240 Moved the Mac platform test and modified it to dump the accessible tree
1241 and string values rather than a platform-specific hierarchy so that it
1242 could be shared across platforms.
1244 * accessibility/css-content-attribute.html: Added.
1245 * platform/gtk/accessibility/css-content-attribute-expected.txt: Added.
1246 * platform/mac/accessibility/css-content-attribute-expected.txt: Modified to reflect new output.
1247 * platform/mac/accessibility/css-content-attribute.html: Removed.
1249 2014-10-21 Zalan Bujtas <zalan@apple.com>
1251 REGRESSION: Google Search (mobile) video thumbnails are too large.
1252 https://bugs.webkit.org/show_bug.cgi?id=137895
1254 Reviewed by Simon Fraser.
1256 This patch fixes layer clipping when an ancestor layer has border-radius clipping.
1258 In cases, where the current layer has non-radius cliprect, while an ancestor layer
1259 has border-radius clipping, we only use the border-radius rect to clip.
1261 * fast/clip/overflow-hidden-with-border-radius-overflow-clipping-parent-expected.html: Added.
1262 * fast/clip/overflow-hidden-with-border-radius-overflow-clipping-parent.html: Added.
1264 2014-10-21 Jer Noble <jer.noble@apple.com>
1266 REGRESSION (r170808): Volume slider in built-in media controls only changes volume when thumb is released, not while dragging
1267 https://bugs.webkit.org/show_bug.cgi?id=137805
1269 Reviewed by Dan Bernstein.
1271 * media/video-volume-slider-drag-expected.txt: Added.
1272 * media/video-volume-slider-drag.html: Added.
1274 2014-10-21 Manuel Rego Casasnovas <rego@igalia.com>
1276 ASSERTION FAILED: !gridWasPopulated() in WebCore::RenderGrid::placeItemsOnGrid
1277 https://bugs.webkit.org/show_bug.cgi?id=136939
1279 Reviewed by Darin Adler.
1281 Added a test case to reproduce the crash in debug mode.
1283 * fast/css-grid-layout/grid-was-populated-assert-expected.txt: Added.
1284 * fast/css-grid-layout/grid-was-populated-assert.html: Added.
1286 2014-10-17 Jeffrey Pfau <jpfau@apple.com>
1288 Ensure attached frame count doesn't exceed the maximum allowed frames
1289 https://bugs.webkit.org/show_bug.cgi?id=136457
1291 Reviewed by Alexey Proskuryakov.
1293 * fast/frames/exponential-frames-expected.txt: Added.
1294 * fast/frames/exponential-frames.html: Added.
1296 2014-10-20 Youenn Fablet <youenn.fablet@crf.canon.fr>
1298 Tighten XMLHttpRequest setRequestHeader value check
1299 https://bugs.webkit.org/show_bug.cgi?id=128593
1301 Reviewed by Darin Adler.
1303 Added a test originating from w3c-test.org to test header values checking.
1304 Testing headers with non ASCII characters and various control characters.
1306 * http/tests/xmlhttprequest/set-bad-headervalue-expected.txt: Added.
1307 * http/tests/xmlhttprequest/set-bad-headervalue.html: Added.
1309 2014-10-20 Brent Fulgham <bfulgham@apple.com>
1311 [Win] Mark a few tests as no-longer failing.
1313 It looks like Said's work on SVG has fixed a number of things!
1315 * platform/win/TestExpectations: Remove 'crash' and 'failures' cases
1316 for a few things that are now reliably passing.
1318 2014-10-20 Dean Jackson <dino@apple.com>
1320 [Mac] Support "inverted-colors" and "monochrome" media feature.
1321 https://bugs.webkit.org/show_bug.cgi?id=137535
1322 <rdar://problem/18586398>
1324 Reviewed by Brent Fulgham.
1326 Add tests for the new "inverted-colors" media feature, and
1327 another test for the "monochrome" feature. Note that these
1328 tests don't actually exercise the positive values of the
1329 query, since that requires the screen to be changed and would
1330 interfere with concurrent tests.
1332 * fast/media/mq-inverted-colors.html: Added.
1333 * fast/media/mq-monochrome.html: Added.
1334 * fast/media/mq-inverted-colors-expected.html: Added.
1335 * fast/media/mq-monochrome-expected.html: Added.
1337 2014-10-20 Alexey Proskuryakov <ap@apple.com>
1339 Eight transitions tests are very flaky, frequently failing all at once
1340 https://bugs.webkit.org/show_bug.cgi?id=137883
1342 Marking them as flaky. Enough is enough.
1346 2014-10-20 Jer Noble <jer.noble@apple.com>
1348 REGRESSION(r174823): Two new failing HLS tests
1349 https://bugs.webkit.org/show_bug.cgi?id=137882
1351 Unreviewed gardening; add two expected failures.
1353 * platform/mac/TestExpectations:
1355 2014-10-20 Benjamin Poulain <benjamin@webkit.org>
1357 Update the <link>'s link status
1358 https://bugs.webkit.org/show_bug.cgi?id=137861
1360 Reviewed by Chris Dumez.
1362 * fast/css/link-basics-expected.html: Added.
1363 * fast/css/link-basics.html: Added.
1364 * fast/selectors/link-basics-expected.txt: Added.
1365 * fast/selectors/link-basics-xhtml-expected.txt: Added.
1366 * fast/selectors/link-basics-xhtml.xhtml: Added.
1367 * fast/selectors/link-basics.html: Added.
1368 * fast/selectors/resources/html-link-type-tests.js: Added.
1370 (testHTMLTagsForLink):
1371 * fast/selectors/webkit-any-link-basics-expected.txt: Added.
1372 * fast/selectors/webkit-any-link-basics.html: Added.
1374 2014-10-18 Antti Koivisto <antti@apple.com>
1376 REGRESSION (r173356): Safari can't install a profile, gets 'Download Failed error
1377 https://bugs.webkit.org/show_bug.cgi?id=137855
1379 Reviewed by Dan Bernstein.
1381 * http/tests/mime/mime-type-sniff-expected.txt: Added.
1382 * http/tests/mime/mime-type-sniff.html: Added.
1383 * http/tests/mime/resources/png-with-text-content-type.cgi: Added.
1385 2014-10-18 Chris Fleizach <cfleizach@apple.com>
1387 AX: Tables with <colgroups> are not reporting table column headers
1388 https://bugs.webkit.org/show_bug.cgi?id=137846
1390 Reviewed by Mario Sanchez Prada.
1392 * accessibility/table-column-headers-with-captions-expected.txt: Added.
1393 * accessibility/table-column-headers-with-captions.html: Added.
1395 2014-10-17 Michael Saboff <msaboff@apple.com>
1397 Don't create cached functions that access lexicalGlobalObject()
1398 https://bugs.webkit.org/show_bug.cgi?id=137839
1400 Reviewed by Geoffrey Garen.
1402 Updadted test that check for
1404 * fast/dom/wrapper-scope-expected.txt:
1405 * fast/dom/wrapper-scope.html:
1406 Removed "close" and "postMessage" from functions to check for wrapper scope.
1408 * http/tests/security/cross-frame-access-put-expected.txt:
1409 * http/tests/security/resources/cross-frame-iframe-for-put-test.html:
1410 Removed "blur", "close" and "focus" from the functions to test, since this tests that
1411 a parent's and child window's instances are the same. Now they are always different.
1413 * js/dom/global-function-resolve-expected.txt:
1414 * js/dom/script-tests/global-function-resolve.js:
1415 Removed "close" from this lists of functions to check.
1417 2014-10-17 Benjamin Poulain <benjamin@webkit.org>
1419 Make a better use of the available registers when compiling nested selector lists
1420 https://bugs.webkit.org/show_bug.cgi?id=137802
1422 Reviewed by Andreas Kling.
1424 The register pressure cases are already well covered by fast/selectors/nth-child-of-boundaries-*.
1425 The new test covers the maximum register pressure inside :nth-child(of) and having the selector with
1426 max pressure inside a selector list instead of being alone/first.
1428 * fast/selectors/nth-child-of-register-requirement-expected.txt: Added.
1429 * fast/selectors/nth-child-of-register-requirement.html: Added.
1431 2014-10-17 Brent Fulgham <bfulgham@apple.com>
1433 [Win] Unreviewed test gardening. Mark some tests as passing that have benefitted from recent bug fixes.
1435 * platform/win/TestExpectations:
1437 2014-10-17 Andreas Kling <akling@apple.com>
1439 Add test for innerHTML mutations that yield identical DOM.
1440 <https://webkit.org/b/137823>
1442 Reviewed by Chris Dumez.
1444 I made this test while working on an optimization, and it seems useful
1445 to have in the tree since it adds additional coverage. The optimization
1448 The test works by creating little DOM subtrees like so:
1450 <foo><bar>some text</bar></foo>
1452 It then overwrites that subtree with an identical one by mutating the
1453 containing element's innerHTML property. It then verifies that the DOM
1454 structure is correct and that Node wrappers retain any custom properties
1457 * fast/innerHTML/identical-mutations-expected.txt: Added.
1458 * fast/innerHTML/identical-mutations.html: Added.
1460 2014-10-16 Jer Noble <jer.noble@apple.com>
1462 [Mac] Represent AVMediaSelectionOptions as AudioTracks
1463 https://bugs.webkit.org/show_bug.cgi?id=137474
1465 Reviewed by Brent Fulgham.
1467 * http/tests/media/hls/hls-audio-tracks-expected.txt: Added.
1468 * http/tests/media/hls/hls-audio-tracks.html: Added.
1469 * http/tests/media/resources/hls/audio-tracks.m3u8: Added.
1470 * http/tests/media/resources/hls/bipbop/iframe_index.m3u8: Added.
1471 * http/tests/media/resources/hls/bipbop/main0.ts: Added.
1472 * http/tests/media/resources/hls/bipbop/main1.ts: Added.
1473 * http/tests/media/resources/hls/bipbop/prog_index.m3u8: Added.
1474 * http/tests/media/resources/hls/french/main.aac: Added.
1475 * http/tests/media/resources/hls/french/prog_index.m3u8: Added.
1476 * http/tests/media/resources/hls/spanish/main.aac: Added.
1477 * http/tests/media/resources/hls/spanish/prog_index.m3u8: Added.
1479 2014-10-17 Brent Fulgham <bfulgham@apple.com>
1481 [Win] Test gardening after r174796.
1483 Now that Windows DRT matches Mac's output, we can get rid of some custom test expecations.
1485 * platform/win/fast/dom/window-load-crash-expected.txt: Removed.
1486 * platform/win/fast/images/crossfade-client-not-removed-crash-expected.txt: Removed.
1487 * platform/win/fast/ruby/before-block-doesnt-crash-expected.txt: Removed.
1488 * platform/win/fast/ruby/before-table-doesnt-crash-expected.txt: Removed.
1489 * platform/win/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Removed.
1490 * platform/win/loader/image-loader-adoptNode-assert-expected.txt: Removed.
1492 2014-10-15 Yusuke Suzuki <utatane.tea@gmail.com>
1494 CSS Selectors Level 4: Implement :matches in SelectorChecker
1495 https://bugs.webkit.org/show_bug.cgi?id=137393
1497 Reviewed by Benjamin Poulain.
1499 * fast/selectors/matches-selector-list-expected.txt: Added.
1500 * fast/selectors/matches-selector-list.html: Added.
1501 * fast/selectors/querySelector-matches-expected.txt: Added.
1502 * fast/selectors/querySelector-matches.html: Added.
1504 2014-10-16 Alexey Proskuryakov <ap@apple.com>
1506 REGRESSION (r169024): Undetermined text is not displayed in the search field of Adobe Help Website
1507 https://bugs.webkit.org/show_bug.cgi?id=137679
1508 rdar://problem/18450335
1510 Reviewed by Enrica Casucci.
1512 * platform/mac/editing/input/selected-composed-text-painting-expected.html: Added.
1513 * platform/mac/editing/input/selected-composed-text-painting.html: Added.
1515 2014-10-16 Zalan Bujtas <zalan@apple.com>
1517 [Mac] Unreviewed gardening.
1519 * platform/mac/TestExpectations:
1521 2014-10-16 Zalan Bujtas <zalan@apple.com>
1523 [Mac] Unreviewed gardening.
1525 Unskip more subpixel related tests.
1527 * platform/mac/TestExpectations:
1529 2014-10-16 Zalan Bujtas <zalan@apple.com>
1531 [Mac] Unreviewed gardening.
1533 Unskip subpixel border tests.
1535 * platform/mac/TestExpectations:
1536 * platform/mac/css1/units/length_units-expected.txt:
1537 * platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt:
1538 * platform/mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt:
1539 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt:
1540 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt:
1541 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt:
1542 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt:
1543 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt:
1544 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt:
1545 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt:
1546 * platform/mac/media/video-zoom-expected.txt:
1547 * platform/mac/svg/custom/svg-fonts-in-html-expected.txt:
1548 * platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt:
1549 * platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
1551 2014-10-15 Andrei Bucur <abucur@adobe.com>
1553 ASSERTION FAILED in WebCore::RenderFlowThread::getRegionRangeForBox
1554 https://bugs.webkit.org/show_bug.cgi?id=135563
1556 Reviewed by David Hyatt.
1558 A test verifying that positioned elements inside multi-column containers don't
1559 cause assertions or crashes.
1561 * fast/multicol/multicol-all-positioned-crash-expected.txt: Added.
1562 * fast/multicol/multicol-all-positioned-crash.html: Added.
1563 * fast/multicol/multicol-transform-containing-block-expected.txt: Added.
1564 * fast/multicol/multicol-transform-containing-block.html: Added.
1566 2014-10-15 Commit Queue <commit-queue@webkit.org>
1568 Unreviewed, rolling out r174753.
1569 https://bugs.webkit.org/show_bug.cgi?id=137761
1571 caused layout tests to fail. (Requested by zalan on #webkit).
1575 "[Mac] Unreviewed gardening."
1576 http://trac.webkit.org/changeset/174753
1578 2014-10-15 Zalan Bujtas <zalan@apple.com>
1580 [Mac] Unreviewed gardening.
1582 Unskip subpixel border tests.
1584 * platform/mac/TestExpectations:
1586 2014-10-15 Zalan Bujtas <zalan@apple.com>
1588 [Mac] Unreviewed gardening(mountain-lion).
1590 * platform/mac-mountainlion/fast/text/international/hindi-spacing-expected.txt: Added.
1592 2014-10-15 Zalan Bujtas <zalan@apple.com>
1594 [Mac] Unreviewed gardening.
1598 * platform/mac/TestExpectations:
1599 * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt:
1600 * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt:
1601 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt:
1602 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt:
1603 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt:
1604 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt:
1605 * platform/mac/fast/block/float/overhanging-tall-block-expected.txt:
1606 * platform/mac/fast/events/constructors/mouse-event-constructor-expected.txt: Added.
1607 * platform/mac/fast/events/constructors/wheel-event-constructor-expected.txt: Added.
1608 * platform/mac/fast/text/international/hindi-spacing-expected.txt:
1609 * platform/mac/fast/text/international/vertical-text-glyph-test-expected.txt:
1610 * platform/mac/fast/text/orientation-sideways-expected.txt:
1611 * platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt:
1612 * platform/mac/fast/writing-mode/japanese-ruby-vertical-lr-expected.txt:
1613 * platform/mac/fast/writing-mode/japanese-ruby-vertical-rl-expected.txt:
1614 * platform/mac/fast/writing-mode/vertical-font-fallback-expected.txt:
1615 * platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt:
1617 2014-10-13 Chris Fleizach <cfleizach@apple.com>
1619 AX: Going back is broken for VoiceOver
1620 https://bugs.webkit.org/show_bug.cgi?id=137382
1622 Reviewed by Darin Adler.
1624 Update tests now that AXLoadComplete is sent more reliably.
1626 * platform/mac/accessibility/aria-expanded-notifications-expected.txt:
1627 * platform/mac/accessibility/aria-expanded-notifications.html:
1629 2014-10-15 Simon Fraser <simon.fraser@apple.com>
1631 Sometimes can't scroll overflow:scroll areas in subframes
1632 https://bugs.webkit.org/show_bug.cgi?id=137746
1633 rdar://problem/18603560
1635 Reviewed by Tim Horton.
1637 Test that changes an overflow size in a subframe and then dumps the non-fast scrollable region.
1639 * platform/mac-wk2/tiled-drawing/scrolling/frames/resources/layouting-frame.html: Added.
1640 * platform/mac-wk2/tiled-drawing/scrolling/frames/scroll-region-after-frame-layout-expected.txt: Added.
1641 * platform/mac-wk2/tiled-drawing/scrolling/frames/scroll-region-after-frame-layout.html: Added.
1643 2014-10-15 Zalan Bujtas <zalan@apple.com>
1645 [Mac] Unreviewed gardening.
1649 * css3/flexbox/flex-rounding.html:
1651 2014-10-15 Zalan Bujtas <zalan@apple.com>
1653 [Mac] Unreviewed gardening.
1655 Unskip some subpixel related tests.
1657 * platform/mac/TestExpectations:
1659 2014-10-15 Zalan Bujtas <zalan@apple.com>
1661 [Mac] Unreviewed gardening.
1663 css3/flexbox/flex-rounding.html passes now that subpixel is on.
1665 * platform/mac/TestExpectations:
1667 2014-10-15 Zalan Bujtas <zalan@apple.com>
1669 Subpixel layout: Unskip fast/sub-pixel directory.
1670 https://bugs.webkit.org/show_bug.cgi?id=137732
1672 Reviewed by Simon Fraser.
1677 * fast/sub-pixel/inline-block-with-padding-expected.txt: minor adjustment.
1678 * fast/sub-pixel/zoomed-em-border-expected.html: minor adjustment.
1679 * platform/mac/TestExpectations: we still have to skip couple of tests.
1681 2014-10-14 Zalan Bujtas <zalan@apple.com>
1683 REGRESSION (Safari 7.1/8.0): Border-radius and overflow hidden renders incorrectly.
1684 https://bugs.webkit.org/show_bug.cgi?id=137205
1686 Reviewed by Simon Fraser.
1688 Child layer should not reset radius clipping behaviour.
1690 * fast/layers/parent-clipping-overflow-is-overwritten-by-child-clipping-expected.html: Added.
1691 * fast/layers/parent-clipping-overflow-is-overwritten-by-child-clipping.html: Added.
1693 2014-10-14 Dan Bernstein <mitz@apple.com>
1695 URLs that start with http:/// and https:/// lose two slashes when parsed, causing assertion failure and inconsistent behavior
1696 https://bugs.webkit.org/show_bug.cgi?id=137718
1698 Reviewed by Alexey Proskuryakov.
1700 * fast/loader/url-parse-1-expected.txt: Updated results.
1701 * fast/loader/url-parse-1.html: Added a few test cases.
1702 * fast/url/file-http-base-expected.txt: Updated results.
1703 * fast/url/host-expected.txt: Ditto.
1704 * fast/url/invalid-urls-utf8-expected.txt: Ditto.
1705 * fast/url/relative-expected.txt: Ditto.
1706 * fast/url/standard-url-expected.txt: Ditto.
1708 2014-10-14 Alexey Proskuryakov <ap@apple.com>
1710 Re-adding fast/hidpi/image-srcset-relative-svg-canvas.html, as it still fails on bots
1714 2014-10-14 Roger Fong <roger_fong@apple.com>
1716 [Windows] Unreviewed gardening following r174585.
1718 * platform/win/TestExpectations:
1719 * platform/win/editing/inserting/4960120-1-expected.txt: Added.
1720 * platform/win/editing/selection/select-across-readonly-input-1-expected.txt: Added.
1721 * platform/win/editing/selection/select-across-readonly-input-2-expected.txt: Added.
1722 * platform/win/editing/selection/select-across-readonly-input-3-expected.txt: Added.
1723 * platform/win/editing/selection/select-across-readonly-input-4-expected.png: Added.
1724 * platform/win/editing/selection/select-across-readonly-input-4-expected.txt: Added.
1725 * platform/win/editing/selection/select-across-readonly-input-5-expected.png: Added.
1726 * platform/win/editing/selection/select-across-readonly-input-5-expected.txt: Added.
1727 * platform/win/fast/block/positioning/inline-block-relposition-expected.txt: Added.
1728 * platform/win/fast/css/resize-corner-tracking-expected.png: Added.
1729 * platform/win/fast/css/resize-corner-tracking-expected.txt: Added.
1730 * platform/win/fast/css/text-input-with-webkit-border-radius-expected.txt: Added.
1731 * platform/win/fast/dom/html-link-element-activation-behavior-url-is-null-expected.txt: Added.
1732 * platform/win/fast/dynamic/positioned-movement-with-positioned-children-expected.txt: Added.
1733 * platform/win/fast/events/shadow-event-path-2-expected.txt: Added.
1734 * platform/win/fast/forms/003-expected.txt: Added.
1735 * platform/win/fast/forms/004-expected.txt: Added.
1736 * platform/win/fast/forms/button-default-title-expected.txt: Added.
1737 * platform/win/fast/forms/button-generated-content-expected.png: Added.
1738 * platform/win/fast/forms/button-generated-content-expected.txt: Added.
1739 * platform/win/fast/forms/menulist-clip-expected.png: Added.
1740 * platform/win/fast/forms/menulist-clip-expected.txt: Added.
1741 * platform/win/fast/forms/menulist-deselect-update-expected.txt: Added.
1742 * platform/win/fast/forms/menulist-style-color-expected.png: Added.
1743 * platform/win/fast/forms/menulist-style-color-expected.txt: Added.
1744 * platform/win/fast/forms/menulist-width-change-expected.txt: Added.
1745 * platform/win/fast/forms/option-script-expected.txt: Added.
1746 * platform/win/fast/forms/option-text-clip-expected.png: Added.
1747 * platform/win/fast/forms/option-text-clip-expected.txt: Added.
1748 * platform/win/fast/forms/select-writing-direction-natural-expected.png: Added.
1749 * platform/win/fast/forms/select-writing-direction-natural-expected.txt: Added.
1750 * platform/win/fast/forms/textarea-placeholder-visibility-1-expected.txt: Added.
1751 * platform/win/fast/forms/textarea-placeholder-visibility-2-expected.txt: Added.
1752 * platform/win/fast/forms/textarea-scrollbar-expected.png: Added.
1753 * platform/win/fast/forms/textarea-scrollbar-expected.txt: Added.
1754 * platform/win/fast/repaint/control-clip-expected.png: Added.
1755 * platform/win/fast/repaint/control-clip-expected.txt: Added.
1756 * platform/win/fast/repaint/selection-gap-fixed-child-expected.txt: Added.
1757 * platform/win/fast/repaint/selection-gap-flipped-fixed-child-expected.txt: Added.
1758 * platform/win/fast/table/append-cells2-expected.txt: Added.
1759 * platform/win/fast/table/remove-td-display-none-expected.txt: Added.
1760 * platform/win/fast/text/atsui-rtl-override-selection-expected.txt: Added.
1761 * platform/win/tables/mozilla/bugs/bug30559-expected.txt: Added.
1763 2014-10-13 Simon Fraser <simon.fraser@apple.com>
1765 Rebaseline some compositing tests that are sensitive to the visible rect, and skip
1766 tests that rely on media loading.
1768 * platform/ios-simulator/TestExpectations:
1769 * platform/ios-simulator/compositing/columns/hittest-composited-in-paginated-expected.txt:
1770 * platform/ios-simulator/compositing/contents-scale/animating-expected.txt:
1771 * platform/ios-simulator/compositing/contents-scale/rounded-contents-scale-expected.txt:
1772 * platform/ios-simulator/compositing/contents-scale/scaled-ancestor-expected.txt:
1773 * platform/ios-simulator/compositing/contents-scale/simple-scale-expected.txt:
1774 * platform/ios-simulator/compositing/contents-scale/z-translate-expected.txt:
1775 * platform/ios-simulator/compositing/geometry/partial-layout-update-expected.txt:
1776 * platform/ios-simulator/compositing/geometry/root-layer-update-expected.txt:
1777 * platform/ios-simulator/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.txt:
1778 * platform/ios-simulator/compositing/overflow/clipping-behaviour-change-is-not-propagated-to-descendants-expected.txt:
1779 * platform/ios-simulator/compositing/overflow/clipping-behaviour-change-is-not-propagated-to-descendants2-expected.txt:
1780 * platform/ios-simulator/compositing/overflow/overflow-positioning-expected.txt:
1781 * platform/ios-simulator/compositing/tiling/rotated-tiled-clamped-expected.txt:
1782 * platform/ios-simulator/compositing/tiling/rotated-tiled-preserve3d-clamped-expected.txt:
1783 * platform/ios-simulator/compositing/tiling/tile-cache-zoomed-expected.txt:
1784 * platform/ios-simulator/compositing/tiling/tiled-layer-resize-expected.txt:
1785 * platform/ios-simulator/compositing/transitions/singular-scale-transition-expected.txt:
1786 * platform/ios-simulator/compositing/visible-rect/2d-transformed-expected.txt:
1787 * platform/ios-simulator/compositing/visible-rect/3d-transform-style-expected.txt:
1788 * platform/ios-simulator/compositing/visible-rect/3d-transformed-expected.txt:
1789 * platform/ios-simulator/compositing/visible-rect/animated-expected.txt:
1790 * platform/ios-simulator/compositing/visible-rect/animated-from-none-expected.txt:
1791 * platform/ios-simulator/compositing/visible-rect/clipped-by-viewport-expected.txt:
1792 * platform/ios-simulator/compositing/visible-rect/clipped-visible-rect-expected.txt:
1793 * platform/ios-simulator/compositing/visible-rect/flipped-preserve-3d-expected.txt:
1794 * platform/ios-simulator/compositing/visible-rect/iframe-and-layers-expected.txt:
1795 * platform/ios-simulator/compositing/visible-rect/nested-transform-expected.txt:
1796 * platform/ios-simulator/compositing/visible-rect/scrolled-expected.txt:
1798 2014-10-14 Joanmarie Diggs <jdiggs@igalia.com>
1800 REGRESSION(r174567): [GTK] Layout Tests platform/gtk/accessibility/aria-table-hierarchy.html and platform/gtk/accessibility/table-hierarchy.html fail
1801 https://bugs.webkit.org/show_bug.cgi?id=137697
1803 These tests were overlooked when updating tests to reflect the correct
1804 mapping for ColumnHeaderRole and RowHeaderRole in ATK.
1806 Reviewed by Chris Fleizach.
1808 * platform/gtk/TestExpectations: Remove two failing tests.
1809 * platform/gtk/accessibility/aria-table-hierarchy-expected.txt: Updated expectations.
1810 * platform/gtk/accessibility/aria-table-hierarchy.html: Updated in-test shouldBe values for headers.
1811 * platform/gtk/accessibility/table-hierarchy-expected.txt: Updated expectations.
1812 * platform/gtk/accessibility/table-hierarchy.html: Updated in-test shouldBe values for headers.
1814 2014-10-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
1816 [GTK] Unreviewed GTK gardening.
1818 * platform/gtk/TestExpectations: Report new failures and update expectations.
1819 * platform/gtk/css3/selectors3/html/css3-modsel-61-expected.txt: Rebaseline after r174535.
1820 * platform/gtk/css3/selectors3/html/css3-modsel-83-expected.txt: Rebaseline after r174535.
1821 * platform/gtk/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Rebaseline after r174535.
1822 * platform/gtk/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Rebaseline after r174535.
1823 * platform/gtk/css3/selectors3/xml/css3-modsel-61-expected.txt: Rebaseline after r174535.
1824 * platform/gtk/css3/selectors3/xml/css3-modsel-83-expected.txt: Rebaseline after r174535.
1825 * platform/gtk/fast/borders/bidi-002-expected.txt: Rebaseline after r174160.
1826 * platform/gtk/fast/borders/bidi-009a-expected.txt: Rebaseline after r174160.
1827 * platform/gtk/fast/selectors/061-expected.txt: Rebaseline after r174535.
1828 * platform/gtk/fast/selectors/083-expected.txt: Rebaseline after r174535.
1829 * platform/gtk/mathml/opentype/horizontal-expected.txt: Rebaseline after r174540.
1831 2014-10-14 Youenn Fablet <youennf@gmail.com>
1833 [XHR] Abort method execution when m_loader->cancel() in internalAbort() caused reentry
1834 https://bugs.webkit.org/show_bug.cgi?id=126975
1836 Reviewed by Alexey Proskuryakov.
1838 Adding reentrant-cancel-abort.html (from https://codereview.chromium.org/76133002/)
1839 that crashes without the patch
1840 Updated reentrant-cancel.html test to expect the exception
1841 that is now hit in initSend function (since a XHR open() call is aborted)
1843 * http/tests/xmlhttprequest/reentrant-cancel-abort-expected.txt: Added.
1844 * http/tests/xmlhttprequest/reentrant-cancel-abort.html: Added.
1845 * http/tests/xmlhttprequest/reentrant-cancel.html:
1847 2014-10-14 Alejandro G. Castro <alex@igalia.com>
1849 Add test to check stretchy value is case sensitive
1850 https://bugs.webkit.org/show_bug.cgi?id=137602
1852 Reviewed by Darin Adler.
1854 * mathml/presentation/mo-stretchy-case-sensitive-expected.html: Added.
1855 * mathml/presentation/mo-stretchy-case-sensitive.html: Added.
1857 2014-10-14 Alejandro G. Castro <alex@igalia.com>
1859 Changes in the stretchy attribute do not update rendering
1860 https://bugs.webkit.org/show_bug.cgi?id=136883
1862 Reviewed by Darin Adler.
1864 The test updates the stretchy value in a timeout.
1866 * mathml/presentation/mo-stretch-update-expected.html: Added.
1867 * mathml/presentation/mo-stretch-update.html: Added.
1869 2014-10-14 Andrzej Badowski <a.badowski@samsung.com>
1871 [AX] Improve AccessibilityTableCell columnHeaders and rowHeaders functions.
1872 https://bugs.webkit.org/show_bug.cgi?id=136818
1874 Reviewed by Chris Fleizach.
1876 * accessibility/table-headers-expected.txt: Added.
1877 * accessibility/table-headers.html: Added.
1878 * platform/mac/accessibility/table-attributes-expected.txt:
1879 * platform/mac/accessibility/table-cells-expected.txt:
1880 * platform/mac/accessibility/table-sections-expected.txt:
1882 2014-10-13 Benjamin Poulain <bpoulain@apple.com>
1884 Add test coverage for the more complex cases of :not()
1885 https://bugs.webkit.org/show_bug.cgi?id=137671
1887 Reviewed by Andreas Kling.
1889 Those tests cover the future CSS JIT support of :not(). I'll to the implementation
1890 split over multiple patch, better put the tests first.
1892 * fast/selectors/not-backtracking-expected.txt: Added.
1893 * fast/selectors/not-backtracking.html: Added.
1894 * fast/selectors/not-boundaries-expected.txt: Added.
1895 * fast/selectors/not-boundaries.html: Added.
1897 2014-10-13 Yusuke Suzuki <utatane.tea@gmail.com>
1899 CSS JIT: Implement :visited pseudo class
1900 https://bugs.webkit.org/show_bug.cgi?id=135293
1902 Reviewed by Benjamin Poulain.
1904 To cover the :-webkit-any(:not(:link)), added new tests.
1907 * fast/history/link-inside-not-expected.txt:
1908 * fast/history/link-inside-not-inside-any-expected.txt: Added.
1909 * fast/history/link-inside-not-inside-any.html: Added.
1910 * fast/history/link-inside-not.html:
1912 2014-10-13 Simon Fraser <simon.fraser@apple.com>
1914 Improve the test image diffs page
1915 https://bugs.webkit.org/show_bug.cgi?id=137674
1917 Reviewed by Alexey Proskuryakov.
1919 New version of the image diff page that has the diff images in-place, and allows
1920 for control of the image toggling.
1922 * fast/harness/image-diff-template-expected.txt:
1923 * fast/harness/image-diff-template.html:
1925 2014-10-13 Simon Fraser <simon.fraser@apple.com>
1929 * platform/mac/TestExpectations:
1931 2014-09-30 Sergio Villar Senin <svillar@igalia.com>
1933 [CSS Grid Layout] Pass the valid set of tracks to grow beyond growth limits
1934 https://bugs.webkit.org/show_bug.cgi?id=137253
1936 Reviewed by Darin Adler.
1938 * fast/css-grid-layout/grid-content-sized-columns-resolution-expected.txt:
1939 * fast/css-grid-layout/grid-content-sized-columns-resolution.html:
1941 2014-10-12 Mike West <mkwst@chromium.org>
1943 Referrer Policy: Update <meta name="referrer"> values to match the spec
1944 https://bugs.webkit.org/show_bug.cgi?id=137635
1946 Reviewed by Jochen Eisinger.
1948 * http/tests/security/referrer-policy-https-no-referrer-expected.txt: Added.
1949 * http/tests/security/referrer-policy-https-no-referrer-when-downgrade-expected.txt: Added.
1950 * http/tests/security/referrer-policy-https-no-referrer-when-downgrade.html: Added.
1951 * http/tests/security/referrer-policy-https-no-referrer.html: Added.
1952 * http/tests/security/referrer-policy-https-unsafe-url-expected.txt: Added.
1953 * http/tests/security/referrer-policy-https-unsafe-url.html: Added.
1954 * http/tests/security/referrer-policy-invalid-expected.txt: Update the error message with new keywords.
1955 * http/tests/security/referrer-policy-no-referrer-expected.txt: Added.
1956 * http/tests/security/referrer-policy-no-referrer-when-downgrade-expected.txt: Added.
1957 * http/tests/security/referrer-policy-no-referrer-when-downgrade.html: Added.
1958 * http/tests/security/referrer-policy-no-referrer.html: Added.
1960 2014-10-12 Dhi Aurrahman <diorahman@rockybars.com>
1962 Support activation behavior of link element
1963 https://bugs.webkit.org/show_bug.cgi?id=137597
1965 Reviewed by Benjamin Poulain.
1967 Add test cases for link element activation behavior.
1969 * fast/dom/html-link-element-activation-behavior-on-element-click-expected.txt: Added.
1970 * fast/dom/html-link-element-activation-behavior-on-element-click.html: Added.
1971 * fast/dom/html-link-element-activation-behavior-on-mouse-click-expected.txt: Added.
1972 * fast/dom/html-link-element-activation-behavior-on-mouse-click.html: Added.
1973 * fast/dom/html-link-element-activation-behavior-url-is-null-expected.txt: Added.
1974 * fast/dom/html-link-element-activation-behavior-url-is-null.html: Added.
1975 * fast/dom/resources/html-link-element-activation-behavior-on-element-click-step1.html: Added.
1976 * fast/dom/resources/html-link-element-activation-behavior-on-mouse-click-step1.html: Added.
1977 * fast/dom/resources/html-link-element-activation-behavior-target.html: Added.
1979 2014-10-11 Simon Fraser <simon.fraser@apple.com>
1981 Mark some more tests as sometimes passing.
1983 * platform/mac-wk2/TestExpectations:
1984 * platform/mac/TestExpectations:
1986 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
1988 [EFL] Enable WebP support.
1989 https://bugs.webkit.org/show_bug.cgi?id=136156
1991 Reviewed by Gyuyoung Kim.
1993 Clarify skipped webp test for Webkit EFL.
1995 * platform/efl/TestExpectations:
1997 2014-10-10 Simon Fraser <simon.fraser@apple.com>
1999 Make these animation tests not timeout if hit testing fails.
2001 * animations/animation-hit-test-transform.html:
2002 * animations/animation-hit-test.html:
2004 2014-10-10 Andy Estes <aestes@apple.com>
2006 Mark compositing/rtl/rtl-fixed-overflow-scrolled.html as [ Failure ] on mac-wk1 platforms.
2008 * platform/mac-wk1/TestExpectations:
2010 2014-10-10 Simon Fraser <simon.fraser@apple.com>
2012 iOS Simulator results for fast/events tests.
2014 * platform/ios-simulator/fast/events/*: Added
2016 2014-10-10 Simon Fraser <simon.fraser@apple.com>
2018 iOS Simulator results for fast/dynamic tests.
2020 * platform/ios-simulator/fast/dynamic/*: Added
2022 2014-10-10 Simon Fraser <simon.fraser@apple.com>
2024 iOS Simulator results for fast/css3-text, fast/doctypes, fast/dom tests.
2025 Skip fast/DeviceOrientation, fast/dom/shadow and some other failing tests.
2027 * platform/ios-simulator/fast/css3-text/*: Added.
2028 * platform/ios-simulator/fast/doctypes/*: Added.
2029 * platform/ios-simulator/fast/dom/*: Added.
2031 2014-10-10 Said Abou-Hallawa <sabouhallawa@apple.com>
2033 RenderMathMLUnderOver adds spacing to the child operator indefinitely when resizing the window.
2034 https://bugs.webkit.org/show_bug.cgi?id=137330
2036 Reviewed by Simon Fraser.
2038 Change the layout with resize test of the MathML underover object from being render tree test
2039 to be reference test. The render test was failing on WK2 because it was doing window resizing
2040 and view zooming. The new test rely solely on forcing the layout synchronously by resizing the
2041 math container <div> element.
2043 * mathml/opentype/munderover-layout-resize-expected.html: Added.
2044 * mathml/opentype/munderover-layout-resize.html: Added.
2045 * mathml/opentype/munderover-window-resize-expected.txt: Removed.
2046 * mathml/opentype/munderover-window-resize.html: Removed.
2048 2014-10-10 Benjamin Poulain <benjamin@webkit.org>
2050 Update :nth-child(An+B of selector-list) to the latest specification
2051 https://bugs.webkit.org/show_bug.cgi?id=137593
2053 Reviewed by Andreas Kling.
2055 * fast/selectors/nth-child-of-chained-3-expected.txt: Added.
2056 * fast/selectors/nth-child-of-chained-3.html: Added.
2057 This is an interesting new case with the new definition. Since the initial
2058 element must also match the selector, it is now possible to fail even
2059 if the combination An+B can match anything.
2061 * fast/css/nth-child-of-classname-expected.html:
2062 * fast/css/nth-child-of-classname.html:
2063 * fast/css/nth-child-of-compound-selector-expected.html:
2064 * fast/css/nth-child-of-compound-selector.html:
2065 * fast/css/nth-child-of-tagname-expected.html:
2066 * fast/css/nth-child-of-tagname.html:
2067 * fast/selectors/nth-child-of-backtracking-adjacent-2.html:
2068 * fast/selectors/nth-child-of-backtracking-adjacent.html:
2069 * fast/selectors/nth-child-of-basics-2-expected.txt:
2070 * fast/selectors/nth-child-of-basics-2.html:
2071 * fast/selectors/nth-child-of-basics-expected.txt:
2072 * fast/selectors/nth-child-of-basics.html:
2073 * fast/selectors/nth-child-of-chained-2-expected.txt:
2074 * fast/selectors/nth-child-of-chained-2.html:
2075 * fast/selectors/nth-child-of-complex-selectors-expected.txt:
2076 * fast/selectors/nth-child-of-complex-selectors.html:
2077 * fast/selectors/nth-child-of-never-matching-selector-expected.txt:
2078 * fast/selectors/nth-child-of-never-matching-selector.html:
2079 * fast/selectors/nth-child-of-selector-list-expected.txt:
2080 * fast/selectors/nth-child-of-selector-list.html:
2081 Updating the test and tests result for the new definition.
2083 2014-10-10 Andy Estes <aestes@apple.com>
2085 [Mac] Update a Mavericks-specific baseline.
2087 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt:
2089 2014-10-10 Simon Fraser <simon.fraser@apple.com>
2091 Skip some tests that timeout every time.
2093 * platform/mac/TestExpectations:
2095 2014-10-10 Andy Estes <aestes@apple.com>
2097 [Mac] Re-enable some compositing/rtl/ tests that acquired correct baselines in r174589
2099 * platform/mac/TestExpectations:
2101 2014-10-10 Andy Estes <aestes@apple.com>
2103 Only run platform/mac/editing/input/undo-grouping-on-text-insertion.html on Yosemite
2105 * platform/mac-mavericks/TestExpectations: Added.
2106 * platform/mac/TestExpectations:
2108 2014-10-10 Carlos Alberto Lopez Perez <clopez@igalia.com>
2110 [GTK] Unreviewed GTK gardening.
2112 * platform/gtk/TestExpectations: Mark and report test failing after r137615 and r174540.
2113 * platform/gtk/mathml/opentype/munderover-window-resize-expected.txt: Added. Rebaseline after r174540.
2114 * platform/gtk/mathml/opentype/opentype-stretchy-horizontal-expected.txt: Rebaseline after r174540.
2116 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2118 iOS Simulator results for fast/css-generated-content, css-grid-layout tests.
2120 * platform/ios-simulator/fast/css-generated-content/*: Added.
2121 * platform/ios-simulator/fast/css-grid-layout/*: Added.
2123 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2125 iOS Simulator results for fast/css tests.
2127 * platform/ios-simulator/fast/css/*: Added
2129 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2131 iOS Simulator results for fast/box-shadow, box-sizing, canvas, clip and compact tests.
2133 * platform/ios-simulator/TestExpectations:
2134 * platform/ios-simulator/fast/box-shadow/*
2135 * platform/ios-simulator/fast/box-sizing/*: Added.
2136 * platform/ios-simulator/fast/canvas/*: Added.
2137 * platform/ios-simulator/fast/clip/*: Added.
2138 * platform/ios-simulator/fast/compact/*: Added.
2140 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2142 iOS Simulator results for fast/borders tests.
2144 * platform/ios-simulator/fast/borders/*: Added
2146 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2148 iOS Simulator results for fast/body-propagation tests.
2150 * platform/ios-simulator/fast/body-propagation/*: Added
2152 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2154 iOS Simulator results for fast/block tests.
2156 * platform/ios-simulator/fast/block/*: Added
2158 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2160 Skip fast/animation in the iOS Simulator.
2161 Add results for fast/backgrounds
2163 * platform/ios-simulator/TestExpectations:
2164 * platform/ios-simulator/fast/backgrounds/*: Added.
2166 2014-10-10 Andy Estes <aestes@apple.com>
2168 Add a mac-mountainlion result for delete-autocorrected-word-2.html.
2170 * platform/mac-mountainlion/platform/mac/editing/spelling/delete-autocorrected-word-2-expected.txt: Added.
2172 2014-10-10 Andy Estes <aestes@apple.com>
2174 [Mountain Lion] Fix global-constructors-attributes.html
2176 Get rid of the platform/mac-wk2/ result since it's identical to the platform/mac/ version.
2178 * platform/mac-wk2/js/dom/global-constructors-attributes-expected.txt: Removed.
2180 2014-10-10 Andy Estes <aestes@apple.com>
2182 Fixes for additional Mavericks test failures.
2184 * platform/mac-mavericks/compositing/fixed-image-loading-expected.txt: Added.
2185 * platform/mac-mavericks/compositing/rtl/rtl-fixed-expected.png: Added.
2186 * platform/mac-mavericks/compositing/rtl/rtl-fixed-expected.txt: Added.
2187 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-expected.png: Added.
2188 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-expected.txt: Added.
2189 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Added.
2190 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Added.
2191 * platform/mac-mavericks/fast/repaint/selection-gap-fixed-child-expected.txt: Added.
2192 * platform/mac-mavericks/fast/repaint/selection-gap-flipped-fixed-child-expected.txt: Added.
2194 2014-10-10 Simon Fraser <simon.fraser@apple.com>
2196 Some more Mac TestExpectation tweaking.
2198 * platform/mac-wk2/TestExpectations:
2199 * platform/mac/TestExpectations:
2201 2014-10-10 Andy Estes <aestes@apple.com>
2203 Fix some Mavericks test failures caused by r174585.
2205 * platform/mac-mavericks/fast/css/resize-corner-tracking-expected.txt: Added.
2206 * platform/mac-mavericks/fast/events/shadow-event-path-2-expected.txt: Added.
2207 * platform/mac-mavericks/platform/mac/fast/text/systemFont-expected.txt: Renamed from LayoutTests/platform/mac-mountainlion/platform/mac/fast/text/systemFont-expected.txt.
2208 * platform/mac-mavericks/platform/mac/fast/text/vertical-no-sideways-expected.txt: Renamed from LayoutTests/platform/mac-mountainlion/platform/mac/fast/text/vertical-no-sideways-expected.txt.
2210 2014-10-10 Andy Estes <aestes@apple.com>
2212 Added Yosemite expected results and TestExpections to platform/mac/.
2214 To-be-overwritten files in platform/mac/ were first moved to platform/mac-mavericks/.
2216 * platform/mac-mavericks/accessibility/aria-readonly-expected.txt: Copied from LayoutTests/platform/mac/accessibility/aria-readonly-expected.txt.
2217 * platform/mac-mavericks/accessibility/roles-exposed-expected.txt: Copied from LayoutTests/platform/mac/accessibility/roles-exposed-expected.txt.
2218 * platform/mac-mavericks/compositing/contents-opaque/control-layer-expected.txt: Copied from LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt.
2219 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-161-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.png.
2220 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-19b-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.png.
2221 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-19b-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt.
2222 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-23-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.png.
2223 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-23-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt.
2224 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-24-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.png.
2225 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-24-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt.
2226 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-64-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.png.
2227 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-64-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt.
2228 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-68-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.png.
2229 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-68-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt.
2230 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-69-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.png.
2231 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-69-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt.
2232 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-161-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.png.
2233 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-19b-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.png.
2234 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt.
2235 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-23-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.png.
2236 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt.
2237 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-24-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.png.
2238 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt.
2239 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-64-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.png.
2240 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt.
2241 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-68-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.png.
2242 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt.
2243 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-69-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.png.
2244 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt.
2245 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-161-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-161-expected.png.
2246 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-19b-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.png.
2247 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-19b-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt.
2248 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-23-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-23-expected.png.
2249 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-23-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt.
2250 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-24-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-24-expected.png.
2251 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-24-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt.
2252 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-64-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-64-expected.png.
2253 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-64-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt.
2254 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-68-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-68-expected.png.
2255 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-68-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt.
2256 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-69-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-69-expected.png.
2257 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-69-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt.
2258 * platform/mac-mavericks/editing/input/caret-at-the-edge-of-input-expected.txt: Copied from LayoutTests/platform/mac/editing/input/caret-at-the-edge-of-input-expected.txt.
2259 * platform/mac-mavericks/editing/input/reveal-caret-of-multiline-input-expected.txt: Copied from LayoutTests/platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt.
2260 * platform/mac-mavericks/editing/inserting/4960120-1-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/4960120-1-expected.png.
2261 * platform/mac-mavericks/editing/inserting/4960120-1-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/4960120-1-expected.txt.
2262 * platform/mac-mavericks/editing/inserting/before-after-input-element-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/before-after-input-element-expected.png.
2263 * platform/mac-mavericks/editing/inserting/before-after-input-element-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/before-after-input-element-expected.txt.
2264 * platform/mac-mavericks/editing/pasteboard/4641033-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4641033-expected.png.
2265 * platform/mac-mavericks/editing/pasteboard/4806874-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4806874-expected.png.
2266 * platform/mac-mavericks/editing/pasteboard/4806874-expected.txt: Copied from LayoutTests/platform/mac/editing/pasteboard/4806874-expected.txt.
2267 * platform/mac-mavericks/editing/pasteboard/4944770-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4944770-1-expected.png.
2268 * platform/mac-mavericks/editing/pasteboard/4944770-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4944770-2-expected.png.
2269 * platform/mac-mavericks/editing/pasteboard/drop-text-without-selection-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/drop-text-without-selection-expected.png.
2270 * platform/mac-mavericks/editing/pasteboard/drop-text-without-selection-expected.txt: Copied from LayoutTests/platform/mac/editing/pasteboard/drop-text-without-selection-expected.txt.
2271 * platform/mac-mavericks/editing/pasteboard/input-field-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/input-field-1-expected.png.
2272 * platform/mac-mavericks/editing/pasteboard/input-field-1-expected.txt: Copied from LayoutTests/platform/mac/editing/pasteboard/input-field-1-expected.txt.
2273 * platform/mac-mavericks/editing/pasteboard/pasting-tabs-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/pasting-tabs-expected.png.
2274 * platform/mac-mavericks/editing/pasteboard/pasting-tabs-expected.txt: Copied from LayoutTests/platform/mac/editing/pasteboard/pasting-tabs-expected.txt.
2275 * platform/mac-mavericks/editing/selection/3690703-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/3690703-2-expected.png.
2276 * platform/mac-mavericks/editing/selection/3690703-2-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/3690703-2-expected.txt.
2277 * platform/mac-mavericks/editing/selection/3690703-expected.png: Copied from LayoutTests/platform/mac/editing/selection/3690703-expected.png.
2278 * platform/mac-mavericks/editing/selection/3690703-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/3690703-expected.txt.
2279 * platform/mac-mavericks/editing/selection/3690719-expected.png: Copied from LayoutTests/platform/mac/editing/selection/3690719-expected.png.
2280 * platform/mac-mavericks/editing/selection/3690719-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/3690719-expected.txt.
2281 * platform/mac-mavericks/editing/selection/4397952-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4397952-expected.png.
2282 * platform/mac-mavericks/editing/selection/4397952-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/4397952-expected.txt.
2283 * platform/mac-mavericks/editing/selection/4895428-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4895428-3-expected.png.
2284 * platform/mac-mavericks/editing/selection/4895428-3-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/4895428-3-expected.txt.
2285 * platform/mac-mavericks/editing/selection/4975120-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4975120-expected.png.
2286 * platform/mac-mavericks/editing/selection/4975120-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/4975120-expected.txt.
2287 * platform/mac-mavericks/editing/selection/5240265-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5240265-expected.png.
2288 * platform/mac-mavericks/editing/selection/caret-before-select-expected.png: Copied from LayoutTests/platform/mac/editing/selection/caret-before-select-expected.png.
2289 * platform/mac-mavericks/editing/selection/drag-select-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/drag-select-1-expected.png.
2290 * platform/mac-mavericks/editing/selection/drag-select-1-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/drag-select-1-expected.txt.
2291 * platform/mac-mavericks/editing/selection/replaced-boundaries-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-3-expected.png.
2292 * platform/mac-mavericks/editing/selection/replaced-boundaries-3-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-3-expected.txt.
2293 * platform/mac-mavericks/editing/selection/select-across-readonly-input-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-1-expected.png.
2294 * platform/mac-mavericks/editing/selection/select-across-readonly-input-1-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-1-expected.txt.
2295 * platform/mac-mavericks/editing/selection/select-across-readonly-input-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-2-expected.png.
2296 * platform/mac-mavericks/editing/selection/select-across-readonly-input-2-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-2-expected.txt.
2297 * platform/mac-mavericks/editing/selection/select-across-readonly-input-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-3-expected.png.
2298 * platform/mac-mavericks/editing/selection/select-across-readonly-input-3-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-3-expected.txt.
2299 * platform/mac-mavericks/editing/selection/select-across-readonly-input-4-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-4-expected.png.
2300 * platform/mac-mavericks/editing/selection/select-across-readonly-input-4-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-4-expected.txt.
2301 * platform/mac-mavericks/editing/selection/select-across-readonly-input-5-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-5-expected.png.
2302 * platform/mac-mavericks/editing/selection/select-across-readonly-input-5-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/select-across-readonly-input-5-expected.txt.
2303 * platform/mac-mavericks/editing/selection/select-box-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-box-expected.png.
2304 * platform/mac-mavericks/editing/selection/select-element-paragraph-boundary-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-element-paragraph-boundary-expected.png.
2305 * platform/mac-mavericks/editing/selection/select-from-textfield-outwards-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-from-textfield-outwards-expected.png.
2306 * platform/mac-mavericks/editing/selection/select-from-textfield-outwards-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/select-from-textfield-outwards-expected.txt.
2307 * platform/mac-mavericks/editing/selection/selection-button-text-expected.png: Copied from LayoutTests/platform/mac/editing/selection/selection-button-text-expected.png.
2308 * platform/mac-mavericks/editing/selection/selection-button-text-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/selection-button-text-expected.txt.
2309 * platform/mac-mavericks/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt.
2310 * platform/mac-mavericks/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt.
2311 * platform/mac-mavericks/fast/block/lineboxcontain/block-with-ideographs-expected.png: Copied from LayoutTests/platform/mac/fast/block/lineboxcontain/block-with-ideographs-expected.png.
2312 * platform/mac-mavericks/fast/block/lineboxcontain/block-with-ideographs-expected.txt: Copied from LayoutTests/platform/mac/fast/block/lineboxcontain/block-with-ideographs-expected.txt.
2313 * platform/mac-mavericks/fast/block/margin-collapse/103-expected.png: Copied from LayoutTests/platform/mac/fast/block/margin-collapse/103-expected.png.
2314 * platform/mac-mavericks/fast/block/margin-collapse/103-expected.txt: Copied from LayoutTests/platform/mac/fast/block/margin-collapse/103-expected.txt.
2315 * platform/mac-mavericks/fast/block/positioning/inline-block-relposition-expected.png: Copied from LayoutTests/platform/mac/fast/block/positioning/inline-block-relposition-expected.png.
2316 * platform/mac-mavericks/fast/block/positioning/inline-block-relposition-expected.txt: Copied from LayoutTests/platform/mac/fast/block/positioning/inline-block-relposition-expected.txt.
2317 * platform/mac-mavericks/fast/css/continuationCrash-expected.png: Copied from LayoutTests/platform/mac/fast/css/continuationCrash-expected.png.
2318 * platform/mac-mavericks/fast/css/continuationCrash-expected.txt: Copied from LayoutTests/platform/mac/fast/css/continuationCrash-expected.txt.
2319 * platform/mac-mavericks/fast/css/css2-system-fonts-expected.png: Copied from LayoutTests/platform/mac/fast/css/css2-system-fonts-expected.png.
2320 * platform/mac-mavericks/fast/css/css2-system-fonts-expected.txt: Copied from LayoutTests/platform/mac/fast/css/css2-system-fonts-expected.txt.
2321 * platform/mac-mavericks/fast/css/font-family-pictograph-expected.txt: Copied from LayoutTests/platform/mac/fast/css/font-family-pictograph-expected.txt.
2322 * platform/mac-mavericks/fast/css/input-search-padding-expected.png: Copied from LayoutTests/platform/mac/fast/css/input-search-padding-expected.png.
2323 * platform/mac-mavericks/fast/css/line-height-expected.png: Copied from LayoutTests/platform/mac/fast/css/line-height-expected.png.
2324 * platform/mac-mavericks/fast/css/line-height-expected.txt: Copied from LayoutTests/platform/mac/fast/css/line-height-expected.txt.
2325 * platform/mac-mavericks/fast/css/margin-top-bottom-dynamic-expected.png: Copied from LayoutTests/platform/mac/fast/css/margin-top-bottom-dynamic-expected.png.
2326 * platform/mac-mavericks/fast/css/margin-top-bottom-dynamic-expected.txt: Copied from LayoutTests/platform/mac/fast/css/margin-top-bottom-dynamic-expected.txt.
2327 * platform/mac-mavericks/fast/css/resize-corner-tracking-expected.png: Copied from LayoutTests/platform/mac/fast/css/resize-corner-tracking-expected.png.
2328 * platform/mac-mavericks/fast/css/rtl-ordering-expected.png: Copied from LayoutTests/platform/mac/fast/css/rtl-ordering-expected.png.
2329 * platform/mac-mavericks/fast/css/rtl-ordering-expected.txt: Copied from LayoutTests/platform/mac/fast/css/rtl-ordering-expected.txt.
2330 * platform/mac-mavericks/fast/css/text-input-with-webkit-border-radius-expected.png: Copied from LayoutTests/platform/mac/fast/css/text-input-with-webkit-border-radius-expected.png.
2331 * platform/mac-mavericks/fast/css/text-input-with-webkit-border-radius-expected.txt: Copied from LayoutTests/platform/mac/fast/css/text-input-with-webkit-border-radius-expected.txt.
2332 * platform/mac-mavericks/fast/css/text-overflow-input-expected.png: Copied from LayoutTests/platform/mac/fast/css/text-overflow-input-expected.png.
2333 * platform/mac-mavericks/fast/css/text-overflow-input-expected.txt: Copied from LayoutTests/platform/mac/fast/css/text-overflow-input-expected.txt.
2334 * platform/mac-mavericks/fast/css/text-transform-select-expected.png: Copied from LayoutTests/platform/mac/fast/css/text-transform-select-expected.png.
2335 * platform/mac-mavericks/fast/css/text-transform-select-expected.txt: Copied from LayoutTests/platform/mac/fast/css/text-transform-select-expected.txt.
2336 * platform/mac-mavericks/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Copied from LayoutTests/platform/mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.png.
2337 * platform/mac-mavericks/fast/dom/HTMLInputElement/input-image-alt-text-expected.txt: Copied from LayoutTests/platform/mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.txt.
2338 * platform/mac-mavericks/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Copied from LayoutTests/platform/mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png.
2339 * platform/mac-mavericks/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt: Copied from LayoutTests/platform/mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt.
2340 * platform/mac-mavericks/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Copied from LayoutTests/platform/mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png.
2341 * platform/mac-mavericks/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: Copied from LayoutTests/platform/mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt.
2342 * platform/mac-mavericks/fast/dom/isindex-001-expected.png: Copied from LayoutTests/platform/mac/fast/dom/isindex-001-expected.png.
2343 * platform/mac-mavericks/fast/dom/isindex-001-expected.txt: Copied from LayoutTests/platform/mac/fast/dom/isindex-001-expected.txt.
2344 * platform/mac-mavericks/fast/dom/isindex-002-expected.png: Copied from LayoutTests/platform/mac/fast/dom/isindex-002-expected.png.
2345 * platform/mac-mavericks/fast/dom/isindex-002-expected.txt: Copied from LayoutTests/platform/mac/fast/dom/isindex-002-expected.txt.
2346 * platform/mac-mavericks/fast/dynamic/008-expected.png: Copied from LayoutTests/platform/mac/fast/dynamic/008-expected.png.
2347 * platform/mac-mavericks/fast/dynamic/008-expected.txt: Copied from LayoutTests/platform/mac/fast/dynamic/008-expected.txt.
2348 * platform/mac-mavericks/fast/dynamic/positioned-movement-with-positioned-children-expected.png: Copied from LayoutTests/platform/mac/fast/dynamic/positioned-movement-with-positioned-children-expected.png.
2349 * platform/mac-mavericks/fast/dynamic/positioned-movement-with-positioned-children-expected.txt: Copied from LayoutTests/platform/mac/fast/dynamic/positioned-movement-with-positioned-children-expected.txt.
2350 * platform/mac-mavericks/fast/encoding/denormalised-voiced-japanese-chars-expected.txt: Copied from LayoutTests/platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.txt.
2351 * platform/mac-mavericks/fast/events/context-no-deselect-expected.png: Copied from LayoutTests/platform/mac/fast/events/context-no-deselect-expected.png.
2352 * platform/mac-mavericks/fast/events/context-no-deselect-expected.txt: Copied from LayoutTests/platform/mac/fast/events/context-no-deselect-expected.txt.
2353 * platform/mac-mavericks/fast/forms/001-expected.png: Copied from LayoutTests/platform/mac/fast/forms/001-expected.png.
2354 * platform/mac-mavericks/fast/forms/001-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/001-expected.txt.
2355 * platform/mac-mavericks/fast/forms/003-expected.png: Copied from LayoutTests/platform/mac/fast/forms/003-expected.png.
2356 * platform/mac-mavericks/fast/forms/003-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/003-expected.txt.
2357 * platform/mac-mavericks/fast/forms/004-expected.png: Copied from LayoutTests/platform/mac/fast/forms/004-expected.png.
2358 * platform/mac-mavericks/fast/forms/004-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/004-expected.txt.
2359 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label01-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label01-expected.png.
2360 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label01-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label01-expected.txt.
2361 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label02-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label02-expected.png.
2362 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label02-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label02-expected.txt.
2363 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label03-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label03-expected.png.
2364 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label04-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label04-expected.png.
2365 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label04-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label04-expected.txt.
2366 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label05-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label05-expected.png.
2367 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label05-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label05-expected.txt.
2368 * platform/mac-mavericks/fast/forms/basic-buttons-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-buttons-expected.png.
2369 * platform/mac-mavericks/fast/forms/basic-buttons-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-buttons-expected.txt.
2370 * platform/mac-mavericks/fast/forms/basic-inputs-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-inputs-expected.png.
2371 * platform/mac-mavericks/fast/forms/basic-inputs-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-inputs-expected.txt.
2372 * platform/mac-mavericks/fast/forms/basic-selects-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-selects-expected.png.
2373 * platform/mac-mavericks/fast/forms/basic-selects-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-selects-expected.txt.
2374 * platform/mac-mavericks/fast/forms/basic-textareas-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-textareas-expected.png.
2375 * platform/mac-mavericks/fast/forms/basic-textareas-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-textareas-expected.txt.
2376 * platform/mac-mavericks/fast/forms/basic-textareas-quirks-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-textareas-quirks-expected.png.
2377 * platform/mac-mavericks/fast/forms/basic-textareas-quirks-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-textareas-quirks-expected.txt.
2378 * platform/mac-mavericks/fast/forms/blankbuttons-expected.png: Copied from LayoutTests/platform/mac/fast/forms/blankbuttons-expected.png.
2379 * platform/mac-mavericks/fast/forms/blankbuttons-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/blankbuttons-expected.txt.
2380 * platform/mac-mavericks/fast/forms/box-shadow-override-expected.png: Copied from LayoutTests/platform/mac/fast/forms/box-shadow-override-expected.png.
2381 * platform/mac-mavericks/fast/forms/box-shadow-override-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/box-shadow-override-expected.txt.
2382 * platform/mac-mavericks/fast/forms/button-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-align-expected.png.
2383 * platform/mac-mavericks/fast/forms/button-cannot-be-nested-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-cannot-be-nested-expected.png.
2384 * platform/mac-mavericks/fast/forms/button-cannot-be-nested-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-cannot-be-nested-expected.txt.
2385 * platform/mac-mavericks/fast/forms/button-default-title-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-default-title-expected.png.
2386 * platform/mac-mavericks/fast/forms/button-default-title-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-default-title-expected.txt.
2387 * platform/mac-mavericks/fast/forms/button-generated-content-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-generated-content-expected.png.
2388 * platform/mac-mavericks/fast/forms/button-generated-content-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-generated-content-expected.txt.
2389 * platform/mac-mavericks/fast/forms/button-positioned-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-positioned-expected.png.
2390 * platform/mac-mavericks/fast/forms/button-positioned-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-positioned-expected.txt.
2391 * platform/mac-mavericks/fast/forms/button-sizes-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-sizes-expected.png.
2392 * platform/mac-mavericks/fast/forms/button-sizes-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-sizes-expected.txt.
2393 * platform/mac-mavericks/fast/forms/button-style-color-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-style-color-expected.png.
2394 * platform/mac-mavericks/fast/forms/button-style-color-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-style-color-expected.txt.
2395 * platform/mac-mavericks/fast/forms/button-table-styles-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-table-styles-expected.png.
2396 * platform/mac-mavericks/fast/forms/button-table-styles-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-table-styles-expected.txt.
2397 * platform/mac-mavericks/fast/forms/button-text-transform-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-text-transform-expected.png.
2398 * platform/mac-mavericks/fast/forms/button-text-transform-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-text-transform-expected.txt.
2399 * platform/mac-mavericks/fast/forms/button-white-space-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-white-space-expected.png.
2400 * platform/mac-mavericks/fast/forms/button-white-space-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-white-space-expected.txt.
2401 * platform/mac-mavericks/fast/forms/control-clip-expected.png: Copied from LayoutTests/platform/mac/fast/forms/control-clip-expected.png.
2402 * platform/mac-mavericks/fast/forms/control-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/control-clip-expected.txt.
2403 * platform/mac-mavericks/fast/forms/control-clip-overflow-expected.png: Copied from LayoutTests/platform/mac/fast/forms/control-clip-overflow-expected.png.
2404 * platform/mac-mavericks/fast/forms/control-clip-overflow-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/control-clip-overflow-expected.txt.
2405 * platform/mac-mavericks/fast/forms/control-restrict-line-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/control-restrict-line-height-expected.png.
2406 * platform/mac-mavericks/fast/forms/control-restrict-line-height-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/control-restrict-line-height-expected.txt.
2407 * platform/mac-mavericks/fast/forms/disabled-select-change-index-expected.png: Copied from LayoutTests/platform/mac/fast/forms/disabled-select-change-index-expected.png.
2408 * platform/mac-mavericks/fast/forms/disabled-select-change-index-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/disabled-select-change-index-expected.txt.
2409 * platform/mac-mavericks/fast/forms/encoding-test-expected.png: Copied from LayoutTests/platform/mac/fast/forms/encoding-test-expected.png.
2410 * platform/mac-mavericks/fast/forms/encoding-test-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/encoding-test-expected.txt.
2411 * platform/mac-mavericks/fast/forms/fieldset-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/fieldset-align-expected.png.
2412 * platform/mac-mavericks/fast/forms/fieldset-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/fieldset-align-expected.txt.
2413 * platform/mac-mavericks/fast/forms/file/file-input-direction-expected.png: Copied from LayoutTests/platform/mac/fast/forms/file/file-input-direction-expected.png.
2414 * platform/mac-mavericks/fast/forms/file/file-input-direction-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/file/file-input-direction-expected.txt.
2415 * platform/mac-mavericks/fast/forms/file/file-input-disabled-expected.png: Copied from LayoutTests/platform/mac/fast/forms/file/file-input-disabled-expected.png.
2416 * platform/mac-mavericks/fast/forms/file/file-input-disabled-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/file/file-input-disabled-expected.txt.
2417 * platform/mac-mavericks/fast/forms/file/input-file-re-render-expected.png: Copied from LayoutTests/platform/mac/fast/forms/file/input-file-re-render-expected.png.
2418 * platform/mac-mavericks/fast/forms/file/input-file-re-render-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/file/input-file-re-render-expected.txt.
2419 * platform/mac-mavericks/fast/forms/floating-textfield-relayout-expected.png: Copied from LayoutTests/platform/mac/fast/forms/floating-textfield-relayout-expected.png.
2420 * platform/mac-mavericks/fast/forms/form-element-geometry-expected.png: Copied from LayoutTests/platform/mac/fast/forms/form-element-geometry-expected.png.
2421 * platform/mac-mavericks/fast/forms/form-element-geometry-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/form-element-geometry-expected.txt.
2422 * platform/mac-mavericks/fast/forms/formmove3-expected.png: Copied from LayoutTests/platform/mac/fast/forms/formmove3-expected.png.
2423 * platform/mac-mavericks/fast/forms/formmove3-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/formmove3-expected.txt.
2424 * platform/mac-mavericks/fast/forms/hidden-listbox-expected.png: Copied from LayoutTests/platform/mac/fast/forms/hidden-listbox-expected.png.
2425 * platform/mac-mavericks/fast/forms/hidden-listbox-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/hidden-listbox-expected.txt.
2426 * platform/mac-mavericks/fast/forms/input-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-align-expected.png.
2427 * platform/mac-mavericks/fast/forms/input-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-align-expected.txt.
2428 * platform/mac-mavericks/fast/forms/input-appearance-bkcolor-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-bkcolor-expected.png.
2429 * platform/mac-mavericks/fast/forms/input-appearance-bkcolor-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-bkcolor-expected.txt.
2430 * platform/mac-mavericks/fast/forms/input-appearance-default-bkcolor-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-default-bkcolor-expected.png.
2431 * platform/mac-mavericks/fast/forms/input-appearance-default-bkcolor-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-default-bkcolor-expected.txt.
2432 * platform/mac-mavericks/fast/forms/input-appearance-disabled-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-disabled-expected.png.
2433 * platform/mac-mavericks/fast/forms/input-appearance-disabled-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-disabled-expected.txt.
2434 * platform/mac-mavericks/fast/forms/input-appearance-focus-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-focus-expected.png.
2435 * platform/mac-mavericks/fast/forms/input-appearance-focus-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-focus-expected.txt.
2436 * platform/mac-mavericks/fast/forms/input-appearance-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-height-expected.png.
2437 * platform/mac-mavericks/fast/forms/input-appearance-height-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-height-expected.txt.
2438 * platform/mac-mavericks/fast/forms/input-appearance-preventDefault-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-preventDefault-expected.png.
2439 * platform/mac-mavericks/fast/forms/input-appearance-preventDefault-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-preventDefault-expected.txt.
2440 * platform/mac-mavericks/fast/forms/input-appearance-readonly-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-readonly-expected.png.
2441 * platform/mac-mavericks/fast/forms/input-appearance-readonly-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-readonly-expected.txt.
2442 * platform/mac-mavericks/fast/forms/input-appearance-selection-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-selection-expected.png.
2443 * platform/mac-mavericks/fast/forms/input-appearance-selection-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-selection-expected.txt.
2444 * platform/mac-mavericks/fast/forms/input-appearance-visibility-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-visibility-expected.png.
2445 * platform/mac-mavericks/fast/forms/input-appearance-visibility-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-visibility-expected.txt.
2446 * platform/mac-mavericks/fast/forms/input-appearance-width-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-width-expected.png.
2447 * platform/mac-mavericks/fast/forms/input-appearance-width-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-width-expected.txt.
2448 * platform/mac-mavericks/fast/forms/input-baseline-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-baseline-expected.png.
2449 * platform/mac-mavericks/fast/forms/input-baseline-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-baseline-expected.txt.
2450 * platform/mac-mavericks/fast/forms/input-button-sizes-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-button-sizes-expected.png.
2451 * platform/mac-mavericks/fast/forms/input-button-sizes-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-button-sizes-expected.txt.
2452 * platform/mac-mavericks/fast/forms/input-disabled-color-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-disabled-color-expected.png.
2453 * platform/mac-mavericks/fast/forms/input-disabled-color-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-disabled-color-expected.txt.
2454 * platform/mac-mavericks/fast/forms/input-double-click-selection-gap-bug-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-double-click-selection-gap-bug-expected.png.
2455 * platform/mac-mavericks/fast/forms/input-double-click-selection-gap-bug-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-double-click-selection-gap-bug-expected.txt.
2456 * platform/mac-mavericks/fast/forms/input-field-text-truncated-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-field-text-truncated-expected.png.
2457 * platform/mac-mavericks/fast/forms/input-field-text-truncated-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-field-text-truncated-expected.txt.
2458 * platform/mac-mavericks/fast/forms/input-first-letter-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-first-letter-expected.png.
2459 * platform/mac-mavericks/fast/forms/input-placeholder-visibility-1-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-placeholder-visibility-1-expected.png.
2460 * platform/mac-mavericks/fast/forms/input-placeholder-visibility-1-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-placeholder-visibility-1-expected.txt.
2461 * platform/mac-mavericks/fast/forms/input-placeholder-visibility-3-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-placeholder-visibility-3-expected.png.
2462 * platform/mac-mavericks/fast/forms/input-placeholder-visibility-3-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-placeholder-visibility-3-expected.txt.
2463 * platform/mac-mavericks/fast/forms/input-readonly-autoscroll-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-autoscroll-expected.png.
2464 * platform/mac-mavericks/fast/forms/input-readonly-autoscroll-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-autoscroll-expected.txt.
2465 * platform/mac-mavericks/fast/forms/input-readonly-dimmed-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-dimmed-expected.png.
2466 * platform/mac-mavericks/fast/forms/input-readonly-dimmed-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-dimmed-expected.txt.
2467 * platform/mac-mavericks/fast/forms/input-readonly-empty-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-empty-expected.png.
2468 * platform/mac-mavericks/fast/forms/input-readonly-empty-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-empty-expected.txt.
2469 * platform/mac-mavericks/fast/forms/input-spaces-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-spaces-expected.png.
2470 * platform/mac-mavericks/fast/forms/input-spaces-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-spaces-expected.txt.
2471 * platform/mac-mavericks/fast/forms/input-table-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-table-expected.png.
2472 * platform/mac-mavericks/fast/forms/input-table-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-table-expected.txt.
2473 * platform/mac-mavericks/fast/forms/input-text-click-inside-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-click-inside-expected.png.
2474 * platform/mac-mavericks/fast/forms/input-text-click-inside-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-click-inside-expected.txt.
2475 * platform/mac-mavericks/fast/forms/input-text-click-outside-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-click-outside-expected.png.
2476 * platform/mac-mavericks/fast/forms/input-text-click-outside-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-click-outside-expected.txt.
2477 * platform/mac-mavericks/fast/forms/input-text-double-click-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-double-click-expected.png.
2478 * platform/mac-mavericks/fast/forms/input-text-double-click-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-double-click-expected.txt.
2479 * platform/mac-mavericks/fast/forms/input-text-drag-down-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-drag-down-expected.png.
2480 * platform/mac-mavericks/fast/forms/input-text-drag-down-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-drag-down-expected.txt.
2481 * platform/mac-mavericks/fast/forms/input-text-option-delete-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-option-delete-expected.png.
2482 * platform/mac-mavericks/fast/forms/input-text-option-delete-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-option-delete-expected.txt.
2483 * platform/mac-mavericks/fast/forms/input-text-scroll-left-on-blur-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-scroll-left-on-blur-expected.png.
2484 * platform/mac-mavericks/fast/forms/input-text-scroll-left-on-blur-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-scroll-left-on-blur-expected.txt.
2485 * platform/mac-mavericks/fast/forms/input-text-self-emptying-click-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-self-emptying-click-expected.png.
2486 * platform/mac-mavericks/fast/forms/input-text-self-emptying-click-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-self-emptying-click-expected.txt.
2487 * platform/mac-mavericks/fast/forms/input-text-word-wrap-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-word-wrap-expected.png.
2488 * platform/mac-mavericks/fast/forms/input-text-word-wrap-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-word-wrap-expected.txt.
2489 * platform/mac-mavericks/fast/forms/input-type-text-min-width-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-type-text-min-width-expected.png.
2490 * platform/mac-mavericks/fast/forms/input-type-text-min-width-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-type-text-min-width-expected.txt.
2491 * platform/mac-mavericks/fast/forms/input-value-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-value-expected.png.
2492 * platform/mac-mavericks/fast/forms/input-value-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-value-expected.txt.
2493 * platform/mac-mavericks/fast/forms/input-width-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-width-expected.png.
2494 * platform/mac-mavericks/fast/forms/input-width-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-width-expected.txt.
2495 * platform/mac-mavericks/fast/forms/listbox-bidi-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/listbox-bidi-align-expected.txt.
2496 * platform/mac-mavericks/fast/forms/listbox-hit-test-zoomed-expected.png: Copied from LayoutTests/platform/mac/fast/forms/listbox-hit-test-zoomed-expected.png.
2497 * platform/mac-mavericks/fast/forms/listbox-scrollbar-incremental-load-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/listbox-scrollbar-incremental-load-expected.txt.
2498 * platform/mac-mavericks/fast/forms/listbox-width-change-expected.png: Copied from LayoutTests/platform/mac/fast/forms/listbox-width-change-expected.png.
2499 * platform/mac-mavericks/fast/forms/listbox-width-change-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/listbox-width-change-expected.txt.
2500 * platform/mac-mavericks/fast/forms/menulist-clip-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-clip-expected.png.
2501 * platform/mac-mavericks/fast/forms/menulist-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-clip-expected.txt.
2502 * platform/mac-mavericks/fast/forms/menulist-deselect-update-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-deselect-update-expected.png.
2503 * platform/mac-mavericks/fast/forms/menulist-deselect-update-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-deselect-update-expected.txt.
2504 * platform/mac-mavericks/fast/forms/menulist-no-overflow-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-no-overflow-expected.png.
2505 * platform/mac-mavericks/fast/forms/menulist-no-overflow-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-no-overflow-expected.txt.
2506 * platform/mac-mavericks/fast/forms/menulist-option-wrap-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-option-wrap-expected.png.
2507 * platform/mac-mavericks/fast/forms/menulist-option-wrap-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-option-wrap-expected.txt.
2508 * platform/mac-mavericks/fast/forms/menulist-restrict-line-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-restrict-line-height-expected.png.
2509 * platform/mac-mavericks/fast/forms/menulist-restrict-line-height-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-restrict-line-height-expected.txt.
2510 * platform/mac-mavericks/fast/forms/menulist-style-color-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-style-color-expected.png.
2511 * platform/mac-mavericks/fast/forms/menulist-style-color-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-style-color-expected.txt.
2512 * platform/mac-mavericks/fast/forms/menulist-width-change-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-width-change-expected.png.
2513 * platform/mac-mavericks/fast/forms/menulist-width-change-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-width-change-expected.txt.
2514 * platform/mac-mavericks/fast/forms/minWidthPercent-expected.png: Copied from LayoutTests/platform/mac/fast/forms/minWidthPercent-expected.png.
2515 * platform/mac-mavericks/fast/forms/minWidthPercent-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/minWidthPercent-expected.txt.
2516 * platform/mac-mavericks/fast/forms/number/number-appearance-rtl-expected.png: Copied from LayoutTests/platform/mac/fast/forms/number/number-appearance-rtl-expected.png.
2517 * platform/mac-mavericks/fast/forms/number/number-appearance-rtl-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/number/number-appearance-rtl-expected.txt.
2518 * platform/mac-mavericks/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.png: Copied from LayoutTests/platform/mac/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.png.
2519 * platform/mac-mavericks/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.txt.
2520 * platform/mac-mavericks/fast/forms/number/number-appearance-spinbutton-layer-expected.png: Copied from LayoutTests/platform/mac/fast/forms/number/number-appearance-spinbutton-layer-expected.png.
2521 * platform/mac-mavericks/fast/forms/number/number-appearance-spinbutton-layer-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/number/number-appearance-spinbutton-layer-expected.txt.
2522 * platform/mac-mavericks/fast/forms/option-script-expected.png: Copied from LayoutTests/platform/mac/fast/forms/option-script-expected.png.
2523 * platform/mac-mavericks/fast/forms/option-script-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/option-script-expected.txt.
2524 * platform/mac-mavericks/fast/forms/option-strip-whitespace-expected.png: Copied from LayoutTests/platform/mac/fast/forms/option-strip-whitespace-expected.png.
2525 * platform/mac-mavericks/fast/forms/option-strip-whitespace-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/option-strip-whitespace-expected.txt.
2526 * platform/mac-mavericks/fast/forms/option-text-clip-expected.png: Copied from LayoutTests/platform/mac/fast/forms/option-text-clip-expected.png.
2527 * platform/mac-mavericks/fast/forms/option-text-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/option-text-clip-expected.txt.
2528 * platform/mac-mavericks/fast/forms/placeholder-position-expected.png: Copied from LayoutTests/platform/mac/fast/forms/placeholder-position-expected.png.
2529 * platform/mac-mavericks/fast/forms/placeholder-position-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/placeholder-position-expected.txt.
2530 * platform/mac-mavericks/fast/forms/placeholder-pseudo-style-expected.png: Copied from LayoutTests/platform/mac/fast/forms/placeholder-pseudo-style-expected.png.
2531 * platform/mac-mavericks/fast/forms/placeholder-pseudo-style-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/placeholder-pseudo-style-expected.txt.
2532 * platform/mac-mavericks/fast/forms/plaintext-mode-2-expected.png: Copied from LayoutTests/platform/mac/fast/forms/plaintext-mode-2-expected.png.
2533 * platform/mac-mavericks/fast/forms/plaintext-mode-2-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/plaintext-mode-2-expected.txt.
2534 * platform/mac-mavericks/fast/forms/search-cancel-button-style-sharing-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search-cancel-button-style-sharing-expected.png.
2535 * platform/mac-mavericks/fast/forms/search-cancel-button-style-sharing-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search-cancel-button-style-sharing-expected.txt.
2536 * platform/mac-mavericks/fast/forms/search-display-none-cancel-button-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search-display-none-cancel-button-expected.png.
2537 * platform/mac-mavericks/fast/forms/search-display-none-cancel-button-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search-display-none-cancel-button-expected.txt.
2538 * platform/mac-mavericks/fast/forms/search-rtl-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search-rtl-expected.png.
2539 * platform/mac-mavericks/fast/forms/search-rtl-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search-rtl-expected.txt.
2540 * platform/mac-mavericks/fast/forms/search-styled-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search-styled-expected.png.
2541 * platform/mac-mavericks/fast/forms/search-styled-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search-styled-expected.txt.
2542 * platform/mac-mavericks/fast/forms/search-vertical-alignment-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search-vertical-alignment-expected.png.
2543 * platform/mac-mavericks/fast/forms/search-vertical-alignment-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search-vertical-alignment-expected.txt.
2544 * platform/mac-mavericks/fast/forms/search/search-size-with-decorations-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search/search-size-with-decorations-expected.png.
2545 * platform/mac-mavericks/fast/forms/search/search-size-with-decorations-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search/search-size-with-decorations-expected.txt.
2546 * platform/mac-mavericks/fast/forms/searchfield-heights-expected.png: Copied from LayoutTests/platform/mac/fast/forms/searchfield-heights-expected.png.
2547 * platform/mac-mavericks/fast/forms/searchfield-heights-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/searchfield-heights-expected.txt.
2548 * platform/mac-mavericks/fast/forms/select-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-align-expected.png.
2549 * platform/mac-mavericks/fast/forms/select-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-align-expected.txt.
2550 * platform/mac-mavericks/fast/forms/select-background-none-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-background-none-expected.png.
2551 * platform/mac-mavericks/fast/forms/select-baseline-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-baseline-expected.png.
2552 * platform/mac-mavericks/fast/forms/select-baseline-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-baseline-expected.txt.
2553 * platform/mac-mavericks/fast/forms/select-block-background-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-block-background-expected.png.
2554 * platform/mac-mavericks/fast/forms/select-block-background-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-block-background-expected.txt.
2555 * platform/mac-mavericks/fast/forms/select-change-listbox-size-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-change-listbox-size-expected.png.
2556 * platform/mac-mavericks/fast/forms/select-change-listbox-size-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-change-listbox-size-expected.txt.
2557 * platform/mac-mavericks/fast/forms/select-change-listbox-to-popup-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-change-listbox-to-popup-expected.png.
2558 * platform/mac-mavericks/fast/forms/select-change-listbox-to-popup-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-change-listbox-to-popup-expected.txt.
2559 * platform/mac-mavericks/fast/forms/select-change-popup-to-listbox-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-change-popup-to-listbox-expected.png.
2560 * platform/mac-mavericks/fast/forms/select-change-popup-to-listbox-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-change-popup-to-listbox-expected.txt.
2561 * platform/mac-mavericks/fast/forms/select-disabled-appearance-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-disabled-appearance-expected.png.
2562 * platform/mac-mavericks/fast/forms/select-disabled-appearance-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-disabled-appearance-expected.txt.
2563 * platform/mac-mavericks/fast/forms/select-empty-option-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-empty-option-height-expected.png.
2564 * platform/mac-mavericks/fast/forms/select-item-background-clip-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-item-background-clip-expected.png.
2565 * platform/mac-mavericks/fast/forms/select-item-background-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-item-background-clip-expected.txt.
2566 * platform/mac-mavericks/fast/forms/select-list-box-with-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-list-box-with-height-expected.png.
2567 * platform/mac-mavericks/fast/forms/select-list-box-with-height-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-list-box-with-height-expected.txt.
2568 * platform/mac-mavericks/fast/forms/select-listbox-multiple-no-focusring-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-listbox-multiple-no-focusring-expected.png.
2569 * platform/mac-mavericks/fast/forms/select-listbox-multiple-no-focusring-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-listbox-multiple-no-focusring-expected.txt.
2570 * platform/mac-mavericks/fast/forms/select-overflow-scroll-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-overflow-scroll-expected.txt.
2571 * platform/mac-mavericks/fast/forms/select-overflow-scroll-inherited-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-overflow-scroll-inherited-expected.txt.
2572 * platform/mac-mavericks/fast/forms/select-selected-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-selected-expected.png.
2573 * platform/mac-mavericks/fast/forms/select-selected-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-selected-expected.txt.
2574 * platform/mac-mavericks/fast/forms/select-writing-direction-natural-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-writing-direction-natural-expected.png.
2575 * platform/mac-mavericks/fast/forms/select-writing-direction-natural-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-writing-direction-natural-expected.txt.
2576 * platform/mac-mavericks/fast/forms/select/optgroup-rendering-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select/optgroup-rendering-expected.png.
2577 * platform/mac-mavericks/fast/forms/select/optgroup-rendering-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select/optgroup-rendering-expected.txt.
2578 * platform/mac-mavericks/fast/forms/stuff-on-my-optgroup-expected.png: Copied from LayoutTests/platform/mac/fast/forms/stuff-on-my-optgroup-expected.png.
2579 * platform/mac-mavericks/fast/forms/tabbing-input-iframe-expected.png: Copied from LayoutTests/platform/mac/fast/forms/tabbing-input-iframe-expected.png.
2580 * platform/mac-mavericks/fast/forms/tabbing-input-iframe-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/tabbing-input-iframe-expected.txt.
2581 * platform/mac-mavericks/fast/forms/targeted-frame-submission-expected.png: Copied from LayoutTests/platform/mac/fast/forms/targeted-frame-submission-expected.png.
2582 * platform/mac-mavericks/fast/forms/targeted-frame-submission-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/targeted-frame-submission-expected.txt.
2583 * platform/mac-mavericks/fast/forms/text-style-color-expected.png: Copied from LayoutTests/platform/mac/fast/forms/text-style-color-expected.png.
2584 * platform/mac-mavericks/fast/forms/text-style-color-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/text-style-color-expected.txt.
2585 * platform/mac-mavericks/fast/forms/textAreaLineHeight-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textAreaLineHeight-expected.png.
2586 * platform/mac-mavericks/fast/forms/textAreaLineHeight-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textAreaLineHeight-expected.txt.
2587 * platform/mac-mavericks/fast/forms/textarea-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-align-expected.png.
2588 * platform/mac-mavericks/fast/forms/textarea-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-align-expected.txt.
2589 * platform/mac-mavericks/fast/forms/textarea-placeholder-pseudo-style-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.png.
2590 * platform/mac-mavericks/fast/forms/textarea-placeholder-pseudo-style-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.txt.
2591 * platform/mac-mavericks/fast/forms/textarea-placeholder-visibility-1-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.png.
2592 * platform/mac-mavericks/fast/forms/textarea-placeholder-visibility-1-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.txt.
2593 * platform/mac-mavericks/fast/forms/textarea-placeholder-visibility-2-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.png.
2594 * platform/mac-mavericks/fast/forms/textarea-placeholder-visibility-2-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.txt.
2595 * platform/mac-mavericks/fast/forms/textarea-scroll-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-scroll-height-expected.png.
2596 * platform/mac-mavericks/fast/forms/textarea-scrollbar-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-scrollbar-expected.png.
2597 * platform/mac-mavericks/fast/forms/textarea-scrollbar-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-scrollbar-expected.txt.
2598 * platform/mac-mavericks/fast/forms/textarea-scrolled-type-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-scrolled-type-expected.png.
2599 * platform/mac-mavericks/fast/forms/textarea-scrolled-type-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-scrolled-type-expected.txt.
2600 * platform/mac-mavericks/fast/forms/textarea-setinnerhtml-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-setinnerhtml-expected.png.
2601 * platform/mac-mavericks/fast/forms/textarea-setinnerhtml-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-setinnerhtml-expected.txt.
2602 * platform/mac-mavericks/fast/forms/textfield-focus-ring-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textfield-focus-ring-expected.png.
2603 * platform/mac-mavericks/fast/forms/textfield-focus-ring-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textfield-focus-ring-expected.txt.
2604 * platform/mac-mavericks/fast/forms/textfield-outline-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textfield-outline-expected.png.
2605 * platform/mac-mavericks/fast/forms/textfield-outline-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textfield-outline-expected.txt.
2606 * platform/mac-mavericks/fast/forms/textfield-overflow-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textfield-overflow-expected.png.
2607 * platform/mac-mavericks/fast/forms/textfield-overflow-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textfield-overflow-expected.txt.
2608 * platform/mac-mavericks/fast/forms/validation-message-appearance-expected.png: Copied from LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.png.
2609 * platform/mac-mavericks/fast/forms/validation-message-appearance-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.txt.
2610 * platform/mac-mavericks/fast/forms/visual-hebrew-text-field-expected.png: Copied from LayoutTests/platform/mac/fast/forms/visual-hebrew-text-field-expected.png.
2611 * platform/mac-mavericks/fast/forms/visual-hebrew-text-field-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/visual-hebrew-text-field-expected.txt.
2612 * platform/mac-mavericks/fast/frames/take-focus-from-iframe-expected.png: Copied from LayoutTests/platform/mac/fast/frames/take-focus-from-iframe-expected.png.
2613 * platform/mac-mavericks/fast/frames/take-focus-from-iframe-expected.txt: Copied from LayoutTests/platform/mac/fast/frames/take-focus-from-iframe-expected.txt.
2614 * platform/mac-mavericks/fast/hidpi/resize-corner-hidpi-expected.png: Copied from LayoutTests/platform/mac/fast/hidpi/resize-corner-hidpi-expected.png.
2615 * platform/mac-mavericks/fast/hidpi/resize-corner-hidpi-expected.txt: Copied from LayoutTests/platform/mac/fast/hidpi/resize-corner-hidpi-expected.txt.
2616 * platform/mac-mavericks/fast/html/details-no-summary4-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-no-summary4-expected.png.
2617 * platform/mac-mavericks/fast/html/details-no-summary4-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-no-summary4-expected.txt.
2618 * platform/mac-mavericks/fast/html/details-open-javascript-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-open-javascript-expected.png.
2619 * platform/mac-mavericks/fast/html/details-open-javascript-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-open-javascript-expected.txt.
2620 * platform/mac-mavericks/fast/html/details-open2-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-open2-expected.png.
2621 * platform/mac-mavericks/fast/html/details-open2-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-open2-expected.txt.
2622 * platform/mac-mavericks/fast/html/details-open4-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-open4-expected.png.
2623 * platform/mac-mavericks/fast/html/details-open4-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-open4-expected.txt.
2624 * platform/mac-mavericks/fast/html/details-replace-summary-child-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-replace-summary-child-expected.png.
2625 * platform/mac-mavericks/fast/html/details-replace-summary-child-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-replace-summary-child-expected.txt.
2626 * platform/mac-mavericks/fast/html/details-replace-text-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-replace-text-expected.png.
2627 * platform/mac-mavericks/fast/html/details-replace-text-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-replace-text-expected.txt.
2628 * platform/mac-mavericks/fast/html/keygen-expected.png: Copied from LayoutTests/platform/mac/fast/html/keygen-expected.png.
2629 * platform/mac-mavericks/fast/html/keygen-expected.txt: Copied from LayoutTests/platform/mac/fast/html/keygen-expected.txt.
2630 * platform/mac-mavericks/fast/images/image-controls-basic-expected.png: Copied from LayoutTests/platform/mac/fast/images/image-controls-basic-expected.png.
2631 * platform/mac-mavericks/fast/images/image-controls-basic-expected.txt: Copied from LayoutTests/platform/mac/fast/images/image-controls-basic-expected.txt.
2632 * platform/mac-mavericks/fast/lists/dynamic-marker-crash-expected.png: Copied from LayoutTests/platform/mac/fast/lists/dynamic-marker-crash-expected.png.
2633 * platform/mac-mavericks/fast/lists/dynamic-marker-crash-expected.txt: Copied from LayoutTests/platform/mac/fast/lists/dynamic-marker-crash-expected.txt.
2634 * platform/mac-mavericks/fast/overflow/overflow-x-y-expected.png: Copied from LayoutTests/platform/mac/fast/overflow/overflow-x-y-expected.png.
2635 * platform/mac-mavericks/fast/overflow/overflow-x-y-expected.txt: Copied from LayoutTests/platform/mac/fast/overflow/overflow-x-y-expected.txt.
2636 * platform/mac-mavericks/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Copied from LayoutTests/platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png.
2637 * platform/mac-mavericks/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt: Copied from LayoutTests/platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt.
2638 * platform/mac-mavericks/fast/overflow/scrollRevealButton-expected.png: Copied from LayoutTests/platform/mac/fast/overflow/scrollRevealButton-expected.png.
2639 * platform/mac-mavericks/fast/overflow/scrollRevealButton-expected.txt: Copied from LayoutTests/platform/mac/fast/overflow/scrollRevealButton-expected.txt.
2640 * platform/mac-mavericks/fast/parser/document-write-option-expected.png: Copied from LayoutTests/platform/mac/fast/parser/document-write-option-expected.png.
2641 * platform/mac-mavericks/fast/parser/document-write-option-expected.txt: Copied from LayoutTests/platform/mac/fast/parser/document-write-option-expected.txt.
2642 * platform/mac-mavericks/fast/parser/entity-comment-in-textarea-expected.png: Copied from LayoutTests/platform/mac/fast/parser/entity-comment-in-textarea-expected.png.
2643 * platform/mac-mavericks/fast/parser/entity-comment-in-textarea-expected.txt: Copied from LayoutTests/platform/mac/fast/parser/entity-comment-in-textarea-expected.txt.
2644 * platform/mac-mavericks/fast/parser/open-comment-in-textarea-expected.png: Copied from LayoutTests/platform/mac/fast/parser/open-comment-in-textarea-expected.png.
2645 * platform/mac-mavericks/fast/parser/open-comment-in-textarea-expected.txt: Copied from LayoutTests/platform/mac/fast/parser/open-comment-in-textarea-expected.txt.
2646 * platform/mac-mavericks/fast/repaint/control-clip-expected.png: Copied from LayoutTests/platform/mac/fast/repaint/control-clip-expected.png.
2647 * platform/mac-mavericks/fast/repaint/control-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/repaint/control-clip-expected.txt.
2648 * platform/mac-mavericks/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.png: Copied from LayoutTests/platform/mac/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.png.
2649 * platform/mac-mavericks/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.txt: Copied from LayoutTests/platform/mac/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.txt.
2650 * platform/mac-mavericks/fast/repaint/search-field-cancel-expected.png: Copied from LayoutTests/platform/mac/fast/repaint/search-field-cancel-expected.png.
2651 * platform/mac-mavericks/fast/repaint/search-field-cancel-expected.txt: Copied from LayoutTests/platform/mac/fast/repaint/search-field-cancel-expected.txt.
2652 * platform/mac-mavericks/fast/repaint/subtree-root-skipped-expected.png: Copied from LayoutTests/platform/mac/fast/repaint/subtree-root-skipped-expected.png.
2653 * platform/mac-mavericks/fast/repaint/subtree-root-skipped-expected.txt: Copied from LayoutTests/platform/mac/fast/repaint/subtree-root-skipped-expected.txt.
2654 * platform/mac-mavericks/fast/replaced/replaced-breaking-expected.png: Copied from LayoutTests/platform/mac/fast/replaced/replaced-breaking-expected.png.
2655 * platform/mac-mavericks/fast/replaced/replaced-breaking-expected.txt: Copied from LayoutTests/platform/mac/fast/replaced/replaced-breaking-expected.txt.
2656 * platform/mac-mavericks/fast/replaced/replaced-breaking-mixture-expected.png: Copied from LayoutTests/platform/mac/fast/replaced/replaced-breaking-mixture-expected.png.
2657 * platform/mac-mavericks/fast/replaced/replaced-breaking-mixture-expected.txt: Copied from LayoutTests/platform/mac/fast/replaced/replaced-breaking-mixture-expected.txt.
2658 * platform/mac-mavericks/fast/replaced/width100percent-button-expected.png: Copied from LayoutTests/platform/mac/fast/replaced/width100percent-button-expected.png.
2659 * platform/mac-mavericks/fast/replaced/width100percent-button-expected.txt: Copied from LayoutTests/platform/mac/fast/replaced/width100percent-button-expected.txt.
2660 * platform/mac-mavericks/fast/replaced/width100percent-menulist-expected.png: Copied from LayoutTests/platform/mac/fast/replaced/width100percent-menulist-expected.png.
2661 * platform/mac-mavericks/fast/replaced/width100percent-menulist-expected.txt: Copied from LayoutTests/platform/mac/fast/replaced/width100percent-menulist-expected.txt.
2662 * platform/mac-mavericks/fast/selectors/064-expected.png: Copied from LayoutTests/platform/mac/fast/selectors/064-expected.png.
2663 * platform/mac-mavericks/fast/selectors/064-expected.txt: Copied from LayoutTests/platform/mac/fast/selectors/064-expected.txt.
2664 * platform/mac-mavericks/fast/spatial-navigation/snav-multiple-select-focusring-expected.png: Copied from LayoutTests/platform/mac/fast/spatial-navigation/snav-multiple-select-focusring-expected.png.
2665 * platform/mac-mavericks/fast/spatial-navigation/snav-multiple-select-focusring-expected.txt: Copied from LayoutTests/platform/mac/fast/spatial-navigation/snav-multiple-select-focusring-expected.txt.
2666 * platform/mac-mavericks/fast/table/003-expected.png: Copied from LayoutTests/platform/mac/fast/table/003-expected.png.
2667 * platform/mac-mavericks/fast/table/003-expected.txt: Copied from LayoutTests/platform/mac/fast/table/003-expected.txt.
2668 * platform/mac-mavericks/fast/table/append-cells2-expected.png: Copied from LayoutTests/platform/mac/fast/table/append-cells2-expected.png.
2669 * platform/mac-mavericks/fast/table/append-cells2-expected.txt: Copied from LayoutTests/platform/mac/fast/table/append-cells2-expected.txt.
2670 * platform/mac-mavericks/fast/table/colspanMinWidth-expected.png: Copied from LayoutTests/platform/mac/fast/table/colspanMinWidth-expected.png.
2671 * platform/mac-mavericks/fast/table/colspanMinWidth-expected.txt: Copied from LayoutTests/platform/mac/fast/table/colspanMinWidth-expected.txt.
2672 * platform/mac-mavericks/fast/table/colspanMinWidth-vertical-expected.png: Copied from LayoutTests/platform/mac/fast/table/colspanMinWidth-vertical-expected.png.
2673 * platform/mac-mavericks/fast/table/colspanMinWidth-vertical-expected.txt: Copied from LayoutTests/platform/mac/fast/table/colspanMinWidth-vertical-expected.txt.
2674 * platform/mac-mavericks/fast/table/remove-td-display-none-expected.png: Copied from LayoutTests/platform/mac/fast/table/remove-td-display-none-expected.png.
2675 * platform/mac-mavericks/fast/table/remove-td-display-none-expected.txt: Copied from LayoutTests/platform/mac/fast/table/remove-td-display-none-expected.txt.
2676 * platform/mac-mavericks/fast/table/spanOverlapRepaint-expected.png: Copied from LayoutTests/platform/mac/fast/table/spanOverlapRepaint-expected.png.
2677 * platform/mac-mavericks/fast/table/spanOverlapRepaint-expected.txt: Copied from LayoutTests/platform/mac/fast/table/spanOverlapRepaint-expected.txt.
2678 * platform/mac-mavericks/fast/table/text-field-baseline-expected.png: Copied from LayoutTests/platform/mac/fast/table/text-field-baseline-expected.png.
2679 * platform/mac-mavericks/fast/table/text-field-baseline-expected.txt: Copied from LayoutTests/platform/mac/fast/table/text-field-baseline-expected.txt.
2680 * platform/mac-mavericks/fast/text/atsui-rtl-override-selection-expected.png: Copied from LayoutTests/platform/mac/fast/text/atsui-rtl-override-selection-expected.png.
2681 * platform/mac-mavericks/fast/text/atsui-rtl-override-selection-expected.txt: Copied from LayoutTests/platform/mac/fast/text/atsui-rtl-override-selection-expected.txt.
2682 * platform/mac-mavericks/fast/text/backslash-to-yen-sign-euc-expected.png: Copied from LayoutTests/platform/mac/fast/text/backslash-to-yen-sign-euc-expected.png.
2683 * platform/mac-mavericks/fast/text/backslash-to-yen-sign-euc-expected.txt: Copied from LayoutTests/platform/mac/fast/text/backslash-to-yen-sign-euc-expected.txt.
2684 * platform/mac-mavericks/fast/text/backslash-to-yen-sign-expected.txt: Copied from LayoutTests/platform/mac/fast/text/backslash-to-yen-sign-expected.txt.
2685 * platform/mac-mavericks/fast/text/complex-text-opacity-expected.png: Copied from LayoutTests/platform/mac/fast/text/complex-text-opacity-expected.png.
2686 * platform/mac-mavericks/fast/text/complex-text-opacity-expected.txt: Copied from LayoutTests/platform/mac/fast/text/complex-text-opacity-expected.txt.
2687 * platform/mac-mavericks/fast/text/drawBidiText-expected.png: Copied from LayoutTests/platform/mac/fast/text/drawBidiText-expected.png.
2688 * platform/mac-mavericks/fast/text/drawBidiText-expected.txt: Copied from LayoutTests/platform/mac/fast/text/drawBidiText-expected.txt.
2689 * platform/mac-mavericks/fast/text/emphasis-expected.txt: Copied from LayoutTests/platform/mac/fast/text/emphasis-expected.txt.
2690 * platform/mac-mavericks/fast/text/fallback-traits-fixup-expected.txt: Copied from LayoutTests/platform/mac/fast/text/fallback-traits-fixup-expected.txt.
2691 * platform/mac-mavericks/fast/text/indic-expected.txt: Copied from LayoutTests/platform/mac/fast/text/indic-expected.txt.
2692 * platform/mac-mavericks/fast/text/international/003-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/003-expected.txt.
2693 * platform/mac-mavericks/fast/text/international/bidi-listbox-atsui-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/bidi-listbox-atsui-expected.png.
2694 * platform/mac-mavericks/fast/text/international/bidi-listbox-atsui-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bidi-listbox-atsui-expected.txt.
2695 * platform/mac-mavericks/fast/text/international/bidi-listbox-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bidi-listbox-expected.txt.
2696 * platform/mac-mavericks/fast/text/international/bidi-menulist-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bidi-menulist-expected.txt.
2697 * platform/mac-mavericks/fast/text/international/bidi-mirror-he-ar-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/bidi-mirror-he-ar-expected.png.
2698 * platform/mac-mavericks/fast/text/international/bidi-mirror-he-ar-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bidi-mirror-he-ar-expected.txt.
2699 * platform/mac-mavericks/fast/text/international/bold-bengali-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bold-bengali-expected.txt.
2700 * platform/mac-mavericks/fast/text/international/complex-character-based-fallback-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/complex-character-based-fallback-expected.png.
2701 * platform/mac-mavericks/fast/text/international/complex-character-based-fallback-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/complex-character-based-fallback-expected.txt.
2702 * platform/mac-mavericks/fast/text/international/danda-space-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/danda-space-expected.png.
2703 * platform/mac-mavericks/fast/text/international/danda-space-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/danda-space-expected.txt.
2704 * platform/mac-mavericks/fast/text/international/hindi-whitespace-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/hindi-whitespace-expected.png.
2705 * platform/mac-mavericks/fast/text/international/hindi-whitespace-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/hindi-whitespace-expected.txt.
2706 * platform/mac-mavericks/fast/text/international/khmer-selection-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/khmer-selection-expected.png.
2707 * platform/mac-mavericks/fast/text/international/khmer-selection-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/khmer-selection-expected.txt.
2708 * platform/mac-mavericks/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png.
2709 * platform/mac-mavericks/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt.
2710 * platform/mac-mavericks/fast/text/international/synthesized-italic-vertical-latin-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/synthesized-italic-vertical-latin-expected.txt.
2711 * platform/mac-mavericks/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png.
2712 * platform/mac-mavericks/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt.
2713 * platform/mac-mavericks/fast/text/international/wrap-CJK-001-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/wrap-CJK-001-expected.txt.
2714 * platform/mac-mavericks/fast/text/justify-ideograph-complex-expected.txt: Copied from LayoutTests/platform/mac/fast/text/justify-ideograph-complex-expected.txt.
2715 * platform/mac-mavericks/fast/text/justify-ideograph-simple-expected.txt: Copied from LayoutTests/platform/mac/fast/text/justify-ideograph-simple-expected.txt.
2716 * platform/mac-mavericks/fast/text/justify-ideograph-vertical-expected.txt: Copied from LayoutTests/platform/mac/fast/text/justify-ideograph-vertical-expected.txt.
2717 * platform/mac-mavericks/fast/text/khmer-lao-font-expected.txt: Copied from LayoutTests/platform/mac/fast/text/khmer-lao-font-expected.txt.
2718 * platform/mac-mavericks/fast/text/midword-break-before-surrogate-pair-2-expected.txt: Copied from LayoutTests/platform/mac/fast/text/midword-break-before-surrogate-pair-2-expected.txt.
2719 * platform/mac-mavericks/fast/text/textIteratorNilRenderer-expected.png: Copied from LayoutTests/platform/mac/fast/text/textIteratorNilRenderer-expected.png.
2720 * platform/mac-mavericks/fast/text/textIteratorNilRenderer-expected.txt: Copied from LayoutTests/platform/mac/fast/text/textIteratorNilRenderer-expected.txt.
2721 * platform/mac-mavericks/fast/text/updateNewFont-expected.txt: Copied from LayoutTests/platform/mac/fast/text/updateNewFont-expected.txt.
2722 * platform/mac-mavericks/fast/transforms/transformed-focused-text-input-expected.png: Copied from LayoutTests/platform/mac/fast/transforms/transformed-focused-text-input-expected.png.
2723 * platform/mac-mavericks/fast/transforms/transformed-focused-text-input-expected.txt: Copied from LayoutTests/platform/mac/fast/transforms/transformed-focused-text-input-expected.txt.
2724 * platform/mac-mavericks/http/tests/navigation/javascriptlink-frames-expected.png: Copied from LayoutTests/platform/mac/http/tests/navigation/javascriptlink-frames-expected.png.
2725 * platform/mac-mavericks/http/tests/navigation/javascriptlink-frames-expected.txt: Copied from LayoutTests/platform/mac/http/tests/navigation/javascriptlink-frames-expected.txt.
2726 * platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt: Copied from LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt.
2727 * platform/mac-mavericks/mathml/opentype/large-operators-expected.txt: Copied from LayoutTests/platform/mac/mathml/opentype/large-operators-expected.txt.
2728 * platform/mac-mavericks/mathml/opentype/opentype-stretchy-horizontal-expected.txt: Copied from LayoutTests/platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.txt.
2729 * platform/mac-mavericks/mathml/opentype/vertical-expected.txt: Copied from LayoutTests/platform/mac/mathml/opentype/vertical-expected.txt.
2730 * platform/mac-mavericks/media/audio-controls-rendering-expected.png: Copied from LayoutTests/platform/mac/media/audio-controls-rendering-expected.png.
2731 * platform/mac-mavericks/media/audio-controls-rendering-expected.txt: Copied from LayoutTests/platform/mac/media/audio-controls-rendering-expected.txt.
2732 * platform/mac-mavericks/media/controls-strict-expected.png: Copied from LayoutTests/platform/mac/media/controls-strict-expected.png.
2733 * platform/mac-mavericks/media/controls-strict-expected.txt: Copied from LayoutTests/platform/mac/media/controls-strict-expected.txt.
2734 * platform/mac-mavericks/media/video-controls-rendering-expected.txt: Copied from LayoutTests/platform/mac/media/video-controls-rendering-expected.txt.
2735 * platform/mac-mavericks/media/video-display-toggle-expected.txt: Copied from LayoutTests/platform/mac/media/video-display-toggle-expected.txt.
2736 * platform/mac-mavericks/media/video-no-audio-expected.png: Copied from LayoutTests/platform/mac/media/video-no-audio-expected.png.
2737 * platform/mac-mavericks/media/video-no-audio-expected.txt: Copied from LayoutTests/platform/mac/media/video-no-audio-expected.txt.
2738 * platform/mac-mavericks/media/video-volume-slider-expected.txt: Copied from LayoutTests/platform/mac/media/video-volume-slider-expected.txt.
2739 * platform/mac-mavericks/platform/mac/editing/input/devanagari-ligature-expected.txt: Copied from LayoutTests/platform/mac/editing/input/devanagari-ligature-expected.txt.
2740 * platform/mac-mavericks/platform/mac/editing/spelling/autocorrection-at-beginning-of-word-1-expected.txt: Renamed from LayoutTests/platform/mac/platform/mac/editing/spelling/autocorrection-at-beginning-of-word-1-expected.txt.
2741 * platform/mac-mavericks/platform/mac/editing/spelling/autocorrection-at-beginning-of-word-2-expected.txt: Renamed from LayoutTests/platform/mac/platform/mac/editing/spelling/autocorrection-at-beginning-of-word-2-expected.txt.
2742 * platform/mac-mavericks/platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-spinbutton-expected.txt.
2743 * platform/mac-mavericks/platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt.
2744 * platform/mac-mavericks/platform/mac/scrollbars/key-window-not-first-responder-expected.txt: Copied from LayoutTests/platform/mac/scrollbars/key-window-not-first-responder-expected.txt.
2745 * platform/mac-mavericks/plugins/mouse-click-plugin-clears-selection-expected.txt: Copied from LayoutTests/platform/mac/plugins/mouse-click-plugin-clears-selection-expected.txt.
2746 * platform/mac-mavericks/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png.
2747 * platform/mac-mavericks/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt: Copied from LayoutTests/platform/mac/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt.
2748 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.png.
2749 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt.
2750 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.png.
2751 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt.
2752 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.png.
2753 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt.
2754 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.png.
2755 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt.
2756 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.png.
2757 * platform/mac-mavericks/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Copied from LayoutTests/platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt.
2758 * platform/mac-mavericks/svg/custom/inline-svg-in-xhtml-expected.png: Copied from LayoutTests/platform/mac/svg/custom/inline-svg-in-xhtml-expected.png.
2759 * platform/mac-mavericks/svg/custom/inline-svg-in-xhtml-expected.txt: Copied from LayoutTests/platform/mac/svg/custom/inline-svg-in-xhtml-expected.txt.
2760 * platform/mac-mavericks/svg/hixie/mixed/003-expected.png: Copied from LayoutTests/platform/mac/svg/hixie/mixed/003-expected.png.
2761 * platform/mac-mavericks/svg/hixie/mixed/003-expected.txt: Copied from LayoutTests/platform/mac/svg/hixie/mixed/003-expected.txt.
2762 * platform/mac-mavericks/svg/text/bidi-text-query-expected.png: Copied from LayoutTests/platform/mac/svg/text/bidi-text-query-expected.png.
2763 * platform/mac-mavericks/svg/text/bidi-text-query-expected.txt: Copied from LayoutTests/platform/mac/svg/text/bidi-text-query-expected.txt.
2764 * platform/mac-mavericks/tables/mozilla/bugs/bug1188-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1188-expected.txt.
2765 * platform/mac-mavericks/tables/mozilla/bugs/bug12384-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug12384-expected.txt.
2766 * platform/mac-mavericks/tables/mozilla/bugs/bug138725-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug138725-expected.txt.
2767 * platform/mac-mavericks/tables/mozilla/bugs/bug18359-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18359-expected.txt.
2768 * platform/mac-mavericks/tables/mozilla/bugs/bug24200-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug24200-expected.txt.
2769 * platform/mac-mavericks/tables/mozilla/bugs/bug2479-2-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-2-expected.txt.
2770 * platform/mac-mavericks/tables/mozilla/bugs/bug2479-3-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-3-expected.txt.
2771 * platform/mac-mavericks/tables/mozilla/bugs/bug2479-4-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-4-expected.txt.
2772 * platform/mac-mavericks/tables/mozilla/bugs/bug28928-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug28928-expected.txt.
2773 * platform/mac-mavericks/tables/mozilla/bugs/bug29326-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29326-expected.txt.
2774 * platform/mac-mavericks/tables/mozilla/bugs/bug30559-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug30559-expected.txt.
2775 * platform/mac-mavericks/tables/mozilla/bugs/bug30692-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug30692-expected.txt.
2776 * platform/mac-mavericks/tables/mozilla/bugs/bug33855-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug33855-expected.txt.
2777 * platform/mac-mavericks/tables/mozilla/bugs/bug4382-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4382-expected.txt.
2778 * platform/mac-mavericks/tables/mozilla/bugs/bug4527-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4527-expected.txt.
2779 * platform/mac-mavericks/tables/mozilla/bugs/bug46368-1-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-1-expected.txt.
2780 * platform/mac-mavericks/tables/mozilla/bugs/bug46368-2-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-2-expected.txt.
2781 * platform/mac-mavericks/tables/mozilla/bugs/bug51037-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug51037-expected.txt.
2782 * platform/mac-mavericks/tables/mozilla/bugs/bug51727-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug51727-expected.txt.
2783 * platform/mac-mavericks/tables/mozilla/bugs/bug52505-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52505-expected.txt.
2784 * platform/mac-mavericks/tables/mozilla/bugs/bug52506-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52506-expected.txt.
2785 * platform/mac-mavericks/tables/mozilla/bugs/bug55545-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug55545-expected.txt.
2786 * platform/mac-mavericks/tables/mozilla/bugs/bug59354-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug59354-expected.txt.
2787 * platform/mac-mavericks/tables/mozilla/bugs/bug60749-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug60749-expected.txt.
2788 * platform/mac-mavericks/tables/mozilla/bugs/bug68912-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug68912-expected.txt.
2789 * platform/mac-mavericks/tables/mozilla/bugs/bug7342-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7342-expected.txt.
2790 * platform/mac-mavericks/tables/mozilla/bugs/bug96334-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug96334-expected.txt.
2791 * platform/mac-mavericks/tables/mozilla/bugs/bug99948-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug99948-expected.txt.
2792 * platform/mac-mavericks/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/collapsing_borders/bug41262-4-expected.txt.
2793 * platform/mac-mavericks/tables/mozilla/core/margins-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/core/margins-expected.txt.
2794 * platform/mac-mavericks/tables/mozilla/dom/tableDom-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/dom/tableDom-expected.txt.
2795 * platform/mac-mavericks/tables/mozilla/other/move_row-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/other/move_row-expected.txt.
2796 * platform/mac-mavericks/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.txt.
2797 * platform/mac-mavericks/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt.
2798 * platform/mac-mavericks/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt.
2799 * platform/mac-mavericks/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt.
2800 * platform/mac-mavericks/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt.
2801 * platform/mac-mavericks/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt.
2802 * platform/mac-mavericks/transforms/2d/hindi-rotated-expected.txt: Copied from LayoutTests/platform/mac/transforms/2d/hindi-rotated-expected.txt.
2803 * platform/mac-mavericks/transforms/2d/zoom-menulist-expected.txt: Copied from LayoutTests/platform/mac/transforms/2d/zoom-menulist-expected.txt.
2804 * platform/mac-mavericks/transforms/3d/general/perspective-non-layer-expected.txt: Copied from LayoutTests/platform/mac/transforms/3d/general/perspective-non-layer-expected.txt.
2805 * platform/mac-wk2/TestExpectations:
2806 * platform/mac-wk2/js/dom/global-constructors-attributes-expected.txt: Copied from LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt.
2807 * platform/mac/TestExpectations:
2808 * platform/mac/accessibility/aria-readonly-expected.txt:
2809 * platform/mac/accessibility/roles-exposed-expected.txt:
2810 * platform/mac/compositing/contents-opaque/control-layer-expected.txt:
2811 * platform/mac/compositing/fixed-image-loading-expected.txt: Copied from LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt.
2812 * platform/mac/compositing/geometry/ancestor-overflow-change-expected.txt: Copied from LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt.
2813 * platform/mac/compositing/geometry/composited-in-columns-expected.txt: Added.
2814 * platform/mac/compositing/rtl/rtl-fixed-expected.txt: Added.
2815 * platform/mac/compositing/rtl/rtl-fixed-overflow-expected.txt: Added.
2816 * platform/mac/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Added.
2817 * platform/mac/css3/selectors3/html/css3-modsel-161-expected.png:
2818 * platform/mac/css3/selectors3/html/css3-modsel-19b-expected.png:
2819 * platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt:
2820 * platform/mac/css3/selectors3/html/css3-modsel-23-expected.png:
2821 * platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt:
2822 * platform/mac/css3/selectors3/html/css3-modsel-24-expected.png:
2823 * platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt:
2824 * platform/mac/css3/selectors3/html/css3-modsel-64-expected.png:
2825 * platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt:
2826 * platform/mac/css3/selectors3/html/css3-modsel-68-expected.png:
2827 * platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt:
2828 * platform/mac/css3/selectors3/html/css3-modsel-69-expected.png:
2829 * platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt:
2830 * platform/mac/css3/selectors3/xhtml/css3-modsel-161-expected.png:
2831 * platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.png:
2832 * platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt:
2833 * platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.png:
2834 * platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt:
2835 * platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.png:
2836 * platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt:
2837 * platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.png:
2838 * platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt:
2839 * platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.png:
2840 * platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt:
2841 * platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.png:
2842 * platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt:
2843 * platform/mac/css3/selectors3/xml/css3-modsel-161-expected.png:
2844 * platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.png:
2845 * platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt:
2846 * platform/mac/css3/selectors3/xml/css3-modsel-23-expected.png:
2847 * platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt:
2848 * platform/mac/css3/selectors3/xml/css3-modsel-24-expected.png:
2849 * platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt:
2850 * platform/mac/css3/selectors3/xml/css3-modsel-64-expected.png:
2851 * platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt:
2852 * platform/mac/css3/selectors3/xml/css3-modsel-68-expected.png:
2853 * platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt:
2854 * platform/mac/css3/selectors3/xml/css3-modsel-69-expected.png:
2855 * platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt:
2856 * platform/mac/editing/input/caret-at-the-edge-of-input-expected.png: Added.
2857 * platform/mac/editing/input/caret-at-the-edge-of-input-expected.txt:
2858 * platform/mac/editing/input/devanagari-ligature-expected.txt:
2859 * platform/mac/editing/input/reveal-caret-of-multiline-input-expected.png: Added.
2860 * platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt:
2861 * platform/mac/editing/input/undo-grouping-on-text-insertion-expected.txt: Added.
2862 * platform/mac/editing/input/undo-grouping-on-text-insertion.html: Added.
2863 * platform/mac/editing/inserting/4960120-1-expected.png:
2864 * platform/mac/editing/inserting/4960120-1-expected.txt:
2865 * platform/mac/editing/inserting/before-after-input-element-expected.png:
2866 * platform/mac/editing/inserting/before-after-input-element-expected.txt:
2867 * platform/mac/editing/pasteboard/4641033-expected.png:
2868 * platform/mac/editing/pasteboard/4806874-expected.png:
2869 * platform/mac/editing/pasteboard/4806874-expected.txt:
2870 * platform/mac/editing/pasteboard/4944770-1-expected.png:
2871 * platform/mac/editing/pasteboard/4944770-2-expected.png:
2872 * platform/mac/editing/pasteboard/drop-text-without-selection-expected.png:
2873 * platform/mac/editing/pasteboard/drop-text-without-selection-expected.txt:
2874 * platform/mac/editing/pasteboard/input-field-1-expected.png:
2875 * platform/mac/editing/pasteboard/input-field-1-expected.txt:
2876 * platform/mac/editing/pasteboard/pasting-tabs-expected.png:
2877 * platform/mac/editing/pasteboard/pasting-tabs-expected.txt:
2878 * platform/mac/editing/selection/3690703-2-expected.png:
2879 * platform/mac/editing/selection/3690703-2-expected.txt:
2880 * platform/mac/editing/selection/3690703-expected.png:
2881 * platform/mac/editing/selection/3690703-expected.txt:
2882 * platform/mac/editing/selection/3690719-expected.png:
2883 * platform/mac/editing/selection/3690719-expected.txt:
2884 * platform/mac/editing/selection/4397952-expected.png:
2885 * platform/mac/editing/selection/4397952-expected.txt:
2886 * platform/mac/editing/selection/4895428-3-expected.png:
2887 * platform/mac/editing/selection/4895428-3-expected.txt:
2888 * platform/mac/editing/selection/4975120-expected.png:
2889 * platform/mac/editing/selection/4975120-expected.txt:
2890 * platform/mac/editing/selection/5240265-expected.png:
2891 * platform/mac/editing/selection/caret-before-select-expected.png:
2892 * platform/mac/editing/selection/drag-select-1-expected.png:
2893 * platform/mac/editing/selection/drag-select-1-expected.txt:
2894 * platform/mac/editing/selection/replaced-boundaries-3-expected.png:
2895 * platform/mac/editing/selection/replaced-boundaries-3-expected.txt:
2896 * platform/mac/editing/selection/select-across-readonly-input-1-expected.png:
2897 * platform/mac/editing/selection/select-across-readonly-input-1-expected.txt:
2898 * platform/mac/editing/selection/select-across-readonly-input-2-expected.png:
2899 * platform/mac/editing/selection/select-across-readonly-input-2-expected.txt:
2900 * platform/mac/editing/selection/select-across-readonly-input-3-expected.png:
2901 * platform/mac/editing/selection/select-across-readonly-input-3-expected.txt:
2902 * platform/mac/editing/selection/select-across-readonly-input-4-expected.png:
2903 * platform/mac/editing/selection/select-across-readonly-input-4-expected.txt:
2904 * platform/mac/editing/selection/select-across-readonly-input-5-expected.png:
2905 * platform/mac/editing/selection/select-across-readonly-input-5-expected.txt:
2906 * platform/mac/editing/selection/select-box-expected.png:
2907 * platform/mac/editing/selection/select-element-paragraph-boundary-expected.png:
2908 * platform/mac/editing/selection/select-from-textfield-outwards-expected.png:
2909 * platform/mac/editing/selection/select-from-textfield-outwards-expected.txt:
2910 * platform/mac/editing/selection/selection-button-text-expected.png:
2911 * platform/mac/editing/selection/selection-button-text-expected.txt:
2912 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt:
2913 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt:
2914 * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-1-expected.txt:
2915 * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-2-expected.txt:
2916 * platform/mac/fast/block/lineboxcontain/block-with-ideographs-expected.png:
2917 * platform/mac/fast/block/lineboxcontain/block-with-ideographs-expected.txt:
2918 * platform/mac/fast/block/margin-collapse/103-expected.png:
2919 * platform/mac/fast/block/margin-collapse/103-expected.txt:
2920 * platform/mac/fast/block/positioning/inline-block-relposition-expected.png:
2921 * platform/mac/fast/block/positioning/inline-block-relposition-expected.txt:
2922 * platform/mac/fast/css/continuationCrash-expected.png:
2923 * platform/mac/fast/css/continuationCrash-expected.txt:
2924 * platform/mac/fast/css/css2-system-fonts-expected.png:
2925 * platform/mac/fast/css/css2-system-fonts-expected.txt:
2926 * platform/mac/fast/css/font-family-pictograph-expected.txt:
2927 * platform/mac/fast/css/input-search-padding-expected.png:
2928 * platform/mac/fast/css/line-height-expected.png:
2929 * platform/mac/fast/css/line-height-expected.txt:
2930 * platform/mac/fast/css/margin-top-bottom-dynamic-expected.png:
2931 * platform/mac/fast/css/margin-top-bottom-dynamic-expected.txt:
2932 * platform/mac/fast/css/resize-corner-tracking-expected.png:
2933 * platform/mac/fast/css/resize-corner-tracking-expected.txt: Added.
2934 * platform/mac/fast/css/rtl-ordering-expected.png:
2935 * platform/mac/fast/css/rtl-ordering-expected.txt:
2936 * platform/mac/fast/css/text-input-with-webkit-border-radius-expected.png:
2937 * platform/mac/fast/css/text-input-with-webkit-border-radius-expected.txt:
2938 * platform/mac/fast/css/text-overflow-input-expected.png:
2939 * platform/mac/fast/css/text-overflow-input-expected.txt:
2940 * platform/mac/fast/css/text-transform-select-expected.png:
2941 * platform/mac/fast/css/text-transform-select-expected.txt:
2942 * platform/mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.png:
2943 * platform/mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.txt:
2944 * platform/mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png:
2945 * platform/mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt:
2946 * platform/mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png:
2947 * platform/mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt:
2948 * platform/mac/fast/dom/isindex-001-expected.png:
2949 * platform/mac/fast/dom/isindex-001-expected.txt:
2950 * platform/mac/fast/dom/isindex-002-expected.png:
2951 * platform/mac/fast/dom/isindex-002-expected.txt:
2952 * platform/mac/fast/dynamic/008-expected.png:
2953 * platform/mac/fast/dynamic/008-expected.txt:
2954 * platform/mac/fast/dynamic/positioned-movement-with-positioned-children-expected.png:
2955 * platform/mac/fast/dynamic/positioned-movement-with-positioned-children-expected.txt:
2956 * platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.txt:
2957 * platform/mac/fast/events/context-no-deselect-expected.png:
2958 * platform/mac/fast/events/context-no-deselect-expected.txt:
2959 * platform/mac/fast/events/shadow-event-path-2-expected.txt: Added.
2960 * platform/mac/fast/forms/001-expected.png:
2961 * platform/mac/fast/forms/001-expected.txt:
2962 * platform/mac/fast/forms/003-expected.png:
2963 * platform/mac/fast/forms/003-expected.txt:
2964 * platform/mac/fast/forms/004-expected.png:
2965 * platform/mac/fast/forms/004-expected.txt:
2966 * platform/mac/fast/forms/HTMLOptionElement_label01-expected.png:
2967 * platform/mac/fast/forms/HTMLOptionElement_label01-expected.txt:
2968 * platform/mac/fast/forms/HTMLOptionElement_label02-expected.png:
2969 * platform/mac/fast/forms/HTMLOptionElement_label02-expected.txt:
2970 * platform/mac/fast/forms/HTMLOptionElement_label03-expected.png:
2971 * platform/mac/fast/forms/HTMLOptionElement_label04-expected.png:
2972 * platform/mac/fast/forms/HTMLOptionElement_label04-expected.txt:
2973 * platform/mac/fast/forms/HTMLOptionElement_label05-expected.png:
2974 * platform/mac/fast/forms/HTMLOptionElement_label05-expected.txt:
2975 * platform/mac/fast/forms/basic-buttons-expected.png:
2976 * platform/mac/fast/forms/basic-buttons-expected.txt:
2977 * platform/mac/fast/forms/basic-inputs-expected.png:
2978 * platform/mac/fast/forms/basic-inputs-expected.txt:
2979 * platform/mac/fast/forms/basic-selects-expected.png:
2980 * platform/mac/fast/forms/basic-selects-expected.txt:
2981 * platform/mac/fast/forms/basic-textareas-expected.png:
2982 * platform/mac/fast/forms/basic-textareas-expected.txt:
2983 * platform/mac/fast/forms/basic-textareas-quirks-expected.png:
2984 * platform/mac/fast/forms/basic-textareas-quirks-expected.txt:
2985 * platform/mac/fast/forms/blankbuttons-expected.png:
2986 * platform/mac/fast/forms/blankbuttons-expected.txt:
2987 * platform/mac/fast/forms/box-shadow-override-expected.png:
2988 * platform/mac/fast/forms/box-shadow-override-expected.txt:
2989 * platform/mac/fast/forms/button-align-expected.png:
2990 * platform/mac/fast/forms/button-cannot-be-nested-expected.png:
2991 * platform/mac/fast/forms/button-cannot-be-nested-expected.txt:
2992 * platform/mac/fast/forms/button-default-title-expected.png:
2993 * platform/mac/fast/forms/button-default-title-expected.txt:
2994 * platform/mac/fast/forms/button-generated-content-expected.png:
2995 * platform/mac/fast/forms/button-generated-content-expected.txt:
2996 * platform/mac/fast/forms/button-positioned-expected.png:
2997 * platform/mac/fast/forms/button-positioned-expected.txt:
2998 * platform/mac/fast/forms/button-sizes-expected.png:
2999 * platform/mac/fast/forms/button-sizes-expected.txt:
3000 * platform/mac/fast/forms/button-style-color-expected.png:
3001 * platform/mac/fast/forms/button-style-color-expected.txt:
3002 * platform/mac/fast/forms/button-table-styles-expected.png:
3003 * platform/mac/fast/forms/button-table-styles-expected.txt:
3004 * platform/mac/fast/forms/button-text-transform-expected.png:
3005 * platform/mac/fast/forms/button-text-transform-expected.txt:
3006 * platform/mac/fast/forms/button-white-space-expected.png:
3007 * platform/mac/fast/forms/button-white-space-expected.txt:
3008 * platform/mac/fast/forms/control-clip-expected.png:
3009 * platform/mac/fast/forms/control-clip-expected.txt:
3010 * platform/mac/fast/forms/control-clip-overflow-expected.png:
3011 * platform/mac/fast/forms/control-clip-overflow-expected.txt:
3012 * platform/mac/fast/forms/control-restrict-line-height-expected.png:
3013 * platform/mac/fast/forms/control-restrict-line-height-expected.txt:
3014 * platform/mac/fast/forms/disabled-select-change-index-expected.png:
3015 * platform/mac/fast/forms/disabled-select-change-index-expected.txt:
3016 * platform/mac/fast/forms/encoding-test-expected.png:
3017 * platform/mac/fast/forms/encoding-test-expected.txt:
3018 * platform/mac/fast/forms/fieldset-align-expected.png:
3019 * platform/mac/fast/forms/fieldset-align-expected.txt:
3020 * platform/mac/fast/forms/file/file-input-direction-expected.png:
3021 * platform/mac/fast/forms/file/file-input-direction-expected.txt:
3022 * platform/mac/fast/forms/file/file-input-disabled-expected.png:
3023 * platform/mac/fast/forms/file/file-input-disabled-expected.txt:
3024 * platform/mac/fast/forms/file/input-file-re-render-expected.png:
3025 * platform/mac/fast/forms/file/input-file-re-render-expected.txt:
3026 * platform/mac/fast/forms/floating-textfield-relayout-expected.png:
3027 * platform/mac/fast/forms/form-element-geometry-expected.png:
3028 * platform/mac/fast/forms/form-element-geometry-expected.txt:
3029 * platform/mac/fast/forms/formmove3-expected.png:
3030 * platform/mac/fast/forms/formmove3-expected.txt:
3031 * platform/mac/fast/forms/hidden-listbox-expected.png:
3032 * platform/mac/fast/forms/hidden-listbox-expected.txt:
3033 * platform/mac/fast/forms/input-align-expected.png:
3034 * platform/mac/fast/forms/input-align-expected.txt:
3035 * platform/mac/fast/forms/input-appearance-bkcolor-expected.png:
3036 * platform/mac/fast/forms/input-appearance-bkcolor-expected.txt:
3037 * platform/mac/fast/forms/input-appearance-default-bkcolor-expected.png:
3038 * platform/mac/fast/forms/input-appearance-default-bkcolor-expected.txt:
3039 * platform/mac/fast/forms/input-appearance-disabled-expected.png:
3040 * platform/mac/fast/forms/input-appearance-disabled-expected.txt:
3041 * platform/mac/fast/forms/input-appearance-focus-expected.png:
3042 * platform/mac/fast/forms/input-appearance-focus-expected.txt:
3043 * platform/mac/fast/forms/input-appearance-height-expected.png:
3044 * platform/mac/fast/forms/input-appearance-height-expected.txt:
3045 * platform/mac/fast/forms/input-appearance-preventDefault-expected.png:
3046 * platform/mac/fast/forms/input-appearance-preventDefault-expected.txt:
3047 * platform/mac/fast/forms/input-appearance-readonly-expected.png:
3048 * platform/mac/fast/forms/input-appearance-readonly-expected.txt:
3049 * platform/mac/fast/forms/input-appearance-selection-expected.png:
3050 * platform/mac/fast/forms/input-appearance-selection-expected.txt:
3051 * platform/mac/fast/forms/input-appearance-spinbutton-expected.txt:
3052 * platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt:
3053 * platform/mac/fast/forms/input-appearance-visibility-expected.png:
3054 * platform/mac/fast/forms/input-appearance-visibility-expected.txt:
3055 * platform/mac/fast/forms/input-appearance-width-expected.png:
3056 * platform/mac/fast/forms/input-appearance-width-expected.txt:
3057 * platform/mac/fast/forms/input-baseline-expected.png:
3058 * platform/mac/fast/forms/input-baseline-expected.txt:
3059 * platform/mac/fast/forms/input-button-sizes-expected.png:
3060 * platform/mac/fast/forms/input-button-sizes-expected.txt:
3061 * platform/mac/fast/forms/input-disabled-color-expected.png:
3062 * platform/mac/fast/forms/input-disabled-color-expected.txt:
3063 * platform/mac/fast/forms/input-double-click-selection-gap-bug-expected.png:
3064 * platform/mac/fast/forms/input-double-click-selection-gap-bug-expected.txt:
3065 * platform/mac/fast/forms/input-field-text-truncated-expected.png:
3066 * platform/mac/fast/forms/input-field-text-truncated-expected.txt:
3067 * platform/mac/fast/forms/input-first-letter-expected.png:
3068 * platform/mac/fast/forms/input-placeholder-visibility-1-expected.png:
3069 * platform/mac/fast/forms/input-placeholder-visibility-1-expected.txt:
3070 * platform/mac/fast/forms/input-placeholder-visibility-3-expected.png:
3071 * platform/mac/fast/forms/input-placeholder-visibility-3-expected.txt:
3072 * platform/mac/fast/forms/input-readonly-autoscroll-expected.png:
3073 * platform/mac/fast/forms/input-readonly-autoscroll-expected.txt:
3074 * platform/mac/fast/forms/input-readonly-dimmed-expected.png:
3075 * platform/mac/fast/forms/input-readonly-dimmed-expected.txt:
3076 * platform/mac/fast/forms/input-readonly-empty-expected.png:
3077 * platform/mac/fast/forms/input-readonly-empty-expected.txt:
3078 * platform/mac/fast/forms/input-spaces-expected.png:
3079 * platform/mac/fast/forms/input-spaces-expected.txt:
3080 * platform/mac/fast/forms/input-table-expected.png:
3081 * platform/mac/fast/forms/input-table-expected.txt:
3082 * platform/mac/fast/forms/input-text-click-inside-expected.png:
3083 * platform/mac/fast/forms/input-text-click-inside-expected.txt:
3084 * platform/mac/fast/forms/input-text-click-outside-expected.png:
3085 * platform/mac/fast/forms/input-text-click-outside-expected.txt:
3086 * platform/mac/fast/forms/input-text-double-click-expected.png:
3087 * platform/mac/fast/forms/input-text-double-click-expected.txt:
3088 * platform/mac/fast/forms/input-text-drag-down-expected.png:
3089 * platform/mac/fast/forms/input-text-drag-down-expected.txt:
3090 * platform/mac/fast/forms/input-text-option-delete-expected.png:
3091 * platform/mac/fast/forms/input-text-option-delete-expected.txt:
3092 * platform/mac/fast/forms/input-text-scroll-left-on-blur-expected.png:
3093 * platform/mac/fast/forms/input-text-scroll-left-on-blur-expected.txt:
3094 * platform/mac/fast/forms/input-text-self-emptying-click-expected.png:
3095 * platform/mac/fast/forms/input-text-self-emptying-click-expected.txt:
3096 * platform/mac/fast/forms/input-text-word-wrap-expected.png:
3097 * platform/mac/fast/forms/input-text-word-wrap-expected.txt:
3098 * platform/mac/fast/forms/input-type-text-min-width-expected.png:
3099 * platform/mac/fast/forms/input-type-text-min-width-expected.txt:
3100 * platform/mac/fast/forms/input-value-expected.png:
3101 * platform/mac/fast/forms/input-value-expected.txt:
3102 * platform/mac/fast/forms/input-width-expected.png:
3103 * platform/mac/fast/forms/input-width-expected.txt:
3104 * platform/mac/fast/forms/listbox-bidi-align-expected.png: Added.
3105 * platform/mac/fast/forms/listbox-bidi-align-expected.txt:
3106 * platform/mac/fast/forms/listbox-hit-test-zoomed-expected.png:
3107 * platform/mac/fast/forms/listbox-scrollbar-incremental-load-expected.txt:
3108 * platform/mac/fast/forms/listbox-width-change-expected.png:
3109 * platform/mac/fast/forms/listbox-width-change-expected.txt:
3110 * platform/mac/fast/forms/menulist-clip-expected.png:
3111 * platform/mac/fast/forms/menulist-clip-expected.txt:
3112 * platform/mac/fast/forms/menulist-deselect-update-expected.png:
3113 * platform/mac/fast/forms/menulist-deselect-update-expected.txt:
3114 * platform/mac/fast/forms/menulist-no-overflow-expected.png:
3115 * platform/mac/fast/forms/menulist-no-overflow-expected.txt:
3116 * platform/mac/fast/forms/menulist-option-wrap-expected.png:
3117 * platform/mac/fast/forms/menulist-option-wrap-expected.txt:
3118 * platform/mac/fast/forms/menulist-restrict-line-height-expected.png:
3119 * platform/mac/fast/forms/menulist-restrict-line-height-expected.txt:
3120 * platform/mac/fast/forms/menulist-style-color-expected.png:
3121 * platform/mac/fast/forms/menulist-style-color-expected.txt:
3122 * platform/mac/fast/forms/menulist-width-change-expected.png:
3123 * platform/mac/fast/forms/menulist-width-change-expected.txt:
3124 * platform/mac/fast/forms/minWidthPercent-expected.png:
3125 * platform/mac/fast/forms/minWidthPercent-expected.txt:
3126 * platform/mac/fast/forms/number/number-appearance-rtl-expected.png:
3127 * platform/mac/fast/forms/number/number-appearance-rtl-expected.txt:
3128 * platform/mac/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.png:
3129 * platform/mac/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.txt:
3130 * platform/mac/fast/forms/number/number-appearance-spinbutton-layer-expected.png:
3131 * platform/mac/fast/forms/number/number-appearance-spinbutton-layer-expected.txt:
3132 * platform/mac/fast/forms/option-script-expected.png:
3133 * platform/mac/fast/forms/option-script-expected.txt:
3134 * platform/mac/fast/forms/option-strip-whitespace-expected.png:
3135 * platform/mac/fast/forms/option-strip-whitespace-expected.txt:
3136 * platform/mac/fast/forms/option-text-clip-expected.png:
3137 * platform/mac/fast/forms/option-text-clip-expected.txt:
3138 * platform/mac/fast/forms/placeholder-position-expected.png:
3139 * platform/mac/fast/forms/placeholder-position-expected.txt:
3140 * platform/mac/fast/forms/placeholder-pseudo-style-expected.png:
3141 * platform/mac/fast/forms/placeholder-pseudo-style-expected.txt:
3142 * platform/mac/fast/forms/plaintext-mode-2-expected.png:
3143 * platform/mac/fast/forms/plaintext-mode-2-expected.txt:
3144 * platform/mac/fast/forms/search-cancel-button-style-sharing-expected.png:
3145 * platform/mac/fast/forms/search-cancel-button-style-sharing-expected.txt:
3146 * platform/mac/fast/forms/search-display-none-cancel-button-expected.png:
3147 * platform/mac/fast/forms/search-display-none-cancel-button-expected.txt:
3148 * platform/mac/fast/forms/search-rtl-expected.png:
3149 * platform/mac/fast/forms/search-rtl-expected.txt:
3150 * platform/mac/fast/forms/search-styled-expected.png:
3151 * platform/mac/fast/forms/search-styled-expected.txt:
3152 * platform/mac/fast/forms/search-vertical-alignment-expected.png:
3153 * platform/mac/fast/forms/search-vertical-alignment-expected.txt:
3154 * platform/mac/fast/forms/search/search-size-with-decorations-expected.png:
3155 * platform/mac/fast/forms/search/search-size-with-decorations-expected.txt:
3156 * platform/mac/fast/forms/searchfield-heights-expected.png:
3157 * platform/mac/fast/forms/searchfield-heights-expected.txt:
3158 * platform/mac/fast/forms/select-align-expected.png:
3159 * platform/mac/fast/forms/select-align-expected.txt:
3160 * platform/mac/fast/forms/select-background-none-expected.png:
3161 * platform/mac/fast/forms/select-baseline-expected.png:
3162 * platform/mac/fast/forms/select-baseline-expected.txt:
3163 * platform/mac/fast/forms/select-block-background-expected.png:
3164 * platform/mac/fast/forms/select-block-background-expected.txt:
3165 * platform/mac/fast/forms/select-change-listbox-size-expected.png:
3166 * platform/mac/fast/forms/select-change-listbox-size-expected.txt:
3167 * platform/mac/fast/forms/select-change-listbox-to-popup-expected.png:
3168 * platform/mac/fast/forms/select-change-listbox-to-popup-expected.txt:
3169 * platform/mac/fast/forms/select-change-popup-to-listbox-expected.png:
3170 * platform/mac/fast/forms/select-change-popup-to-listbox-expected.txt:
3171 * platform/mac/fast/forms/select-disabled-appearance-expected.png:
3172 * platform/mac/fast/forms/select-disabled-appearance-expected.txt:
3173 * platform/mac/fast/forms/select-empty-option-height-expected.png:
3174 * platform/mac/fast/forms/select-item-background-clip-expected.png:
3175 * platform/mac/fast/forms/select-item-background-clip-expected.txt:
3176 * platform/mac/fast/forms/select-list-box-with-height-expected.png:
3177 * platform/mac/fast/forms/select-list-box-with-height-expected.txt:
3178 * platform/mac/fast/forms/select-listbox-multiple-no-focusring-expected.png:
3179 * platform/mac/fast/forms/select-listbox-multiple-no-focusring-expected.txt:
3180 * platform/mac/fast/forms/select-overflow-scroll-expected.txt:
3181 * platform/mac/fast/forms/select-overflow-scroll-inherited-expected.txt:
3182 * platform/mac/fast/forms/select-selected-expected.png:
3183 * platform/mac/fast/forms/select-selected-expected.txt:
3184 * platform/mac/fast/forms/select-writing-direction-natural-expected.png:
3185 * platform/mac/fast/forms/select-writing-direction-natural-expected.txt:
3186 * platform/mac/fast/forms/select/optgroup-rendering-expected.png:
3187 * platform/mac/fast/forms/select/optgroup-rendering-expected.txt:
3188 * platform/mac/fast/forms/stuff-on-my-optgroup-expected.png:
3189 * platform/mac/fast/forms/tabbing-input-iframe-expected.png:
3190 * platform/mac/fast/forms/tabbing-input-iframe-expected.txt:
3191 * platform/mac/fast/forms/targeted-frame-submission-expected.png:
3192 * platform/mac/fast/forms/targeted-frame-submission-expected.txt:
3193 * platform/mac/fast/forms/text-style-color-expected.png:
3194 * platform/mac/fast/forms/text-style-color-expected.txt:
3195 * platform/mac/fast/forms/textAreaLineHeight-expected.png:
3196 * platform/mac/fast/forms/textAreaLineHeight-expected.txt:
3197 * platform/mac/fast/forms/textarea-align-expected.png:
3198 * platform/mac/fast/forms/textarea-align-expected.txt:
3199 * platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.png:
3200 * platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.txt:
3201 * platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.png:
3202 * platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.txt:
3203 * platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.png:
3204 * platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.txt:
3205 * platform/mac/fast/forms/textarea-scroll-height-expected.png:
3206 * platform/mac/fast/forms/textarea-scrollbar-expected.png:
3207 * platform/mac/fast/forms/textarea-scrollbar-expected.txt:
3208 * platform/mac/fast/forms/textarea-scrolled-type-expected.png:
3209 * platform/mac/fast/forms/textarea-scrolled-type-expected.txt:
3210 * platform/mac/fast/forms/textarea-setinnerhtml-expected.png:
3211 * platform/mac/fast/forms/textarea-setinnerhtml-expected.txt:
3212 * platform/mac/fast/forms/textfield-focus-ring-expected.png:
3213 * platform/mac/fast/forms/textfield-focus-ring-expected.txt:
3214 * platform/mac/fast/forms/textfield-outline-expected.png:
3215 * platform/mac/fast/forms/textfield-outline-expected.txt:
3216 * platform/mac/fast/forms/textfield-overflow-expected.png:
3217 * platform/mac/fast/forms/textfield-overflow-expected.txt:
3218 * platform/mac/fast/forms/validation-message-appearance-expected.png:
3219 * platform/mac/fast/forms/validation-message-appearance-expected.txt:
3220 * platform/mac/fast/forms/visual-hebrew-text-field-expected.png:
3221 * platform/mac/fast/forms/visual-hebrew-text-field-expected.txt:
3222 * platform/mac/fast/frames/take-focus-from-iframe-expected.png:
3223 * platform/mac/fast/frames/take-focus-from-iframe-expected.txt:
3224 * platform/mac/fast/hidpi/resize-corner-hidpi-expected.png:
3225 * platform/mac/fast/hidpi/resize-corner-hidpi-expected.txt:
3226 * platform/mac/fast/html/details-no-summary4-expected.png:
3227 * platform/mac/fast/html/details-no-summary4-expected.txt:
3228 * platform/mac/fast/html/details-open-javascript-expected.png:
3229 * platform/mac/fast/html/details-open-javascript-expected.txt:
3230 * platform/mac/fast/html/details-open2-expected.png:
3231 * platform/mac/fast/html/details-open2-expected.txt:
3232 * platform/mac/fast/html/details-open4-expected.png:
3233 * platform/mac/fast/html/details-open4-expected.txt:
3234 * platform/mac/fast/html/details-replace-summary-child-expected.png:
3235 * platform/mac/fast/html/details-replace-summary-child-expected.txt:
3236 * platform/mac/fast/html/details-replace-text-expected.png:
3237 * platform/mac/fast/html/details-replace-text-expected.txt:
3238 * platform/mac/fast/html/keygen-expected.png:
3239 * platform/mac/fast/html/keygen-expected.txt:
3240 * platform/mac/fast/images/image-controls-basic-expected.png:
3241 * platform/mac/fast/images/image-controls-basic-expected.txt:
3242 * platform/mac/fast/lists/dynamic-marker-crash-expected.png:
3243 * platform/mac/fast/lists/dynamic-marker-crash-expected.txt:
3244 * platform/mac/fast/overflow/overflow-x-y-expected.png:
3245 * platform/mac/fast/overflow/overflow-x-y-expected.txt:
3246 * platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png:
3247 * platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt:
3248 * platform/mac/fast/overflow/scrollRevealButton-expected.png:
3249 * platform/mac/fast/overflow/scrollRevealButton-expected.txt:
3250 * platform/mac/fast/parser/document-write-option-expected.png:
3251 * platform/mac/fast/parser/document-write-option-expected.txt:
3252 * platform/mac/fast/parser/entity-comment-in-textarea-expected.png:
3253 * platform/mac/fast/parser/entity-comment-in-textarea-expected.txt:
3254 * platform/mac/fast/parser/open-comment-in-textarea-expected.png:
3255 * platform/mac/fast/parser/open-comment-in-textarea-expected.txt:
3256 * platform/mac/fast/repaint/control-clip-expected.png:
3257 * platform/mac/fast/repaint/control-clip-expected.txt:
3258 * platform/mac/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.png:
3259 * platform/mac/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.txt:
3260 * platform/mac/fast/repaint/search-field-cancel-expected.png:
3261 * platform/mac/fast/repaint/search-field-cancel-expected.txt:
3262 * platform/mac/fast/repaint/selection-gap-fixed-child-expected.txt: Added.
3263 * platform/mac/fast/repaint/selection-gap-flipped-fixed-child-expected.txt: Added.
3264 * platform/mac/fast/repaint/subtree-root-skipped-expected.png:
3265 * platform/mac/fast/repaint/subtree-root-skipped-expected.txt:
3266 * platform/mac/fast/replaced/replaced-breaking-expected.png:
3267 * platform/mac/fast/replaced/replaced-breaking-expected.txt:
3268 * platform/mac/fast/replaced/replaced-breaking-mixture-expected.png:
3269 * platform/mac/fast/replaced/replaced-breaking-mixture-expected.txt:
3270 * platform/mac/fast/replaced/width100percent-button-expected.png:
3271 * platform/mac/fast/replaced/width100percent-button-expected.txt:
3272 * platform/mac/fast/replaced/width100percent-menulist-expected.png:
3273 * platform/mac/fast/replaced/width100percent-menulist-expected.txt:
3274 * platform/mac/fast/selectors/064-expected.png:
3275 * platform/mac/fast/selectors/064-expected.txt:
3276 * platform/mac/fast/spatial-navigation/snav-multiple-select-focusring-expected.png:
3277 * platform/mac/fast/spatial-navigation/snav-multiple-select-focusring-expected.txt:
3278 * platform/mac/fast/table/003-expected.png:
3279 * platform/mac/fast/table/003-expected.txt:
3280 * platform/mac/fast/table/append-cells2-expected.png:
3281 * platform/mac/fast/table/append-cells2-expected.txt:
3282 * platform/mac/fast/table/colspanMinWidth-expected.png:
3283 * platform/mac/fast/table/colspanMinWidth-expected.txt:
3284 * platform/mac/fast/table/colspanMinWidth-vertical-expected.png:
3285 * platform/mac/fast/table/colspanMinWidth-vertical-expected.txt:
3286 * platform/mac/fast/table/remove-td-display-none-expected.png:
3287 * platform/mac/fast/table/remove-td-display-none-expected.txt:
3288 * platform/mac/fast/table/spanOverlapRepaint-expected.png:
3289 * platform/mac/fast/table/spanOverlapRepaint-expected.txt:
3290 * platform/mac/fast/table/text-field-baseline-expected.png:
3291 * platform/mac/fast/table/text-field-baseline-expected.txt:
3292 * platform/mac/fast/text/atsui-rtl-override-selection-expected.png:
3293 * platform/mac/fast/text/atsui-rtl-override-selection-expected.txt:
3294 * platform/mac/fast/text/backslash-to-yen-sign-euc-expected.png:
3295 * platform/mac/fast/text/backslash-to-yen-sign-euc-expected.txt:
3296 * platform/mac/fast/text/backslash-to-yen-sign-expected.txt:
3297 * platform/mac/fast/text/complex-text-opacity-expected.png:
3298 * platform/mac/fast/text/complex-text-opacity-expected.txt:
3299 * platform/mac/fast/text/drawBidiText-expected.png:
3300 * platform/mac/fast/text/drawBidiText-expected.txt:
3301 * platform/mac/fast/text/emphasis-expected.txt:
3302 * platform/mac/fast/text/fallback-traits-fixup-expected.txt:
3303 * platform/mac/fast/text/indic-expected.txt:
3304 * platform/mac/fast/text/international/003-expected.txt:
3305 * platform/mac/fast/text/international/bidi-listbox-atsui-expected.png:
3306 * platform/mac/fast/text/international/bidi-listbox-atsui-expected.txt:
3307 * platform/mac/fast/text/international/bidi-listbox-expected.txt:
3308 * platform/mac/fast/text/international/bidi-menulist-expected.txt:
3309 * platform/mac/fast/text/international/bidi-mirror-he-ar-expected.png:
3310 * platform/mac/fast/text/international/bidi-mirror-he-ar-expected.txt:
3311 * platform/mac/fast/text/international/bold-bengali-expected.txt:
3312 * platform/mac/fast/text/international/complex-character-based-fallback-expected.png:
3313 * platform/mac/fast/text/international/complex-character-based-fallback-expected.txt:
3314 * platform/mac/fast/text/international/danda-space-expected.png:
3315 * platform/mac/fast/text/international/danda-space-expected.txt:
3316 * platform/mac/fast/text/international/hindi-whitespace-expected.png:
3317 * platform/mac/fast/text/international/hindi-whitespace-expected.txt:
3318 * platform/mac/fast/text/international/khmer-selection-expected.png:
3319 * platform/mac/fast/text/international/khmer-selection-expected.txt:
3320 * platform/mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png:
3321 * platform/mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt:
3322 * platform/mac/fast/text/international/synthesized-italic-vertical-latin-expected.txt:
3323 * platform/mac/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png:
3324 * platform/mac/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt:
3325 * platform/mac/fast/text/international/wrap-CJK-001-expected.txt:
3326 * platform/mac/fast/text/justify-ideograph-complex-expected.txt:
3327 * platform/mac/fast/text/justify-ideograph-simple-expected.txt:
3328 * platform/mac/fast/text/justify-ideograph-vertical-expected.txt:
3329 * platform/mac/fast/text/khmer-lao-font-expected.txt:
3330 * platform/mac/fast/text/midword-break-before-surrogate-pair-2-expected.txt:
3331 * platform/mac/fast/text/systemFont-expected.txt: Added.
3332 * platform/mac/fast/text/textIteratorNilRenderer-expected.png:
3333 * platform/mac/fast/text/textIteratorNilRenderer-expected.txt:
3334 * platform/mac/fast/text/updateNewFont-expected.txt:
3335 * platform/mac/fast/text/vertical-no-sideways-expected.txt: Added.
3336 * platform/mac/fast/transforms/transformed-focused-text-input-expected.png:
3337 * platform/mac/fast/transforms/transformed-focused-text-input-expected.txt:
3338 * platform/mac/http/tests/media/media-source/mediasource-addsourcebuffer-expected.txt: Added.
3339 * platform/mac/http/tests/navigation/javascriptlink-frames-expected.png:
3340 * platform/mac/http/tests/navigation/javascriptlink-frames-expected.txt:
3341 * platform/mac/js/dom/global-constructors-attributes-expected.txt:
3342 * platform/mac/mathml/opentype/large-operators-expected.txt:
3343 * platform/mac/mathml/opentype/munderover-window-resize-expected.png: Added.
3344 * platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.png: Added.
3345 * platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.txt:
3346 * platform/mac/mathml/opentype/vertical-expected.txt:
3347 * platform/mac/media/audio-controls-rendering-expected.png:
3348 * platform/mac/media/audio-controls-rendering-expected.txt:
3349 * platform/mac/media/controls-strict-expected.png:
3350 * platform/mac/media/controls-strict-expected.txt:
3351 * platform/mac/media/video-controls-rendering-expected.txt:
3352 * platform/mac/media/video-display-toggle-expected.txt:
3353 * platform/mac/media/video-no-audio-expected.png:
3354 * platform/mac/media/video-no-audio-expected.txt:
3355 * platform/mac/media/video-volume-slider-expected.txt:
3356 * platform/mac/platform/mac/accessibility/form-control-value-settable-expected.txt: Removed.
3357 * platform/mac/platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: Removed.
3358 * platform/mac/platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt: Removed.
3359 * platform/mac/platform/mac/fast/text/systemFont-expected.txt: Removed.
3360 * platform/mac/platform/mac/fast/text/vertical-no-sideways-expected.png: Removed.
3361 * platform/mac/platform/mac/fast/text/vertical-no-sideways-expected.txt: Removed.
3362 * platform/mac/plugins/mouse-click-plugin-clears-selection-expected.txt:
3363 * platform/mac/scrollbars/key-window-not-first-responder-expected.txt:
3364 * platform/mac/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png:
3365 * platform/mac/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt:
3366 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.png:
3367 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt:
3368 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.png:
3369 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt:
3370 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.png:
3371 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt:
3372 * platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.png:
3373 * platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt:
3374 * platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.png:
3375 * platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt:
3376 * platform/mac/svg/custom/inline-svg-in-xhtml-expected.png:
3377 * platform/mac/svg/custom/inline-svg-in-xhtml-expected.txt:
3378 * platform/mac/svg/hixie/mixed/003-expected.png:
3379 * platform/mac/svg/hixie/mixed/003-expected.txt:
3380 * platform/mac/svg/text/bidi-text-query-expected.png:
3381 * platform/mac/svg/text/bidi-text-query-expected.txt:
3382 * platform/mac/tables/mozilla/bugs/bug1188-expected.txt:
3383 * platform/mac/tables/mozilla/bugs/bug12384-expected.txt:
3384 * platform/mac/tables/mozilla/bugs/bug138725-expected.txt:
3385 * platform/mac/tables/mozilla/bugs/bug18359-expected.txt:
3386 * platform/mac/tables/mozilla/bugs/bug24200-expected.txt:
3387 * platform/mac/tables/mozilla/bugs/bug2479-2-expected.txt:
3388 * platform/mac/tables/mozilla/bugs/bug2479-3-expected.txt:
3389 * platform/mac/tables/mozilla/bugs/bug2479-4-expected.txt:
3390 * platform/mac/tables/mozilla/bugs/bug28928-expected.txt:
3391 * platform/mac/tables/mozilla/bugs/bug29326-expected.txt:
3392 * platform/mac/tables/mozilla/bugs/bug30559-expected.txt:
3393 * platform/mac/tables/mozilla/bugs/bug30692-expected.txt:
3394 * platform/mac/tables/mozilla/bugs/bug33855-expected.txt:
3395 * platform/mac/tables/mozilla/bugs/bug4382-expected.txt:
3396 * platform/mac/tables/mozilla/bugs/bug4527-expected.txt:
3397 * platform/mac/tables/mozilla/bugs/bug46368-1-expected.txt:
3398 * platform/mac/tables/mozilla/bugs/bug46368-2-expected.txt:
3399 * platform/mac/tables/mozilla/bugs/bug51037-expected.txt:
3400 * platform/mac/tables/mozilla/bugs/bug51727-expected.txt:
3401 * platform/mac/tables/mozilla/bugs/bug52505-expected.txt:
3402 * platform/mac/tables/mozilla/bugs/bug52506-expected.txt:
3403 * platform/mac/tables/mozilla/bugs/bug55545-expected.txt:
3404 * platform/mac/tables/mozilla/bugs/bug59354-expected.txt:
3405 * platform/mac/tables/mozilla/bugs/bug60749-expected.txt:
3406 * platform/mac/tables/mozilla/bugs/bug68912-expected.txt:
3407 * platform/mac/tables/mozilla/bugs/bug7342-expected.txt:
3408 * platform/mac/tables/mozilla/bugs/bug96334-expected.txt:
3409 * platform/mac/tables/mozilla/bugs/bug99948-expected.txt:
3410 * platform/mac/tables/mozilla/collapsing_borders/bug41262-4-expected.txt:
3411 * platform/mac/tables/mozilla/core/margins-expected.txt:
3412 * platform/mac/tables/mozilla/dom/tableDom-expected.txt:
3413 * platform/mac/tables/mozilla/other/move_row-expected.txt:
3414 * platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.txt:
3415 * platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
3416 * platform/mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt:
3417 * platform/mac/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt:
3418 * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt:
3419 * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt:
3420 * platform/mac/transforms/2d/hindi-rotated-expected.txt:
3421 * platform/mac/transforms/2d/zoom-menulist-expected.txt:
3422 * platform/mac/transforms/3d/general/perspective-non-layer-expected.txt:
3424 2014-10-10 Andrzej Badowski <a.badowski@samsung.com>
3426 [ATK] Changing the mapping of ARIA rowheader and columnheader into respective ATK roles.
3427 https://bugs.webkit.org/show_bug.cgi?id=136150
3429 Reviewed by Chris Fleizach.
3431 Minor changes in the roles-exposed test to check the mapping of rowheader and columnheader.
3432 As a result of changes in the code test also shows the changes for the <th> element.
3433 Changes expectations so that they cover propoer mapping of RowHeaderRole and ColumnHeaderRole.
3435 * accessibility/aria-tables-expected.txt:
3436 * accessibility/roles-exposed.html:
3437 * accessibility/table-roles-hierarchy-expected.txt: Added.
3438 * accessibility/table-roles-hierarchy.html: Added.
3439 * platform/efl/accessibility/roles-exposed-expected.txt: Added.
3440 * platform/efl/accessibility/table-attributes-expected.txt:
3441 * platform/efl/accessibility/table-cells-expected.txt:
3442 * platform/efl/accessibility/table-detection-expected.txt:
3443 * platform/gtk/accessibility/roles-exposed-expected.txt: Added.
3444 * platform/gtk/accessibility/table-attributes-expected.txt:
3445 * platform/gtk/accessibility/table-cells-expected.txt:
3446 * platform/gtk/accessibility/table-sections-expected.txt:
3447 * platform/mac/accessibility/aria-tables-expected.txt: Copied from LayoutTests/accessibility/aria-tables-expected.txt.
3448 * platform/mac/accessibility/table-roles-hierarchy-expected.txt: Added.
3450 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3452 Rename some tests that oddly had -html.html suffixes.
3454 * platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-background-composited-expected.html: Renamed from LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-background-composited-html-expected.html.
3455 * platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-background-composited.html: Renamed from LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-background-composited-html.html.
3456 * platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-expected.png: Renamed from LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-html-expected.png.
3457 * platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-expected.txt: Renamed from LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-html-expected.txt.
3458 * platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity.html: Renamed from LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-opacity-html.html.
3459 * platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed-expected.png: Renamed from LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed-html-expected.png.
3460 * platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed-expected.txt: Renamed from LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed-html-expected.txt.
3461 * platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed.html: Renamed from LayoutTests/platform/mac-wk2/tiled-drawing/scrolling/fixed-background/fixed-body-background-transformed-html.html.
3463 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3465 Tweak some Mac test expectations.
3467 * platform/mac-wk2/TestExpectations:
3468 * platform/mac/TestExpectations:
3470 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3472 Mac TestExpectations cleanup.
3474 Re-enable tests that now pass. Mark skipped tests as [ Failure ] when possible,
3475 and rebaseline some tests.
3477 * perf/nested-combined-selectors-expected.txt: Added.
3478 * platform/mac-wk2/TestExpectations:
3479 * platform/mac/TestExpectations:
3480 * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-1-expected.txt:
3481 * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-2-expected.txt:
3482 * platform/mac/editing/spelling/autocorrection-delete-expected.txt:
3483 * platform/mac/editing/spelling/autocorrection-in-textarea-expected.txt:
3484 * platform/mac/editing/spelling/autocorrection-removing-underline-after-paste-expected.txt:
3485 * platform/mac/editing/spelling/autocorrection-removing-underline-expected.txt:
3486 * platform/mac/editing/spelling/autocorrection-simple-expected.txt:
3487 * platform/mac/editing/spelling/delete-autocorrected-word-1-expected.txt:
3488 * platform/mac/editing/spelling/delete-autocorrected-word-2-expected.txt:
3489 * platform/mac/fast/dom/HTMLProgressElement/progress-element-expected.txt: Added.
3490 * platform/mac/fast/forms/text-control-intrinsic-widths-expected.txt:
3491 * platform/mac/fast/text/combining-character-sequence-fallback-expected.txt: Renamed from LayoutTests/platform/mac/platform/mac/fast/text/combining-character-sequence-fallback-expected.txt.
3492 * platform/mac/media/controls-styling-expected.txt:
3493 * platform/mac/media/video-zoom-controls-expected.txt:
3494 * platform/mac/platform/mac/fast/text/combining-character-sequence-fallback-expected.png: Removed.
3496 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3498 Skip webgl tests in the iOS Simulator.
3500 * platform/ios-simulator/TestExpectations:
3502 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3504 iOS Simulator results for webaudio tests.
3506 * platform/ios-simulator/webaudio/*: Added
3508 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3510 iOS Simulator results for webarchive tests.
3512 * platform/ios-simulator/webarchive/*: Added
3514 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3516 iOS Simulator and generic results for userscripts tests.
3518 * platform/ios-simulator/userscripts/user-script-plugin-document-expected.txt: Added.
3519 * userscripts/script-run-at-end-expected.txt: Added.
3521 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3523 iOS Simulator results (many of which are failures) for transitions tests.
3525 * platform/ios-simulator/transitions/*: Added
3527 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3529 iOS Simulator results for transforms tests.
3531 * platform/ios-simulator/transforms/*: Added
3533 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3535 iOS Simulator results for tables tests.
3537 * platform/ios-simulator/tables/*: Added
3539 2014-10-09 Simon Fraser <simon.fraser@apple.com>
3541 Denote some crashing SVG tests.
3543 * platform/ios-simulator/TestExpectations:
3545 2014-10-09 Dean Jackson <dino@apple.com>
3547 Computed style for clip is wrong with respect to auto
3548 https://bugs.webkit.org/show_bug.cgi?id=137567
3550 Reviewed by Simon Fraser.
3552 Test that an input of clip: rect(auto, auto, auto, auto)
3553 is the same on the way out.
3555 * fast/css/computed-clip-with-auto-rect-expected.txt: Added.
3556 * fast/css/computed-clip-with-auto-rect.html: Added.
3558 2014-10-09 Said Abou-Hallawa <sabouhallawa@apple.com>
3560 RenderMathMLUnderOver adds spacing to the child operator indefinitely when zooming or resizing the window.
3561 https://bugs.webkit.org/show_bug.cgi?id=137330
3563 Reviewed by Darin Adler, Daniel Bates.
3565 When the alignment is center, which is the common case for math, changing the size of
3566 an object affects the position of this object also. We need to confirm that zooming or
3567 resizing the window should not affect the rectangle of the over/under math object operator.
3569 * mathml/opentype/munderover-window-resize-expected.txt: Added.
3570 * mathml/opentype/munderover-window-resize.html: Added.
3571 New test with many under and over math objects. After loading the page, the window is resized and
3572 the view is zoomed in and out to make sure the layout of these under and over objects were not changed.
3573 * platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.txt:
3574 This test was wrong because of the spacing issue. The page has two <mover> math objects at the beginning.
3575 Each of them has an <mspace> child. The width of the first <mspace> is 1em while the width of the second
3576 <mspace> is 2em. The font size is 10pt. So it is expected to have the first one 10 pixels and the second
3577 to be 20 pixels. In the test, the width of the first is 22 and the width of the second is 32.
3578 I do expect this test to fail on other platforms since they have the same mistake which is now fixed. I am
3579 going to submit the mac expected version only and when it fails I am going to collect the result and submit
3580 another patch for the other platforms expected files.
3582 2014-10-09 Dean Jackson <dino@apple.com>
3584 Import W3C @supports tests
3585 https://bugs.webkit.org/show_bug.cgi?id=137569
3586 <rdar://problem/18601076>
3588 Reviewed by Simon Fraser.
3590 Import the tests from https://test.csswg.org/source/css-conditional-3/
3592 We currently fail 2 tests, tracked in TestExpectations.
3595 * css3/conditional/w3c/LICENSE: Added.
3596 * css3/conditional/w3c/at-supports-001-expected.html: Added.
3597 * css3/conditional/w3c/at-supports-001.html: Added.
3598 * css3/conditional/w3c/at-supports-002-expected.html: Added.
3599 * css3/conditional/w3c/at-supports-002.html: Added.
3600 * css3/conditional/w3c/at-supports-003-expected.html: Added.
3601 * css3/conditional/w3c/at-supports-003.html: Added.
3602 * css3/conditional/w3c/at-supports-004-expected.html: Added.
3603 * css3/conditional/w3c/at-supports-004.html: Added.
3604 * css3/conditional/w3c/at-supports-005-expected.html: Added.
3605 * css3/conditional/w3c/at-supports-005.html: Added.
3606 * css3/conditional/w3c/at-supports-006-expected.html: Added.
3607 * css3/conditional/w3c/at-supports-006.html: Added.
3608 * css3/conditional/w3c/at-supports-007-expected.html: Added.
3609 * css3/conditional/w3c/at-supports-007.html: Added.
3610 * css3/conditional/w3c/at-supports-008-expected.html: Added.
3611 * css3/conditional/w3c/at-supports-008.html: Added.
3612 * css3/conditional/w3c/at-supports-009-expected.html: Added.
3613 * css3/conditional/w3c/at-supports-009.html: Added.
3614 * css3/conditional/w3c/at-supports-010-expected.html: Added.
3615 * css3/conditional/w3c/at-supports-010.html: Added.
3616 * css3/conditional/w3c/at-supports-011-expected.html: Added.
3617 * css3/conditional/w3c/at-supports-011.html: Added.
3618 * css3/conditional/w3c/at-supports-012-expected.html: Added.
3619 * css3/conditional/w3c/at-supports-012.html: Added.
3620 * css3/conditional/w3c/at-supports-013-expected.html: Added.
3621 * css3/conditional/w3c/at-supports-013.html: Added.
3622 * css3/conditional/w3c/at-supports-014-expected.html: Added.
3623 * css3/conditional/w3c/at-supports-014.html: Added.
3624 * css3/conditional/w3c/at-supports-015-expected.html: Added.
3625 * css3/conditional/w3c/at-supports-015.html: Added.
3626 * css3/conditional/w3c/at-supports-016-expected.html: Added.
3627 * css3/conditional/w3c/at-supports-016.html: Added.
3628 * css3/conditional/w3c/at-supports-017-expected.html: Added.
3629 * css3/conditional/w3c/at-supports-017.html: Added.
3630 * css3/conditional/w3c/at-supports-018-expected.html: Added.
3631 * css3/conditional/w3c/at-supports-018.html: Added.
3632 * css3/conditional/w3c/at-supports-019-expected.html: Added.
3633 * css3/conditional/w3c/at-supports-019.html: Added.
3634 * css3/conditional/w3c/at-supports-020-expected.html: Added.
3635 * css3/conditional/w3c/at-supports-020.html: Added.
3636 * css3/conditional/w3c/at-supports-021-expected.html: Added.
3637 * css3/conditional/w3c/at-supports-021.html: Added.
3638 * css3/conditional/w3c/at-supports-022-expected.html: Added.
3639 * css3/conditional/w3c/at-supports-022.html: Added.
3640 * css3/conditional/w3c/at-supports-023-expected.html: Added.
3641 * css3/conditional/w3c/at-supports-023.html: Added.
3642 * css3/conditional/w3c/at-supports-024-expected.html: Added.
3643 * css3/conditional/w3c/at-supports-024.html: Added.