1 2014-10-20 Youenn Fablet <youenn.fablet@crf.canon.fr>
3 Tighten XMLHttpRequest setRequestHeader value check
4 https://bugs.webkit.org/show_bug.cgi?id=128593
6 Reviewed by Darin Adler.
8 Added a test originating from w3c-test.org to test header values checking.
9 Testing headers with non ASCII characters and various control characters.
11 * http/tests/xmlhttprequest/set-bad-headervalue-expected.txt: Added.
12 * http/tests/xmlhttprequest/set-bad-headervalue.html: Added.
14 2014-10-20 Brent Fulgham <bfulgham@apple.com>
16 [Win] Mark a few tests as no-longer failing.
18 It looks like Said's work on SVG has fixed a number of things!
20 * platform/win/TestExpectations: Remove 'crash' and 'failures' cases
21 for a few things that are now reliably passing.
23 2014-10-20 Dean Jackson <dino@apple.com>
25 [Mac] Support "inverted-colors" and "monochrome" media feature.
26 https://bugs.webkit.org/show_bug.cgi?id=137535
27 <rdar://problem/18586398>
29 Reviewed by Brent Fulgham.
31 Add tests for the new "inverted-colors" media feature, and
32 another test for the "monochrome" feature. Note that these
33 tests don't actually exercise the positive values of the
34 query, since that requires the screen to be changed and would
35 interfere with concurrent tests.
37 * fast/media/mq-inverted-colors.html: Added.
38 * fast/media/mq-monochrome.html: Added.
39 * fast/media/mq-inverted-colors-expected.html: Added.
40 * fast/media/mq-monochrome-expected.html: Added.
42 2014-10-20 Alexey Proskuryakov <ap@apple.com>
44 Eight transitions tests are very flaky, frequently failing all at once
45 https://bugs.webkit.org/show_bug.cgi?id=137883
47 Marking them as flaky. Enough is enough.
51 2014-10-20 Jer Noble <jer.noble@apple.com>
53 REGRESSION(r174823): Two new failing HLS tests
54 https://bugs.webkit.org/show_bug.cgi?id=137882
56 Unreviewed gardening; add two expected failures.
58 * platform/mac/TestExpectations:
60 2014-10-20 Benjamin Poulain <benjamin@webkit.org>
62 Update the <link>'s link status
63 https://bugs.webkit.org/show_bug.cgi?id=137861
65 Reviewed by Chris Dumez.
67 * fast/css/link-basics-expected.html: Added.
68 * fast/css/link-basics.html: Added.
69 * fast/selectors/link-basics-expected.txt: Added.
70 * fast/selectors/link-basics-xhtml-expected.txt: Added.
71 * fast/selectors/link-basics-xhtml.xhtml: Added.
72 * fast/selectors/link-basics.html: Added.
73 * fast/selectors/resources/html-link-type-tests.js: Added.
75 (testHTMLTagsForLink):
76 * fast/selectors/webkit-any-link-basics-expected.txt: Added.
77 * fast/selectors/webkit-any-link-basics.html: Added.
79 2014-10-18 Antti Koivisto <antti@apple.com>
81 REGRESSION (r173356): Safari can't install a profile, gets 'Download Failed error
82 https://bugs.webkit.org/show_bug.cgi?id=137855
84 Reviewed by Dan Bernstein.
86 * http/tests/mime/mime-type-sniff-expected.txt: Added.
87 * http/tests/mime/mime-type-sniff.html: Added.
88 * http/tests/mime/resources/png-with-text-content-type.cgi: Added.
90 2014-10-18 Chris Fleizach <cfleizach@apple.com>
92 AX: Tables with <colgroups> are not reporting table column headers
93 https://bugs.webkit.org/show_bug.cgi?id=137846
95 Reviewed by Mario Sanchez Prada.
97 * accessibility/table-column-headers-with-captions-expected.txt: Added.
98 * accessibility/table-column-headers-with-captions.html: Added.
100 2014-10-17 Michael Saboff <msaboff@apple.com>
102 Don't create cached functions that access lexicalGlobalObject()
103 https://bugs.webkit.org/show_bug.cgi?id=137839
105 Reviewed by Geoffrey Garen.
107 Updadted test that check for
109 * fast/dom/wrapper-scope-expected.txt:
110 * fast/dom/wrapper-scope.html:
111 Removed "close" and "postMessage" from functions to check for wrapper scope.
113 * http/tests/security/cross-frame-access-put-expected.txt:
114 * http/tests/security/resources/cross-frame-iframe-for-put-test.html:
115 Removed "blur", "close" and "focus" from the functions to test, since this tests that
116 a parent's and child window's instances are the same. Now they are always different.
118 * js/dom/global-function-resolve-expected.txt:
119 * js/dom/script-tests/global-function-resolve.js:
120 Removed "close" from this lists of functions to check.
122 2014-10-17 Benjamin Poulain <benjamin@webkit.org>
124 Make a better use of the available registers when compiling nested selector lists
125 https://bugs.webkit.org/show_bug.cgi?id=137802
127 Reviewed by Andreas Kling.
129 The register pressure cases are already well covered by fast/selectors/nth-child-of-boundaries-*.
130 The new test covers the maximum register pressure inside :nth-child(of) and having the selector with
131 max pressure inside a selector list instead of being alone/first.
133 * fast/selectors/nth-child-of-register-requirement-expected.txt: Added.
134 * fast/selectors/nth-child-of-register-requirement.html: Added.
136 2014-10-17 Brent Fulgham <bfulgham@apple.com>
138 [Win] Unreviewed test gardening. Mark some tests as passing that have benefitted from recent bug fixes.
140 * platform/win/TestExpectations:
142 2014-10-17 Andreas Kling <akling@apple.com>
144 Add test for innerHTML mutations that yield identical DOM.
145 <https://webkit.org/b/137823>
147 Reviewed by Chris Dumez.
149 I made this test while working on an optimization, and it seems useful
150 to have in the tree since it adds additional coverage. The optimization
153 The test works by creating little DOM subtrees like so:
155 <foo><bar>some text</bar></foo>
157 It then overwrites that subtree with an identical one by mutating the
158 containing element's innerHTML property. It then verifies that the DOM
159 structure is correct and that Node wrappers retain any custom properties
162 * fast/innerHTML/identical-mutations-expected.txt: Added.
163 * fast/innerHTML/identical-mutations.html: Added.
165 2014-10-16 Jer Noble <jer.noble@apple.com>
167 [Mac] Represent AVMediaSelectionOptions as AudioTracks
168 https://bugs.webkit.org/show_bug.cgi?id=137474
170 Reviewed by Brent Fulgham.
172 * http/tests/media/hls/hls-audio-tracks-expected.txt: Added.
173 * http/tests/media/hls/hls-audio-tracks.html: Added.
174 * http/tests/media/resources/hls/audio-tracks.m3u8: Added.
175 * http/tests/media/resources/hls/bipbop/iframe_index.m3u8: Added.
176 * http/tests/media/resources/hls/bipbop/main0.ts: Added.
177 * http/tests/media/resources/hls/bipbop/main1.ts: Added.
178 * http/tests/media/resources/hls/bipbop/prog_index.m3u8: Added.
179 * http/tests/media/resources/hls/french/main.aac: Added.
180 * http/tests/media/resources/hls/french/prog_index.m3u8: Added.
181 * http/tests/media/resources/hls/spanish/main.aac: Added.
182 * http/tests/media/resources/hls/spanish/prog_index.m3u8: Added.
184 2014-10-17 Brent Fulgham <bfulgham@apple.com>
186 [Win] Test gardening after r174796.
188 Now that Windows DRT matches Mac's output, we can get rid of some custom test expecations.
190 * platform/win/fast/dom/window-load-crash-expected.txt: Removed.
191 * platform/win/fast/images/crossfade-client-not-removed-crash-expected.txt: Removed.
192 * platform/win/fast/ruby/before-block-doesnt-crash-expected.txt: Removed.
193 * platform/win/fast/ruby/before-table-doesnt-crash-expected.txt: Removed.
194 * platform/win/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Removed.
195 * platform/win/loader/image-loader-adoptNode-assert-expected.txt: Removed.
197 2014-10-15 Yusuke Suzuki <utatane.tea@gmail.com>
199 CSS Selectors Level 4: Implement :matches in SelectorChecker
200 https://bugs.webkit.org/show_bug.cgi?id=137393
202 Reviewed by Benjamin Poulain.
204 * fast/selectors/matches-selector-list-expected.txt: Added.
205 * fast/selectors/matches-selector-list.html: Added.
206 * fast/selectors/querySelector-matches-expected.txt: Added.
207 * fast/selectors/querySelector-matches.html: Added.
209 2014-10-16 Alexey Proskuryakov <ap@apple.com>
211 REGRESSION (r169024): Undetermined text is not displayed in the search field of Adobe Help Website
212 https://bugs.webkit.org/show_bug.cgi?id=137679
213 rdar://problem/18450335
215 Reviewed by Enrica Casucci.
217 * platform/mac/editing/input/selected-composed-text-painting-expected.html: Added.
218 * platform/mac/editing/input/selected-composed-text-painting.html: Added.
220 2014-10-16 Zalan Bujtas <zalan@apple.com>
222 [Mac] Unreviewed gardening.
224 * platform/mac/TestExpectations:
226 2014-10-16 Zalan Bujtas <zalan@apple.com>
228 [Mac] Unreviewed gardening.
230 Unskip more subpixel related tests.
232 * platform/mac/TestExpectations:
234 2014-10-16 Zalan Bujtas <zalan@apple.com>
236 [Mac] Unreviewed gardening.
238 Unskip subpixel border tests.
240 * platform/mac/TestExpectations:
241 * platform/mac/css1/units/length_units-expected.txt:
242 * platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt:
243 * platform/mac/fast/repaint/repaint-during-scroll-with-zoom-expected.txt:
244 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-initial-value-001-expected.txt:
245 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-001-expected.txt:
246 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-002-expected.txt:
247 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-style-004-expected.txt:
248 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001-expected.txt:
249 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001-expected.txt:
250 * platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003-expected.txt:
251 * platform/mac/media/video-zoom-expected.txt:
252 * platform/mac/svg/custom/svg-fonts-in-html-expected.txt:
253 * platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.txt:
254 * platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
256 2014-10-15 Andrei Bucur <abucur@adobe.com>
258 ASSERTION FAILED in WebCore::RenderFlowThread::getRegionRangeForBox
259 https://bugs.webkit.org/show_bug.cgi?id=135563
261 Reviewed by David Hyatt.
263 A test verifying that positioned elements inside multi-column containers don't
264 cause assertions or crashes.
266 * fast/multicol/multicol-all-positioned-crash-expected.txt: Added.
267 * fast/multicol/multicol-all-positioned-crash.html: Added.
268 * fast/multicol/multicol-transform-containing-block-expected.txt: Added.
269 * fast/multicol/multicol-transform-containing-block.html: Added.
271 2014-10-15 Commit Queue <commit-queue@webkit.org>
273 Unreviewed, rolling out r174753.
274 https://bugs.webkit.org/show_bug.cgi?id=137761
276 caused layout tests to fail. (Requested by zalan on #webkit).
280 "[Mac] Unreviewed gardening."
281 http://trac.webkit.org/changeset/174753
283 2014-10-15 Zalan Bujtas <zalan@apple.com>
285 [Mac] Unreviewed gardening.
287 Unskip subpixel border tests.
289 * platform/mac/TestExpectations:
291 2014-10-15 Zalan Bujtas <zalan@apple.com>
293 [Mac] Unreviewed gardening(mountain-lion).
295 * platform/mac-mountainlion/fast/text/international/hindi-spacing-expected.txt: Added.
297 2014-10-15 Zalan Bujtas <zalan@apple.com>
299 [Mac] Unreviewed gardening.
303 * platform/mac/TestExpectations:
304 * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt:
305 * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt:
306 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt:
307 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt:
308 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt:
309 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt:
310 * platform/mac/fast/block/float/overhanging-tall-block-expected.txt:
311 * platform/mac/fast/events/constructors/mouse-event-constructor-expected.txt: Added.
312 * platform/mac/fast/events/constructors/wheel-event-constructor-expected.txt: Added.
313 * platform/mac/fast/text/international/hindi-spacing-expected.txt:
314 * platform/mac/fast/text/international/vertical-text-glyph-test-expected.txt:
315 * platform/mac/fast/text/orientation-sideways-expected.txt:
316 * platform/mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt:
317 * platform/mac/fast/writing-mode/japanese-ruby-vertical-lr-expected.txt:
318 * platform/mac/fast/writing-mode/japanese-ruby-vertical-rl-expected.txt:
319 * platform/mac/fast/writing-mode/vertical-font-fallback-expected.txt:
320 * platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt:
322 2014-10-13 Chris Fleizach <cfleizach@apple.com>
324 AX: Going back is broken for VoiceOver
325 https://bugs.webkit.org/show_bug.cgi?id=137382
327 Reviewed by Darin Adler.
329 Update tests now that AXLoadComplete is sent more reliably.
331 * platform/mac/accessibility/aria-expanded-notifications-expected.txt:
332 * platform/mac/accessibility/aria-expanded-notifications.html:
334 2014-10-15 Simon Fraser <simon.fraser@apple.com>
336 Sometimes can't scroll overflow:scroll areas in subframes
337 https://bugs.webkit.org/show_bug.cgi?id=137746
338 rdar://problem/18603560
340 Reviewed by Tim Horton.
342 Test that changes an overflow size in a subframe and then dumps the non-fast scrollable region.
344 * platform/mac-wk2/tiled-drawing/scrolling/frames/resources/layouting-frame.html: Added.
345 * platform/mac-wk2/tiled-drawing/scrolling/frames/scroll-region-after-frame-layout-expected.txt: Added.
346 * platform/mac-wk2/tiled-drawing/scrolling/frames/scroll-region-after-frame-layout.html: Added.
348 2014-10-15 Zalan Bujtas <zalan@apple.com>
350 [Mac] Unreviewed gardening.
354 * css3/flexbox/flex-rounding.html:
356 2014-10-15 Zalan Bujtas <zalan@apple.com>
358 [Mac] Unreviewed gardening.
360 Unskip some subpixel related tests.
362 * platform/mac/TestExpectations:
364 2014-10-15 Zalan Bujtas <zalan@apple.com>
366 [Mac] Unreviewed gardening.
368 css3/flexbox/flex-rounding.html passes now that subpixel is on.
370 * platform/mac/TestExpectations:
372 2014-10-15 Zalan Bujtas <zalan@apple.com>
374 Subpixel layout: Unskip fast/sub-pixel directory.
375 https://bugs.webkit.org/show_bug.cgi?id=137732
377 Reviewed by Simon Fraser.
382 * fast/sub-pixel/inline-block-with-padding-expected.txt: minor adjustment.
383 * fast/sub-pixel/zoomed-em-border-expected.html: minor adjustment.
384 * platform/mac/TestExpectations: we still have to skip couple of tests.
386 2014-10-14 Zalan Bujtas <zalan@apple.com>
388 REGRESSION (Safari 7.1/8.0): Border-radius and overflow hidden renders incorrectly.
389 https://bugs.webkit.org/show_bug.cgi?id=137205
391 Reviewed by Simon Fraser.
393 Child layer should not reset radius clipping behaviour.
395 * fast/layers/parent-clipping-overflow-is-overwritten-by-child-clipping-expected.html: Added.
396 * fast/layers/parent-clipping-overflow-is-overwritten-by-child-clipping.html: Added.
398 2014-10-14 Dan Bernstein <mitz@apple.com>
400 URLs that start with http:/// and https:/// lose two slashes when parsed, causing assertion failure and inconsistent behavior
401 https://bugs.webkit.org/show_bug.cgi?id=137718
403 Reviewed by Alexey Proskuryakov.
405 * fast/loader/url-parse-1-expected.txt: Updated results.
406 * fast/loader/url-parse-1.html: Added a few test cases.
407 * fast/url/file-http-base-expected.txt: Updated results.
408 * fast/url/host-expected.txt: Ditto.
409 * fast/url/invalid-urls-utf8-expected.txt: Ditto.
410 * fast/url/relative-expected.txt: Ditto.
411 * fast/url/standard-url-expected.txt: Ditto.
413 2014-10-14 Alexey Proskuryakov <ap@apple.com>
415 Re-adding fast/hidpi/image-srcset-relative-svg-canvas.html, as it still fails on bots
419 2014-10-14 Roger Fong <roger_fong@apple.com>
421 [Windows] Unreviewed gardening following r174585.
423 * platform/win/TestExpectations:
424 * platform/win/editing/inserting/4960120-1-expected.txt: Added.
425 * platform/win/editing/selection/select-across-readonly-input-1-expected.txt: Added.
426 * platform/win/editing/selection/select-across-readonly-input-2-expected.txt: Added.
427 * platform/win/editing/selection/select-across-readonly-input-3-expected.txt: Added.
428 * platform/win/editing/selection/select-across-readonly-input-4-expected.png: Added.
429 * platform/win/editing/selection/select-across-readonly-input-4-expected.txt: Added.
430 * platform/win/editing/selection/select-across-readonly-input-5-expected.png: Added.
431 * platform/win/editing/selection/select-across-readonly-input-5-expected.txt: Added.
432 * platform/win/fast/block/positioning/inline-block-relposition-expected.txt: Added.
433 * platform/win/fast/css/resize-corner-tracking-expected.png: Added.
434 * platform/win/fast/css/resize-corner-tracking-expected.txt: Added.
435 * platform/win/fast/css/text-input-with-webkit-border-radius-expected.txt: Added.
436 * platform/win/fast/dom/html-link-element-activation-behavior-url-is-null-expected.txt: Added.
437 * platform/win/fast/dynamic/positioned-movement-with-positioned-children-expected.txt: Added.
438 * platform/win/fast/events/shadow-event-path-2-expected.txt: Added.
439 * platform/win/fast/forms/003-expected.txt: Added.
440 * platform/win/fast/forms/004-expected.txt: Added.
441 * platform/win/fast/forms/button-default-title-expected.txt: Added.
442 * platform/win/fast/forms/button-generated-content-expected.png: Added.
443 * platform/win/fast/forms/button-generated-content-expected.txt: Added.
444 * platform/win/fast/forms/menulist-clip-expected.png: Added.
445 * platform/win/fast/forms/menulist-clip-expected.txt: Added.
446 * platform/win/fast/forms/menulist-deselect-update-expected.txt: Added.
447 * platform/win/fast/forms/menulist-style-color-expected.png: Added.
448 * platform/win/fast/forms/menulist-style-color-expected.txt: Added.
449 * platform/win/fast/forms/menulist-width-change-expected.txt: Added.
450 * platform/win/fast/forms/option-script-expected.txt: Added.
451 * platform/win/fast/forms/option-text-clip-expected.png: Added.
452 * platform/win/fast/forms/option-text-clip-expected.txt: Added.
453 * platform/win/fast/forms/select-writing-direction-natural-expected.png: Added.
454 * platform/win/fast/forms/select-writing-direction-natural-expected.txt: Added.
455 * platform/win/fast/forms/textarea-placeholder-visibility-1-expected.txt: Added.
456 * platform/win/fast/forms/textarea-placeholder-visibility-2-expected.txt: Added.
457 * platform/win/fast/forms/textarea-scrollbar-expected.png: Added.
458 * platform/win/fast/forms/textarea-scrollbar-expected.txt: Added.
459 * platform/win/fast/repaint/control-clip-expected.png: Added.
460 * platform/win/fast/repaint/control-clip-expected.txt: Added.
461 * platform/win/fast/repaint/selection-gap-fixed-child-expected.txt: Added.
462 * platform/win/fast/repaint/selection-gap-flipped-fixed-child-expected.txt: Added.
463 * platform/win/fast/table/append-cells2-expected.txt: Added.
464 * platform/win/fast/table/remove-td-display-none-expected.txt: Added.
465 * platform/win/fast/text/atsui-rtl-override-selection-expected.txt: Added.
466 * platform/win/tables/mozilla/bugs/bug30559-expected.txt: Added.
468 2014-10-13 Simon Fraser <simon.fraser@apple.com>
470 Rebaseline some compositing tests that are sensitive to the visible rect, and skip
471 tests that rely on media loading.
473 * platform/ios-simulator/TestExpectations:
474 * platform/ios-simulator/compositing/columns/hittest-composited-in-paginated-expected.txt:
475 * platform/ios-simulator/compositing/contents-scale/animating-expected.txt:
476 * platform/ios-simulator/compositing/contents-scale/rounded-contents-scale-expected.txt:
477 * platform/ios-simulator/compositing/contents-scale/scaled-ancestor-expected.txt:
478 * platform/ios-simulator/compositing/contents-scale/simple-scale-expected.txt:
479 * platform/ios-simulator/compositing/contents-scale/z-translate-expected.txt:
480 * platform/ios-simulator/compositing/geometry/partial-layout-update-expected.txt:
481 * platform/ios-simulator/compositing/geometry/root-layer-update-expected.txt:
482 * platform/ios-simulator/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.txt:
483 * platform/ios-simulator/compositing/overflow/clipping-behaviour-change-is-not-propagated-to-descendants-expected.txt:
484 * platform/ios-simulator/compositing/overflow/clipping-behaviour-change-is-not-propagated-to-descendants2-expected.txt:
485 * platform/ios-simulator/compositing/overflow/overflow-positioning-expected.txt:
486 * platform/ios-simulator/compositing/tiling/rotated-tiled-clamped-expected.txt:
487 * platform/ios-simulator/compositing/tiling/rotated-tiled-preserve3d-clamped-expected.txt:
488 * platform/ios-simulator/compositing/tiling/tile-cache-zoomed-expected.txt:
489 * platform/ios-simulator/compositing/tiling/tiled-layer-resize-expected.txt:
490 * platform/ios-simulator/compositing/transitions/singular-scale-transition-expected.txt:
491 * platform/ios-simulator/compositing/visible-rect/2d-transformed-expected.txt:
492 * platform/ios-simulator/compositing/visible-rect/3d-transform-style-expected.txt:
493 * platform/ios-simulator/compositing/visible-rect/3d-transformed-expected.txt:
494 * platform/ios-simulator/compositing/visible-rect/animated-expected.txt:
495 * platform/ios-simulator/compositing/visible-rect/animated-from-none-expected.txt:
496 * platform/ios-simulator/compositing/visible-rect/clipped-by-viewport-expected.txt:
497 * platform/ios-simulator/compositing/visible-rect/clipped-visible-rect-expected.txt:
498 * platform/ios-simulator/compositing/visible-rect/flipped-preserve-3d-expected.txt:
499 * platform/ios-simulator/compositing/visible-rect/iframe-and-layers-expected.txt:
500 * platform/ios-simulator/compositing/visible-rect/nested-transform-expected.txt:
501 * platform/ios-simulator/compositing/visible-rect/scrolled-expected.txt:
503 2014-10-14 Joanmarie Diggs <jdiggs@igalia.com>
505 REGRESSION(r174567): [GTK] Layout Tests platform/gtk/accessibility/aria-table-hierarchy.html and platform/gtk/accessibility/table-hierarchy.html fail
506 https://bugs.webkit.org/show_bug.cgi?id=137697
508 These tests were overlooked when updating tests to reflect the correct
509 mapping for ColumnHeaderRole and RowHeaderRole in ATK.
511 Reviewed by Chris Fleizach.
513 * platform/gtk/TestExpectations: Remove two failing tests.
514 * platform/gtk/accessibility/aria-table-hierarchy-expected.txt: Updated expectations.
515 * platform/gtk/accessibility/aria-table-hierarchy.html: Updated in-test shouldBe values for headers.
516 * platform/gtk/accessibility/table-hierarchy-expected.txt: Updated expectations.
517 * platform/gtk/accessibility/table-hierarchy.html: Updated in-test shouldBe values for headers.
519 2014-10-14 Carlos Alberto Lopez Perez <clopez@igalia.com>
521 [GTK] Unreviewed GTK gardening.
523 * platform/gtk/TestExpectations: Report new failures and update expectations.
524 * platform/gtk/css3/selectors3/html/css3-modsel-61-expected.txt: Rebaseline after r174535.
525 * platform/gtk/css3/selectors3/html/css3-modsel-83-expected.txt: Rebaseline after r174535.
526 * platform/gtk/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Rebaseline after r174535.
527 * platform/gtk/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Rebaseline after r174535.
528 * platform/gtk/css3/selectors3/xml/css3-modsel-61-expected.txt: Rebaseline after r174535.
529 * platform/gtk/css3/selectors3/xml/css3-modsel-83-expected.txt: Rebaseline after r174535.
530 * platform/gtk/fast/borders/bidi-002-expected.txt: Rebaseline after r174160.
531 * platform/gtk/fast/borders/bidi-009a-expected.txt: Rebaseline after r174160.
532 * platform/gtk/fast/selectors/061-expected.txt: Rebaseline after r174535.
533 * platform/gtk/fast/selectors/083-expected.txt: Rebaseline after r174535.
534 * platform/gtk/mathml/opentype/horizontal-expected.txt: Rebaseline after r174540.
536 2014-10-14 Youenn Fablet <youennf@gmail.com>
538 [XHR] Abort method execution when m_loader->cancel() in internalAbort() caused reentry
539 https://bugs.webkit.org/show_bug.cgi?id=126975
541 Reviewed by Alexey Proskuryakov.
543 Adding reentrant-cancel-abort.html (from https://codereview.chromium.org/76133002/)
544 that crashes without the patch
545 Updated reentrant-cancel.html test to expect the exception
546 that is now hit in initSend function (since a XHR open() call is aborted)
548 * http/tests/xmlhttprequest/reentrant-cancel-abort-expected.txt: Added.
549 * http/tests/xmlhttprequest/reentrant-cancel-abort.html: Added.
550 * http/tests/xmlhttprequest/reentrant-cancel.html:
552 2014-10-14 Alejandro G. Castro <alex@igalia.com>
554 Add test to check stretchy value is case sensitive
555 https://bugs.webkit.org/show_bug.cgi?id=137602
557 Reviewed by Darin Adler.
559 * mathml/presentation/mo-stretchy-case-sensitive-expected.html: Added.
560 * mathml/presentation/mo-stretchy-case-sensitive.html: Added.
562 2014-10-14 Alejandro G. Castro <alex@igalia.com>
564 Changes in the stretchy attribute do not update rendering
565 https://bugs.webkit.org/show_bug.cgi?id=136883
567 Reviewed by Darin Adler.
569 The test updates the stretchy value in a timeout.
571 * mathml/presentation/mo-stretch-update-expected.html: Added.
572 * mathml/presentation/mo-stretch-update.html: Added.
574 2014-10-14 Andrzej Badowski <a.badowski@samsung.com>
576 [AX] Improve AccessibilityTableCell columnHeaders and rowHeaders functions.
577 https://bugs.webkit.org/show_bug.cgi?id=136818
579 Reviewed by Chris Fleizach.
581 * accessibility/table-headers-expected.txt: Added.
582 * accessibility/table-headers.html: Added.
583 * platform/mac/accessibility/table-attributes-expected.txt:
584 * platform/mac/accessibility/table-cells-expected.txt:
585 * platform/mac/accessibility/table-sections-expected.txt:
587 2014-10-13 Benjamin Poulain <bpoulain@apple.com>
589 Add test coverage for the more complex cases of :not()
590 https://bugs.webkit.org/show_bug.cgi?id=137671
592 Reviewed by Andreas Kling.
594 Those tests cover the future CSS JIT support of :not(). I'll to the implementation
595 split over multiple patch, better put the tests first.
597 * fast/selectors/not-backtracking-expected.txt: Added.
598 * fast/selectors/not-backtracking.html: Added.
599 * fast/selectors/not-boundaries-expected.txt: Added.
600 * fast/selectors/not-boundaries.html: Added.
602 2014-10-13 Yusuke Suzuki <utatane.tea@gmail.com>
604 CSS JIT: Implement :visited pseudo class
605 https://bugs.webkit.org/show_bug.cgi?id=135293
607 Reviewed by Benjamin Poulain.
609 To cover the :-webkit-any(:not(:link)), added new tests.
612 * fast/history/link-inside-not-expected.txt:
613 * fast/history/link-inside-not-inside-any-expected.txt: Added.
614 * fast/history/link-inside-not-inside-any.html: Added.
615 * fast/history/link-inside-not.html:
617 2014-10-13 Simon Fraser <simon.fraser@apple.com>
619 Improve the test image diffs page
620 https://bugs.webkit.org/show_bug.cgi?id=137674
622 Reviewed by Alexey Proskuryakov.
624 New version of the image diff page that has the diff images in-place, and allows
625 for control of the image toggling.
627 * fast/harness/image-diff-template-expected.txt:
628 * fast/harness/image-diff-template.html:
630 2014-10-13 Simon Fraser <simon.fraser@apple.com>
634 * platform/mac/TestExpectations:
636 2014-09-30 Sergio Villar Senin <svillar@igalia.com>
638 [CSS Grid Layout] Pass the valid set of tracks to grow beyond growth limits
639 https://bugs.webkit.org/show_bug.cgi?id=137253
641 Reviewed by Darin Adler.
643 * fast/css-grid-layout/grid-content-sized-columns-resolution-expected.txt:
644 * fast/css-grid-layout/grid-content-sized-columns-resolution.html:
646 2014-10-12 Mike West <mkwst@chromium.org>
648 Referrer Policy: Update <meta name="referrer"> values to match the spec
649 https://bugs.webkit.org/show_bug.cgi?id=137635
651 Reviewed by Jochen Eisinger.
653 * http/tests/security/referrer-policy-https-no-referrer-expected.txt: Added.
654 * http/tests/security/referrer-policy-https-no-referrer-when-downgrade-expected.txt: Added.
655 * http/tests/security/referrer-policy-https-no-referrer-when-downgrade.html: Added.
656 * http/tests/security/referrer-policy-https-no-referrer.html: Added.
657 * http/tests/security/referrer-policy-https-unsafe-url-expected.txt: Added.
658 * http/tests/security/referrer-policy-https-unsafe-url.html: Added.
659 * http/tests/security/referrer-policy-invalid-expected.txt: Update the error message with new keywords.
660 * http/tests/security/referrer-policy-no-referrer-expected.txt: Added.
661 * http/tests/security/referrer-policy-no-referrer-when-downgrade-expected.txt: Added.
662 * http/tests/security/referrer-policy-no-referrer-when-downgrade.html: Added.
663 * http/tests/security/referrer-policy-no-referrer.html: Added.
665 2014-10-12 Dhi Aurrahman <diorahman@rockybars.com>
667 Support activation behavior of link element
668 https://bugs.webkit.org/show_bug.cgi?id=137597
670 Reviewed by Benjamin Poulain.
672 Add test cases for link element activation behavior.
674 * fast/dom/html-link-element-activation-behavior-on-element-click-expected.txt: Added.
675 * fast/dom/html-link-element-activation-behavior-on-element-click.html: Added.
676 * fast/dom/html-link-element-activation-behavior-on-mouse-click-expected.txt: Added.
677 * fast/dom/html-link-element-activation-behavior-on-mouse-click.html: Added.
678 * fast/dom/html-link-element-activation-behavior-url-is-null-expected.txt: Added.
679 * fast/dom/html-link-element-activation-behavior-url-is-null.html: Added.
680 * fast/dom/resources/html-link-element-activation-behavior-on-element-click-step1.html: Added.
681 * fast/dom/resources/html-link-element-activation-behavior-on-mouse-click-step1.html: Added.
682 * fast/dom/resources/html-link-element-activation-behavior-target.html: Added.
684 2014-10-11 Simon Fraser <simon.fraser@apple.com>
686 Mark some more tests as sometimes passing.
688 * platform/mac-wk2/TestExpectations:
689 * platform/mac/TestExpectations:
691 2014-10-11 KwangHyuk Kim <hyuki.kim@samsung.com>
693 [EFL] Enable WebP support.
694 https://bugs.webkit.org/show_bug.cgi?id=136156
696 Reviewed by Gyuyoung Kim.
698 Clarify skipped webp test for Webkit EFL.
700 * platform/efl/TestExpectations:
702 2014-10-10 Simon Fraser <simon.fraser@apple.com>
704 Make these animation tests not timeout if hit testing fails.
706 * animations/animation-hit-test-transform.html:
707 * animations/animation-hit-test.html:
709 2014-10-10 Andy Estes <aestes@apple.com>
711 Mark compositing/rtl/rtl-fixed-overflow-scrolled.html as [ Failure ] on mac-wk1 platforms.
713 * platform/mac-wk1/TestExpectations:
715 2014-10-10 Simon Fraser <simon.fraser@apple.com>
717 iOS Simulator results for fast/events tests.
719 * platform/ios-simulator/fast/events/*: Added
721 2014-10-10 Simon Fraser <simon.fraser@apple.com>
723 iOS Simulator results for fast/dynamic tests.
725 * platform/ios-simulator/fast/dynamic/*: Added
727 2014-10-10 Simon Fraser <simon.fraser@apple.com>
729 iOS Simulator results for fast/css3-text, fast/doctypes, fast/dom tests.
730 Skip fast/DeviceOrientation, fast/dom/shadow and some other failing tests.
732 * platform/ios-simulator/fast/css3-text/*: Added.
733 * platform/ios-simulator/fast/doctypes/*: Added.
734 * platform/ios-simulator/fast/dom/*: Added.
736 2014-10-10 Said Abou-Hallawa <sabouhallawa@apple.com>
738 RenderMathMLUnderOver adds spacing to the child operator indefinitely when resizing the window.
739 https://bugs.webkit.org/show_bug.cgi?id=137330
741 Reviewed by Simon Fraser.
743 Change the layout with resize test of the MathML underover object from being render tree test
744 to be reference test. The render test was failing on WK2 because it was doing window resizing
745 and view zooming. The new test rely solely on forcing the layout synchronously by resizing the
746 math container <div> element.
748 * mathml/opentype/munderover-layout-resize-expected.html: Added.
749 * mathml/opentype/munderover-layout-resize.html: Added.
750 * mathml/opentype/munderover-window-resize-expected.txt: Removed.
751 * mathml/opentype/munderover-window-resize.html: Removed.
753 2014-10-10 Benjamin Poulain <benjamin@webkit.org>
755 Update :nth-child(An+B of selector-list) to the latest specification
756 https://bugs.webkit.org/show_bug.cgi?id=137593
758 Reviewed by Andreas Kling.
760 * fast/selectors/nth-child-of-chained-3-expected.txt: Added.
761 * fast/selectors/nth-child-of-chained-3.html: Added.
762 This is an interesting new case with the new definition. Since the initial
763 element must also match the selector, it is now possible to fail even
764 if the combination An+B can match anything.
766 * fast/css/nth-child-of-classname-expected.html:
767 * fast/css/nth-child-of-classname.html:
768 * fast/css/nth-child-of-compound-selector-expected.html:
769 * fast/css/nth-child-of-compound-selector.html:
770 * fast/css/nth-child-of-tagname-expected.html:
771 * fast/css/nth-child-of-tagname.html:
772 * fast/selectors/nth-child-of-backtracking-adjacent-2.html:
773 * fast/selectors/nth-child-of-backtracking-adjacent.html:
774 * fast/selectors/nth-child-of-basics-2-expected.txt:
775 * fast/selectors/nth-child-of-basics-2.html:
776 * fast/selectors/nth-child-of-basics-expected.txt:
777 * fast/selectors/nth-child-of-basics.html:
778 * fast/selectors/nth-child-of-chained-2-expected.txt:
779 * fast/selectors/nth-child-of-chained-2.html:
780 * fast/selectors/nth-child-of-complex-selectors-expected.txt:
781 * fast/selectors/nth-child-of-complex-selectors.html:
782 * fast/selectors/nth-child-of-never-matching-selector-expected.txt:
783 * fast/selectors/nth-child-of-never-matching-selector.html:
784 * fast/selectors/nth-child-of-selector-list-expected.txt:
785 * fast/selectors/nth-child-of-selector-list.html:
786 Updating the test and tests result for the new definition.
788 2014-10-10 Andy Estes <aestes@apple.com>
790 [Mac] Update a Mavericks-specific baseline.
792 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt:
794 2014-10-10 Simon Fraser <simon.fraser@apple.com>
796 Skip some tests that timeout every time.
798 * platform/mac/TestExpectations:
800 2014-10-10 Andy Estes <aestes@apple.com>
802 [Mac] Re-enable some compositing/rtl/ tests that acquired correct baselines in r174589
804 * platform/mac/TestExpectations:
806 2014-10-10 Andy Estes <aestes@apple.com>
808 Only run platform/mac/editing/input/undo-grouping-on-text-insertion.html on Yosemite
810 * platform/mac-mavericks/TestExpectations: Added.
811 * platform/mac/TestExpectations:
813 2014-10-10 Carlos Alberto Lopez Perez <clopez@igalia.com>
815 [GTK] Unreviewed GTK gardening.
817 * platform/gtk/TestExpectations: Mark and report test failing after r137615 and r174540.
818 * platform/gtk/mathml/opentype/munderover-window-resize-expected.txt: Added. Rebaseline after r174540.
819 * platform/gtk/mathml/opentype/opentype-stretchy-horizontal-expected.txt: Rebaseline after r174540.
821 2014-10-09 Simon Fraser <simon.fraser@apple.com>
823 iOS Simulator results for fast/css-generated-content, css-grid-layout tests.
825 * platform/ios-simulator/fast/css-generated-content/*: Added.
826 * platform/ios-simulator/fast/css-grid-layout/*: Added.
828 2014-10-09 Simon Fraser <simon.fraser@apple.com>
830 iOS Simulator results for fast/css tests.
832 * platform/ios-simulator/fast/css/*: Added
834 2014-10-09 Simon Fraser <simon.fraser@apple.com>
836 iOS Simulator results for fast/box-shadow, box-sizing, canvas, clip and compact tests.
838 * platform/ios-simulator/TestExpectations:
839 * platform/ios-simulator/fast/box-shadow/*
840 * platform/ios-simulator/fast/box-sizing/*: Added.
841 * platform/ios-simulator/fast/canvas/*: Added.
842 * platform/ios-simulator/fast/clip/*: Added.
843 * platform/ios-simulator/fast/compact/*: Added.
845 2014-10-09 Simon Fraser <simon.fraser@apple.com>
847 iOS Simulator results for fast/borders tests.
849 * platform/ios-simulator/fast/borders/*: Added
851 2014-10-09 Simon Fraser <simon.fraser@apple.com>
853 iOS Simulator results for fast/body-propagation tests.
855 * platform/ios-simulator/fast/body-propagation/*: Added
857 2014-10-09 Simon Fraser <simon.fraser@apple.com>
859 iOS Simulator results for fast/block tests.
861 * platform/ios-simulator/fast/block/*: Added
863 2014-10-09 Simon Fraser <simon.fraser@apple.com>
865 Skip fast/animation in the iOS Simulator.
866 Add results for fast/backgrounds
868 * platform/ios-simulator/TestExpectations:
869 * platform/ios-simulator/fast/backgrounds/*: Added.
871 2014-10-10 Andy Estes <aestes@apple.com>
873 Add a mac-mountainlion result for delete-autocorrected-word-2.html.
875 * platform/mac-mountainlion/platform/mac/editing/spelling/delete-autocorrected-word-2-expected.txt: Added.
877 2014-10-10 Andy Estes <aestes@apple.com>
879 [Mountain Lion] Fix global-constructors-attributes.html
881 Get rid of the platform/mac-wk2/ result since it's identical to the platform/mac/ version.
883 * platform/mac-wk2/js/dom/global-constructors-attributes-expected.txt: Removed.
885 2014-10-10 Andy Estes <aestes@apple.com>
887 Fixes for additional Mavericks test failures.
889 * platform/mac-mavericks/compositing/fixed-image-loading-expected.txt: Added.
890 * platform/mac-mavericks/compositing/rtl/rtl-fixed-expected.png: Added.
891 * platform/mac-mavericks/compositing/rtl/rtl-fixed-expected.txt: Added.
892 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-expected.png: Added.
893 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-expected.txt: Added.
894 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Added.
895 * platform/mac-mavericks/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Added.
896 * platform/mac-mavericks/fast/repaint/selection-gap-fixed-child-expected.txt: Added.
897 * platform/mac-mavericks/fast/repaint/selection-gap-flipped-fixed-child-expected.txt: Added.
899 2014-10-10 Simon Fraser <simon.fraser@apple.com>
901 Some more Mac TestExpectation tweaking.
903 * platform/mac-wk2/TestExpectations:
904 * platform/mac/TestExpectations:
906 2014-10-10 Andy Estes <aestes@apple.com>
908 Fix some Mavericks test failures caused by r174585.
910 * platform/mac-mavericks/fast/css/resize-corner-tracking-expected.txt: Added.
911 * platform/mac-mavericks/fast/events/shadow-event-path-2-expected.txt: Added.
912 * platform/mac-mavericks/platform/mac/fast/text/systemFont-expected.txt: Renamed from LayoutTests/platform/mac-mountainlion/platform/mac/fast/text/systemFont-expected.txt.
913 * 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.
915 2014-10-10 Andy Estes <aestes@apple.com>
917 Added Yosemite expected results and TestExpections to platform/mac/.
919 To-be-overwritten files in platform/mac/ were first moved to platform/mac-mavericks/.
921 * platform/mac-mavericks/accessibility/aria-readonly-expected.txt: Copied from LayoutTests/platform/mac/accessibility/aria-readonly-expected.txt.
922 * platform/mac-mavericks/accessibility/roles-exposed-expected.txt: Copied from LayoutTests/platform/mac/accessibility/roles-exposed-expected.txt.
923 * platform/mac-mavericks/compositing/contents-opaque/control-layer-expected.txt: Copied from LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt.
924 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-161-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.png.
925 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-19b-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.png.
926 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-19b-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt.
927 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-23-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.png.
928 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-23-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt.
929 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-24-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.png.
930 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-24-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt.
931 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-64-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.png.
932 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-64-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt.
933 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-68-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.png.
934 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-68-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt.
935 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-69-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.png.
936 * platform/mac-mavericks/css3/selectors3/html/css3-modsel-69-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt.
937 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-161-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-161-expected.png.
938 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-19b-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-19b-expected.png.
939 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt.
940 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-23-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-23-expected.png.
941 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt.
942 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-24-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-24-expected.png.
943 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt.
944 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-64-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-64-expected.png.
945 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt.
946 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-68-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-68-expected.png.
947 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt.
948 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-69-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/html/css3-modsel-69-expected.png.
949 * platform/mac-mavericks/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt.
950 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-161-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-161-expected.png.
951 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-19b-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.png.
952 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-19b-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt.
953 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-23-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-23-expected.png.
954 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-23-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt.
955 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-24-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-24-expected.png.
956 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-24-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt.
957 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-64-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-64-expected.png.
958 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-64-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt.
959 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-68-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-68-expected.png.
960 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-68-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt.
961 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-69-expected.png: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-69-expected.png.
962 * platform/mac-mavericks/css3/selectors3/xml/css3-modsel-69-expected.txt: Copied from LayoutTests/platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt.
963 * 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.
964 * 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.
965 * platform/mac-mavericks/editing/inserting/4960120-1-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/4960120-1-expected.png.
966 * platform/mac-mavericks/editing/inserting/4960120-1-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/4960120-1-expected.txt.
967 * platform/mac-mavericks/editing/inserting/before-after-input-element-expected.png: Copied from LayoutTests/platform/mac/editing/inserting/before-after-input-element-expected.png.
968 * platform/mac-mavericks/editing/inserting/before-after-input-element-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/before-after-input-element-expected.txt.
969 * platform/mac-mavericks/editing/pasteboard/4641033-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4641033-expected.png.
970 * platform/mac-mavericks/editing/pasteboard/4806874-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4806874-expected.png.
971 * platform/mac-mavericks/editing/pasteboard/4806874-expected.txt: Copied from LayoutTests/platform/mac/editing/pasteboard/4806874-expected.txt.
972 * platform/mac-mavericks/editing/pasteboard/4944770-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4944770-1-expected.png.
973 * platform/mac-mavericks/editing/pasteboard/4944770-2-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/4944770-2-expected.png.
974 * platform/mac-mavericks/editing/pasteboard/drop-text-without-selection-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/drop-text-without-selection-expected.png.
975 * platform/mac-mavericks/editing/pasteboard/drop-text-without-selection-expected.txt: Copied from LayoutTests/platform/mac/editing/pasteboard/drop-text-without-selection-expected.txt.
976 * platform/mac-mavericks/editing/pasteboard/input-field-1-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/input-field-1-expected.png.
977 * platform/mac-mavericks/editing/pasteboard/input-field-1-expected.txt: Copied from LayoutTests/platform/mac/editing/pasteboard/input-field-1-expected.txt.
978 * platform/mac-mavericks/editing/pasteboard/pasting-tabs-expected.png: Copied from LayoutTests/platform/mac/editing/pasteboard/pasting-tabs-expected.png.
979 * platform/mac-mavericks/editing/pasteboard/pasting-tabs-expected.txt: Copied from LayoutTests/platform/mac/editing/pasteboard/pasting-tabs-expected.txt.
980 * platform/mac-mavericks/editing/selection/3690703-2-expected.png: Copied from LayoutTests/platform/mac/editing/selection/3690703-2-expected.png.
981 * platform/mac-mavericks/editing/selection/3690703-2-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/3690703-2-expected.txt.
982 * platform/mac-mavericks/editing/selection/3690703-expected.png: Copied from LayoutTests/platform/mac/editing/selection/3690703-expected.png.
983 * platform/mac-mavericks/editing/selection/3690703-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/3690703-expected.txt.
984 * platform/mac-mavericks/editing/selection/3690719-expected.png: Copied from LayoutTests/platform/mac/editing/selection/3690719-expected.png.
985 * platform/mac-mavericks/editing/selection/3690719-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/3690719-expected.txt.
986 * platform/mac-mavericks/editing/selection/4397952-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4397952-expected.png.
987 * platform/mac-mavericks/editing/selection/4397952-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/4397952-expected.txt.
988 * platform/mac-mavericks/editing/selection/4895428-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4895428-3-expected.png.
989 * platform/mac-mavericks/editing/selection/4895428-3-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/4895428-3-expected.txt.
990 * platform/mac-mavericks/editing/selection/4975120-expected.png: Copied from LayoutTests/platform/mac/editing/selection/4975120-expected.png.
991 * platform/mac-mavericks/editing/selection/4975120-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/4975120-expected.txt.
992 * platform/mac-mavericks/editing/selection/5240265-expected.png: Copied from LayoutTests/platform/mac/editing/selection/5240265-expected.png.
993 * platform/mac-mavericks/editing/selection/caret-before-select-expected.png: Copied from LayoutTests/platform/mac/editing/selection/caret-before-select-expected.png.
994 * platform/mac-mavericks/editing/selection/drag-select-1-expected.png: Copied from LayoutTests/platform/mac/editing/selection/drag-select-1-expected.png.
995 * platform/mac-mavericks/editing/selection/drag-select-1-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/drag-select-1-expected.txt.
996 * platform/mac-mavericks/editing/selection/replaced-boundaries-3-expected.png: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-3-expected.png.
997 * platform/mac-mavericks/editing/selection/replaced-boundaries-3-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/replaced-boundaries-3-expected.txt.
998 * 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.
999 * 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.
1000 * 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.
1001 * 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.
1002 * 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.
1003 * 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.
1004 * 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.
1005 * 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.
1006 * 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.
1007 * 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.
1008 * platform/mac-mavericks/editing/selection/select-box-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-box-expected.png.
1009 * platform/mac-mavericks/editing/selection/select-element-paragraph-boundary-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-element-paragraph-boundary-expected.png.
1010 * platform/mac-mavericks/editing/selection/select-from-textfield-outwards-expected.png: Copied from LayoutTests/platform/mac/editing/selection/select-from-textfield-outwards-expected.png.
1011 * platform/mac-mavericks/editing/selection/select-from-textfield-outwards-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/select-from-textfield-outwards-expected.txt.
1012 * platform/mac-mavericks/editing/selection/selection-button-text-expected.png: Copied from LayoutTests/platform/mac/editing/selection/selection-button-text-expected.png.
1013 * platform/mac-mavericks/editing/selection/selection-button-text-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/selection-button-text-expected.txt.
1014 * 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.
1015 * 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.
1016 * platform/mac-mavericks/fast/block/lineboxcontain/block-with-ideographs-expected.png: Copied from LayoutTests/platform/mac/fast/block/lineboxcontain/block-with-ideographs-expected.png.
1017 * platform/mac-mavericks/fast/block/lineboxcontain/block-with-ideographs-expected.txt: Copied from LayoutTests/platform/mac/fast/block/lineboxcontain/block-with-ideographs-expected.txt.
1018 * platform/mac-mavericks/fast/block/margin-collapse/103-expected.png: Copied from LayoutTests/platform/mac/fast/block/margin-collapse/103-expected.png.
1019 * platform/mac-mavericks/fast/block/margin-collapse/103-expected.txt: Copied from LayoutTests/platform/mac/fast/block/margin-collapse/103-expected.txt.
1020 * platform/mac-mavericks/fast/block/positioning/inline-block-relposition-expected.png: Copied from LayoutTests/platform/mac/fast/block/positioning/inline-block-relposition-expected.png.
1021 * platform/mac-mavericks/fast/block/positioning/inline-block-relposition-expected.txt: Copied from LayoutTests/platform/mac/fast/block/positioning/inline-block-relposition-expected.txt.
1022 * platform/mac-mavericks/fast/css/continuationCrash-expected.png: Copied from LayoutTests/platform/mac/fast/css/continuationCrash-expected.png.
1023 * platform/mac-mavericks/fast/css/continuationCrash-expected.txt: Copied from LayoutTests/platform/mac/fast/css/continuationCrash-expected.txt.
1024 * platform/mac-mavericks/fast/css/css2-system-fonts-expected.png: Copied from LayoutTests/platform/mac/fast/css/css2-system-fonts-expected.png.
1025 * platform/mac-mavericks/fast/css/css2-system-fonts-expected.txt: Copied from LayoutTests/platform/mac/fast/css/css2-system-fonts-expected.txt.
1026 * platform/mac-mavericks/fast/css/font-family-pictograph-expected.txt: Copied from LayoutTests/platform/mac/fast/css/font-family-pictograph-expected.txt.
1027 * platform/mac-mavericks/fast/css/input-search-padding-expected.png: Copied from LayoutTests/platform/mac/fast/css/input-search-padding-expected.png.
1028 * platform/mac-mavericks/fast/css/line-height-expected.png: Copied from LayoutTests/platform/mac/fast/css/line-height-expected.png.
1029 * platform/mac-mavericks/fast/css/line-height-expected.txt: Copied from LayoutTests/platform/mac/fast/css/line-height-expected.txt.
1030 * platform/mac-mavericks/fast/css/margin-top-bottom-dynamic-expected.png: Copied from LayoutTests/platform/mac/fast/css/margin-top-bottom-dynamic-expected.png.
1031 * platform/mac-mavericks/fast/css/margin-top-bottom-dynamic-expected.txt: Copied from LayoutTests/platform/mac/fast/css/margin-top-bottom-dynamic-expected.txt.
1032 * platform/mac-mavericks/fast/css/resize-corner-tracking-expected.png: Copied from LayoutTests/platform/mac/fast/css/resize-corner-tracking-expected.png.
1033 * platform/mac-mavericks/fast/css/rtl-ordering-expected.png: Copied from LayoutTests/platform/mac/fast/css/rtl-ordering-expected.png.
1034 * platform/mac-mavericks/fast/css/rtl-ordering-expected.txt: Copied from LayoutTests/platform/mac/fast/css/rtl-ordering-expected.txt.
1035 * 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.
1036 * 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.
1037 * platform/mac-mavericks/fast/css/text-overflow-input-expected.png: Copied from LayoutTests/platform/mac/fast/css/text-overflow-input-expected.png.
1038 * platform/mac-mavericks/fast/css/text-overflow-input-expected.txt: Copied from LayoutTests/platform/mac/fast/css/text-overflow-input-expected.txt.
1039 * platform/mac-mavericks/fast/css/text-transform-select-expected.png: Copied from LayoutTests/platform/mac/fast/css/text-transform-select-expected.png.
1040 * platform/mac-mavericks/fast/css/text-transform-select-expected.txt: Copied from LayoutTests/platform/mac/fast/css/text-transform-select-expected.txt.
1041 * 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.
1042 * 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.
1043 * 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.
1044 * 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.
1045 * platform/mac-mavericks/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Copied from LayoutTests/platform/mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png.
1046 * platform/mac-mavericks/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: Copied from LayoutTests/platform/mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt.
1047 * platform/mac-mavericks/fast/dom/isindex-001-expected.png: Copied from LayoutTests/platform/mac/fast/dom/isindex-001-expected.png.
1048 * platform/mac-mavericks/fast/dom/isindex-001-expected.txt: Copied from LayoutTests/platform/mac/fast/dom/isindex-001-expected.txt.
1049 * platform/mac-mavericks/fast/dom/isindex-002-expected.png: Copied from LayoutTests/platform/mac/fast/dom/isindex-002-expected.png.
1050 * platform/mac-mavericks/fast/dom/isindex-002-expected.txt: Copied from LayoutTests/platform/mac/fast/dom/isindex-002-expected.txt.
1051 * platform/mac-mavericks/fast/dynamic/008-expected.png: Copied from LayoutTests/platform/mac/fast/dynamic/008-expected.png.
1052 * platform/mac-mavericks/fast/dynamic/008-expected.txt: Copied from LayoutTests/platform/mac/fast/dynamic/008-expected.txt.
1053 * 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.
1054 * 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.
1055 * platform/mac-mavericks/fast/encoding/denormalised-voiced-japanese-chars-expected.txt: Copied from LayoutTests/platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.txt.
1056 * platform/mac-mavericks/fast/events/context-no-deselect-expected.png: Copied from LayoutTests/platform/mac/fast/events/context-no-deselect-expected.png.
1057 * platform/mac-mavericks/fast/events/context-no-deselect-expected.txt: Copied from LayoutTests/platform/mac/fast/events/context-no-deselect-expected.txt.
1058 * platform/mac-mavericks/fast/forms/001-expected.png: Copied from LayoutTests/platform/mac/fast/forms/001-expected.png.
1059 * platform/mac-mavericks/fast/forms/001-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/001-expected.txt.
1060 * platform/mac-mavericks/fast/forms/003-expected.png: Copied from LayoutTests/platform/mac/fast/forms/003-expected.png.
1061 * platform/mac-mavericks/fast/forms/003-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/003-expected.txt.
1062 * platform/mac-mavericks/fast/forms/004-expected.png: Copied from LayoutTests/platform/mac/fast/forms/004-expected.png.
1063 * platform/mac-mavericks/fast/forms/004-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/004-expected.txt.
1064 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label01-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label01-expected.png.
1065 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label01-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label01-expected.txt.
1066 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label02-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label02-expected.png.
1067 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label02-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label02-expected.txt.
1068 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label03-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label03-expected.png.
1069 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label04-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label04-expected.png.
1070 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label04-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label04-expected.txt.
1071 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label05-expected.png: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label05-expected.png.
1072 * platform/mac-mavericks/fast/forms/HTMLOptionElement_label05-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/HTMLOptionElement_label05-expected.txt.
1073 * platform/mac-mavericks/fast/forms/basic-buttons-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-buttons-expected.png.
1074 * platform/mac-mavericks/fast/forms/basic-buttons-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-buttons-expected.txt.
1075 * platform/mac-mavericks/fast/forms/basic-inputs-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-inputs-expected.png.
1076 * platform/mac-mavericks/fast/forms/basic-inputs-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-inputs-expected.txt.
1077 * platform/mac-mavericks/fast/forms/basic-selects-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-selects-expected.png.
1078 * platform/mac-mavericks/fast/forms/basic-selects-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-selects-expected.txt.
1079 * platform/mac-mavericks/fast/forms/basic-textareas-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-textareas-expected.png.
1080 * platform/mac-mavericks/fast/forms/basic-textareas-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-textareas-expected.txt.
1081 * platform/mac-mavericks/fast/forms/basic-textareas-quirks-expected.png: Copied from LayoutTests/platform/mac/fast/forms/basic-textareas-quirks-expected.png.
1082 * platform/mac-mavericks/fast/forms/basic-textareas-quirks-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/basic-textareas-quirks-expected.txt.
1083 * platform/mac-mavericks/fast/forms/blankbuttons-expected.png: Copied from LayoutTests/platform/mac/fast/forms/blankbuttons-expected.png.
1084 * platform/mac-mavericks/fast/forms/blankbuttons-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/blankbuttons-expected.txt.
1085 * platform/mac-mavericks/fast/forms/box-shadow-override-expected.png: Copied from LayoutTests/platform/mac/fast/forms/box-shadow-override-expected.png.
1086 * platform/mac-mavericks/fast/forms/box-shadow-override-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/box-shadow-override-expected.txt.
1087 * platform/mac-mavericks/fast/forms/button-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-align-expected.png.
1088 * platform/mac-mavericks/fast/forms/button-cannot-be-nested-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-cannot-be-nested-expected.png.
1089 * platform/mac-mavericks/fast/forms/button-cannot-be-nested-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-cannot-be-nested-expected.txt.
1090 * platform/mac-mavericks/fast/forms/button-default-title-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-default-title-expected.png.
1091 * platform/mac-mavericks/fast/forms/button-default-title-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-default-title-expected.txt.
1092 * platform/mac-mavericks/fast/forms/button-generated-content-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-generated-content-expected.png.
1093 * platform/mac-mavericks/fast/forms/button-generated-content-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-generated-content-expected.txt.
1094 * platform/mac-mavericks/fast/forms/button-positioned-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-positioned-expected.png.
1095 * platform/mac-mavericks/fast/forms/button-positioned-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-positioned-expected.txt.
1096 * platform/mac-mavericks/fast/forms/button-sizes-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-sizes-expected.png.
1097 * platform/mac-mavericks/fast/forms/button-sizes-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-sizes-expected.txt.
1098 * platform/mac-mavericks/fast/forms/button-style-color-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-style-color-expected.png.
1099 * platform/mac-mavericks/fast/forms/button-style-color-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-style-color-expected.txt.
1100 * platform/mac-mavericks/fast/forms/button-table-styles-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-table-styles-expected.png.
1101 * platform/mac-mavericks/fast/forms/button-table-styles-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-table-styles-expected.txt.
1102 * platform/mac-mavericks/fast/forms/button-text-transform-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-text-transform-expected.png.
1103 * platform/mac-mavericks/fast/forms/button-text-transform-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-text-transform-expected.txt.
1104 * platform/mac-mavericks/fast/forms/button-white-space-expected.png: Copied from LayoutTests/platform/mac/fast/forms/button-white-space-expected.png.
1105 * platform/mac-mavericks/fast/forms/button-white-space-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/button-white-space-expected.txt.
1106 * platform/mac-mavericks/fast/forms/control-clip-expected.png: Copied from LayoutTests/platform/mac/fast/forms/control-clip-expected.png.
1107 * platform/mac-mavericks/fast/forms/control-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/control-clip-expected.txt.
1108 * platform/mac-mavericks/fast/forms/control-clip-overflow-expected.png: Copied from LayoutTests/platform/mac/fast/forms/control-clip-overflow-expected.png.
1109 * platform/mac-mavericks/fast/forms/control-clip-overflow-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/control-clip-overflow-expected.txt.
1110 * platform/mac-mavericks/fast/forms/control-restrict-line-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/control-restrict-line-height-expected.png.
1111 * platform/mac-mavericks/fast/forms/control-restrict-line-height-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/control-restrict-line-height-expected.txt.
1112 * platform/mac-mavericks/fast/forms/disabled-select-change-index-expected.png: Copied from LayoutTests/platform/mac/fast/forms/disabled-select-change-index-expected.png.
1113 * platform/mac-mavericks/fast/forms/disabled-select-change-index-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/disabled-select-change-index-expected.txt.
1114 * platform/mac-mavericks/fast/forms/encoding-test-expected.png: Copied from LayoutTests/platform/mac/fast/forms/encoding-test-expected.png.
1115 * platform/mac-mavericks/fast/forms/encoding-test-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/encoding-test-expected.txt.
1116 * platform/mac-mavericks/fast/forms/fieldset-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/fieldset-align-expected.png.
1117 * platform/mac-mavericks/fast/forms/fieldset-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/fieldset-align-expected.txt.
1118 * platform/mac-mavericks/fast/forms/file/file-input-direction-expected.png: Copied from LayoutTests/platform/mac/fast/forms/file/file-input-direction-expected.png.
1119 * platform/mac-mavericks/fast/forms/file/file-input-direction-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/file/file-input-direction-expected.txt.
1120 * platform/mac-mavericks/fast/forms/file/file-input-disabled-expected.png: Copied from LayoutTests/platform/mac/fast/forms/file/file-input-disabled-expected.png.
1121 * platform/mac-mavericks/fast/forms/file/file-input-disabled-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/file/file-input-disabled-expected.txt.
1122 * 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.
1123 * 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.
1124 * platform/mac-mavericks/fast/forms/floating-textfield-relayout-expected.png: Copied from LayoutTests/platform/mac/fast/forms/floating-textfield-relayout-expected.png.
1125 * platform/mac-mavericks/fast/forms/form-element-geometry-expected.png: Copied from LayoutTests/platform/mac/fast/forms/form-element-geometry-expected.png.
1126 * platform/mac-mavericks/fast/forms/form-element-geometry-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/form-element-geometry-expected.txt.
1127 * platform/mac-mavericks/fast/forms/formmove3-expected.png: Copied from LayoutTests/platform/mac/fast/forms/formmove3-expected.png.
1128 * platform/mac-mavericks/fast/forms/formmove3-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/formmove3-expected.txt.
1129 * platform/mac-mavericks/fast/forms/hidden-listbox-expected.png: Copied from LayoutTests/platform/mac/fast/forms/hidden-listbox-expected.png.
1130 * platform/mac-mavericks/fast/forms/hidden-listbox-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/hidden-listbox-expected.txt.
1131 * platform/mac-mavericks/fast/forms/input-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-align-expected.png.
1132 * platform/mac-mavericks/fast/forms/input-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-align-expected.txt.
1133 * platform/mac-mavericks/fast/forms/input-appearance-bkcolor-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-bkcolor-expected.png.
1134 * platform/mac-mavericks/fast/forms/input-appearance-bkcolor-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-bkcolor-expected.txt.
1135 * platform/mac-mavericks/fast/forms/input-appearance-default-bkcolor-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-default-bkcolor-expected.png.
1136 * platform/mac-mavericks/fast/forms/input-appearance-default-bkcolor-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-default-bkcolor-expected.txt.
1137 * platform/mac-mavericks/fast/forms/input-appearance-disabled-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-disabled-expected.png.
1138 * platform/mac-mavericks/fast/forms/input-appearance-disabled-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-disabled-expected.txt.
1139 * platform/mac-mavericks/fast/forms/input-appearance-focus-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-focus-expected.png.
1140 * platform/mac-mavericks/fast/forms/input-appearance-focus-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-focus-expected.txt.
1141 * platform/mac-mavericks/fast/forms/input-appearance-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-height-expected.png.
1142 * platform/mac-mavericks/fast/forms/input-appearance-height-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-height-expected.txt.
1143 * platform/mac-mavericks/fast/forms/input-appearance-preventDefault-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-preventDefault-expected.png.
1144 * platform/mac-mavericks/fast/forms/input-appearance-preventDefault-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-preventDefault-expected.txt.
1145 * platform/mac-mavericks/fast/forms/input-appearance-readonly-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-readonly-expected.png.
1146 * platform/mac-mavericks/fast/forms/input-appearance-readonly-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-readonly-expected.txt.
1147 * platform/mac-mavericks/fast/forms/input-appearance-selection-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-selection-expected.png.
1148 * platform/mac-mavericks/fast/forms/input-appearance-selection-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-selection-expected.txt.
1149 * platform/mac-mavericks/fast/forms/input-appearance-visibility-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-visibility-expected.png.
1150 * platform/mac-mavericks/fast/forms/input-appearance-visibility-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-visibility-expected.txt.
1151 * platform/mac-mavericks/fast/forms/input-appearance-width-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-width-expected.png.
1152 * platform/mac-mavericks/fast/forms/input-appearance-width-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-width-expected.txt.
1153 * platform/mac-mavericks/fast/forms/input-baseline-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-baseline-expected.png.
1154 * platform/mac-mavericks/fast/forms/input-baseline-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-baseline-expected.txt.
1155 * platform/mac-mavericks/fast/forms/input-button-sizes-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-button-sizes-expected.png.
1156 * platform/mac-mavericks/fast/forms/input-button-sizes-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-button-sizes-expected.txt.
1157 * platform/mac-mavericks/fast/forms/input-disabled-color-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-disabled-color-expected.png.
1158 * platform/mac-mavericks/fast/forms/input-disabled-color-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-disabled-color-expected.txt.
1159 * 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.
1160 * 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.
1161 * platform/mac-mavericks/fast/forms/input-field-text-truncated-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-field-text-truncated-expected.png.
1162 * platform/mac-mavericks/fast/forms/input-field-text-truncated-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-field-text-truncated-expected.txt.
1163 * platform/mac-mavericks/fast/forms/input-first-letter-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-first-letter-expected.png.
1164 * platform/mac-mavericks/fast/forms/input-placeholder-visibility-1-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-placeholder-visibility-1-expected.png.
1165 * platform/mac-mavericks/fast/forms/input-placeholder-visibility-1-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-placeholder-visibility-1-expected.txt.
1166 * platform/mac-mavericks/fast/forms/input-placeholder-visibility-3-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-placeholder-visibility-3-expected.png.
1167 * platform/mac-mavericks/fast/forms/input-placeholder-visibility-3-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-placeholder-visibility-3-expected.txt.
1168 * platform/mac-mavericks/fast/forms/input-readonly-autoscroll-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-autoscroll-expected.png.
1169 * platform/mac-mavericks/fast/forms/input-readonly-autoscroll-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-autoscroll-expected.txt.
1170 * platform/mac-mavericks/fast/forms/input-readonly-dimmed-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-dimmed-expected.png.
1171 * platform/mac-mavericks/fast/forms/input-readonly-dimmed-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-dimmed-expected.txt.
1172 * platform/mac-mavericks/fast/forms/input-readonly-empty-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-empty-expected.png.
1173 * platform/mac-mavericks/fast/forms/input-readonly-empty-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-readonly-empty-expected.txt.
1174 * platform/mac-mavericks/fast/forms/input-spaces-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-spaces-expected.png.
1175 * platform/mac-mavericks/fast/forms/input-spaces-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-spaces-expected.txt.
1176 * platform/mac-mavericks/fast/forms/input-table-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-table-expected.png.
1177 * platform/mac-mavericks/fast/forms/input-table-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-table-expected.txt.
1178 * platform/mac-mavericks/fast/forms/input-text-click-inside-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-click-inside-expected.png.
1179 * platform/mac-mavericks/fast/forms/input-text-click-inside-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-click-inside-expected.txt.
1180 * platform/mac-mavericks/fast/forms/input-text-click-outside-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-click-outside-expected.png.
1181 * platform/mac-mavericks/fast/forms/input-text-click-outside-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-click-outside-expected.txt.
1182 * platform/mac-mavericks/fast/forms/input-text-double-click-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-double-click-expected.png.
1183 * platform/mac-mavericks/fast/forms/input-text-double-click-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-double-click-expected.txt.
1184 * platform/mac-mavericks/fast/forms/input-text-drag-down-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-drag-down-expected.png.
1185 * platform/mac-mavericks/fast/forms/input-text-drag-down-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-drag-down-expected.txt.
1186 * platform/mac-mavericks/fast/forms/input-text-option-delete-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-option-delete-expected.png.
1187 * platform/mac-mavericks/fast/forms/input-text-option-delete-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-option-delete-expected.txt.
1188 * 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.
1189 * 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.
1190 * 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.
1191 * 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.
1192 * platform/mac-mavericks/fast/forms/input-text-word-wrap-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-text-word-wrap-expected.png.
1193 * platform/mac-mavericks/fast/forms/input-text-word-wrap-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-text-word-wrap-expected.txt.
1194 * 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.
1195 * 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.
1196 * platform/mac-mavericks/fast/forms/input-value-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-value-expected.png.
1197 * platform/mac-mavericks/fast/forms/input-value-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-value-expected.txt.
1198 * platform/mac-mavericks/fast/forms/input-width-expected.png: Copied from LayoutTests/platform/mac/fast/forms/input-width-expected.png.
1199 * platform/mac-mavericks/fast/forms/input-width-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-width-expected.txt.
1200 * platform/mac-mavericks/fast/forms/listbox-bidi-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/listbox-bidi-align-expected.txt.
1201 * platform/mac-mavericks/fast/forms/listbox-hit-test-zoomed-expected.png: Copied from LayoutTests/platform/mac/fast/forms/listbox-hit-test-zoomed-expected.png.
1202 * platform/mac-mavericks/fast/forms/listbox-scrollbar-incremental-load-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/listbox-scrollbar-incremental-load-expected.txt.
1203 * platform/mac-mavericks/fast/forms/listbox-width-change-expected.png: Copied from LayoutTests/platform/mac/fast/forms/listbox-width-change-expected.png.
1204 * platform/mac-mavericks/fast/forms/listbox-width-change-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/listbox-width-change-expected.txt.
1205 * platform/mac-mavericks/fast/forms/menulist-clip-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-clip-expected.png.
1206 * platform/mac-mavericks/fast/forms/menulist-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-clip-expected.txt.
1207 * platform/mac-mavericks/fast/forms/menulist-deselect-update-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-deselect-update-expected.png.
1208 * platform/mac-mavericks/fast/forms/menulist-deselect-update-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-deselect-update-expected.txt.
1209 * platform/mac-mavericks/fast/forms/menulist-no-overflow-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-no-overflow-expected.png.
1210 * platform/mac-mavericks/fast/forms/menulist-no-overflow-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-no-overflow-expected.txt.
1211 * platform/mac-mavericks/fast/forms/menulist-option-wrap-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-option-wrap-expected.png.
1212 * platform/mac-mavericks/fast/forms/menulist-option-wrap-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-option-wrap-expected.txt.
1213 * platform/mac-mavericks/fast/forms/menulist-restrict-line-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-restrict-line-height-expected.png.
1214 * platform/mac-mavericks/fast/forms/menulist-restrict-line-height-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-restrict-line-height-expected.txt.
1215 * platform/mac-mavericks/fast/forms/menulist-style-color-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-style-color-expected.png.
1216 * platform/mac-mavericks/fast/forms/menulist-style-color-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-style-color-expected.txt.
1217 * platform/mac-mavericks/fast/forms/menulist-width-change-expected.png: Copied from LayoutTests/platform/mac/fast/forms/menulist-width-change-expected.png.
1218 * platform/mac-mavericks/fast/forms/menulist-width-change-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/menulist-width-change-expected.txt.
1219 * platform/mac-mavericks/fast/forms/minWidthPercent-expected.png: Copied from LayoutTests/platform/mac/fast/forms/minWidthPercent-expected.png.
1220 * platform/mac-mavericks/fast/forms/minWidthPercent-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/minWidthPercent-expected.txt.
1221 * platform/mac-mavericks/fast/forms/number/number-appearance-rtl-expected.png: Copied from LayoutTests/platform/mac/fast/forms/number/number-appearance-rtl-expected.png.
1222 * platform/mac-mavericks/fast/forms/number/number-appearance-rtl-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/number/number-appearance-rtl-expected.txt.
1223 * 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.
1224 * 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.
1225 * 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.
1226 * 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.
1227 * platform/mac-mavericks/fast/forms/option-script-expected.png: Copied from LayoutTests/platform/mac/fast/forms/option-script-expected.png.
1228 * platform/mac-mavericks/fast/forms/option-script-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/option-script-expected.txt.
1229 * platform/mac-mavericks/fast/forms/option-strip-whitespace-expected.png: Copied from LayoutTests/platform/mac/fast/forms/option-strip-whitespace-expected.png.
1230 * platform/mac-mavericks/fast/forms/option-strip-whitespace-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/option-strip-whitespace-expected.txt.
1231 * platform/mac-mavericks/fast/forms/option-text-clip-expected.png: Copied from LayoutTests/platform/mac/fast/forms/option-text-clip-expected.png.
1232 * platform/mac-mavericks/fast/forms/option-text-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/option-text-clip-expected.txt.
1233 * platform/mac-mavericks/fast/forms/placeholder-position-expected.png: Copied from LayoutTests/platform/mac/fast/forms/placeholder-position-expected.png.
1234 * platform/mac-mavericks/fast/forms/placeholder-position-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/placeholder-position-expected.txt.
1235 * platform/mac-mavericks/fast/forms/placeholder-pseudo-style-expected.png: Copied from LayoutTests/platform/mac/fast/forms/placeholder-pseudo-style-expected.png.
1236 * platform/mac-mavericks/fast/forms/placeholder-pseudo-style-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/placeholder-pseudo-style-expected.txt.
1237 * platform/mac-mavericks/fast/forms/plaintext-mode-2-expected.png: Copied from LayoutTests/platform/mac/fast/forms/plaintext-mode-2-expected.png.
1238 * platform/mac-mavericks/fast/forms/plaintext-mode-2-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/plaintext-mode-2-expected.txt.
1239 * 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.
1240 * 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.
1241 * 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.
1242 * 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.
1243 * platform/mac-mavericks/fast/forms/search-rtl-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search-rtl-expected.png.
1244 * platform/mac-mavericks/fast/forms/search-rtl-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search-rtl-expected.txt.
1245 * platform/mac-mavericks/fast/forms/search-styled-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search-styled-expected.png.
1246 * platform/mac-mavericks/fast/forms/search-styled-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search-styled-expected.txt.
1247 * platform/mac-mavericks/fast/forms/search-vertical-alignment-expected.png: Copied from LayoutTests/platform/mac/fast/forms/search-vertical-alignment-expected.png.
1248 * platform/mac-mavericks/fast/forms/search-vertical-alignment-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/search-vertical-alignment-expected.txt.
1249 * 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.
1250 * 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.
1251 * platform/mac-mavericks/fast/forms/searchfield-heights-expected.png: Copied from LayoutTests/platform/mac/fast/forms/searchfield-heights-expected.png.
1252 * platform/mac-mavericks/fast/forms/searchfield-heights-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/searchfield-heights-expected.txt.
1253 * platform/mac-mavericks/fast/forms/select-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-align-expected.png.
1254 * platform/mac-mavericks/fast/forms/select-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-align-expected.txt.
1255 * platform/mac-mavericks/fast/forms/select-background-none-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-background-none-expected.png.
1256 * platform/mac-mavericks/fast/forms/select-baseline-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-baseline-expected.png.
1257 * platform/mac-mavericks/fast/forms/select-baseline-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-baseline-expected.txt.
1258 * platform/mac-mavericks/fast/forms/select-block-background-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-block-background-expected.png.
1259 * platform/mac-mavericks/fast/forms/select-block-background-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-block-background-expected.txt.
1260 * platform/mac-mavericks/fast/forms/select-change-listbox-size-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-change-listbox-size-expected.png.
1261 * platform/mac-mavericks/fast/forms/select-change-listbox-size-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-change-listbox-size-expected.txt.
1262 * 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.
1263 * 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.
1264 * 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.
1265 * 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.
1266 * platform/mac-mavericks/fast/forms/select-disabled-appearance-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-disabled-appearance-expected.png.
1267 * platform/mac-mavericks/fast/forms/select-disabled-appearance-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-disabled-appearance-expected.txt.
1268 * platform/mac-mavericks/fast/forms/select-empty-option-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-empty-option-height-expected.png.
1269 * platform/mac-mavericks/fast/forms/select-item-background-clip-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-item-background-clip-expected.png.
1270 * platform/mac-mavericks/fast/forms/select-item-background-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-item-background-clip-expected.txt.
1271 * 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.
1272 * 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.
1273 * 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.
1274 * 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.
1275 * platform/mac-mavericks/fast/forms/select-overflow-scroll-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-overflow-scroll-expected.txt.
1276 * platform/mac-mavericks/fast/forms/select-overflow-scroll-inherited-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-overflow-scroll-inherited-expected.txt.
1277 * platform/mac-mavericks/fast/forms/select-selected-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-selected-expected.png.
1278 * platform/mac-mavericks/fast/forms/select-selected-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-selected-expected.txt.
1279 * platform/mac-mavericks/fast/forms/select-writing-direction-natural-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select-writing-direction-natural-expected.png.
1280 * platform/mac-mavericks/fast/forms/select-writing-direction-natural-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-writing-direction-natural-expected.txt.
1281 * platform/mac-mavericks/fast/forms/select/optgroup-rendering-expected.png: Copied from LayoutTests/platform/mac/fast/forms/select/optgroup-rendering-expected.png.
1282 * platform/mac-mavericks/fast/forms/select/optgroup-rendering-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select/optgroup-rendering-expected.txt.
1283 * platform/mac-mavericks/fast/forms/stuff-on-my-optgroup-expected.png: Copied from LayoutTests/platform/mac/fast/forms/stuff-on-my-optgroup-expected.png.
1284 * platform/mac-mavericks/fast/forms/tabbing-input-iframe-expected.png: Copied from LayoutTests/platform/mac/fast/forms/tabbing-input-iframe-expected.png.
1285 * platform/mac-mavericks/fast/forms/tabbing-input-iframe-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/tabbing-input-iframe-expected.txt.
1286 * platform/mac-mavericks/fast/forms/targeted-frame-submission-expected.png: Copied from LayoutTests/platform/mac/fast/forms/targeted-frame-submission-expected.png.
1287 * platform/mac-mavericks/fast/forms/targeted-frame-submission-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/targeted-frame-submission-expected.txt.
1288 * platform/mac-mavericks/fast/forms/text-style-color-expected.png: Copied from LayoutTests/platform/mac/fast/forms/text-style-color-expected.png.
1289 * platform/mac-mavericks/fast/forms/text-style-color-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/text-style-color-expected.txt.
1290 * platform/mac-mavericks/fast/forms/textAreaLineHeight-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textAreaLineHeight-expected.png.
1291 * platform/mac-mavericks/fast/forms/textAreaLineHeight-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textAreaLineHeight-expected.txt.
1292 * platform/mac-mavericks/fast/forms/textarea-align-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-align-expected.png.
1293 * platform/mac-mavericks/fast/forms/textarea-align-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-align-expected.txt.
1294 * platform/mac-mavericks/fast/forms/textarea-placeholder-pseudo-style-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.png.
1295 * platform/mac-mavericks/fast/forms/textarea-placeholder-pseudo-style-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.txt.
1296 * platform/mac-mavericks/fast/forms/textarea-placeholder-visibility-1-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.png.
1297 * platform/mac-mavericks/fast/forms/textarea-placeholder-visibility-1-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.txt.
1298 * platform/mac-mavericks/fast/forms/textarea-placeholder-visibility-2-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.png.
1299 * platform/mac-mavericks/fast/forms/textarea-placeholder-visibility-2-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.txt.
1300 * platform/mac-mavericks/fast/forms/textarea-scroll-height-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-scroll-height-expected.png.
1301 * platform/mac-mavericks/fast/forms/textarea-scrollbar-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-scrollbar-expected.png.
1302 * platform/mac-mavericks/fast/forms/textarea-scrollbar-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-scrollbar-expected.txt.
1303 * platform/mac-mavericks/fast/forms/textarea-scrolled-type-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-scrolled-type-expected.png.
1304 * platform/mac-mavericks/fast/forms/textarea-scrolled-type-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-scrolled-type-expected.txt.
1305 * platform/mac-mavericks/fast/forms/textarea-setinnerhtml-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textarea-setinnerhtml-expected.png.
1306 * platform/mac-mavericks/fast/forms/textarea-setinnerhtml-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textarea-setinnerhtml-expected.txt.
1307 * platform/mac-mavericks/fast/forms/textfield-focus-ring-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textfield-focus-ring-expected.png.
1308 * platform/mac-mavericks/fast/forms/textfield-focus-ring-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textfield-focus-ring-expected.txt.
1309 * platform/mac-mavericks/fast/forms/textfield-outline-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textfield-outline-expected.png.
1310 * platform/mac-mavericks/fast/forms/textfield-outline-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textfield-outline-expected.txt.
1311 * platform/mac-mavericks/fast/forms/textfield-overflow-expected.png: Copied from LayoutTests/platform/mac/fast/forms/textfield-overflow-expected.png.
1312 * platform/mac-mavericks/fast/forms/textfield-overflow-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/textfield-overflow-expected.txt.
1313 * platform/mac-mavericks/fast/forms/validation-message-appearance-expected.png: Copied from LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.png.
1314 * platform/mac-mavericks/fast/forms/validation-message-appearance-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/validation-message-appearance-expected.txt.
1315 * platform/mac-mavericks/fast/forms/visual-hebrew-text-field-expected.png: Copied from LayoutTests/platform/mac/fast/forms/visual-hebrew-text-field-expected.png.
1316 * platform/mac-mavericks/fast/forms/visual-hebrew-text-field-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/visual-hebrew-text-field-expected.txt.
1317 * platform/mac-mavericks/fast/frames/take-focus-from-iframe-expected.png: Copied from LayoutTests/platform/mac/fast/frames/take-focus-from-iframe-expected.png.
1318 * platform/mac-mavericks/fast/frames/take-focus-from-iframe-expected.txt: Copied from LayoutTests/platform/mac/fast/frames/take-focus-from-iframe-expected.txt.
1319 * platform/mac-mavericks/fast/hidpi/resize-corner-hidpi-expected.png: Copied from LayoutTests/platform/mac/fast/hidpi/resize-corner-hidpi-expected.png.
1320 * platform/mac-mavericks/fast/hidpi/resize-corner-hidpi-expected.txt: Copied from LayoutTests/platform/mac/fast/hidpi/resize-corner-hidpi-expected.txt.
1321 * platform/mac-mavericks/fast/html/details-no-summary4-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-no-summary4-expected.png.
1322 * platform/mac-mavericks/fast/html/details-no-summary4-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-no-summary4-expected.txt.
1323 * platform/mac-mavericks/fast/html/details-open-javascript-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-open-javascript-expected.png.
1324 * platform/mac-mavericks/fast/html/details-open-javascript-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-open-javascript-expected.txt.
1325 * platform/mac-mavericks/fast/html/details-open2-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-open2-expected.png.
1326 * platform/mac-mavericks/fast/html/details-open2-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-open2-expected.txt.
1327 * platform/mac-mavericks/fast/html/details-open4-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-open4-expected.png.
1328 * platform/mac-mavericks/fast/html/details-open4-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-open4-expected.txt.
1329 * platform/mac-mavericks/fast/html/details-replace-summary-child-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-replace-summary-child-expected.png.
1330 * platform/mac-mavericks/fast/html/details-replace-summary-child-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-replace-summary-child-expected.txt.
1331 * platform/mac-mavericks/fast/html/details-replace-text-expected.png: Copied from LayoutTests/platform/mac/fast/html/details-replace-text-expected.png.
1332 * platform/mac-mavericks/fast/html/details-replace-text-expected.txt: Copied from LayoutTests/platform/mac/fast/html/details-replace-text-expected.txt.
1333 * platform/mac-mavericks/fast/html/keygen-expected.png: Copied from LayoutTests/platform/mac/fast/html/keygen-expected.png.
1334 * platform/mac-mavericks/fast/html/keygen-expected.txt: Copied from LayoutTests/platform/mac/fast/html/keygen-expected.txt.
1335 * platform/mac-mavericks/fast/images/image-controls-basic-expected.png: Copied from LayoutTests/platform/mac/fast/images/image-controls-basic-expected.png.
1336 * platform/mac-mavericks/fast/images/image-controls-basic-expected.txt: Copied from LayoutTests/platform/mac/fast/images/image-controls-basic-expected.txt.
1337 * platform/mac-mavericks/fast/lists/dynamic-marker-crash-expected.png: Copied from LayoutTests/platform/mac/fast/lists/dynamic-marker-crash-expected.png.
1338 * platform/mac-mavericks/fast/lists/dynamic-marker-crash-expected.txt: Copied from LayoutTests/platform/mac/fast/lists/dynamic-marker-crash-expected.txt.
1339 * platform/mac-mavericks/fast/overflow/overflow-x-y-expected.png: Copied from LayoutTests/platform/mac/fast/overflow/overflow-x-y-expected.png.
1340 * platform/mac-mavericks/fast/overflow/overflow-x-y-expected.txt: Copied from LayoutTests/platform/mac/fast/overflow/overflow-x-y-expected.txt.
1341 * 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.
1342 * 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.
1343 * platform/mac-mavericks/fast/overflow/scrollRevealButton-expected.png: Copied from LayoutTests/platform/mac/fast/overflow/scrollRevealButton-expected.png.
1344 * platform/mac-mavericks/fast/overflow/scrollRevealButton-expected.txt: Copied from LayoutTests/platform/mac/fast/overflow/scrollRevealButton-expected.txt.
1345 * platform/mac-mavericks/fast/parser/document-write-option-expected.png: Copied from LayoutTests/platform/mac/fast/parser/document-write-option-expected.png.
1346 * platform/mac-mavericks/fast/parser/document-write-option-expected.txt: Copied from LayoutTests/platform/mac/fast/parser/document-write-option-expected.txt.
1347 * platform/mac-mavericks/fast/parser/entity-comment-in-textarea-expected.png: Copied from LayoutTests/platform/mac/fast/parser/entity-comment-in-textarea-expected.png.
1348 * platform/mac-mavericks/fast/parser/entity-comment-in-textarea-expected.txt: Copied from LayoutTests/platform/mac/fast/parser/entity-comment-in-textarea-expected.txt.
1349 * platform/mac-mavericks/fast/parser/open-comment-in-textarea-expected.png: Copied from LayoutTests/platform/mac/fast/parser/open-comment-in-textarea-expected.png.
1350 * platform/mac-mavericks/fast/parser/open-comment-in-textarea-expected.txt: Copied from LayoutTests/platform/mac/fast/parser/open-comment-in-textarea-expected.txt.
1351 * platform/mac-mavericks/fast/repaint/control-clip-expected.png: Copied from LayoutTests/platform/mac/fast/repaint/control-clip-expected.png.
1352 * platform/mac-mavericks/fast/repaint/control-clip-expected.txt: Copied from LayoutTests/platform/mac/fast/repaint/control-clip-expected.txt.
1353 * 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.
1354 * 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.
1355 * platform/mac-mavericks/fast/repaint/search-field-cancel-expected.png: Copied from LayoutTests/platform/mac/fast/repaint/search-field-cancel-expected.png.
1356 * platform/mac-mavericks/fast/repaint/search-field-cancel-expected.txt: Copied from LayoutTests/platform/mac/fast/repaint/search-field-cancel-expected.txt.
1357 * platform/mac-mavericks/fast/repaint/subtree-root-skipped-expected.png: Copied from LayoutTests/platform/mac/fast/repaint/subtree-root-skipped-expected.png.
1358 * platform/mac-mavericks/fast/repaint/subtree-root-skipped-expected.txt: Copied from LayoutTests/platform/mac/fast/repaint/subtree-root-skipped-expected.txt.
1359 * platform/mac-mavericks/fast/replaced/replaced-breaking-expected.png: Copied from LayoutTests/platform/mac/fast/replaced/replaced-breaking-expected.png.
1360 * platform/mac-mavericks/fast/replaced/replaced-breaking-expected.txt: Copied from LayoutTests/platform/mac/fast/replaced/replaced-breaking-expected.txt.
1361 * platform/mac-mavericks/fast/replaced/replaced-breaking-mixture-expected.png: Copied from LayoutTests/platform/mac/fast/replaced/replaced-breaking-mixture-expected.png.
1362 * platform/mac-mavericks/fast/replaced/replaced-breaking-mixture-expected.txt: Copied from LayoutTests/platform/mac/fast/replaced/replaced-breaking-mixture-expected.txt.
1363 * platform/mac-mavericks/fast/replaced/width100percent-button-expected.png: Copied from LayoutTests/platform/mac/fast/replaced/width100percent-button-expected.png.
1364 * platform/mac-mavericks/fast/replaced/width100percent-button-expected.txt: Copied from LayoutTests/platform/mac/fast/replaced/width100percent-button-expected.txt.
1365 * platform/mac-mavericks/fast/replaced/width100percent-menulist-expected.png: Copied from LayoutTests/platform/mac/fast/replaced/width100percent-menulist-expected.png.
1366 * platform/mac-mavericks/fast/replaced/width100percent-menulist-expected.txt: Copied from LayoutTests/platform/mac/fast/replaced/width100percent-menulist-expected.txt.
1367 * platform/mac-mavericks/fast/selectors/064-expected.png: Copied from LayoutTests/platform/mac/fast/selectors/064-expected.png.
1368 * platform/mac-mavericks/fast/selectors/064-expected.txt: Copied from LayoutTests/platform/mac/fast/selectors/064-expected.txt.
1369 * 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.
1370 * 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.
1371 * platform/mac-mavericks/fast/table/003-expected.png: Copied from LayoutTests/platform/mac/fast/table/003-expected.png.
1372 * platform/mac-mavericks/fast/table/003-expected.txt: Copied from LayoutTests/platform/mac/fast/table/003-expected.txt.
1373 * platform/mac-mavericks/fast/table/append-cells2-expected.png: Copied from LayoutTests/platform/mac/fast/table/append-cells2-expected.png.
1374 * platform/mac-mavericks/fast/table/append-cells2-expected.txt: Copied from LayoutTests/platform/mac/fast/table/append-cells2-expected.txt.
1375 * platform/mac-mavericks/fast/table/colspanMinWidth-expected.png: Copied from LayoutTests/platform/mac/fast/table/colspanMinWidth-expected.png.
1376 * platform/mac-mavericks/fast/table/colspanMinWidth-expected.txt: Copied from LayoutTests/platform/mac/fast/table/colspanMinWidth-expected.txt.
1377 * platform/mac-mavericks/fast/table/colspanMinWidth-vertical-expected.png: Copied from LayoutTests/platform/mac/fast/table/colspanMinWidth-vertical-expected.png.
1378 * platform/mac-mavericks/fast/table/colspanMinWidth-vertical-expected.txt: Copied from LayoutTests/platform/mac/fast/table/colspanMinWidth-vertical-expected.txt.
1379 * platform/mac-mavericks/fast/table/remove-td-display-none-expected.png: Copied from LayoutTests/platform/mac/fast/table/remove-td-display-none-expected.png.
1380 * platform/mac-mavericks/fast/table/remove-td-display-none-expected.txt: Copied from LayoutTests/platform/mac/fast/table/remove-td-display-none-expected.txt.
1381 * platform/mac-mavericks/fast/table/spanOverlapRepaint-expected.png: Copied from LayoutTests/platform/mac/fast/table/spanOverlapRepaint-expected.png.
1382 * platform/mac-mavericks/fast/table/spanOverlapRepaint-expected.txt: Copied from LayoutTests/platform/mac/fast/table/spanOverlapRepaint-expected.txt.
1383 * platform/mac-mavericks/fast/table/text-field-baseline-expected.png: Copied from LayoutTests/platform/mac/fast/table/text-field-baseline-expected.png.
1384 * platform/mac-mavericks/fast/table/text-field-baseline-expected.txt: Copied from LayoutTests/platform/mac/fast/table/text-field-baseline-expected.txt.
1385 * platform/mac-mavericks/fast/text/atsui-rtl-override-selection-expected.png: Copied from LayoutTests/platform/mac/fast/text/atsui-rtl-override-selection-expected.png.
1386 * platform/mac-mavericks/fast/text/atsui-rtl-override-selection-expected.txt: Copied from LayoutTests/platform/mac/fast/text/atsui-rtl-override-selection-expected.txt.
1387 * 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.
1388 * 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.
1389 * platform/mac-mavericks/fast/text/backslash-to-yen-sign-expected.txt: Copied from LayoutTests/platform/mac/fast/text/backslash-to-yen-sign-expected.txt.
1390 * platform/mac-mavericks/fast/text/complex-text-opacity-expected.png: Copied from LayoutTests/platform/mac/fast/text/complex-text-opacity-expected.png.
1391 * platform/mac-mavericks/fast/text/complex-text-opacity-expected.txt: Copied from LayoutTests/platform/mac/fast/text/complex-text-opacity-expected.txt.
1392 * platform/mac-mavericks/fast/text/drawBidiText-expected.png: Copied from LayoutTests/platform/mac/fast/text/drawBidiText-expected.png.
1393 * platform/mac-mavericks/fast/text/drawBidiText-expected.txt: Copied from LayoutTests/platform/mac/fast/text/drawBidiText-expected.txt.
1394 * platform/mac-mavericks/fast/text/emphasis-expected.txt: Copied from LayoutTests/platform/mac/fast/text/emphasis-expected.txt.
1395 * platform/mac-mavericks/fast/text/fallback-traits-fixup-expected.txt: Copied from LayoutTests/platform/mac/fast/text/fallback-traits-fixup-expected.txt.
1396 * platform/mac-mavericks/fast/text/indic-expected.txt: Copied from LayoutTests/platform/mac/fast/text/indic-expected.txt.
1397 * platform/mac-mavericks/fast/text/international/003-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/003-expected.txt.
1398 * platform/mac-mavericks/fast/text/international/bidi-listbox-atsui-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/bidi-listbox-atsui-expected.png.
1399 * platform/mac-mavericks/fast/text/international/bidi-listbox-atsui-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bidi-listbox-atsui-expected.txt.
1400 * platform/mac-mavericks/fast/text/international/bidi-listbox-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bidi-listbox-expected.txt.
1401 * platform/mac-mavericks/fast/text/international/bidi-menulist-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bidi-menulist-expected.txt.
1402 * 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.
1403 * 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.
1404 * platform/mac-mavericks/fast/text/international/bold-bengali-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bold-bengali-expected.txt.
1405 * 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.
1406 * 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.
1407 * platform/mac-mavericks/fast/text/international/danda-space-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/danda-space-expected.png.
1408 * platform/mac-mavericks/fast/text/international/danda-space-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/danda-space-expected.txt.
1409 * platform/mac-mavericks/fast/text/international/hindi-whitespace-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/hindi-whitespace-expected.png.
1410 * platform/mac-mavericks/fast/text/international/hindi-whitespace-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/hindi-whitespace-expected.txt.
1411 * platform/mac-mavericks/fast/text/international/khmer-selection-expected.png: Copied from LayoutTests/platform/mac/fast/text/international/khmer-selection-expected.png.
1412 * platform/mac-mavericks/fast/text/international/khmer-selection-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/khmer-selection-expected.txt.
1413 * 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.
1414 * 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.
1415 * 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.
1416 * 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.
1417 * 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.
1418 * platform/mac-mavericks/fast/text/international/wrap-CJK-001-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/wrap-CJK-001-expected.txt.
1419 * platform/mac-mavericks/fast/text/justify-ideograph-complex-expected.txt: Copied from LayoutTests/platform/mac/fast/text/justify-ideograph-complex-expected.txt.
1420 * platform/mac-mavericks/fast/text/justify-ideograph-simple-expected.txt: Copied from LayoutTests/platform/mac/fast/text/justify-ideograph-simple-expected.txt.
1421 * platform/mac-mavericks/fast/text/justify-ideograph-vertical-expected.txt: Copied from LayoutTests/platform/mac/fast/text/justify-ideograph-vertical-expected.txt.
1422 * platform/mac-mavericks/fast/text/khmer-lao-font-expected.txt: Copied from LayoutTests/platform/mac/fast/text/khmer-lao-font-expected.txt.
1423 * 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.
1424 * platform/mac-mavericks/fast/text/textIteratorNilRenderer-expected.png: Copied from LayoutTests/platform/mac/fast/text/textIteratorNilRenderer-expected.png.
1425 * platform/mac-mavericks/fast/text/textIteratorNilRenderer-expected.txt: Copied from LayoutTests/platform/mac/fast/text/textIteratorNilRenderer-expected.txt.
1426 * platform/mac-mavericks/fast/text/updateNewFont-expected.txt: Copied from LayoutTests/platform/mac/fast/text/updateNewFont-expected.txt.
1427 * platform/mac-mavericks/fast/transforms/transformed-focused-text-input-expected.png: Copied from LayoutTests/platform/mac/fast/transforms/transformed-focused-text-input-expected.png.
1428 * platform/mac-mavericks/fast/transforms/transformed-focused-text-input-expected.txt: Copied from LayoutTests/platform/mac/fast/transforms/transformed-focused-text-input-expected.txt.
1429 * platform/mac-mavericks/http/tests/navigation/javascriptlink-frames-expected.png: Copied from LayoutTests/platform/mac/http/tests/navigation/javascriptlink-frames-expected.png.
1430 * platform/mac-mavericks/http/tests/navigation/javascriptlink-frames-expected.txt: Copied from LayoutTests/platform/mac/http/tests/navigation/javascriptlink-frames-expected.txt.
1431 * platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt: Copied from LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt.
1432 * platform/mac-mavericks/mathml/opentype/large-operators-expected.txt: Copied from LayoutTests/platform/mac/mathml/opentype/large-operators-expected.txt.
1433 * platform/mac-mavericks/mathml/opentype/opentype-stretchy-horizontal-expected.txt: Copied from LayoutTests/platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.txt.
1434 * platform/mac-mavericks/mathml/opentype/vertical-expected.txt: Copied from LayoutTests/platform/mac/mathml/opentype/vertical-expected.txt.
1435 * platform/mac-mavericks/media/audio-controls-rendering-expected.png: Copied from LayoutTests/platform/mac/media/audio-controls-rendering-expected.png.
1436 * platform/mac-mavericks/media/audio-controls-rendering-expected.txt: Copied from LayoutTests/platform/mac/media/audio-controls-rendering-expected.txt.
1437 * platform/mac-mavericks/media/controls-strict-expected.png: Copied from LayoutTests/platform/mac/media/controls-strict-expected.png.
1438 * platform/mac-mavericks/media/controls-strict-expected.txt: Copied from LayoutTests/platform/mac/media/controls-strict-expected.txt.
1439 * platform/mac-mavericks/media/video-controls-rendering-expected.txt: Copied from LayoutTests/platform/mac/media/video-controls-rendering-expected.txt.
1440 * platform/mac-mavericks/media/video-display-toggle-expected.txt: Copied from LayoutTests/platform/mac/media/video-display-toggle-expected.txt.
1441 * platform/mac-mavericks/media/video-no-audio-expected.png: Copied from LayoutTests/platform/mac/media/video-no-audio-expected.png.
1442 * platform/mac-mavericks/media/video-no-audio-expected.txt: Copied from LayoutTests/platform/mac/media/video-no-audio-expected.txt.
1443 * platform/mac-mavericks/media/video-volume-slider-expected.txt: Copied from LayoutTests/platform/mac/media/video-volume-slider-expected.txt.
1444 * platform/mac-mavericks/platform/mac/editing/input/devanagari-ligature-expected.txt: Copied from LayoutTests/platform/mac/editing/input/devanagari-ligature-expected.txt.
1445 * 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.
1446 * 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.
1447 * platform/mac-mavericks/platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/input-appearance-spinbutton-expected.txt.
1448 * 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.
1449 * 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.
1450 * platform/mac-mavericks/plugins/mouse-click-plugin-clears-selection-expected.txt: Copied from LayoutTests/platform/mac/plugins/mouse-click-plugin-clears-selection-expected.txt.
1451 * platform/mac-mavericks/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png: Copied from LayoutTests/platform/mac/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png.
1452 * platform/mac-mavericks/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt: Copied from LayoutTests/platform/mac/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt.
1453 * 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.
1454 * 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.
1455 * 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.
1456 * 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.
1457 * 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.
1458 * 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.
1459 * 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.
1460 * 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.
1461 * 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.
1462 * 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.
1463 * platform/mac-mavericks/svg/custom/inline-svg-in-xhtml-expected.png: Copied from LayoutTests/platform/mac/svg/custom/inline-svg-in-xhtml-expected.png.
1464 * platform/mac-mavericks/svg/custom/inline-svg-in-xhtml-expected.txt: Copied from LayoutTests/platform/mac/svg/custom/inline-svg-in-xhtml-expected.txt.
1465 * platform/mac-mavericks/svg/hixie/mixed/003-expected.png: Copied from LayoutTests/platform/mac/svg/hixie/mixed/003-expected.png.
1466 * platform/mac-mavericks/svg/hixie/mixed/003-expected.txt: Copied from LayoutTests/platform/mac/svg/hixie/mixed/003-expected.txt.
1467 * platform/mac-mavericks/svg/text/bidi-text-query-expected.png: Copied from LayoutTests/platform/mac/svg/text/bidi-text-query-expected.png.
1468 * platform/mac-mavericks/svg/text/bidi-text-query-expected.txt: Copied from LayoutTests/platform/mac/svg/text/bidi-text-query-expected.txt.
1469 * platform/mac-mavericks/tables/mozilla/bugs/bug1188-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1188-expected.txt.
1470 * platform/mac-mavericks/tables/mozilla/bugs/bug12384-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug12384-expected.txt.
1471 * platform/mac-mavericks/tables/mozilla/bugs/bug138725-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug138725-expected.txt.
1472 * platform/mac-mavericks/tables/mozilla/bugs/bug18359-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18359-expected.txt.
1473 * platform/mac-mavericks/tables/mozilla/bugs/bug24200-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug24200-expected.txt.
1474 * platform/mac-mavericks/tables/mozilla/bugs/bug2479-2-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-2-expected.txt.
1475 * platform/mac-mavericks/tables/mozilla/bugs/bug2479-3-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-3-expected.txt.
1476 * platform/mac-mavericks/tables/mozilla/bugs/bug2479-4-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-4-expected.txt.
1477 * platform/mac-mavericks/tables/mozilla/bugs/bug28928-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug28928-expected.txt.
1478 * platform/mac-mavericks/tables/mozilla/bugs/bug29326-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29326-expected.txt.
1479 * platform/mac-mavericks/tables/mozilla/bugs/bug30559-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug30559-expected.txt.
1480 * platform/mac-mavericks/tables/mozilla/bugs/bug30692-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug30692-expected.txt.
1481 * platform/mac-mavericks/tables/mozilla/bugs/bug33855-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug33855-expected.txt.
1482 * platform/mac-mavericks/tables/mozilla/bugs/bug4382-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4382-expected.txt.
1483 * platform/mac-mavericks/tables/mozilla/bugs/bug4527-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4527-expected.txt.
1484 * platform/mac-mavericks/tables/mozilla/bugs/bug46368-1-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-1-expected.txt.
1485 * platform/mac-mavericks/tables/mozilla/bugs/bug46368-2-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-2-expected.txt.
1486 * platform/mac-mavericks/tables/mozilla/bugs/bug51037-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug51037-expected.txt.
1487 * platform/mac-mavericks/tables/mozilla/bugs/bug51727-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug51727-expected.txt.
1488 * platform/mac-mavericks/tables/mozilla/bugs/bug52505-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52505-expected.txt.
1489 * platform/mac-mavericks/tables/mozilla/bugs/bug52506-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52506-expected.txt.
1490 * platform/mac-mavericks/tables/mozilla/bugs/bug55545-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug55545-expected.txt.
1491 * platform/mac-mavericks/tables/mozilla/bugs/bug59354-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug59354-expected.txt.
1492 * platform/mac-mavericks/tables/mozilla/bugs/bug60749-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug60749-expected.txt.
1493 * platform/mac-mavericks/tables/mozilla/bugs/bug68912-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug68912-expected.txt.
1494 * platform/mac-mavericks/tables/mozilla/bugs/bug7342-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7342-expected.txt.
1495 * platform/mac-mavericks/tables/mozilla/bugs/bug96334-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug96334-expected.txt.
1496 * platform/mac-mavericks/tables/mozilla/bugs/bug99948-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug99948-expected.txt.
1497 * platform/mac-mavericks/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/collapsing_borders/bug41262-4-expected.txt.
1498 * platform/mac-mavericks/tables/mozilla/core/margins-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/core/margins-expected.txt.
1499 * platform/mac-mavericks/tables/mozilla/dom/tableDom-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/dom/tableDom-expected.txt.
1500 * platform/mac-mavericks/tables/mozilla/other/move_row-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla/other/move_row-expected.txt.
1501 * platform/mac-mavericks/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.txt.
1502 * 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.
1503 * 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.
1504 * 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.
1505 * 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.
1506 * 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.
1507 * platform/mac-mavericks/transforms/2d/hindi-rotated-expected.txt: Copied from LayoutTests/platform/mac/transforms/2d/hindi-rotated-expected.txt.
1508 * platform/mac-mavericks/transforms/2d/zoom-menulist-expected.txt: Copied from LayoutTests/platform/mac/transforms/2d/zoom-menulist-expected.txt.
1509 * platform/mac-mavericks/transforms/3d/general/perspective-non-layer-expected.txt: Copied from LayoutTests/platform/mac/transforms/3d/general/perspective-non-layer-expected.txt.
1510 * platform/mac-wk2/TestExpectations:
1511 * platform/mac-wk2/js/dom/global-constructors-attributes-expected.txt: Copied from LayoutTests/platform/mac/js/dom/global-constructors-attributes-expected.txt.
1512 * platform/mac/TestExpectations:
1513 * platform/mac/accessibility/aria-readonly-expected.txt:
1514 * platform/mac/accessibility/roles-exposed-expected.txt:
1515 * platform/mac/compositing/contents-opaque/control-layer-expected.txt:
1516 * platform/mac/compositing/fixed-image-loading-expected.txt: Copied from LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt.
1517 * platform/mac/compositing/geometry/ancestor-overflow-change-expected.txt: Copied from LayoutTests/platform/mac/compositing/contents-opaque/control-layer-expected.txt.
1518 * platform/mac/compositing/geometry/composited-in-columns-expected.txt: Added.
1519 * platform/mac/compositing/rtl/rtl-fixed-expected.txt: Added.
1520 * platform/mac/compositing/rtl/rtl-fixed-overflow-expected.txt: Added.
1521 * platform/mac/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Added.
1522 * platform/mac/css3/selectors3/html/css3-modsel-161-expected.png:
1523 * platform/mac/css3/selectors3/html/css3-modsel-19b-expected.png:
1524 * platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt:
1525 * platform/mac/css3/selectors3/html/css3-modsel-23-expected.png:
1526 * platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt:
1527 * platform/mac/css3/selectors3/html/css3-modsel-24-expected.png:
1528 * platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt:
1529 * platform/mac/css3/selectors3/html/css3-modsel-64-expected.png:
1530 * platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt:
1531 * platform/mac/css3/selectors3/html/css3-modsel-68-expected.png:
1532 * platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt:
1533 * platform/mac/css3/selectors3/html/css3-modsel-69-expected.png:
1534 * platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt:
1535 * platform/mac/css3/selectors3/xhtml/css3-modsel-161-expected.png:
1536 * platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.png:
1537 * platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt:
1538 * platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.png:
1539 * platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt:
1540 * platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.png:
1541 * platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt:
1542 * platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.png:
1543 * platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt:
1544 * platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.png:
1545 * platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt:
1546 * platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.png:
1547 * platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt:
1548 * platform/mac/css3/selectors3/xml/css3-modsel-161-expected.png:
1549 * platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.png:
1550 * platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt:
1551 * platform/mac/css3/selectors3/xml/css3-modsel-23-expected.png:
1552 * platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt:
1553 * platform/mac/css3/selectors3/xml/css3-modsel-24-expected.png:
1554 * platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt:
1555 * platform/mac/css3/selectors3/xml/css3-modsel-64-expected.png:
1556 * platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt:
1557 * platform/mac/css3/selectors3/xml/css3-modsel-68-expected.png:
1558 * platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt:
1559 * platform/mac/css3/selectors3/xml/css3-modsel-69-expected.png:
1560 * platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt:
1561 * platform/mac/editing/input/caret-at-the-edge-of-input-expected.png: Added.
1562 * platform/mac/editing/input/caret-at-the-edge-of-input-expected.txt:
1563 * platform/mac/editing/input/devanagari-ligature-expected.txt:
1564 * platform/mac/editing/input/reveal-caret-of-multiline-input-expected.png: Added.
1565 * platform/mac/editing/input/reveal-caret-of-multiline-input-expected.txt:
1566 * platform/mac/editing/input/undo-grouping-on-text-insertion-expected.txt: Added.
1567 * platform/mac/editing/input/undo-grouping-on-text-insertion.html: Added.
1568 * platform/mac/editing/inserting/4960120-1-expected.png:
1569 * platform/mac/editing/inserting/4960120-1-expected.txt:
1570 * platform/mac/editing/inserting/before-after-input-element-expected.png:
1571 * platform/mac/editing/inserting/before-after-input-element-expected.txt:
1572 * platform/mac/editing/pasteboard/4641033-expected.png:
1573 * platform/mac/editing/pasteboard/4806874-expected.png:
1574 * platform/mac/editing/pasteboard/4806874-expected.txt:
1575 * platform/mac/editing/pasteboard/4944770-1-expected.png:
1576 * platform/mac/editing/pasteboard/4944770-2-expected.png:
1577 * platform/mac/editing/pasteboard/drop-text-without-selection-expected.png:
1578 * platform/mac/editing/pasteboard/drop-text-without-selection-expected.txt:
1579 * platform/mac/editing/pasteboard/input-field-1-expected.png:
1580 * platform/mac/editing/pasteboard/input-field-1-expected.txt:
1581 * platform/mac/editing/pasteboard/pasting-tabs-expected.png:
1582 * platform/mac/editing/pasteboard/pasting-tabs-expected.txt:
1583 * platform/mac/editing/selection/3690703-2-expected.png:
1584 * platform/mac/editing/selection/3690703-2-expected.txt:
1585 * platform/mac/editing/selection/3690703-expected.png:
1586 * platform/mac/editing/selection/3690703-expected.txt:
1587 * platform/mac/editing/selection/3690719-expected.png:
1588 * platform/mac/editing/selection/3690719-expected.txt:
1589 * platform/mac/editing/selection/4397952-expected.png:
1590 * platform/mac/editing/selection/4397952-expected.txt:
1591 * platform/mac/editing/selection/4895428-3-expected.png:
1592 * platform/mac/editing/selection/4895428-3-expected.txt:
1593 * platform/mac/editing/selection/4975120-expected.png:
1594 * platform/mac/editing/selection/4975120-expected.txt:
1595 * platform/mac/editing/selection/5240265-expected.png:
1596 * platform/mac/editing/selection/caret-before-select-expected.png:
1597 * platform/mac/editing/selection/drag-select-1-expected.png:
1598 * platform/mac/editing/selection/drag-select-1-expected.txt:
1599 * platform/mac/editing/selection/replaced-boundaries-3-expected.png:
1600 * platform/mac/editing/selection/replaced-boundaries-3-expected.txt:
1601 * platform/mac/editing/selection/select-across-readonly-input-1-expected.png:
1602 * platform/mac/editing/selection/select-across-readonly-input-1-expected.txt:
1603 * platform/mac/editing/selection/select-across-readonly-input-2-expected.png:
1604 * platform/mac/editing/selection/select-across-readonly-input-2-expected.txt:
1605 * platform/mac/editing/selection/select-across-readonly-input-3-expected.png:
1606 * platform/mac/editing/selection/select-across-readonly-input-3-expected.txt:
1607 * platform/mac/editing/selection/select-across-readonly-input-4-expected.png:
1608 * platform/mac/editing/selection/select-across-readonly-input-4-expected.txt:
1609 * platform/mac/editing/selection/select-across-readonly-input-5-expected.png:
1610 * platform/mac/editing/selection/select-across-readonly-input-5-expected.txt:
1611 * platform/mac/editing/selection/select-box-expected.png:
1612 * platform/mac/editing/selection/select-element-paragraph-boundary-expected.png:
1613 * platform/mac/editing/selection/select-from-textfield-outwards-expected.png:
1614 * platform/mac/editing/selection/select-from-textfield-outwards-expected.txt:
1615 * platform/mac/editing/selection/selection-button-text-expected.png:
1616 * platform/mac/editing/selection/selection-button-text-expected.txt:
1617 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt:
1618 * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt:
1619 * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-1-expected.txt:
1620 * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-2-expected.txt:
1621 * platform/mac/fast/block/lineboxcontain/block-with-ideographs-expected.png:
1622 * platform/mac/fast/block/lineboxcontain/block-with-ideographs-expected.txt:
1623 * platform/mac/fast/block/margin-collapse/103-expected.png:
1624 * platform/mac/fast/block/margin-collapse/103-expected.txt:
1625 * platform/mac/fast/block/positioning/inline-block-relposition-expected.png:
1626 * platform/mac/fast/block/positioning/inline-block-relposition-expected.txt:
1627 * platform/mac/fast/css/continuationCrash-expected.png:
1628 * platform/mac/fast/css/continuationCrash-expected.txt:
1629 * platform/mac/fast/css/css2-system-fonts-expected.png:
1630 * platform/mac/fast/css/css2-system-fonts-expected.txt:
1631 * platform/mac/fast/css/font-family-pictograph-expected.txt:
1632 * platform/mac/fast/css/input-search-padding-expected.png:
1633 * platform/mac/fast/css/line-height-expected.png:
1634 * platform/mac/fast/css/line-height-expected.txt:
1635 * platform/mac/fast/css/margin-top-bottom-dynamic-expected.png:
1636 * platform/mac/fast/css/margin-top-bottom-dynamic-expected.txt:
1637 * platform/mac/fast/css/resize-corner-tracking-expected.png:
1638 * platform/mac/fast/css/resize-corner-tracking-expected.txt: Added.
1639 * platform/mac/fast/css/rtl-ordering-expected.png:
1640 * platform/mac/fast/css/rtl-ordering-expected.txt:
1641 * platform/mac/fast/css/text-input-with-webkit-border-radius-expected.png:
1642 * platform/mac/fast/css/text-input-with-webkit-border-radius-expected.txt:
1643 * platform/mac/fast/css/text-overflow-input-expected.png:
1644 * platform/mac/fast/css/text-overflow-input-expected.txt:
1645 * platform/mac/fast/css/text-transform-select-expected.png:
1646 * platform/mac/fast/css/text-transform-select-expected.txt:
1647 * platform/mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.png:
1648 * platform/mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.txt:
1649 * platform/mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png:
1650 * platform/mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt:
1651 * platform/mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png:
1652 * platform/mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt:
1653 * platform/mac/fast/dom/isindex-001-expected.png:
1654 * platform/mac/fast/dom/isindex-001-expected.txt:
1655 * platform/mac/fast/dom/isindex-002-expected.png:
1656 * platform/mac/fast/dom/isindex-002-expected.txt:
1657 * platform/mac/fast/dynamic/008-expected.png:
1658 * platform/mac/fast/dynamic/008-expected.txt:
1659 * platform/mac/fast/dynamic/positioned-movement-with-positioned-children-expected.png:
1660 * platform/mac/fast/dynamic/positioned-movement-with-positioned-children-expected.txt:
1661 * platform/mac/fast/encoding/denormalised-voiced-japanese-chars-expected.txt:
1662 * platform/mac/fast/events/context-no-deselect-expected.png:
1663 * platform/mac/fast/events/context-no-deselect-expected.txt:
1664 * platform/mac/fast/events/shadow-event-path-2-expected.txt: Added.
1665 * platform/mac/fast/forms/001-expected.png:
1666 * platform/mac/fast/forms/001-expected.txt:
1667 * platform/mac/fast/forms/003-expected.png:
1668 * platform/mac/fast/forms/003-expected.txt:
1669 * platform/mac/fast/forms/004-expected.png:
1670 * platform/mac/fast/forms/004-expected.txt:
1671 * platform/mac/fast/forms/HTMLOptionElement_label01-expected.png:
1672 * platform/mac/fast/forms/HTMLOptionElement_label01-expected.txt:
1673 * platform/mac/fast/forms/HTMLOptionElement_label02-expected.png:
1674 * platform/mac/fast/forms/HTMLOptionElement_label02-expected.txt:
1675 * platform/mac/fast/forms/HTMLOptionElement_label03-expected.png:
1676 * platform/mac/fast/forms/HTMLOptionElement_label04-expected.png:
1677 * platform/mac/fast/forms/HTMLOptionElement_label04-expected.txt:
1678 * platform/mac/fast/forms/HTMLOptionElement_label05-expected.png:
1679 * platform/mac/fast/forms/HTMLOptionElement_label05-expected.txt:
1680 * platform/mac/fast/forms/basic-buttons-expected.png:
1681 * platform/mac/fast/forms/basic-buttons-expected.txt:
1682 * platform/mac/fast/forms/basic-inputs-expected.png:
1683 * platform/mac/fast/forms/basic-inputs-expected.txt:
1684 * platform/mac/fast/forms/basic-selects-expected.png:
1685 * platform/mac/fast/forms/basic-selects-expected.txt:
1686 * platform/mac/fast/forms/basic-textareas-expected.png:
1687 * platform/mac/fast/forms/basic-textareas-expected.txt:
1688 * platform/mac/fast/forms/basic-textareas-quirks-expected.png:
1689 * platform/mac/fast/forms/basic-textareas-quirks-expected.txt:
1690 * platform/mac/fast/forms/blankbuttons-expected.png:
1691 * platform/mac/fast/forms/blankbuttons-expected.txt:
1692 * platform/mac/fast/forms/box-shadow-override-expected.png:
1693 * platform/mac/fast/forms/box-shadow-override-expected.txt:
1694 * platform/mac/fast/forms/button-align-expected.png:
1695 * platform/mac/fast/forms/button-cannot-be-nested-expected.png:
1696 * platform/mac/fast/forms/button-cannot-be-nested-expected.txt:
1697 * platform/mac/fast/forms/button-default-title-expected.png:
1698 * platform/mac/fast/forms/button-default-title-expected.txt:
1699 * platform/mac/fast/forms/button-generated-content-expected.png:
1700 * platform/mac/fast/forms/button-generated-content-expected.txt:
1701 * platform/mac/fast/forms/button-positioned-expected.png:
1702 * platform/mac/fast/forms/button-positioned-expected.txt:
1703 * platform/mac/fast/forms/button-sizes-expected.png:
1704 * platform/mac/fast/forms/button-sizes-expected.txt:
1705 * platform/mac/fast/forms/button-style-color-expected.png:
1706 * platform/mac/fast/forms/button-style-color-expected.txt:
1707 * platform/mac/fast/forms/button-table-styles-expected.png:
1708 * platform/mac/fast/forms/button-table-styles-expected.txt:
1709 * platform/mac/fast/forms/button-text-transform-expected.png:
1710 * platform/mac/fast/forms/button-text-transform-expected.txt:
1711 * platform/mac/fast/forms/button-white-space-expected.png:
1712 * platform/mac/fast/forms/button-white-space-expected.txt:
1713 * platform/mac/fast/forms/control-clip-expected.png:
1714 * platform/mac/fast/forms/control-clip-expected.txt:
1715 * platform/mac/fast/forms/control-clip-overflow-expected.png:
1716 * platform/mac/fast/forms/control-clip-overflow-expected.txt:
1717 * platform/mac/fast/forms/control-restrict-line-height-expected.png:
1718 * platform/mac/fast/forms/control-restrict-line-height-expected.txt:
1719 * platform/mac/fast/forms/disabled-select-change-index-expected.png:
1720 * platform/mac/fast/forms/disabled-select-change-index-expected.txt:
1721 * platform/mac/fast/forms/encoding-test-expected.png:
1722 * platform/mac/fast/forms/encoding-test-expected.txt:
1723 * platform/mac/fast/forms/fieldset-align-expected.png:
1724 * platform/mac/fast/forms/fieldset-align-expected.txt:
1725 * platform/mac/fast/forms/file/file-input-direction-expected.png:
1726 * platform/mac/fast/forms/file/file-input-direction-expected.txt:
1727 * platform/mac/fast/forms/file/file-input-disabled-expected.png:
1728 * platform/mac/fast/forms/file/file-input-disabled-expected.txt:
1729 * platform/mac/fast/forms/file/input-file-re-render-expected.png:
1730 * platform/mac/fast/forms/file/input-file-re-render-expected.txt:
1731 * platform/mac/fast/forms/floating-textfield-relayout-expected.png:
1732 * platform/mac/fast/forms/form-element-geometry-expected.png:
1733 * platform/mac/fast/forms/form-element-geometry-expected.txt:
1734 * platform/mac/fast/forms/formmove3-expected.png:
1735 * platform/mac/fast/forms/formmove3-expected.txt:
1736 * platform/mac/fast/forms/hidden-listbox-expected.png:
1737 * platform/mac/fast/forms/hidden-listbox-expected.txt:
1738 * platform/mac/fast/forms/input-align-expected.png:
1739 * platform/mac/fast/forms/input-align-expected.txt:
1740 * platform/mac/fast/forms/input-appearance-bkcolor-expected.png:
1741 * platform/mac/fast/forms/input-appearance-bkcolor-expected.txt:
1742 * platform/mac/fast/forms/input-appearance-default-bkcolor-expected.png:
1743 * platform/mac/fast/forms/input-appearance-default-bkcolor-expected.txt:
1744 * platform/mac/fast/forms/input-appearance-disabled-expected.png:
1745 * platform/mac/fast/forms/input-appearance-disabled-expected.txt:
1746 * platform/mac/fast/forms/input-appearance-focus-expected.png:
1747 * platform/mac/fast/forms/input-appearance-focus-expected.txt:
1748 * platform/mac/fast/forms/input-appearance-height-expected.png:
1749 * platform/mac/fast/forms/input-appearance-height-expected.txt:
1750 * platform/mac/fast/forms/input-appearance-preventDefault-expected.png:
1751 * platform/mac/fast/forms/input-appearance-preventDefault-expected.txt:
1752 * platform/mac/fast/forms/input-appearance-readonly-expected.png:
1753 * platform/mac/fast/forms/input-appearance-readonly-expected.txt:
1754 * platform/mac/fast/forms/input-appearance-selection-expected.png:
1755 * platform/mac/fast/forms/input-appearance-selection-expected.txt:
1756 * platform/mac/fast/forms/input-appearance-spinbutton-expected.txt:
1757 * platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt:
1758 * platform/mac/fast/forms/input-appearance-visibility-expected.png:
1759 * platform/mac/fast/forms/input-appearance-visibility-expected.txt:
1760 * platform/mac/fast/forms/input-appearance-width-expected.png:
1761 * platform/mac/fast/forms/input-appearance-width-expected.txt:
1762 * platform/mac/fast/forms/input-baseline-expected.png:
1763 * platform/mac/fast/forms/input-baseline-expected.txt:
1764 * platform/mac/fast/forms/input-button-sizes-expected.png:
1765 * platform/mac/fast/forms/input-button-sizes-expected.txt:
1766 * platform/mac/fast/forms/input-disabled-color-expected.png:
1767 * platform/mac/fast/forms/input-disabled-color-expected.txt:
1768 * platform/mac/fast/forms/input-double-click-selection-gap-bug-expected.png:
1769 * platform/mac/fast/forms/input-double-click-selection-gap-bug-expected.txt:
1770 * platform/mac/fast/forms/input-field-text-truncated-expected.png:
1771 * platform/mac/fast/forms/input-field-text-truncated-expected.txt:
1772 * platform/mac/fast/forms/input-first-letter-expected.png:
1773 * platform/mac/fast/forms/input-placeholder-visibility-1-expected.png:
1774 * platform/mac/fast/forms/input-placeholder-visibility-1-expected.txt:
1775 * platform/mac/fast/forms/input-placeholder-visibility-3-expected.png:
1776 * platform/mac/fast/forms/input-placeholder-visibility-3-expected.txt:
1777 * platform/mac/fast/forms/input-readonly-autoscroll-expected.png:
1778 * platform/mac/fast/forms/input-readonly-autoscroll-expected.txt:
1779 * platform/mac/fast/forms/input-readonly-dimmed-expected.png:
1780 * platform/mac/fast/forms/input-readonly-dimmed-expected.txt:
1781 * platform/mac/fast/forms/input-readonly-empty-expected.png:
1782 * platform/mac/fast/forms/input-readonly-empty-expected.txt:
1783 * platform/mac/fast/forms/input-spaces-expected.png:
1784 * platform/mac/fast/forms/input-spaces-expected.txt:
1785 * platform/mac/fast/forms/input-table-expected.png:
1786 * platform/mac/fast/forms/input-table-expected.txt:
1787 * platform/mac/fast/forms/input-text-click-inside-expected.png:
1788 * platform/mac/fast/forms/input-text-click-inside-expected.txt:
1789 * platform/mac/fast/forms/input-text-click-outside-expected.png:
1790 * platform/mac/fast/forms/input-text-click-outside-expected.txt:
1791 * platform/mac/fast/forms/input-text-double-click-expected.png:
1792 * platform/mac/fast/forms/input-text-double-click-expected.txt:
1793 * platform/mac/fast/forms/input-text-drag-down-expected.png:
1794 * platform/mac/fast/forms/input-text-drag-down-expected.txt:
1795 * platform/mac/fast/forms/input-text-option-delete-expected.png:
1796 * platform/mac/fast/forms/input-text-option-delete-expected.txt:
1797 * platform/mac/fast/forms/input-text-scroll-left-on-blur-expected.png:
1798 * platform/mac/fast/forms/input-text-scroll-left-on-blur-expected.txt:
1799 * platform/mac/fast/forms/input-text-self-emptying-click-expected.png:
1800 * platform/mac/fast/forms/input-text-self-emptying-click-expected.txt:
1801 * platform/mac/fast/forms/input-text-word-wrap-expected.png:
1802 * platform/mac/fast/forms/input-text-word-wrap-expected.txt:
1803 * platform/mac/fast/forms/input-type-text-min-width-expected.png:
1804 * platform/mac/fast/forms/input-type-text-min-width-expected.txt:
1805 * platform/mac/fast/forms/input-value-expected.png:
1806 * platform/mac/fast/forms/input-value-expected.txt:
1807 * platform/mac/fast/forms/input-width-expected.png:
1808 * platform/mac/fast/forms/input-width-expected.txt:
1809 * platform/mac/fast/forms/listbox-bidi-align-expected.png: Added.
1810 * platform/mac/fast/forms/listbox-bidi-align-expected.txt:
1811 * platform/mac/fast/forms/listbox-hit-test-zoomed-expected.png:
1812 * platform/mac/fast/forms/listbox-scrollbar-incremental-load-expected.txt:
1813 * platform/mac/fast/forms/listbox-width-change-expected.png:
1814 * platform/mac/fast/forms/listbox-width-change-expected.txt:
1815 * platform/mac/fast/forms/menulist-clip-expected.png:
1816 * platform/mac/fast/forms/menulist-clip-expected.txt:
1817 * platform/mac/fast/forms/menulist-deselect-update-expected.png:
1818 * platform/mac/fast/forms/menulist-deselect-update-expected.txt:
1819 * platform/mac/fast/forms/menulist-no-overflow-expected.png:
1820 * platform/mac/fast/forms/menulist-no-overflow-expected.txt:
1821 * platform/mac/fast/forms/menulist-option-wrap-expected.png:
1822 * platform/mac/fast/forms/menulist-option-wrap-expected.txt:
1823 * platform/mac/fast/forms/menulist-restrict-line-height-expected.png:
1824 * platform/mac/fast/forms/menulist-restrict-line-height-expected.txt:
1825 * platform/mac/fast/forms/menulist-style-color-expected.png:
1826 * platform/mac/fast/forms/menulist-style-color-expected.txt:
1827 * platform/mac/fast/forms/menulist-width-change-expected.png:
1828 * platform/mac/fast/forms/menulist-width-change-expected.txt:
1829 * platform/mac/fast/forms/minWidthPercent-expected.png:
1830 * platform/mac/fast/forms/minWidthPercent-expected.txt:
1831 * platform/mac/fast/forms/number/number-appearance-rtl-expected.png:
1832 * platform/mac/fast/forms/number/number-appearance-rtl-expected.txt:
1833 * platform/mac/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.png:
1834 * platform/mac/fast/forms/number/number-appearance-spinbutton-disabled-readonly-expected.txt:
1835 * platform/mac/fast/forms/number/number-appearance-spinbutton-layer-expected.png:
1836 * platform/mac/fast/forms/number/number-appearance-spinbutton-layer-expected.txt:
1837 * platform/mac/fast/forms/option-script-expected.png:
1838 * platform/mac/fast/forms/option-script-expected.txt:
1839 * platform/mac/fast/forms/option-strip-whitespace-expected.png:
1840 * platform/mac/fast/forms/option-strip-whitespace-expected.txt:
1841 * platform/mac/fast/forms/option-text-clip-expected.png:
1842 * platform/mac/fast/forms/option-text-clip-expected.txt:
1843 * platform/mac/fast/forms/placeholder-position-expected.png:
1844 * platform/mac/fast/forms/placeholder-position-expected.txt:
1845 * platform/mac/fast/forms/placeholder-pseudo-style-expected.png:
1846 * platform/mac/fast/forms/placeholder-pseudo-style-expected.txt:
1847 * platform/mac/fast/forms/plaintext-mode-2-expected.png:
1848 * platform/mac/fast/forms/plaintext-mode-2-expected.txt:
1849 * platform/mac/fast/forms/search-cancel-button-style-sharing-expected.png:
1850 * platform/mac/fast/forms/search-cancel-button-style-sharing-expected.txt:
1851 * platform/mac/fast/forms/search-display-none-cancel-button-expected.png:
1852 * platform/mac/fast/forms/search-display-none-cancel-button-expected.txt:
1853 * platform/mac/fast/forms/search-rtl-expected.png:
1854 * platform/mac/fast/forms/search-rtl-expected.txt:
1855 * platform/mac/fast/forms/search-styled-expected.png:
1856 * platform/mac/fast/forms/search-styled-expected.txt:
1857 * platform/mac/fast/forms/search-vertical-alignment-expected.png:
1858 * platform/mac/fast/forms/search-vertical-alignment-expected.txt:
1859 * platform/mac/fast/forms/search/search-size-with-decorations-expected.png:
1860 * platform/mac/fast/forms/search/search-size-with-decorations-expected.txt:
1861 * platform/mac/fast/forms/searchfield-heights-expected.png:
1862 * platform/mac/fast/forms/searchfield-heights-expected.txt:
1863 * platform/mac/fast/forms/select-align-expected.png:
1864 * platform/mac/fast/forms/select-align-expected.txt:
1865 * platform/mac/fast/forms/select-background-none-expected.png:
1866 * platform/mac/fast/forms/select-baseline-expected.png:
1867 * platform/mac/fast/forms/select-baseline-expected.txt:
1868 * platform/mac/fast/forms/select-block-background-expected.png:
1869 * platform/mac/fast/forms/select-block-background-expected.txt:
1870 * platform/mac/fast/forms/select-change-listbox-size-expected.png:
1871 * platform/mac/fast/forms/select-change-listbox-size-expected.txt:
1872 * platform/mac/fast/forms/select-change-listbox-to-popup-expected.png:
1873 * platform/mac/fast/forms/select-change-listbox-to-popup-expected.txt:
1874 * platform/mac/fast/forms/select-change-popup-to-listbox-expected.png:
1875 * platform/mac/fast/forms/select-change-popup-to-listbox-expected.txt:
1876 * platform/mac/fast/forms/select-disabled-appearance-expected.png:
1877 * platform/mac/fast/forms/select-disabled-appearance-expected.txt:
1878 * platform/mac/fast/forms/select-empty-option-height-expected.png:
1879 * platform/mac/fast/forms/select-item-background-clip-expected.png:
1880 * platform/mac/fast/forms/select-item-background-clip-expected.txt:
1881 * platform/mac/fast/forms/select-list-box-with-height-expected.png:
1882 * platform/mac/fast/forms/select-list-box-with-height-expected.txt:
1883 * platform/mac/fast/forms/select-listbox-multiple-no-focusring-expected.png:
1884 * platform/mac/fast/forms/select-listbox-multiple-no-focusring-expected.txt:
1885 * platform/mac/fast/forms/select-overflow-scroll-expected.txt:
1886 * platform/mac/fast/forms/select-overflow-scroll-inherited-expected.txt:
1887 * platform/mac/fast/forms/select-selected-expected.png:
1888 * platform/mac/fast/forms/select-selected-expected.txt:
1889 * platform/mac/fast/forms/select-writing-direction-natural-expected.png:
1890 * platform/mac/fast/forms/select-writing-direction-natural-expected.txt:
1891 * platform/mac/fast/forms/select/optgroup-rendering-expected.png:
1892 * platform/mac/fast/forms/select/optgroup-rendering-expected.txt:
1893 * platform/mac/fast/forms/stuff-on-my-optgroup-expected.png:
1894 * platform/mac/fast/forms/tabbing-input-iframe-expected.png:
1895 * platform/mac/fast/forms/tabbing-input-iframe-expected.txt:
1896 * platform/mac/fast/forms/targeted-frame-submission-expected.png:
1897 * platform/mac/fast/forms/targeted-frame-submission-expected.txt:
1898 * platform/mac/fast/forms/text-style-color-expected.png:
1899 * platform/mac/fast/forms/text-style-color-expected.txt:
1900 * platform/mac/fast/forms/textAreaLineHeight-expected.png:
1901 * platform/mac/fast/forms/textAreaLineHeight-expected.txt:
1902 * platform/mac/fast/forms/textarea-align-expected.png:
1903 * platform/mac/fast/forms/textarea-align-expected.txt:
1904 * platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.png:
1905 * platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.txt:
1906 * platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.png:
1907 * platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.txt:
1908 * platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.png:
1909 * platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.txt:
1910 * platform/mac/fast/forms/textarea-scroll-height-expected.png:
1911 * platform/mac/fast/forms/textarea-scrollbar-expected.png:
1912 * platform/mac/fast/forms/textarea-scrollbar-expected.txt:
1913 * platform/mac/fast/forms/textarea-scrolled-type-expected.png:
1914 * platform/mac/fast/forms/textarea-scrolled-type-expected.txt:
1915 * platform/mac/fast/forms/textarea-setinnerhtml-expected.png:
1916 * platform/mac/fast/forms/textarea-setinnerhtml-expected.txt:
1917 * platform/mac/fast/forms/textfield-focus-ring-expected.png:
1918 * platform/mac/fast/forms/textfield-focus-ring-expected.txt:
1919 * platform/mac/fast/forms/textfield-outline-expected.png:
1920 * platform/mac/fast/forms/textfield-outline-expected.txt:
1921 * platform/mac/fast/forms/textfield-overflow-expected.png:
1922 * platform/mac/fast/forms/textfield-overflow-expected.txt:
1923 * platform/mac/fast/forms/validation-message-appearance-expected.png:
1924 * platform/mac/fast/forms/validation-message-appearance-expected.txt:
1925 * platform/mac/fast/forms/visual-hebrew-text-field-expected.png:
1926 * platform/mac/fast/forms/visual-hebrew-text-field-expected.txt:
1927 * platform/mac/fast/frames/take-focus-from-iframe-expected.png:
1928 * platform/mac/fast/frames/take-focus-from-iframe-expected.txt:
1929 * platform/mac/fast/hidpi/resize-corner-hidpi-expected.png:
1930 * platform/mac/fast/hidpi/resize-corner-hidpi-expected.txt:
1931 * platform/mac/fast/html/details-no-summary4-expected.png:
1932 * platform/mac/fast/html/details-no-summary4-expected.txt:
1933 * platform/mac/fast/html/details-open-javascript-expected.png:
1934 * platform/mac/fast/html/details-open-javascript-expected.txt:
1935 * platform/mac/fast/html/details-open2-expected.png:
1936 * platform/mac/fast/html/details-open2-expected.txt:
1937 * platform/mac/fast/html/details-open4-expected.png:
1938 * platform/mac/fast/html/details-open4-expected.txt:
1939 * platform/mac/fast/html/details-replace-summary-child-expected.png:
1940 * platform/mac/fast/html/details-replace-summary-child-expected.txt:
1941 * platform/mac/fast/html/details-replace-text-expected.png:
1942 * platform/mac/fast/html/details-replace-text-expected.txt:
1943 * platform/mac/fast/html/keygen-expected.png:
1944 * platform/mac/fast/html/keygen-expected.txt:
1945 * platform/mac/fast/images/image-controls-basic-expected.png:
1946 * platform/mac/fast/images/image-controls-basic-expected.txt:
1947 * platform/mac/fast/lists/dynamic-marker-crash-expected.png:
1948 * platform/mac/fast/lists/dynamic-marker-crash-expected.txt:
1949 * platform/mac/fast/overflow/overflow-x-y-expected.png:
1950 * platform/mac/fast/overflow/overflow-x-y-expected.txt:
1951 * platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png:
1952 * platform/mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.txt:
1953 * platform/mac/fast/overflow/scrollRevealButton-expected.png:
1954 * platform/mac/fast/overflow/scrollRevealButton-expected.txt:
1955 * platform/mac/fast/parser/document-write-option-expected.png:
1956 * platform/mac/fast/parser/document-write-option-expected.txt:
1957 * platform/mac/fast/parser/entity-comment-in-textarea-expected.png:
1958 * platform/mac/fast/parser/entity-comment-in-textarea-expected.txt:
1959 * platform/mac/fast/parser/open-comment-in-textarea-expected.png:
1960 * platform/mac/fast/parser/open-comment-in-textarea-expected.txt:
1961 * platform/mac/fast/repaint/control-clip-expected.png:
1962 * platform/mac/fast/repaint/control-clip-expected.txt:
1963 * platform/mac/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.png:
1964 * platform/mac/fast/repaint/renderer-destruction-by-invalidateSelection-crash-expected.txt:
1965 * platform/mac/fast/repaint/search-field-cancel-expected.png:
1966 * platform/mac/fast/repaint/search-field-cancel-expected.txt:
1967 * platform/mac/fast/repaint/selection-gap-fixed-child-expected.txt: Added.
1968 * platform/mac/fast/repaint/selection-gap-flipped-fixed-child-expected.txt: Added.
1969 * platform/mac/fast/repaint/subtree-root-skipped-expected.png:
1970 * platform/mac/fast/repaint/subtree-root-skipped-expected.txt:
1971 * platform/mac/fast/replaced/replaced-breaking-expected.png:
1972 * platform/mac/fast/replaced/replaced-breaking-expected.txt:
1973 * platform/mac/fast/replaced/replaced-breaking-mixture-expected.png:
1974 * platform/mac/fast/replaced/replaced-breaking-mixture-expected.txt:
1975 * platform/mac/fast/replaced/width100percent-button-expected.png:
1976 * platform/mac/fast/replaced/width100percent-button-expected.txt:
1977 * platform/mac/fast/replaced/width100percent-menulist-expected.png:
1978 * platform/mac/fast/replaced/width100percent-menulist-expected.txt:
1979 * platform/mac/fast/selectors/064-expected.png:
1980 * platform/mac/fast/selectors/064-expected.txt:
1981 * platform/mac/fast/spatial-navigation/snav-multiple-select-focusring-expected.png:
1982 * platform/mac/fast/spatial-navigation/snav-multiple-select-focusring-expected.txt:
1983 * platform/mac/fast/table/003-expected.png:
1984 * platform/mac/fast/table/003-expected.txt:
1985 * platform/mac/fast/table/append-cells2-expected.png:
1986 * platform/mac/fast/table/append-cells2-expected.txt:
1987 * platform/mac/fast/table/colspanMinWidth-expected.png:
1988 * platform/mac/fast/table/colspanMinWidth-expected.txt:
1989 * platform/mac/fast/table/colspanMinWidth-vertical-expected.png:
1990 * platform/mac/fast/table/colspanMinWidth-vertical-expected.txt:
1991 * platform/mac/fast/table/remove-td-display-none-expected.png:
1992 * platform/mac/fast/table/remove-td-display-none-expected.txt:
1993 * platform/mac/fast/table/spanOverlapRepaint-expected.png:
1994 * platform/mac/fast/table/spanOverlapRepaint-expected.txt:
1995 * platform/mac/fast/table/text-field-baseline-expected.png:
1996 * platform/mac/fast/table/text-field-baseline-expected.txt:
1997 * platform/mac/fast/text/atsui-rtl-override-selection-expected.png:
1998 * platform/mac/fast/text/atsui-rtl-override-selection-expected.txt:
1999 * platform/mac/fast/text/backslash-to-yen-sign-euc-expected.png:
2000 * platform/mac/fast/text/backslash-to-yen-sign-euc-expected.txt:
2001 * platform/mac/fast/text/backslash-to-yen-sign-expected.txt:
2002 * platform/mac/fast/text/complex-text-opacity-expected.png:
2003 * platform/mac/fast/text/complex-text-opacity-expected.txt:
2004 * platform/mac/fast/text/drawBidiText-expected.png:
2005 * platform/mac/fast/text/drawBidiText-expected.txt:
2006 * platform/mac/fast/text/emphasis-expected.txt:
2007 * platform/mac/fast/text/fallback-traits-fixup-expected.txt:
2008 * platform/mac/fast/text/indic-expected.txt:
2009 * platform/mac/fast/text/international/003-expected.txt:
2010 * platform/mac/fast/text/international/bidi-listbox-atsui-expected.png:
2011 * platform/mac/fast/text/international/bidi-listbox-atsui-expected.txt:
2012 * platform/mac/fast/text/international/bidi-listbox-expected.txt:
2013 * platform/mac/fast/text/international/bidi-menulist-expected.txt:
2014 * platform/mac/fast/text/international/bidi-mirror-he-ar-expected.png:
2015 * platform/mac/fast/text/international/bidi-mirror-he-ar-expected.txt:
2016 * platform/mac/fast/text/international/bold-bengali-expected.txt:
2017 * platform/mac/fast/text/international/complex-character-based-fallback-expected.png:
2018 * platform/mac/fast/text/international/complex-character-based-fallback-expected.txt:
2019 * platform/mac/fast/text/international/danda-space-expected.png:
2020 * platform/mac/fast/text/international/danda-space-expected.txt:
2021 * platform/mac/fast/text/international/hindi-whitespace-expected.png:
2022 * platform/mac/fast/text/international/hindi-whitespace-expected.txt:
2023 * platform/mac/fast/text/international/khmer-selection-expected.png:
2024 * platform/mac/fast/text/international/khmer-selection-expected.txt:
2025 * platform/mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png:
2026 * platform/mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt:
2027 * platform/mac/fast/text/international/synthesized-italic-vertical-latin-expected.txt:
2028 * platform/mac/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png:
2029 * platform/mac/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt:
2030 * platform/mac/fast/text/international/wrap-CJK-001-expected.txt:
2031 * platform/mac/fast/text/justify-ideograph-complex-expected.txt:
2032 * platform/mac/fast/text/justify-ideograph-simple-expected.txt:
2033 * platform/mac/fast/text/justify-ideograph-vertical-expected.txt:
2034 * platform/mac/fast/text/khmer-lao-font-expected.txt:
2035 * platform/mac/fast/text/midword-break-before-surrogate-pair-2-expected.txt:
2036 * platform/mac/fast/text/systemFont-expected.txt: Added.
2037 * platform/mac/fast/text/textIteratorNilRenderer-expected.png:
2038 * platform/mac/fast/text/textIteratorNilRenderer-expected.txt:
2039 * platform/mac/fast/text/updateNewFont-expected.txt:
2040 * platform/mac/fast/text/vertical-no-sideways-expected.txt: Added.
2041 * platform/mac/fast/transforms/transformed-focused-text-input-expected.png:
2042 * platform/mac/fast/transforms/transformed-focused-text-input-expected.txt:
2043 * platform/mac/http/tests/media/media-source/mediasource-addsourcebuffer-expected.txt: Added.
2044 * platform/mac/http/tests/navigation/javascriptlink-frames-expected.png:
2045 * platform/mac/http/tests/navigation/javascriptlink-frames-expected.txt:
2046 * platform/mac/js/dom/global-constructors-attributes-expected.txt:
2047 * platform/mac/mathml/opentype/large-operators-expected.txt:
2048 * platform/mac/mathml/opentype/munderover-window-resize-expected.png: Added.
2049 * platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.png: Added.
2050 * platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.txt:
2051 * platform/mac/mathml/opentype/vertical-expected.txt:
2052 * platform/mac/media/audio-controls-rendering-expected.png:
2053 * platform/mac/media/audio-controls-rendering-expected.txt:
2054 * platform/mac/media/controls-strict-expected.png:
2055 * platform/mac/media/controls-strict-expected.txt:
2056 * platform/mac/media/video-controls-rendering-expected.txt:
2057 * platform/mac/media/video-display-toggle-expected.txt:
2058 * platform/mac/media/video-no-audio-expected.png:
2059 * platform/mac/media/video-no-audio-expected.txt:
2060 * platform/mac/media/video-volume-slider-expected.txt:
2061 * platform/mac/platform/mac/accessibility/form-control-value-settable-expected.txt: Removed.
2062 * platform/mac/platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: Removed.
2063 * platform/mac/platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt: Removed.
2064 * platform/mac/platform/mac/fast/text/systemFont-expected.txt: Removed.
2065 * platform/mac/platform/mac/fast/text/vertical-no-sideways-expected.png: Removed.
2066 * platform/mac/platform/mac/fast/text/vertical-no-sideways-expected.txt: Removed.
2067 * platform/mac/plugins/mouse-click-plugin-clears-selection-expected.txt:
2068 * platform/mac/scrollbars/key-window-not-first-responder-expected.txt:
2069 * platform/mac/svg/W3C-I18N/text-dirLTR-ubOverride-expected.png:
2070 * platform/mac/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt:
2071 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.png:
2072 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt:
2073 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.png:
2074 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt:
2075 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.png:
2076 * platform/mac/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt:
2077 * platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.png:
2078 * platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt:
2079 * platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.png:
2080 * platform/mac/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt:
2081 * platform/mac/svg/custom/inline-svg-in-xhtml-expected.png:
2082 * platform/mac/svg/custom/inline-svg-in-xhtml-expected.txt:
2083 * platform/mac/svg/hixie/mixed/003-expected.png:
2084 * platform/mac/svg/hixie/mixed/003-expected.txt:
2085 * platform/mac/svg/text/bidi-text-query-expected.png:
2086 * platform/mac/svg/text/bidi-text-query-expected.txt:
2087 * platform/mac/tables/mozilla/bugs/bug1188-expected.txt:
2088 * platform/mac/tables/mozilla/bugs/bug12384-expected.txt:
2089 * platform/mac/tables/mozilla/bugs/bug138725-expected.txt:
2090 * platform/mac/tables/mozilla/bugs/bug18359-expected.txt:
2091 * platform/mac/tables/mozilla/bugs/bug24200-expected.txt:
2092 * platform/mac/tables/mozilla/bugs/bug2479-2-expected.txt:
2093 * platform/mac/tables/mozilla/bugs/bug2479-3-expected.txt:
2094 * platform/mac/tables/mozilla/bugs/bug2479-4-expected.txt:
2095 * platform/mac/tables/mozilla/bugs/bug28928-expected.txt:
2096 * platform/mac/tables/mozilla/bugs/bug29326-expected.txt:
2097 * platform/mac/tables/mozilla/bugs/bug30559-expected.txt:
2098 * platform/mac/tables/mozilla/bugs/bug30692-expected.txt:
2099 * platform/mac/tables/mozilla/bugs/bug33855-expected.txt:
2100 * platform/mac/tables/mozilla/bugs/bug4382-expected.txt:
2101 * platform/mac/tables/mozilla/bugs/bug4527-expected.txt:
2102 * platform/mac/tables/mozilla/bugs/bug46368-1-expected.txt:
2103 * platform/mac/tables/mozilla/bugs/bug46368-2-expected.txt:
2104 * platform/mac/tables/mozilla/bugs/bug51037-expected.txt:
2105 * platform/mac/tables/mozilla/bugs/bug51727-expected.txt:
2106 * platform/mac/tables/mozilla/bugs/bug52505-expected.txt:
2107 * platform/mac/tables/mozilla/bugs/bug52506-expected.txt:
2108 * platform/mac/tables/mozilla/bugs/bug55545-expected.txt:
2109 * platform/mac/tables/mozilla/bugs/bug59354-expected.txt:
2110 * platform/mac/tables/mozilla/bugs/bug60749-expected.txt:
2111 * platform/mac/tables/mozilla/bugs/bug68912-expected.txt:
2112 * platform/mac/tables/mozilla/bugs/bug7342-expected.txt:
2113 * platform/mac/tables/mozilla/bugs/bug96334-expected.txt:
2114 * platform/mac/tables/mozilla/bugs/bug99948-expected.txt:
2115 * platform/mac/tables/mozilla/collapsing_borders/bug41262-4-expected.txt:
2116 * platform/mac/tables/mozilla/core/margins-expected.txt:
2117 * platform/mac/tables/mozilla/dom/tableDom-expected.txt:
2118 * platform/mac/tables/mozilla/other/move_row-expected.txt:
2119 * platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.txt:
2120 * platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
2121 * platform/mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt:
2122 * platform/mac/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt:
2123 * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt:
2124 * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt:
2125 * platform/mac/transforms/2d/hindi-rotated-expected.txt:
2126 * platform/mac/transforms/2d/zoom-menulist-expected.txt:
2127 * platform/mac/transforms/3d/general/perspective-non-layer-expected.txt:
2129 2014-10-10 Andrzej Badowski <a.badowski@samsung.com>
2131 [ATK] Changing the mapping of ARIA rowheader and columnheader into respective ATK roles.
2132 https://bugs.webkit.org/show_bug.cgi?id=136150
2134 Reviewed by Chris Fleizach.
2136 Minor changes in the roles-exposed test to check the mapping of rowheader and columnheader.
2137 As a result of changes in the code test also shows the changes for the <th> element.
2138 Changes expectations so that they cover propoer mapping of RowHeaderRole and ColumnHeaderRole.
2140 * accessibility/aria-tables-expected.txt:
2141 * accessibility/roles-exposed.html:
2142 * accessibility/table-roles-hierarchy-expected.txt: Added.
2143 * accessibility/table-roles-hierarchy.html: Added.
2144 * platform/efl/accessibility/roles-exposed-expected.txt: Added.
2145 * platform/efl/accessibility/table-attributes-expected.txt:
2146 * platform/efl/accessibility/table-cells-expected.txt:
2147 * platform/efl/accessibility/table-detection-expected.txt:
2148 * platform/gtk/accessibility/roles-exposed-expected.txt: Added.
2149 * platform/gtk/accessibility/table-attributes-expected.txt:
2150 * platform/gtk/accessibility/table-cells-expected.txt:
2151 * platform/gtk/accessibility/table-sections-expected.txt:
2152 * platform/mac/accessibility/aria-tables-expected.txt: Copied from LayoutTests/accessibility/aria-tables-expected.txt.
2153 * platform/mac/accessibility/table-roles-hierarchy-expected.txt: Added.
2155 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2157 Rename some tests that oddly had -html.html suffixes.
2159 * 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.
2160 * 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.
2161 * 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.
2162 * 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.
2163 * 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.
2164 * 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.
2165 * 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.
2166 * 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.
2168 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2170 Tweak some Mac test expectations.
2172 * platform/mac-wk2/TestExpectations:
2173 * platform/mac/TestExpectations:
2175 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2177 Mac TestExpectations cleanup.
2179 Re-enable tests that now pass. Mark skipped tests as [ Failure ] when possible,
2180 and rebaseline some tests.
2182 * perf/nested-combined-selectors-expected.txt: Added.
2183 * platform/mac-wk2/TestExpectations:
2184 * platform/mac/TestExpectations:
2185 * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-1-expected.txt:
2186 * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-2-expected.txt:
2187 * platform/mac/editing/spelling/autocorrection-delete-expected.txt:
2188 * platform/mac/editing/spelling/autocorrection-in-textarea-expected.txt:
2189 * platform/mac/editing/spelling/autocorrection-removing-underline-after-paste-expected.txt:
2190 * platform/mac/editing/spelling/autocorrection-removing-underline-expected.txt:
2191 * platform/mac/editing/spelling/autocorrection-simple-expected.txt:
2192 * platform/mac/editing/spelling/delete-autocorrected-word-1-expected.txt:
2193 * platform/mac/editing/spelling/delete-autocorrected-word-2-expected.txt:
2194 * platform/mac/fast/dom/HTMLProgressElement/progress-element-expected.txt: Added.
2195 * platform/mac/fast/forms/text-control-intrinsic-widths-expected.txt:
2196 * 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.
2197 * platform/mac/media/controls-styling-expected.txt:
2198 * platform/mac/media/video-zoom-controls-expected.txt:
2199 * platform/mac/platform/mac/fast/text/combining-character-sequence-fallback-expected.png: Removed.
2201 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2203 Skip webgl tests in the iOS Simulator.
2205 * platform/ios-simulator/TestExpectations:
2207 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2209 iOS Simulator results for webaudio tests.
2211 * platform/ios-simulator/webaudio/*: Added
2213 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2215 iOS Simulator results for webarchive tests.
2217 * platform/ios-simulator/webarchive/*: Added
2219 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2221 iOS Simulator and generic results for userscripts tests.
2223 * platform/ios-simulator/userscripts/user-script-plugin-document-expected.txt: Added.
2224 * userscripts/script-run-at-end-expected.txt: Added.
2226 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2228 iOS Simulator results (many of which are failures) for transitions tests.
2230 * platform/ios-simulator/transitions/*: Added
2232 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2234 iOS Simulator results for transforms tests.
2236 * platform/ios-simulator/transforms/*: Added
2238 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2240 iOS Simulator results for tables tests.
2242 * platform/ios-simulator/tables/*: Added
2244 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2246 Denote some crashing SVG tests.
2248 * platform/ios-simulator/TestExpectations:
2250 2014-10-09 Dean Jackson <dino@apple.com>
2252 Computed style for clip is wrong with respect to auto
2253 https://bugs.webkit.org/show_bug.cgi?id=137567
2255 Reviewed by Simon Fraser.
2257 Test that an input of clip: rect(auto, auto, auto, auto)
2258 is the same on the way out.
2260 * fast/css/computed-clip-with-auto-rect-expected.txt: Added.
2261 * fast/css/computed-clip-with-auto-rect.html: Added.
2263 2014-10-09 Said Abou-Hallawa <sabouhallawa@apple.com>
2265 RenderMathMLUnderOver adds spacing to the child operator indefinitely when zooming or resizing the window.
2266 https://bugs.webkit.org/show_bug.cgi?id=137330
2268 Reviewed by Darin Adler, Daniel Bates.
2270 When the alignment is center, which is the common case for math, changing the size of
2271 an object affects the position of this object also. We need to confirm that zooming or
2272 resizing the window should not affect the rectangle of the over/under math object operator.
2274 * mathml/opentype/munderover-window-resize-expected.txt: Added.
2275 * mathml/opentype/munderover-window-resize.html: Added.
2276 New test with many under and over math objects. After loading the page, the window is resized and
2277 the view is zoomed in and out to make sure the layout of these under and over objects were not changed.
2278 * platform/mac/mathml/opentype/opentype-stretchy-horizontal-expected.txt:
2279 This test was wrong because of the spacing issue. The page has two <mover> math objects at the beginning.
2280 Each of them has an <mspace> child. The width of the first <mspace> is 1em while the width of the second
2281 <mspace> is 2em. The font size is 10pt. So it is expected to have the first one 10 pixels and the second
2282 to be 20 pixels. In the test, the width of the first is 22 and the width of the second is 32.
2283 I do expect this test to fail on other platforms since they have the same mistake which is now fixed. I am
2284 going to submit the mac expected version only and when it fails I am going to collect the result and submit
2285 another patch for the other platforms expected files.
2287 2014-10-09 Dean Jackson <dino@apple.com>
2289 Import W3C @supports tests
2290 https://bugs.webkit.org/show_bug.cgi?id=137569
2291 <rdar://problem/18601076>
2293 Reviewed by Simon Fraser.
2295 Import the tests from https://test.csswg.org/source/css-conditional-3/
2297 We currently fail 2 tests, tracked in TestExpectations.
2300 * css3/conditional/w3c/LICENSE: Added.
2301 * css3/conditional/w3c/at-supports-001-expected.html: Added.
2302 * css3/conditional/w3c/at-supports-001.html: Added.
2303 * css3/conditional/w3c/at-supports-002-expected.html: Added.
2304 * css3/conditional/w3c/at-supports-002.html: Added.
2305 * css3/conditional/w3c/at-supports-003-expected.html: Added.
2306 * css3/conditional/w3c/at-supports-003.html: Added.
2307 * css3/conditional/w3c/at-supports-004-expected.html: Added.
2308 * css3/conditional/w3c/at-supports-004.html: Added.
2309 * css3/conditional/w3c/at-supports-005-expected.html: Added.
2310 * css3/conditional/w3c/at-supports-005.html: Added.
2311 * css3/conditional/w3c/at-supports-006-expected.html: Added.
2312 * css3/conditional/w3c/at-supports-006.html: Added.
2313 * css3/conditional/w3c/at-supports-007-expected.html: Added.
2314 * css3/conditional/w3c/at-supports-007.html: Added.
2315 * css3/conditional/w3c/at-supports-008-expected.html: Added.
2316 * css3/conditional/w3c/at-supports-008.html: Added.
2317 * css3/conditional/w3c/at-supports-009-expected.html: Added.
2318 * css3/conditional/w3c/at-supports-009.html: Added.
2319 * css3/conditional/w3c/at-supports-010-expected.html: Added.
2320 * css3/conditional/w3c/at-supports-010.html: Added.
2321 * css3/conditional/w3c/at-supports-011-expected.html: Added.
2322 * css3/conditional/w3c/at-supports-011.html: Added.
2323 * css3/conditional/w3c/at-supports-012-expected.html: Added.
2324 * css3/conditional/w3c/at-supports-012.html: Added.
2325 * css3/conditional/w3c/at-supports-013-expected.html: Added.
2326 * css3/conditional/w3c/at-supports-013.html: Added.
2327 * css3/conditional/w3c/at-supports-014-expected.html: Added.
2328 * css3/conditional/w3c/at-supports-014.html: Added.
2329 * css3/conditional/w3c/at-supports-015-expected.html: Added.
2330 * css3/conditional/w3c/at-supports-015.html: Added.
2331 * css3/conditional/w3c/at-supports-016-expected.html: Added.
2332 * css3/conditional/w3c/at-supports-016.html: Added.
2333 * css3/conditional/w3c/at-supports-017-expected.html: Added.
2334 * css3/conditional/w3c/at-supports-017.html: Added.
2335 * css3/conditional/w3c/at-supports-018-expected.html: Added.
2336 * css3/conditional/w3c/at-supports-018.html: Added.
2337 * css3/conditional/w3c/at-supports-019-expected.html: Added.
2338 * css3/conditional/w3c/at-supports-019.html: Added.
2339 * css3/conditional/w3c/at-supports-020-expected.html: Added.
2340 * css3/conditional/w3c/at-supports-020.html: Added.
2341 * css3/conditional/w3c/at-supports-021-expected.html: Added.
2342 * css3/conditional/w3c/at-supports-021.html: Added.
2343 * css3/conditional/w3c/at-supports-022-expected.html: Added.
2344 * css3/conditional/w3c/at-supports-022.html: Added.
2345 * css3/conditional/w3c/at-supports-023-expected.html: Added.
2346 * css3/conditional/w3c/at-supports-023.html: Added.
2347 * css3/conditional/w3c/at-supports-024-expected.html: Added.
2348 * css3/conditional/w3c/at-supports-024.html: Added.
2349 * css3/conditional/w3c/at-supports-025-expected.html: Added.
2350 * css3/conditional/w3c/at-supports-025.html: Added.
2351 * css3/conditional/w3c/at-supports-026-expected.html: Added.
2352 * css3/conditional/w3c/at-supports-026.html: Added.
2353 * css3/conditional/w3c/at-supports-027-expected.html: Added.
2354 * css3/conditional/w3c/at-supports-027.html: Added.
2355 * css3/conditional/w3c/at-supports-028-expected.html: Added.
2356 * css3/conditional/w3c/at-supports-028.html: Added.
2357 * css3/conditional/w3c/at-supports-029-expected.html: Added.
2358 * css3/conditional/w3c/at-supports-029.html: Added.
2359 * css3/conditional/w3c/at-supports-030-expected.html: Added.
2360 * css3/conditional/w3c/at-supports-030.html: Added.
2361 * css3/conditional/w3c/at-supports-031-expected.html: Added.
2362 * css3/conditional/w3c/at-supports-031.html: Added.
2363 * css3/conditional/w3c/at-supports-032-expected.html: Added.
2364 * css3/conditional/w3c/at-supports-032.html: Added.
2365 * css3/conditional/w3c/at-supports-033-expected.html: Added.
2366 * css3/conditional/w3c/at-supports-033.html: Added.
2368 2014-10-09 Dean Jackson <dino@apple.com>
2370 Remove ENABLE_CSS3_CONDITIONAL_RULES
2371 https://bugs.webkit.org/show_bug.cgi?id=137571
2373 Reviewed by Simon Fraser.
2377 * platform/ios-sim/Skipped:
2378 * platform/wincairo/TestExpectations:
2379 * platform/wk2/TestExpectations:
2381 2014-10-09 Benjamin Poulain <benjamin@webkit.org>
2383 Add the baseline implementation of :not(selectorList)
2384 https://bugs.webkit.org/show_bug.cgi?id=137548
2386 Reviewed by Andreas Kling.
2388 There are 3 big kind of changes to the tests:
2389 1) The new implementation intentionally breaks :not() of :visited and :link.
2390 Some test for the basic :not(:link) and :not(:visited) are consequently failing.
2391 2) Some tests were ensuring that :not() only support simple selectors, those are
2392 becoming irrelevant.
2393 3) New test for the feature.
2396 This patch intentionally breaks :not(:link). The test fast/history/link-inside-not.html
2397 time out since it is waiting for the link to match.
2399 * fast/css/invalid-not-with-simple-selector-sequence-expected.txt: Removed.
2400 * fast/css/invalid-not-with-simple-selector-sequence.html: Removed.
2401 This test originally came from IEtestcenter. None of it is useful, all the "invalid"
2402 cases are now fully functional selectors.
2404 * fast/css/css-selector-text-expected.txt:
2405 * fast/css/css-selector-text.html:
2406 * fast/css/css-set-selector-text-expected.txt:
2407 * fast/css/css-set-selector-text.html:
2408 Parsing and CSS OM tests for the new :not().
2410 * fast/css/parsing-css-matches-5-expected.txt:
2411 * fast/css/parsing-css-matches-5.html:
2412 * fast/css/parsing-css-matches-6-expected.txt:
2413 * fast/css/parsing-css-matches-6.html:
2414 * fast/css/parsing-css-matches-7-expected.txt:
2415 * fast/css/parsing-css-matches-7.html:
2416 * fast/css/parsing-css-matches-8-expected.txt:
2417 * fast/css/parsing-css-matches-8.html:
2418 Update the tests of :matches() to account for the extended :not().
2420 * fast/dom/SelectorAPI/resig-SelectorsAPI-test-expected.txt:
2421 Some cases covered by this test are now valid. The test is kept as is for
2422 its historical value, but all the FAIL cover valid use cases in Level 4.
2424 * platform/mac/css3/selectors3/html/css3-modsel-61-expected.txt:
2425 * platform/mac/css3/selectors3/html/css3-modsel-83-expected.txt:
2426 * platform/mac/css3/selectors3/xhtml/css3-modsel-61-expected.txt:
2427 * platform/mac/css3/selectors3/xhtml/css3-modsel-83-expected.txt:
2428 * platform/mac/css3/selectors3/xml/css3-modsel-61-expected.txt:
2429 * platform/mac/css3/selectors3/xml/css3-modsel-83-expected.txt:
2430 * platform/mac/fast/selectors/061-expected.txt:
2431 * platform/mac/fast/selectors/083-expected.txt:
2432 Those tests are changing because of the breakage of :link and :visited.
2434 * fast/css/not-basics-expected.html: Added.
2435 * fast/css/not-basics.html: Added.
2436 Basic use cases of the extended :not() that should always style correctly.
2438 * fast/css/parsing-css-not-1-expected.txt: Added.
2439 * fast/css/parsing-css-not-1.html: Added.
2440 * fast/css/parsing-css-not-2-expected.txt: Added.
2441 * fast/css/parsing-css-not-2.html: Added.
2442 * fast/css/parsing-css-not-3-expected.txt: Added.
2443 * fast/css/parsing-css-not-3.html: Added.
2444 * fast/css/parsing-css-not-4-expected.txt: Added.
2445 * fast/css/parsing-css-not-4.html: Added.
2446 * fast/css/parsing-css-not-5-expected.txt: Added.
2447 * fast/css/parsing-css-not-5.html: Copied from LayoutTests/fast/css/parsing-css-matches-5.html.
2448 * fast/css/parsing-css-not-6-expected.txt: Added.
2449 * fast/css/parsing-css-not-6.html: Copied from LayoutTests/fast/css/parsing-css-matches-6.html.
2450 * fast/css/parsing-css-not-7-expected.txt: Copied from LayoutTests/fast/css/parsing-css-matches-7-expected.txt.
2451 * fast/css/parsing-css-not-7.html: Copied from LayoutTests/fast/css/parsing-css-matches-7.html.
2452 * fast/css/parsing-css-not-8-expected.txt: Copied from LayoutTests/fast/css/parsing-css-matches-8-expected.txt.
2453 * fast/css/parsing-css-not-8.html: Copied from LayoutTests/fast/css/parsing-css-matches-8.html.
2454 * fast/css/parsing-css-not-9-expected.txt: Added.
2455 * fast/css/parsing-css-not-9.html: Copied from LayoutTests/fast/css/parsing-css-matches-8.html.
2456 Parsing of :not(). A lot of them were inspired by Yusuke Suzuki's test suite
2457 for :matches(). A lot of test case apply to :not(), the main difference is that
2458 pseudo elements must fail inside :not().
2460 * fast/css/parsing-css-nth-child-of-4-expected.txt: Added.
2461 * fast/css/parsing-css-nth-child-of-4.html: Added.
2462 With the introduction of :matches(), it is possible to have arbitrarily deep pseudo elements.
2463 The tests for :not() cover the case fixed with this patch, this addition covers :nth-child(of).
2465 * fast/selectors/not-basics-expected.txt: Added.
2466 * fast/selectors/not-basics.html: Added.
2467 * fast/selectors/not-nested-expected.txt: Added.
2468 * fast/selectors/not-nested.html: Added.
2469 * fast/selectors/not-selector-list-expected.txt: Added.
2470 * fast/selectors/not-selector-list.html: Added.
2471 Test coverage for the new features.
2473 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2475 iOS Simulator results for svg tests.
2477 * platform/ios-simulator/svg/*: Added
2479 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2481 Skip some storage tests for iOS Simulator.
2483 * platform/ios-simulator/TestExpectations:
2485 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2487 iOS Simulator results for sputnkik tests.
2489 * platform/ios-simulator/sputnkik/*: Added
2491 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2493 iOS Simulator results for security tests.
2495 * platform/ios-simulator/security/*: Added
2497 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2499 iOS Simulator results for scrollingcoordinator tests.
2501 * platform/ios-simulator/scrollingcoordinator/*: Added
2503 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2505 iOS Simulator results for scrollbars tests.
2507 * platform/ios-simulator/scrollbars/*: Added
2509 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2511 iOS Simulator results for mathml tests.
2513 * platform/ios-simulator/mathml/*: Added
2515 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2517 Disable tests for more unsupported features in iOS Simulator.
2519 * platform/ios-simulator/TestExpectations:
2521 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2523 iOS Simulator results for ietestcenter tests.
2524 Skip fullscreen and gamepad tests.
2526 * platform/ios-simulator/ietestcenter/*: Added
2528 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2530 iOS Simulator results for fonts tests.
2532 * platform/ios-simulator/fonts/*: Added
2534 2014-10-09 Bear Travis <betravis@adobe.com>
2536 [CSS Font Loading] Decrement the font loading count before notifying callbacks
2537 https://bugs.webkit.org/show_bug.cgi?id=137401
2539 Reviewed by Alexey Proskuryakov.
2541 * platform/mac/TestExpectations: Unskip the test this bug was causing to fail.
2543 2014-10-09 Simon Fraser <simon.fraser@apple.com>
2545 iOS Simulator results for editing tests.
2547 * platform/ios-simulator/editing/*: Added
2549 2014-10-09 Bruno de Oliveira Abinader <bruno.d@partner.samsung.com>
2551 Re-add tests for :enabled with Anchor, Area & Link elements
2552 https://bugs.webkit.org/show_bug.cgi?id=137557
2554 Reviewed by Darin Adler.
2556 The CSS selector :enabled should not match Anchor, Area & Link elements
2557 with 'href' attribute set. This re-adds the related layout tests with
2560 * fast/css/css-selector-enabled-links-expected.txt: Added.
2561 * fast/css/css-selector-enabled-links.html: Added.
2563 2014-10-08 Simon Fraser <simon.fraser@apple.com>
2565 Remove some more passing tests from TestExpectations.
2568 * platform/mac-wk2/TestExpectations:
2569 * platform/mac/TestExpectations:
2571 2014-10-08 Simon Fraser <simon.fraser@apple.com>
2573 iOS Simulator results for css3 tests.
2575 * platform/ios-simulator/css3/*: Added
2577 2014-10-08 Simon Fraser <simon.fraser@apple.com>
2579 iOS Simulator results for css2.1 tests.
2581 * platform/ios-simulator/css2.1/*: Added
2583 2014-10-08 Simon Fraser <simon.fraser@apple.com>
2585 iOS Simulator results for css1 tests.
2587 * platform/ios-simulator/css1/basic/containment-expected.txt: Added.
2588 * platform/ios-simulator/css1/basic/contextual_selectors-expected.txt: Added.
2589 * platform/ios-simulator/css1/basic/grouping-expected.txt: Added.
2590 * platform/ios-simulator/css1/basic/id_as_selector-expected.txt: Added.
2591 * platform/ios-simulator/css1/basic/inheritance-expected.txt: Added.
2592 * platform/ios-simulator/css1/box_properties/acid_test-expected.txt: Added.
2593 * platform/ios-simulator/css1/box_properties/border-expected.txt: Added.
2594 * platform/ios-simulator/css1/box_properties/border_bottom-expected.txt: Added.
2595 * platform/ios-simulator/css1/box_properties/border_bottom_inline-expected.txt: Added.
2596 * platform/ios-simulator/css1/box_properties/border_bottom_width-expected.txt: Added.
2597 * platform/ios-simulator/css1/box_properties/border_bottom_width_inline-expected.txt: Added.
2598 * platform/ios-simulator/css1/box_properties/border_color-expected.txt: Added.
2599 * platform/ios-simulator/css1/box_properties/border_color_inline-expected.txt: Added.
2600 * platform/ios-simulator/css1/box_properties/border_inline-expected.txt: Added.
2601 * platform/ios-simulator/css1/box_properties/border_left-expected.txt: Added.
2602 * platform/ios-simulator/css1/box_properties/border_left_inline-expected.txt: Added.
2603 * platform/ios-simulator/css1/box_properties/border_left_width-expected.txt: Added.
2604 * platform/ios-simulator/css1/box_properties/border_left_width_inline-expected.txt: Added.
2605 * platform/ios-simulator/css1/box_properties/border_right-expected.txt: Added.
2606 * platform/ios-simulator/css1/box_properties/border_right_inline-expected.txt: Added.
2607 * platform/ios-simulator/css1/box_properties/border_right_width-expected.txt: Added.
2608 * platform/ios-simulator/css1/box_properties/border_right_width_inline-expected.txt: Added.
2609 * platform/ios-simulator/css1/box_properties/border_style-expected.txt: Added.
2610 * platform/ios-simulator/css1/box_properties/border_style_inline-expected.txt: Added.
2611 * platform/ios-simulator/css1/box_properties/border_top-expected.txt: Added.
2612 * platform/ios-simulator/css1/box_properties/border_top_inline-expected.txt: Added.
2613 * platform/ios-simulator/css1/box_properties/border_top_width-expected.txt: Added.
2614 * platform/ios-simulator/css1/box_properties/border_top_width_inline-expected.txt: Added.
2615 * platform/ios-simulator/css1/box_properties/border_width-expected.txt: Added.
2616 * platform/ios-simulator/css1/box_properties/border_width_inline-expected.txt: Added.
2617 * platform/ios-simulator/css1/box_properties/clear-expected.txt: Added.
2618 * platform/ios-simulator/css1/box_properties/clear_float-expected.txt: Added.
2619 * platform/ios-simulator/css1/box_properties/float-expected.txt: Added.
2620 * platform/ios-simulator/css1/box_properties/float_elements_in_series-expected.txt: Added.
2621 * platform/ios-simulator/css1/box_properties/float_margin-expected.txt: Added.
2622 * platform/ios-simulator/css1/box_properties/float_on_text_elements-expected.txt: Added.
2623 * platform/ios-simulator/css1/box_properties/height-expected.txt: Added.
2624 * platform/ios-simulator/css1/box_properties/margin-expected.txt: Added.
2625 * platform/ios-simulator/css1/box_properties/margin_bottom-expected.txt: Added.
2626 * platform/ios-simulator/css1/box_properties/margin_bottom_inline-expected.txt: Added.
2627 * platform/ios-simulator/css1/box_properties/margin_inline-expected.txt: Added.
2628 * platform/ios-simulator/css1/box_properties/margin_left-expected.txt: Added.
2629 * platform/ios-simulator/css1/box_properties/margin_left_inline-expected.txt: Added.
2630 * platform/ios-simulator/css1/box_properties/margin_right-expected.txt: Added.
2631 * platform/ios-simulator/css1/box_properties/margin_right_inline-expected.txt: Added.
2632 * platform/ios-simulator/css1/box_properties/margin_top-expected.txt: Added.
2633 * platform/ios-simulator/css1/box_properties/margin_top_inline-expected.txt: Added.
2634 * platform/ios-simulator/css1/box_properties/padding-expected.txt: Added.
2635 * platform/ios-simulator/css1/box_properties/padding_bottom-expected.txt: Added.
2636 * platform/ios-simulator/css1/box_properties/padding_bottom_inline-expected.txt: Added.
2637 * platform/ios-simulator/css1/box_properties/padding_inline-expected.txt: Added.
2638 * platform/ios-simulator/css1/box_properties/padding_left-expected.txt: Added.
2639 * platform/ios-simulator/css1/box_properties/padding_left_inline-expected.txt: Added.
2640 * platform/ios-simulator/css1/box_properties/padding_right-expected.txt: Added.
2641 * platform/ios-simulator/css1/box_properties/padding_right_inline-expected.txt: Added.
2642 * platform/ios-simulator/css1/box_properties/padding_top-expected.txt: Added.
2643 * platform/ios-simulator/css1/box_properties/padding_top_inline-expected.txt: Added.
2644 * platform/ios-simulator/css1/box_properties/width-expected.txt: Added.
2645 * platform/ios-simulator/css1/cascade/cascade_order-expected.txt: Added.
2646 * platform/ios-simulator/css1/cascade/important-expected.txt: Added.
2647 * platform/ios-simulator/css1/classification/display-expected.txt: Added.
2648 * platform/ios-simulator/css1/classification/list_style-expected.txt: Added.
2649 * platform/ios-simulator/css1/classification/list_style_image-expected.txt: Added.
2650 * platform/ios-simulator/css1/classification/list_style_position-expected.txt: Added.
2651 * platform/ios-simulator/css1/classification/list_style_type-expected.txt: Added.
2652 * platform/ios-simulator/css1/classification/white_space-expected.txt: Added.
2653 * platform/ios-simulator/css1/color_and_background/background-expected.txt: Added.
2654 * platform/ios-simulator/css1/color_and_background/background_attachment-expected.txt: Added.
2655 * platform/ios-simulator/css1/color_and_background/background_color-expected.txt: Added.
2656 * platform/ios-simulator/css1/color_and_background/background_image-expected.txt: Added.
2657 * platform/ios-simulator/css1/color_and_background/background_position-expected.txt: Added.
2658 * platform/ios-simulator/css1/color_and_background/background_repeat-expected.txt: Added.
2659 * platform/ios-simulator/css1/color_and_background/color-expected.txt: Added.
2660 * platform/ios-simulator/css1/conformance/forward_compatible_parsing-expected.txt: Added.
2661 * platform/ios-simulator/css1/font_properties/font-expected.txt: Added.
2662 * platform/ios-simulator/css1/font_properties/font_family-expected.txt: Added.
2663 * platform/ios-simulator/css1/font_properties/font_size-expected.txt: Added.
2664 * platform/ios-simulator/css1/font_properties/font_style-expected.txt: Added.
2665 * platform/ios-simulator/css1/font_properties/font_variant-expected.txt: Added.
2666 * platform/ios-simulator/css1/font_properties/font_weight-expected.txt: Added.
2667 * platform/ios-simulator/css1/formatting_model/canvas-expected.txt: Added.
2668 * platform/ios-simulator/css1/formatting_model/floating_elements-expected.txt: Added.
2669 * platform/ios-simulator/css1/formatting_model/height_of_lines-expected.txt: Added.
2670 * platform/ios-simulator/css1/formatting_model/horizontal_formatting-expected.txt: Added.
2671 * platform/ios-simulator/css1/formatting_model/inline_elements-expected.txt: Added.
2672 * platform/ios-simulator/css1/formatting_model/replaced_elements-expected.txt: Added.
2673 * platform/ios-simulator/css1/formatting_model/vertical_formatting-expected.txt: Added.
2674 * platform/ios-simulator/css1/pseudo/anchor-expected.txt: Added.
2675 * platform/ios-simulator/css1/pseudo/firstletter-expected.txt: Added.
2676 * platform/ios-simulator/css1/pseudo/firstline-expected.txt: Added.
2677 * platform/ios-simulator/css1/pseudo/multiple_pseudo_elements-expected.txt: Added.
2678 * platform/ios-simulator/css1/pseudo/pseudo_elements_in_selectors-expected.txt: Added.
2679 * platform/ios-simulator/css1/text_properties/letter_spacing-expected.txt: Added.
2680 * platform/ios-simulator/css1/text_properties/line_height-expected.txt: Added.
2681 * platform/ios-simulator/css1/text_properties/text_align-expected.txt: Added.
2682 * platform/ios-simulator/css1/text_properties/text_decoration-expected.txt: Added.
2683 * platform/ios-simulator/css1/text_properties/text_indent-expected.txt: Added.
2684 * platform/ios-simulator/css1/text_properties/text_transform-expected.txt: Added.
2685 * platform/ios-simulator/css1/text_properties/vertical_align-expected.txt: Added.
2686 * platform/ios-simulator/css1/text_properties/word_spacing-expected.txt: Added.
2687 * platform/ios-simulator/css1/units/color_units-expected.txt: Added.
2688 * platform/ios-simulator/css1/units/length_units-expected.txt: Added.
2689 * platform/ios-simulator/css1/units/percentage_units-expected.txt: Added.
2690 * platform/ios-simulator/css1/units/urls-expected.txt: Added.
2692 2014-10-08 Myles C. Maxfield <mmaxfield@apple.com>
2694 Inline ruby does not get justified correctly
2695 https://bugs.webkit.org/show_bug.cgi?id=137421
2697 Reviewed by Dave Hyatt.
2699 Test that ruby gets spaces inside the ruby base, and that hit testing the
2700 ruby base gives us correct answers.
2702 * fast/ruby/ruby-justification-expected.html: Added.
2703 * fast/ruby/ruby-justification-hittest-expected.txt: Added.
2704 * fast/ruby/ruby-justification-hittest.html: Added.
2705 * fast/ruby/ruby-justification.html: Added.
2706 * platform/mac/fast/ruby/bopomofo-rl-expected.txt: Ruby text gets the CSS
2707 property text-align: justify, which worked prior to this patch. However, this
2708 patch now justifies ruby bases, so now if there is text that is both a ruby
2709 base and ruby text (such as ruby in ruby) it correctly gets justified. This
2710 test does such, and therefore needs to be rebaselined.
2712 2014-10-08 Simon Fraser <simon.fraser@apple.com>
2714 New baselines for iOS compositing tests.
2716 * platform/ios-simulator/TestExpectations:
2717 * platform/ios-simulator/compositing/absolute-inside-out-of-view-fixed-expected.txt: Added.
2718 * platform/ios-simulator/compositing/animation/filling-animation-overlap-at-end-expected.txt: Added.
2719 * platform/ios-simulator/compositing/animation/filling-animation-overlap-expected.txt: Added.
2720 * platform/ios-simulator/compositing/animation/layer-for-filling-animation-expected.txt: Added.
2721 * platform/ios-simulator/compositing/animation/state-at-end-event-transform-layer-expected.txt: Added.
2722 * platform/ios-simulator/compositing/backing/backface-visibility-flip-expected.txt: Added.
2723 * platform/ios-simulator/compositing/backing/backface-visibility-in-3dtransformed-expected.txt: Added.
2724 * platform/ios-simulator/compositing/backing/border-radius-no-backing-expected.txt: Added.
2725 * platform/ios-simulator/compositing/backing/child-layer-no-backing-expected.txt: Added.
2726 * platform/ios-simulator/compositing/backing/filter-no-backing-expected.txt: Added.
2727 * platform/ios-simulator/compositing/backing/inline-block-no-backing-expected.txt: Added.
2728 * platform/ios-simulator/compositing/backing/masked-child-no-backing-expected.txt: Added.
2729 * platform/ios-simulator/compositing/backing/no-backing-for-clip-expected.txt: Added.
2730 * platform/ios-simulator/compositing/backing/no-backing-for-clip-overhang-expected.txt: Added.
2731 * platform/ios-simulator/compositing/backing/no-backing-for-clip-overlap-expected.txt: Added.
2732 * platform/ios-simulator/compositing/backing/no-backing-for-perspective-expected.txt: Added.
2733 * platform/ios-simulator/compositing/backing/replaced-child-no-backing-expected.txt: Added.
2734 * platform/ios-simulator/compositing/backing/whitespace-nodes-no-backing-expected.txt: Added.
2735 * platform/ios-simulator/compositing/bounds-in-flipped-writing-mode-expected.txt: Added.
2736 * platform/ios-simulator/compositing/checkerboard-expected.txt: Added.
2737 * platform/ios-simulator/compositing/clip-child-by-non-stacking-ancestor-expected.txt: Added.
2738 * platform/ios-simulator/compositing/color-matching/image-color-matching-expected.txt: Added.
2739 * platform/ios-simulator/compositing/color-matching/pdf-image-match-expected.txt: Added.
2740 * platform/ios-simulator/compositing/columns/ancestor-clipped-in-paginated-expected.txt: Added.
2741 * platform/ios-simulator/compositing/columns/clipped-in-paginated-expected.txt: Added.
2742 * platform/ios-simulator/compositing/columns/composited-columns-expected.txt: Added.
2743 * platform/ios-simulator/compositing/columns/composited-columns-vertical-rl-expected.txt: Added.
2744 * platform/ios-simulator/compositing/columns/composited-in-paginated-expected.txt: Added.
2745 * platform/ios-simulator/compositing/columns/composited-in-paginated-rl-expected.txt: Added.
2746 * platform/ios-simulator/compositing/columns/composited-in-paginated-writing-mode-rl-expected.txt: Added.
2747 * platform/ios-simulator/compositing/columns/composited-lr-paginated-repaint-expected.txt: Added.
2748 * platform/ios-simulator/compositing/columns/composited-nested-columns-expected.txt: Added.
2749 * platform/ios-simulator/compositing/columns/composited-rl-paginated-repaint-expected.txt: Added.
2750 * platform/ios-simulator/compositing/columns/hittest-composited-in-paginated-expected.txt: Added.
2751 * platform/ios-simulator/compositing/columns/rotated-in-paginated-expected.txt: Added.
2752 * platform/ios-simulator/compositing/columns/untransformed-composited-in-paginated-expected.txt: Added.
2753 * platform/ios-simulator/compositing/compositing-visible-descendant-expected.txt: Added.
2754 * platform/ios-simulator/compositing/contents-opaque/background-clip-expected.txt: Added.
2755 * platform/ios-simulator/compositing/contents-opaque/background-color-expected.txt: Added.
2756 * platform/ios-simulator/compositing/contents-opaque/body-background-painted-expected.txt: Added.
2757 * platform/ios-simulator/compositing/contents-opaque/body-background-skipped-expected.txt: Added.
2758 * platform/ios-simulator/compositing/contents-opaque/control-layer-expected.txt: Added.
2759 * platform/ios-simulator/compositing/contents-opaque/filter-expected.txt: Added.
2760 * platform/ios-simulator/compositing/contents-opaque/hidden-with-visible-child-expected.txt: Added.
2761 * platform/ios-simulator/compositing/contents-opaque/hidden-with-visible-text-expected.txt: Added.
2762 * platform/ios-simulator/compositing/contents-opaque/layer-opacity-expected.txt: Added.
2763 * platform/ios-simulator/compositing/contents-opaque/layer-transform-expected.txt: Added.
2764 * platform/ios-simulator/compositing/contents-opaque/overflow-hidden-child-layers-expected.txt: Added.
2765 * platform/ios-simulator/compositing/contents-opaque/visibility-hidden-expected.txt: Added.
2766 * platform/ios-simulator/compositing/contents-scale/animating-expected.txt: Added.
2767 * platform/ios-simulator/compositing/contents-scale/rounded-contents-scale-expected.txt: Added.
2768 * platform/ios-simulator/compositing/contents-scale/scaled-ancestor-expected.txt: Added.
2769 * platform/ios-simulator/compositing/contents-scale/simple-scale-expected.txt: Added.
2770 * platform/ios-simulator/compositing/contents-scale/z-translate-expected.txt: Added.
2771 * platform/ios-simulator/compositing/direct-image-compositing-expected.txt: Added.
2772 * platform/ios-simulator/compositing/filters/sw-layer-overlaps-hw-shadow-expected.txt: Added.
2773 * platform/ios-simulator/compositing/filters/sw-nested-shadow-overlaps-hw-nested-shadow-expected.txt: Added.
2774 * platform/ios-simulator/compositing/filters/sw-shadow-overlaps-hw-layer-expected.txt: Added.
2775 * platform/ios-simulator/compositing/filters/sw-shadow-overlaps-hw-shadow-expected.txt: Added.
2776 * platform/ios-simulator/compositing/fixed-image-loading-expected.txt: Added.
2777 * platform/ios-simulator/compositing/generated-content-expected.txt: Added.
2778 * platform/ios-simulator/compositing/geometry/abs-position-inside-opacity-expected.txt: Added.
2779 * platform/ios-simulator/compositing/geometry/ancestor-overflow-change-expected.txt: Added.
2780 * platform/ios-simulator/compositing/geometry/bounds-clipped-composited-child-expected.txt: Added.
2781 * platform/ios-simulator/compositing/geometry/bounds-ignores-hidden-composited-descendant-expected.txt: Added.
2782 * platform/ios-simulator/compositing/geometry/bounds-ignores-hidden-dynamic-expected.txt: Added.
2783 * platform/ios-simulator/compositing/geometry/bounds-ignores-hidden-dynamic-negzindex-expected.txt: Added.
2784 * platform/ios-simulator/compositing/geometry/bounds-ignores-hidden-expected.txt: Added.
2785 * platform/ios-simulator/compositing/geometry/clip-expected.txt: Added.
2786 * platform/ios-simulator/compositing/geometry/clip-inside-expected.txt: Added.
2787 * platform/ios-simulator/compositing/geometry/clipping-foreground-expected.txt: Added.
2788 * platform/ios-simulator/compositing/geometry/composited-html-size-expected.txt: Added.
2789 * platform/ios-simulator/compositing/geometry/composited-in-columns-expected.txt: Added.
2790 * platform/ios-simulator/compositing/geometry/fixed-in-composited-expected.txt: Added.
2791 * platform/ios-simulator/compositing/geometry/fixed-position-composited-switch-expected.txt: Added.
2792 * platform/ios-simulator/compositing/geometry/fixed-position-expected.txt: Added.
2793 * platform/ios-simulator/compositing/geometry/flipped-writing-mode-expected.txt: Added.
2794 * platform/ios-simulator/compositing/geometry/foreground-layer-expected.txt: Added.
2795 * platform/ios-simulator/compositing/geometry/horizontal-scroll-composited-expected.txt: Added.
2796 * platform/ios-simulator/compositing/geometry/layer-due-to-layer-children-deep-expected.txt: Added.
2797 * platform/ios-simulator/compositing/geometry/layer-due-to-layer-children-deep-switch-expected.txt: Added.
2798 * platform/ios-simulator/compositing/geometry/layer-due-to-layer-children-expected.txt: Added.
2799 * platform/ios-simulator/compositing/geometry/layer-due-to-layer-children-switch-expected.txt: Added.
2800 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-clipping-ancestor-expected.txt: Added.
2801 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-fixed-expected.txt: Added.
2802 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-fixed-positioned-expected.txt: Added.
2803 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-opacity-transition-expected.txt: Added.
2804 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt: Added.
2805 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-overflow-root-expected.txt: Added.
2806 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-positioned-expected.txt: Added.
2807 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-positioned-transition-expected.txt: Added.
2808 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-transformed-expected.txt: Added.
2809 * platform/ios-simulator/compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt: Added.
2810 * platform/ios-simulator/compositing/geometry/negative-text-indent-with-overflow-hidden-layer-expected.txt: Added.
2811 * platform/ios-simulator/compositing/geometry/outline-change-expected.txt: Added.
2812 * platform/ios-simulator/compositing/geometry/partial-layout-update-expected.txt: Added.
2813 * platform/ios-simulator/compositing/geometry/preserve-3d-switching-expected.txt: Added.
2814 * platform/ios-simulator/compositing/geometry/root-layer-update-expected.txt: Added.
2815 * platform/ios-simulator/compositing/geometry/tall-page-composited-expected.txt: Added.
2816 * platform/ios-simulator/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.txt: Added.
2817 * platform/ios-simulator/compositing/geometry/vertical-scroll-composited-expected.txt: Added.
2818 * platform/ios-simulator/compositing/iframes/become-composited-nested-iframes-expected.txt: Added.
2819 * platform/ios-simulator/compositing/iframes/become-overlapped-iframe-expected.txt: Added.
2820 * platform/ios-simulator/compositing/iframes/composited-iframe-alignment-expected.txt: Added.
2821 * platform/ios-simulator/compositing/iframes/composited-iframe-scroll-expected.txt: Added.
2822 * platform/ios-simulator/compositing/iframes/composited-parent-iframe-expected.txt: Added.
2823 * platform/ios-simulator/compositing/iframes/connect-compositing-iframe-delayed-expected.txt: Added.
2824 * platform/ios-simulator/compositing/iframes/connect-compositing-iframe-expected.txt: Added.
2825 * platform/ios-simulator/compositing/iframes/connect-compositing-iframe2-expected.txt: Added.
2826 * platform/ios-simulator/compositing/iframes/connect-compositing-iframe3-expected.txt: Added.
2827 * platform/ios-simulator/compositing/iframes/enter-compositing-iframe-expected.txt: Added.
2828 * platform/ios-simulator/compositing/iframes/iframe-content-flipping-expected.txt: Added.
2829 * platform/ios-simulator/compositing/iframes/iframe-copy-on-scroll-expected.txt: Added.
2830 * platform/ios-simulator/compositing/iframes/iframe-in-composited-layer-expected.txt: Added.
2831 * platform/ios-simulator/compositing/iframes/iframe-resize-expected.txt: Added.
2832 * platform/ios-simulator/compositing/iframes/iframe-size-from-zero-expected.txt: Added.
2833 * platform/ios-simulator/compositing/iframes/iframe-size-to-zero-expected.txt: Added.
2834 * platform/ios-simulator/compositing/iframes/iframe-src-change-expected.txt: Added.
2835 * platform/ios-simulator/compositing/iframes/invisible-nested-iframe-hide-expected.txt: Added.
2836 * platform/ios-simulator/compositing/iframes/invisible-nested-iframe-show-expected.txt: Added.
2837 * platform/ios-simulator/compositing/iframes/leave-compositing-iframe-expected.txt: Added.
2838 * platform/ios-simulator/compositing/iframes/nested-iframe-scrolling-expected.txt: Added.
2839 * platform/ios-simulator/compositing/iframes/overlapped-iframe-expected.txt: Added.
2840 * platform/ios-simulator/compositing/iframes/overlapped-iframe-iframe-expected.txt: Added.
2841 * platform/ios-simulator/compositing/iframes/overlapped-nested-iframes-expected.txt: Added.
2842 * platform/ios-simulator/compositing/iframes/page-cache-layer-tree-expected.txt: Added.
2843 * platform/ios-simulator/compositing/iframes/resizer-expected.txt: Added.
2844 * platform/ios-simulator/compositing/iframes/scrolling-iframe-expected.txt: Added.
2845 * platform/ios-simulator/compositing/images/clip-on-directly-composited-image-expected.txt: Added.
2846 * platform/ios-simulator/compositing/images/direct-image-background-color-expected.txt: Added.
2847 * platform/ios-simulator/compositing/images/direct-image-object-fit-expected.txt: Added.
2848 * platform/ios-simulator/compositing/layer-creation/animation-overlap-with-children-expected.txt: Added.
2849 * platform/ios-simulator/compositing/layer-creation/fixed-position-and-transform-expected.txt: Added.
2850 * platform/ios-simulator/compositing/layer-creation/fixed-position-change-out-of-view-in-view-expected.txt: Added.
2851 * platform/ios-simulator/compositing/layer-creation/fixed-position-out-of-view-expected.txt: Added.
2852 * platform/ios-simulator/compositing/layer-creation/fixed-position-out-of-view-scaled-expected.txt: Added.
2853 * platform/ios-simulator/compositing/layer-creation/fixed-position-out-of-view-scaled-scroll-expected.txt: Added.
2854 * platform/ios-simulator/compositing/layer-creation/fixed-position-transformed-into-view-expected.txt: Added.
2855 * platform/ios-simulator/compositing/layer-creation/fixed-position-under-transform-expected.txt: Added.
2856 * platform/ios-simulator/compositing/layer-creation/no-compositing-for-fixed-position-under-transform-expected.txt: Added.
2857 * platform/ios-simulator/compositing/layer-creation/no-compositing-for-preserve-3d-expected.txt: Added.
2858 * platform/ios-simulator/compositing/layer-creation/no-compositing-for-sticky-expected.txt: Added.
2859 * platform/ios-simulator/compositing/layer-creation/overflow-scroll-overlap-expected.txt: Added.
2860 * platform/ios-simulator/compositing/layer-creation/overlap-animation-clipping-expected.txt: Added.
2861 * platform/ios-simulator/compositing/layer-creation/overlap-animation-container-expected.txt: Added.
2862 * platform/ios-simulator/compositing/layer-creation/overlap-animation-expected.txt: Added.
2863 * platform/ios-simulator/compositing/layer-creation/overlap-child-layer-expected.txt: Added.
2864 * platform/ios-simulator/compositing/layer-creation/overlap-clipping-expected.txt: Added.
2865 * platform/ios-simulator/compositing/layer-creation/overlap-transformed-3d-expected.txt: Added.
2866 * platform/ios-simulator/compositing/layer-creation/overlap-transformed-and-clipped-expected.txt: Added.
2867 * platform/ios-simulator/compositing/layer-creation/overlap-transformed-layer-expected.txt: Added.
2868 * platform/ios-simulator/compositing/layer-creation/overlap-transformed-preserved-3d-expected.txt: Added.
2869 * platform/ios-simulator/compositing/layer-creation/overlap-transforms-expected.txt: Added.
2870 * platform/ios-simulator/compositing/layer-creation/rotate3d-overlap-expected.txt: Added.
2871 * platform/ios-simulator/compositing/layer-creation/scroll-partial-update-expected.txt: Added.
2872 * platform/ios-simulator/compositing/layer-creation/spanOverlapsCanvas-expected.txt: Added.
2873 * platform/ios-simulator/compositing/layer-creation/stacking-context-overlap-expected.txt: Added.
2874 * platform/ios-simulator/compositing/layer-creation/stacking-context-overlap-nested-expected.txt: Added.
2875 * platform/ios-simulator/compositing/layer-creation/translatez-overlap-expected.txt: Added.
2876 * platform/ios-simulator/compositing/masks/direct-image-mask-expected.txt: Added.
2877 * platform/ios-simulator/compositing/masks/mask-layer-size-expected.txt: Added.
2878 * platform/ios-simulator/compositing/masks/masked-ancestor-expected.txt: Added.
2879 * platform/ios-simulator/compositing/masks/multiple-masks-expected.txt: Added.
2880 * platform/ios-simulator/compositing/masks/simple-composited-mask-expected.txt: Added.
2881 * platform/ios-simulator/compositing/overflow-trumps-transform-style-expected.txt: Added.
2882 * platform/ios-simulator/compositing/overflow/ancestor-overflow-expected.txt: Added.
2883 * platform/ios-simulator/compositing/overflow/automatically-opt-into-composited-scrolling-expected.txt: Added.
2884 * platform/ios-simulator/compositing/overflow/clip-descendents-expected.txt: Added.
2885 * platform/ios-simulator/compositing/overflow/clipping-ancestor-with-accelerated-scrolling-ancestor-expected.txt: Added.
2886 * platform/ios-simulator/compositing/overflow/clipping-behaviour-change-is-not-propagated-to-descendants-expected.txt: Added.
2887 * platform/ios-simulator/compositing/overflow/clipping-behaviour-change-is-not-propagated-to-descendants2-expected.txt: Added.
2888 * platform/ios-simulator/compositing/overflow/composited-scrolling-creates-a-stacking-container-expected.txt: Added.
2889 * platform/ios-simulator/compositing/overflow/composited-scrolling-paint-phases-expected.txt: Added.
2890 * platform/ios-simulator/compositing/overflow/content-gains-scrollbars-expected.txt: Added.
2891 * platform/ios-simulator/compositing/overflow/content-loses-scrollbars-expected.txt: Added.
2892 * platform/ios-simulator/compositing/overflow/fixed-position-ancestor-clip-expected.txt: Added.
2893 * platform/ios-simulator/compositing/overflow/nested-scrolling-expected.txt: Added.
2894 * platform/ios-simulator/compositing/overflow/overflow-auto-with-touch-expected.txt: Added.
2895 * platform/ios-simulator/compositing/overflow/overflow-auto-with-touch-toggle-expected.txt: Added.
2896 * platform/ios-simulator/compositing/overflow/overflow-clip-with-accelerated-scrolling-ancestor-expected.txt: Added.
2897 * platform/ios-simulator/compositing/overflow/overflow-overlay-with-touch-expected.txt: Added.
2898 * platform/ios-simulator/compositing/overflow/overflow-positioning-expected.txt: Added.
2899 * platform/ios-simulator/compositing/overflow/overflow-scroll-expected.txt: Added.
2900 * platform/ios-simulator/compositing/overflow/overflow-scrollbar-layer-positions-expected.txt: Added.
2901 * platform/ios-simulator/compositing/overflow/overflow-scrollbar-layers-expected.txt: Added.
2902 * platform/ios-simulator/compositing/overflow/parent-overflow-expected.txt: Added.
2903 * platform/ios-simulator/compositing/overflow/remove-overflow-crash2-expected.txt: Added.
2904 * platform/ios-simulator/compositing/overflow/resize-painting-expected.txt: Added.
2905 * platform/ios-simulator/compositing/overflow/scrollbar-painting-expected.txt: Added.
2906 * platform/ios-simulator/compositing/overflow/scrolling-content-clip-to-viewport-expected.txt: Added.
2907 * platform/ios-simulator/compositing/overflow/scrolling-without-painting-expected.txt: Added.
2908 * platform/ios-simulator/compositing/overflow/textarea-scroll-touch-expected.txt: Added.
2909 * platform/ios-simulator/compositing/overflow/theme-affects-visual-overflow-expected.txt: Added.
2910 * platform/ios-simulator/compositing/overflow/updating-scrolling-content-expected.txt: Added.
2911 * platform/ios-simulator/compositing/plugins/composited-plugin-expected.txt: Added.
2912 * platform/ios-simulator/compositing/reflections/animation-inside-reflection-expected.txt: Added.
2913 * platform/ios-simulator/compositing/reflections/compositing-change-inside-reflection-expected.txt: Added.
2914 * platform/ios-simulator/compositing/reflections/deeply-nested-reflections-expected.txt: Added.
2915 * platform/ios-simulator/compositing/reflections/direct-image-object-fit-reflected-expected.txt: Added.
2916 * platform/ios-simulator/compositing/reflections/masked-reflection-on-composited-expected.txt: Added.
2917 * platform/ios-simulator/compositing/reflections/nested-reflection-anchor-point-expected.txt: Added.
2918 * platform/ios-simulator/compositing/reflections/nested-reflection-animated-expected.txt: Added.
2919 * platform/ios-simulator/compositing/reflections/nested-reflection-expected.txt: Added.
2920 * platform/ios-simulator/compositing/reflections/nested-reflection-mask-change-expected.txt: Added.
2921 * platform/ios-simulator/compositing/reflections/nested-reflection-on-overflow-expected.txt: Added.
2922 * platform/ios-simulator/compositing/reflections/nested-reflection-opacity-expected.txt: Added.
2923 * platform/ios-simulator/compositing/reflections/nested-reflection-size-change-expected.txt: Added.
2924 * platform/ios-simulator/compositing/reflections/nested-reflection-transformed-expected.txt: Added.
2925 * platform/ios-simulator/compositing/reflections/nested-reflection-transformed2-expected.txt: Added.
2926 * platform/ios-simulator/compositing/reflections/nested-reflection-transition-expected.txt: Added.
2927 * platform/ios-simulator/compositing/reflections/reflection-in-composited-expected.txt: Added.
2928 * platform/ios-simulator/compositing/reflections/reflection-on-composited-expected.txt: Added.
2929 * platform/ios-simulator/compositing/reflections/reflection-opacity-expected.txt: Added.
2930 * platform/ios-simulator/compositing/reflections/reflection-ordering-expected.txt: Added.
2931 * platform/ios-simulator/compositing/reflections/reflection-positioning-expected.txt: Added.
2932 * platform/ios-simulator/compositing/reflections/reflection-positioning2-expected.txt: Added.
2933 * platform/ios-simulator/compositing/reflections/simple-composited-reflections-expected.txt: Added.
2934 * platform/ios-simulator/compositing/reflections/transform-inside-reflection-expected.txt: Added.
2935 * platform/ios-simulator/compositing/regions/fixed-in-named-flow-clip-descendant-expected.txt: Added.
2936 * platform/ios-simulator/compositing/regions/fixed-in-named-flow-expected.txt: Added.
2937 * platform/ios-simulator/compositing/regions/fixed-in-named-flow-from-abs-in-named-flow-expected.txt: Added.
2938 * platform/ios-simulator/compositing/regions/fixed-in-named-flow-from-outflow-expected.txt: Added.
2939 * platform/ios-simulator/compositing/regions/fixed-in-named-flow-got-transformed-parent-expected.txt: Added.
2940 * platform/ios-simulator/compositing/regions/fixed-in-named-flow-lost-transformed-parent-expected.txt: Added.
2941 * platform/ios-simulator/compositing/regions/fixed-in-named-flow-overlap-composited-expected.txt: Added.
2942 * platform/ios-simulator/compositing/regions/fixed-in-named-flow-transformed-parent-expected.txt: Added.
2943 * platform/ios-simulator/compositing/regions/fixed-transformed-in-named-flow-expected.txt: Added.
2944 * platform/ios-simulator/compositing/repaint/absolute-painted-into-composited-ancestor-expected.txt: Added.
2945 * platform/ios-simulator/compositing/repaint/become-overlay-composited-layer-expected.txt: Added.
2946 * platform/ios-simulator/compositing/repaint/composited-document-element-expected.txt: Added.
2947 * platform/ios-simulator/compositing/repaint/content-into-overflow-expected.txt: Added.
2948 * platform/ios-simulator/compositing/repaint/fixed-background-scroll-expected.txt: Added.
2949 * platform/ios-simulator/compositing/repaint/invalidations-on-composited-layers-expected.txt: Added.
2950 * platform/ios-simulator/compositing/repaint/layer-repaint-expected.txt: Added.
2951 * platform/ios-simulator/compositing/repaint/layer-repaint-rects-expected.txt: Added.
2952 * platform/ios-simulator/compositing/repaint/opacity-between-absolute-expected.txt: Added.
2953 * platform/ios-simulator/compositing/repaint/opacity-between-absolute2-expected.txt: Added.
2954 * platform/ios-simulator/compositing/repaint/overflow-into-content-expected.txt: Added.
2955 * platform/ios-simulator/compositing/repaint/page-scale-repaint-expected.txt: Added.
2956 * platform/ios-simulator/compositing/repaint/positioned-movement-expected.txt: Added.
2957 * platform/ios-simulator/compositing/repaint/repaint-on-layer-grouping-change-expected.txt: Added.
2958 * platform/ios-simulator/compositing/repaint/resize-repaint-expected.txt: Added.
2959 * platform/ios-simulator/compositing/rtl/rtl-absolute-expected.txt: Added.
2960 * platform/ios-simulator/compositing/rtl/rtl-absolute-overflow-expected.txt: Added.
2961 * platform/ios-simulator/compositing/rtl/rtl-absolute-overflow-scrolled-expected.txt: Added.
2962 * platform/ios-simulator/compositing/rtl/rtl-fixed-expected.txt: Added.
2963 * platform/ios-simulator/compositing/rtl/rtl-fixed-overflow-expected.txt: Added.
2964 * platform/ios-simulator/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Added.
2965 * platform/ios-simulator/compositing/rtl/rtl-iframe-absolute-expected.txt: Added.
2966 * platform/ios-simulator/compositing/rtl/rtl-iframe-absolute-overflow-expected.txt: Added.
2967 * platform/ios-simulator/compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt: Added.
2968 * platform/ios-simulator/compositing/rtl/rtl-iframe-fixed-expected.txt: Added.
2969 * platform/ios-simulator/compositing/rtl/rtl-iframe-fixed-overflow-expected.txt: Added.
2970 * platform/ios-simulator/compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt: Added.
2971 * platform/ios-simulator/compositing/rtl/rtl-iframe-relative-expected.txt: Added.
2972 * platform/ios-simulator/compositing/rtl/rtl-overflow-scrolling-expected.txt: Added.
2973 * platform/ios-simulator/compositing/rtl/rtl-relative-expected.txt: Added.
2974 * platform/ios-simulator/compositing/shadows/shadow-drawing-expected.txt: Added.
2975 * platform/ios-simulator/compositing/sibling-positioning-expected.txt: Added.
2976 * platform/ios-simulator/compositing/text-on-large-layer-expected.txt: Added.
2977 * platform/ios-simulator/compositing/tiled-layers-hidpi-expected.txt: Added.
2978 * platform/ios-simulator/compositing/tiling/backface-preserve-3d-tiled-expected.txt: Added.
2979 * platform/ios-simulator/compositing/tiling/crash-reparent-tiled-layer-expected.txt: Added.
2980 * platform/ios-simulator/compositing/tiling/huge-layer-add-remove-child-expected.txt: Added.
2981 * platform/ios-simulator/compositing/tiling/huge-layer-img-expected.txt: Added.
2982 * platform/ios-simulator/compositing/tiling/huge-layer-with-layer-children-expected.txt: Added.
2983 * platform/ios-simulator/compositing/tiling/huge-layer-with-layer-children-resize-expected.txt: Added.
2984 * platform/ios-simulator/compositing/tiling/rotated-tiled-clamped-expected.txt: Added.
2985 * platform/ios-simulator/compositing/tiling/rotated-tiled-preserve3d-clamped-expected.txt: Added.
2986 * platform/ios-simulator/compositing/tiling/tile-cache-zoomed-expected.txt: Added.
2987 * platform/ios-simulator/compositing/tiling/tiled-layer-resize-expected.txt: Added.
2988 * platform/ios-simulator/compositing/transitions/scale-transition-no-start-expected.txt: Added.
2989 * platform/ios-simulator/compositing/transitions/singular-scale-transition-expected.txt: Added.
2990 * platform/ios-simulator/compositing/visibility/layer-visible-content-expected.txt: Added.
2991 * platform/ios-simulator/compositing/visibility/visibility-composited-expected.txt: Added.
2992 * platform/ios-simulator/compositing/visibility/visibility-composited-transforms-expected.txt: Added.
2993 * platform/ios-simulator/compositing/visibility/visibility-image-layers-dynamic-expected.txt: Added.
2994 * platform/ios-simulator/compositing/visible-rect/2d-transformed-expected.txt: Added.
2995 * platform/ios-simulator/compositing/visible-rect/3d-transform-style-expected.txt: Added.
2996 * platform/ios-simulator/compositing/visible-rect/3d-transformed-expected.txt: Added.
2997 * platform/ios-simulator/compositing/visible-rect/animated-expected.txt: Added.
2998 * platform/ios-simulator/compositing/visible-rect/animated-from-none-expected.txt: Added.
2999 * platform/ios-simulator/compositing/visible-rect/clipped-by-viewport-expected.txt: Added.
3000 * platform/ios-simulator/compositing/visible-rect/clipped-visible-rect-expected.txt: Added.
3001 * platform/ios-simulator/compositing/visible-rect/flipped-preserve-3d-expected.txt: Added.
3002 * platform/ios-simulator/compositing/visible-rect/iframe-and-layers-expected.txt: Added.
3003 * platform/ios-simulator/compositing/visible-rect/iframe-no-layers-expected.txt: Added.
3004 * platform/ios-simulator/compositing/visible-rect/nested-transform-expected.txt: Added.
3005 * platform/ios-simulator/compositing/visible-rect/scrolled-expected.txt: Added.
3006 * platform/ios-simulator/compositing/webgl/webgl-background-color-expected.txt: Added.
3007 * platform/ios-simulator/compositing/webgl/webgl-nonpremultiplied-blend-expected.txt: Added.
3008 * platform/ios-simulator/compositing/webgl/webgl-reflection-expected.txt: Added.
3010 2014-10-08 Simon Fraser <simon.fraser@apple.com>
3012 Some animation test results for the iOS Simulator build.
3014 * platform/ios-simulator/animations/3d/change-transform-in-end-event-expected.txt: Added.
3015 * platform/ios-simulator/animations/3d/matrix-transform-type-animation-expected.txt: Added.
3016 * platform/ios-simulator/animations/3d/state-at-end-event-transform-expected.txt: Added.
3017 * platform/ios-simulator/animations/additive-transform-animations-expected.txt: Added.
3018 * platform/ios-simulator/animations/cross-fade-border-image-source-expected.txt: Added.
3019 * platform/ios-simulator/animations/cross-fade-list-style-image-expected.txt: Added.
3020 * platform/ios-simulator/animations/cross-fade-webkit-mask-box-image-expected.txt: Added.
3021 * platform/ios-simulator/animations/cross-fade-webkit-mask-image-expected.txt: Added.
3022 * platform/ios-simulator/animations/state-at-end-event-expected.txt: Added.
3024 2014-10-08 Simon Fraser <simon.fraser@apple.com>
3026 Re-marking fast/hidpi/image-srcset-svg-canvas.html as an expected image failure.
3028 * platform/mac/TestExpectations:
3030 2014-10-08 Brent Fulgham <bfulgham@apple.com>
3032 [Win] Mark two inspector-protocol tests as crashing.
3033 https://bugs.webkit.org/show_bug.cgi?id=137529
3035 * platform/win/TestExpectations:
3037 2014-10-08 Jer Noble <jer.noble@apple.com>
3039 Layout Test media/track/track-forced-subtitles-in-band.html is flaky
3040 https://bugs.webkit.org/show_bug.cgi?id=137505
3042 Reviewed by Simon Fraser.
3044 Now that the media controls can have audio as well as text tracks, use the aria-labelledby attribute
3045 to get the <ul> containing the text track menu list items.
3047 * media/track/track-forced-subtitles-in-band.html:
3048 * media/track/track-user-preferences-expected.txt:
3049 * media/track/track-user-preferences.html:
3050 * media/trackmenu-test.js:
3051 (trackMenuListByLabel):
3052 (captionTrackMenuList):
3053 (audioTrackMenuList):
3054 (indexOfMenuItemBeginningWith):
3055 (indexOfCaptionMenuItemBeginningWith):
3056 (indexOfAudioTrackMenuItemBeginningWith):
3057 (selectMenuItemFromList):
3058 (selectCaptionMenuItem):
3059 (selectAudioTrackMenuItem):
3061 (trackMenuList): Deleted.
3062 * media/video-controls-audiotracks-trackmenu.html:
3063 * media/video-controls-captions-trackmenu-includes-enabled-track.html:
3064 * media/video-controls-captions-trackmenu-only-captions-descriptions-and-subtitles.html:
3065 * media/video-controls-captions-trackmenu.html:
3067 2014-10-08 Dean Jackson <dino@apple.com>
3069 Add deprecation warning for CSSKeyframesRule::appendRule
3070 https://bugs.webkit.org/show_bug.cgi?id=137532
3071 <rdar://problem/18585745>
3073 Reviewed by Brent Fulgham.
3075 Update test expectations to include console message.
3077 * animations/change-keyframes-expected.txt:
3079 2014-10-08 Myles C. Maxfield <mmaxfield@apple.com>
3081 Text drawn with an SVG font has no spaces when word-rounding hacks are enabled