1 2010-05-30 Robert Hogan <robert@webkit.org>
3 Reviewed by Kenneth Rohde Christiansen.
5 [Qt] Enhance Qt DRT implementation to support platform scroll wheel events.
7 https://bugs.webkit.org/show_bug.cgi?id=36004
11 fast/events/remove-child-onscroll.html
12 fast/events/platform-wheelevent-in-scrolling-div.html
13 fast/events/continuous-platform-wheelevent-in-scrolling-div.html
15 Add platform-specific results for Qt. Required because QWheelEvent only supports sending an event
16 for scrolling movement one axis at a time. Naturally the test's check for the axis the event does
17 not pertain to will 'fail' in such cases. So we get 6 lines of output in total, i.e.:
19 FAIL event.wheelDeltaY should be -24000. Was 0.
20 PASS event.wheelDeltaX is window.expectedScrollLeft*-120
21 PASS event.wheelDelta is window.expectedScrollLeft*-120
25 PASS event.wheelDeltaY is window.expectedScrollTop*-120
26 FAIL event.wheelDeltaX should be -12000. Was 0.
27 PASS event.wheelDelta is window.expectedScrollTop*-120
29 instead of just 3 like Mac:
31 PASS event.wheelDeltaY is window.expectedScrollTop*-120
32 PASS event.wheelDeltaX is window.expectedScrollLeft*-120
33 PASS event.wheelDelta is window.expectedScrollTop*-120
36 * platform/qt-linux/fast/events/continuous-platform-wheelevent-in-scrolling-div-expected.txt: Added.
37 * platform/qt-linux/fast/events/platform-wheelevent-in-scrolling-div-expected.txt: Added.
38 * platform/qt/Skipped:
40 2010-05-29 Justin Schuh <jschuh@chromium.org>
42 Reviewed by Adam Barth.
44 Allow descendant frame navigation for file URLs when allowFileAccessFromFileURLs is false
45 https://bugs.webkit.org/show_bug.cgi?id=39750
47 Check that descendant file: frames can navigate each other.
49 * fast/frames/location-change-no-file-access-expected.txt: Added.
50 * fast/frames/location-change-no-file-access.html: Added.
51 * fast/frames/resources/no-file-access-frame-1.html: Added.
52 * fast/frames/resources/no-file-access-frame-2.html: Added.
54 2010-05-28 Geoffrey Garen <ggaren@apple.com>
56 Reviewed by Sam Weinig, Gavin Barraclough, Oliver Hunt.
58 Simplified the host calling convention.
60 Changed these results to expect to fail to stringify their exception
61 objects in the case of stack overflow. (Standardizing the calling
62 convention has implicitly added stack overflow checks to some places
63 where they used to be missing.)
65 In a future patch, I plan to implement a more reliable way to stringify
66 exceptions without invoking a JS function. For now, though, it seems best
67 to match other test results, instead of silently overflowing the stack.
69 * fast/js/global-recursion-on-full-stack-expected.txt:
70 * fast/xmlhttprequest/xmlhttprequest-recursive-sync-event-expected.txt:
72 2010-05-28 Stephen White <senorblanco@chromium.org>
74 Reviewed by Darin Fisher.
76 [CHROMIUM] Chromium port should support image interpolation quality
77 https://bugs.webkit.org/show_bug.cgi?id=38686
79 * platform/chromium/test_expectations.txt:
80 Add failure expectations for resizing-based tests, so they can be
81 rebaselined by the bots.
83 2010-05-28 Csaba Osztrogonác <ossy@webkit.org>
85 [Qt] Skip new test introduced in r60386, because of
86 missing layoutTestController.evaluateScriptInIsolatedWorld()
88 * platform/qt/Skipped: storage/transaction-success-callback-isolated-world.html skipped.
90 2010-05-28 Eric Uhrhane <ericu@chromium.org>
92 Reviewed by Dmitry Titov.
94 Refactor DB layout tests so that they work in Web Workers as well as Pages.
95 This is a big set of ports, but there are still more to come.
96 In general, this is all just trivial changes. For each test file, I pull out the meat into a .js file [with no functional changes]. Then I include that from both the DOM test and a new worker test; in both cases, the .html files are trivial wrappers. All boilerplate code is pulled out into the resource files.
98 In a couple of these tests, there were try/catch wrappers that suppressed errors. I don't see why you'd want to do that in a test; let's let those errors cause test failures, then fix them. I took out the wrappers and saw no difference in behavior.
100 https://bugs.webkit.org/show_bug.cgi?id=34995
102 * fast/workers/storage/multiple-databases-garbage-collection-expected.txt: Added.
103 * fast/workers/storage/multiple-databases-garbage-collection.html: Added.
104 * fast/workers/storage/multiple-transactions-expected.txt: Added.
105 * fast/workers/storage/multiple-transactions.html: Added.
106 * fast/workers/storage/multiple-transactions-on-different-handles-expected.txt: Added.
107 * fast/workers/storage/multiple-transactions-on-different-handles.html: Added.
108 * fast/workers/storage/change-version-handle-reuse-worker.html: Pulled out even more boilerplate.
109 * fast/workers/storage/execute-sql-args-worker.html: Pulled out even more boilerplate.
110 * fast/workers/storage/resources/database-worker-controller: Here's where the boilerplate went.
111 * fast/workers/storage/resources/database-worker.js:
112 * storage/multiple-databases-garbage-collection.html:
113 * storage/multiple-databases-garbage-collection.js: Added.
114 * storage/multiple-transactions-on-different-handles.html:
115 * storage/multiple-transactions-on-different-handles.js: Added.
116 * storage/multiple-transactions.html:
117 * storage/multiple-transactions.js: Added.
118 * storage/hash-change-with-xhr-expected.txt: Trivial whitespace change.
119 * storage/hash-change-with-xhr.html:
120 * storage/hash-change-with-xhr.js: Added.
121 * storage/open-database-while-transaction-in-progress.html:
122 * storage/open-database-while-transaction-in-progress.js: Added.
123 * storage/read-and-write-transactions-dont-run-together.html:
124 * storage/read-and-write-transactions-dont-run-together.js: Added.
125 * storage/test-authorizer.html:
126 * storage/test-authorizer.js: Added.
127 I made a small common include for all the non-worker tests to remove a little boilerplate.
128 * storage/resources/database-common.js: Added.
129 These two tests had already been ported to workers; I updated them to use the common include file.
130 * storage/change-version-handle-reuse.html:
131 * storage/execute-sql-args.html:
132 * fast/workers/storage/open-database-while-transaction-in-progress-expected.txt: Added.
133 * fast/workers/storage/open-database-while-transaction-in-progress.html: Added.
134 * fast/workers/storage/read-and-write-transactions-dont-run-together-expected.txt: Added.
135 * fast/workers/storage/read-and-write-transactions-dont-run-together.html: Added.
136 * fast/workers/storage/test-authorizer-expected.txt: Added.
137 * fast/workers/storage/test-authorizer.html: Added.
139 2010-05-28 Eric Uhrhane <ericu@chromium.org>
141 Reviewed by Dmitry Titov.
143 We don't test the async DB success callback in an isolated world.
144 https://bugs.webkit.org/show_bug.cgi?id=39849
146 This pretty much a copy of transaction-error-callback-isolated-world.html.
147 * storage/transaction-success-callback-isolated-world-expected.txt: Added.
148 * storage/transaction-success-callback-isolated-world.html: Added.
150 2010-05-28 Chang Shu <Chang.Shu@nokia.com>
152 Reviewed by Kenneth Rohde Christiansen.
154 [Qt] Enable Philip's canvas tests on Qt and skip
157 https://bugs.webkit.org/show_bug.cgi?id=20553
159 * platform/qt/Skipped:
161 2010-05-28 Adam Barth <abarth@webkit.org>
163 Reviewed by Eric Seidel.
165 Named entities in attributes aren't parsed correctly by HTML5 parser
166 https://bugs.webkit.org/show_bug.cgi?id=39873
168 Add a test suite for parsing entities in attributes and update expected results.
170 * html5lib/resources/entities02.dat: Added.
171 * html5lib/runner-expected-html5.txt:
172 * html5lib/runner-expected.txt:
173 * html5lib/runner.html:
175 2010-05-28 Adam Barth <abarth@webkit.org>
177 Reviewed by Eric Seidel.
179 Handle edge cases in HTML5 entity parsing
180 https://bugs.webkit.org/show_bug.cgi?id=39823
182 Tests a bunch of the edge cases of entity handling in the HTML5
185 * html5lib/resources/entities01.dat:
186 * html5lib/runner-expected.txt:
188 2010-05-28 Chris Fleizach <cfleizach@apple.com>
190 Reviewed by Darin Adler.
192 AX: need to catch NSAccessibilityExceptions in DRT
193 https://bugs.webkit.org/show_bug.cgi?id=39881
195 * platform/mac/accessibility/unsupported-attribute-does-not-crash-expected.txt: Added.
196 * platform/mac/accessibility/unsupported-attribute-does-not-crash.html: Added.
198 2010-05-28 Mikhail Naganov <mnaganov@chromium.org>
200 Unreviewed. Revert 60353 -- immature.
202 https://bugs.webkit.org/show_bug.cgi?id=39646
204 * fast/dom/Window/window-properties-expected.txt:
205 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
206 * platform/qt/fast/dom/Window/window-properties-expected.txt:
208 2010-05-28 Shu Chang <chang.shu@nokia.com>
212 Remove two junk files not supposed to be in.
214 * canvas/philip/tests/.reportgen.html.swp: Removed.
215 * canvas/philip/tests/.reportgen.js.swp: Removed.
217 2010-05-28 Mikhail Naganov <mnaganov@chromium.org>
219 Reviewed by Yury Semikhatsky.
221 Web Inspector: add Console API for retrieving memory stats
223 Add 'console.memory' property which returns an object. Currently
224 it has two fields: totalHeapSize and usedHeapSize. Later, it can be
225 extended for reporting total browser's memory consumption.
227 https://bugs.webkit.org/show_bug.cgi?id=39840
229 * fast/dom/Window/window-properties-expected.txt:
230 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
231 * platform/qt/fast/dom/Window/window-properties-expected.txt:
233 2010-05-28 Yael Aharon <yael.aharon@nokia.com>
235 Reviewed by Laszlo Gombos.
237 [Qt] Pass all web notification layout tests
238 https://bugs.webkit.org/show_bug.cgi?id=39146
240 * platform/qt/Skipped:
242 2010-05-28 Eric Seidel <eric@webkit.org>
244 Reviewed by Adam Barth.
246 document.write does not work correctly in the HTML5 parser
247 https://bugs.webkit.org/show_bug.cgi?id=39828
249 Add two tests for document.write behavior and update
250 our expected results to remove two parse errors now that
251 document.write is functioning correctly.
253 * html5lib/resources/webkit01.dat:
254 * html5lib/runner-expected-html5.txt:
256 2010-05-27 MORITA Hajime <morrita@google.com>
258 Reviewed by Ojan Vafai.
260 Cursor movement and text selection does not work well if a block is followed by an inline.
261 https://bugs.webkit.org/show_bug.cgi?id=32123
263 RenderInline::setSelectionState() missed selection state
264 propagation for ancestors. This fix pulled
265 RenderBlock::setSelectionState() up to RenderBoxModelObject, to
266 share it with RenderInline.
268 * editing/selection/range-between-block-and-inline.html: Added.
269 * platform/mac/editing/selection/range-between-block-and-inline-expected.checksum: Added.
270 * platform/mac/editing/selection/range-between-block-and-inline-expected.png: Added.
271 * platform/mac/editing/selection/range-between-block-and-inline-expected.txt: Added.
273 2010-05-27 Roland Steiner <rolandsteiner@chromium.org>
275 Reviewed by Tamura Kent.
277 [Chromium] Update chromium test expectations for parseFloat & toNumber tests
278 https://bugs.webkit.org/show_bug.cgi?id=39861
280 Update expectation files.
282 * platform/chromium/fast/js/ToNumber-expected.txt:
283 * platform/chromium/fast/js/parseFloat-expected.txt:
285 2010-05-26 Darin Adler <darin@apple.com>
287 Reviewed by Kent Tamura.
289 Null characters handled incorrectly in ToNumber conversion
290 https://bugs.webkit.org/show_bug.cgi?id=38088
292 * fast/js/ToNumber-expected.txt: Updated for new tests and to
293 expect PASS for two null character tests.
294 * fast/js/ToNumber.js: Added more test cases.
295 * fast/js/parseFloat-expected.txt: Updated for new test case.
296 * fast/js/script-tests/parseFloat.js: Added a test case.
298 2010-05-27 Julie Parent <jparent@chromium.org>
302 Update Chromium expectations for runner.html after r60278.
304 * platform/chromium-mac/html5lib/runner-expected.txt:
305 * platform/chromium-win/html5lib/runner-expected.txt:
307 2010-05-27 Anders Carlsson <andersca@apple.com>
309 Reviewed by Adam Roben.
311 [Qt] REGRESSION(r60258): It broke 10 tests.
312 https://bugs.webkit.org/show_bug.cgi?id=39819
314 Remove tests from the skipped list.
316 * platform/qt/Skipped:
318 2010-05-27 Alexey Proskuryakov <ap@apple.com>
320 https://bugs.webkit.org/show_bug.cgi?id=39852
321 [Qt] fast/encoding/yentest.html fails
323 * platform/Qt/Skipped: Disabling the new tests for backslash transcoding.
325 2010-05-27 Alexey Proskuryakov <ap@apple.com>
327 Reviewed by Shinichiro Hamaji.
329 https://bugs.webkit.org/show_bug.cgi?id=39606
330 Land tests for <rdar://problem/3277733>: \ in JavaScript mishandled when encoding is Japanese
332 * fast/encoding/resources/yentestexternal.js: Added.
333 * fast/encoding/resources/yentestexternal2.js: Added.
334 * fast/encoding/yentest-expected.txt: Added.
335 * fast/encoding/yentest.html: Added.
336 * fast/encoding/yentest2-expected.txt: Added.
337 * fast/encoding/yentest2.html: Added.
339 2010-05-27 Tony Gentilcore <tonyg@chromium.org>
341 Reviewed by Ojan Vafai.
343 Mark some SVG tests as flaky on Windows
344 https://bugs.webkit.org/show_bug.cgi?id=39790
346 The following SVG tests have been failing intermittently on the
347 chromium console for the past 2+ days.
348 - svg/clip-path/clip-path-childs-clipped.svg
349 - svg/clip-path/clip-path-evenodd-nonzero.svg
350 - svg/clip-path/clip-path-text-and-shape.svg
351 - svg/text/text-text-04-t.svg
352 - svg/text/text-text-05-t.svg
354 * platform/chromium/test_expectations.txt:
356 2010-05-26 Jeremy Orlow <jorlow@chromium.org>
358 Reviewed by Steve Block.
360 Clean up IndexedDB layout tests
361 https://bugs.webkit.org/show_bug.cgi?id=39748
363 Split basics.js into a common library plus 2 other tests. This
364 will make it easier to ensure good test coverage as we go forward
365 without too much cut and paste coding. For the most part, each
366 IndexedDB idl file should have its own test in the future (at a
369 Also switching the 'description' portion of the test expectation
370 to reflect the build fix from last night (which breaks the feature).
372 * storage/indexeddb/basics-expected.txt: Removed.
373 * storage/indexeddb/basics.html: Removed.
374 * storage/indexeddb/idb-database-request-expected.txt: Added.
375 * storage/indexeddb/idb-database-request.html: Added.
376 * storage/indexeddb/indexed-database-request-expected.txt: Added.
377 * storage/indexeddb/indexed-database-request.html: Added.
378 * storage/indexeddb/resources/shared.js: Added.
383 (verifySuccessEvent):
385 (unexpectedErrorCallback):
386 * storage/indexeddb/script-tests/TEMPLATE.html:
387 * storage/indexeddb/script-tests/basics.js: Removed.
388 * storage/indexeddb/script-tests/idb-database-request.js: Added.
391 * storage/indexeddb/script-tests/indexed-database-request.js: Added.
395 2010-05-27 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>
397 Reviewed by Brady Eidson.
399 New Layout test for the history.pushState function.
401 The test checks if history.length property is correct after
402 a few pushState calls.
404 history.pushState doesn't work for the first page in a window.
405 https://bugs.webkit.org/show_bug.cgi?id=39418
407 * fast/loader/stateobjects/pushstate-without-history-expected.txt: Added.
408 * fast/loader/stateobjects/pushstate-without-history.html: Added.
410 2010-05-27 Zhenyao Mo <zmo@google.com>
412 Reviewed by Dimitri Glazkov.
414 Implement lazy clearing of renderbuffers
415 https://bugs.webkit.org/show_bug.cgi?id=36248
417 * fast/canvas/webgl/renderbuffer-initialization-expected.txt: Added.
418 * fast/canvas/webgl/renderbuffer-initialization.html: Added.
420 2010-05-27 Hans Wennborg <hans@chromium.org>
422 Reviewed by Alexey Proskuryakov.
424 Increase limit on number of (i)frames from 200 to 1000.
425 https://bugs.webkit.org/show_bug.cgi?id=39427
427 Add layout tests that test the possibility of generating 1000 iframes.
429 * compositing/iframes/lots-of-iframes-expected.txt: Added.
430 * compositing/iframes/lots-of-iframes.html: Added.
431 * compositing/iframes/lots-of-objects-expected.txt: Added.
432 * compositing/iframes/lots-of-objects.html: Added.
434 2010-05-27 Csaba Osztrogonác <ossy@webkit.org>
436 Unreviewed. Add failing tests to the Skipped list temporarily.
438 [Qt] REGRESSION(r60258): It broke 10 tests.
439 https://bugs.webkit.org/show_bug.cgi?id=39819
441 * platform/qt/Skipped:
443 2010-05-27 Eric Seidel <eric@webkit.org>
445 Reviewed by Adam Barth.
447 Add <pre>/<listing> hack to HTML5Lexer to fix the last remaining HTML5 test suite regressions
448 https://bugs.webkit.org/show_bug.cgi?id=39818
450 * html5lib/runner-expected-html5.txt:
452 2010-05-27 Adam Barth <abarth@webkit.org>
454 Reviewed by Eric Seidel.
456 Remove custom webkit runner and update normal runner with our nifty
459 * html5lib/runner-expected.txt:
460 * html5lib/runner.html:
461 * html5lib/webkit-runner-expected-html5.txt: Removed.
462 * html5lib/webkit-runner-expected.txt: Removed.
463 * html5lib/webkit-runner.html: Removed.
465 2010-05-26 Eric Seidel <eric@webkit.org>
467 Reviewed by Adam Barth.
469 Update our expectations now that we're handling external scripts.
471 * html5lib/webkit-runner-expected-html5.txt:
473 2010-05-26 Tony Chang <tony@chromium.org>
475 Not reviewed, skipping new test on gtk.
477 [gtk] skip editing/input/scroll-viewport-page-up-down.html because of missing eventSender methods
478 https://bugs.webkit.org/show_bug.cgi?id=39808
480 * platform/gtk/Skipped:
482 2010-05-26 Zelidrag Hornung <zelidrag@chromium.org>
484 Reviewed by Ojan Vafai.
486 Fixed frame page up/down scrolling calculation. Made sure that the
487 cursor moves with page up/down event. Please note that now for mac
488 editing behavior we will scroll the content to center the cursor on
489 page up/down while other platforms will align the cursor with the top of
491 https://bugs.webkit.org/show_bug.cgi?id=38213
493 * editing/input/option-page-up-down-expected.txt: Fixed page scroll calculation. Now scroll height is calculated only from the visible portion not the entire frame height.
494 * editing/input/option-page-up-down.html: Ditto.
495 * editing/input/scroll-viewport-page-up-down-expected.txt: Scrolling test of contenteditable iframe and div.
496 * editing/input/scroll-viewport-page-up-down.html: Ditto.
497 * editing/resources/contenteditable-iframe-fixed-size-src.html: Resource for the scrolling test above.
498 * platform/mac/editing/selection/25228.html: Change the test to have the cursor on the right edge of the screen. The original test
499 wasn't testing the behavior anymore.
501 2010-05-26 Adam Barth <abarth@webkit.org>
503 Reviewed by Eric Seidel.
505 Fix webkit01.dat resumer tests in HTML5 parser
506 https://bugs.webkit.org/show_bug.cgi?id=39796
508 Update expectations to show massive passage.
510 * html5lib/webkit-resumer-expected-html5.txt:
512 2010-05-26 Adam Barth <abarth@webkit.org>
514 Reviewed by Eric Seidel.
516 Make HTML5 lexer not ASSERT when resuming partial parses
517 https://bugs.webkit.org/show_bug.cgi?id=39755
519 Add a test suite for partial parsing. This test runs all our parsing
520 test cases, but stops and starts the parser at every character in the
521 parse stream to make sure we resume parsing properly. Currently, a
522 bunch of the test cases are commented out, but I'll comment them back
523 in as I get them running.
525 * html5lib/webkit-resumer-expected-html5.txt: Added.
526 * html5lib/webkit-resumer-expected.txt: Added.
527 * html5lib/webkit-resumer.html: Added.
529 2010-05-26 Alexey Proskuryakov <ap@apple.com>
531 Make the test pass on chromium by weakening expectations. It's probably a chromium bug, but
532 the test only practically checks that the height is non-zero, so chromium's 198 is fine
535 * fast/css/custom-font-xheight.html:
537 2010-05-26 Alexey Proskuryakov <ap@apple.com>
539 https://bugs.webkit.org/show_bug.cgi?id=39682
540 <rdar://problem/8026774> REGRESSION: WebKit nightly adding insane height to div at random
542 Without the fix, the height is usually zero, but could also be huge, depending on uninialized
545 * fast/css/custom-font-xheight-expected.txt: Added.
546 * fast/css/custom-font-xheight.html: Added.
547 * platform/mac-tiger/Skipped:
549 2010-05-26 Csaba Osztrogonác <ossy@webkit.org>
551 Unreviewed fix, Qt specific expected file updated after r60235.
553 * platform/qt/fast/dom/Window/window-properties-expected.txt: updated.
555 2010-05-26 Csaba Osztrogonác <ossy@webkit.org>
559 [Qt] media/media-can-play-ogg.html crashes intermittently on the bot
560 https://bugs.webkit.org/show_bug.cgi?id=39481
562 * platform/qt/Skipped: the culprit media/audio-only-video-intrinsic-size.html skipped until fix.
564 2010-05-26 Jessie Berlin <jberlin@webkit.org>
566 Reviewed by Pavel Feldman
568 Bug 31296 - Web Inspector: Should support console.groupCollapsed
569 https://bugs.webkit.org/show_bug.cgi?id=31296
571 * fast/dom/Window/window-properties-expected.txt:
572 Update results to take into account added groupCollapsed function.
574 * inspector/console-tests-expected.txt:
575 * inspector/console-tests.html:
576 Add test for groupCollapsed and its results.
578 2010-05-26 Nikolas Zimmermann <nzimmermann@rim.com>
580 Not reviewed. Add results for svg/hixie/links/003-broken.xml for mac-leopard. All SVG tests pass with --tolerance 0 again for me on Leopard.
582 * platform/mac-leopard/svg/hixie/links/003-broken-expected.checksum: Added.
583 * platform/mac-leopard/svg/hixie/links/003-broken-expected.png: Added.
585 2010-05-26 yael aharon <yael.aharon@nokia.com>
587 Reviewed by Kent Tamura.
589 Support the labels attribute in labelable form controls
590 https://bugs.webkit.org/show_bug.cgi?id=38713
592 Update result for HTMLSelectElement, since it now includes the new attribute "labels"
593 * fast/dom/domListEnumeration-expected.txt:
594 * fast/dom/script-tests/domListEnumeration.js:
596 * fast/forms/labels-add-htmlFor-label-expected.txt: Added.
597 * fast/forms/labels-add-htmlFor-label.html: Added.
598 * fast/forms/labels-add-parent-label-expected.txt: Added.
599 * fast/forms/labels-add-parent-label.html: Added.
600 * fast/forms/labels-change-htmlFor-attribute-expected.txt: Added.
601 * fast/forms/labels-change-htmlFor-attribute.html: Added.
602 * fast/forms/labels-item-index-expected.txt: Added.
603 * fast/forms/labels-item-index.html: Added.
604 * fast/forms/labels-remove-htmlFor-attribute-expected.txt: Added.
605 * fast/forms/labels-remove-htmlFor-attribute.html: Added.
606 * fast/forms/labels-remove-htmlFor-label-expected.txt: Added.
607 * fast/forms/labels-remove-htmlFor-label.html: Added.
608 * fast/forms/labels-remove-parent-label-expected.txt: Added.
609 * fast/forms/labels-remove-parent-label.html: Added.
610 * fast/forms/labels-set-htmlFor-attribute-expected.txt: Added.
611 * fast/forms/labels-set-htmlFor-attribute.html: Added.
612 * fast/forms/script-tests/labels-add-htmlFor-label.js: Added.
613 * fast/forms/script-tests/labels-add-parent-label.js: Added.
614 * fast/forms/script-tests/labels-change-htmlFor-attribute.js: Added.
615 * fast/forms/script-tests/labels-item-index.js: Added.
616 * fast/forms/script-tests/labels-remove-htmlFor-attribute.js: Added.
617 * fast/forms/script-tests/labels-remove-htmlFor-label.js: Added.
618 * fast/forms/script-tests/labels-remove-parent-label.js: Added.
619 * fast/forms/script-tests/labels-set-htmlFor-attribute.js: Added.
621 2010-05-24 Jeremy Orlow <jorlow@chromium.org>
623 Reviewed by Steve Block.
625 Flesh out IDBDatabase
626 https://bugs.webkit.org/show_bug.cgi?id=39602
628 Update the test expectations now that this succeeds.
630 * storage/indexeddb/basics-expected.txt:
632 2010-05-26 Alexander Pavlov <apavlov@chromium.org>
634 Reviewed by Pavel Feldman.
636 Expose CSS rule body start/end offsets in the parent stylesheet
637 https://bugs.webkit.org/show_bug.cgi?id=38906
639 * inspector/resources/styles-source-offsets.css: Added.
641 (/* comment before selector */body.main1/* comment after selector */):
643 * inspector/styles-source-offsets-expected.txt: Added.
644 * inspector/styles-source-offsets.html: Added.
646 2010-05-25 Tony Chang <tony@chromium.org>
648 Not reviewed, adding chromium-mac results. They differ from
649 mac-leopard results because of scollbars.
651 [chromium] add layout test results for mac for fast/multicol/span tests
652 https://bugs.webkit.org/show_bug.cgi?id=39709
654 * platform/chromium-mac/fast/multicol/span/anonymous-style-inheritance-expected.checksum: Added.
655 * platform/chromium-mac/fast/multicol/span/anonymous-style-inheritance-expected.png: Added.
656 * platform/chromium-mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.checksum: Added.
657 * platform/chromium-mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Added.
658 * platform/chromium-mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.checksum: Added.
659 * platform/chromium-mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Added.
660 * platform/chromium-mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.checksum: Added.
661 * platform/chromium-mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Added.
662 * platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.checksum: Added.
663 * platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Added.
664 * platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-expected.checksum: Added.
665 * platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-expected.png: Added.
666 * platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.checksum: Added.
667 * platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Added.
668 * platform/chromium-mac/fast/multicol/span/span-margin-collapsing-expected.checksum: Added.
669 * platform/chromium-mac/fast/multicol/span/span-margin-collapsing-expected.png: Added.
671 2010-05-25 Tony Chang <tony@chromium.org>
673 Not reviewed, just adding chromium and mac-leopard results.
675 add chromium layout test results for fast/multicol/span tests added in r60201
676 https://bugs.webkit.org/show_bug.cgi?id=39707
678 * platform/chromium-linux/fast/multicol/span/anonymous-style-inheritance-expected.checksum: Added.
679 * platform/chromium-linux/fast/multicol/span/anonymous-style-inheritance-expected.png: Added.
680 * platform/chromium-linux/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.checksum: Added.
681 * platform/chromium-linux/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Added.
682 * platform/chromium-linux/fast/multicol/span/span-as-immediate-child-generated-content-expected.checksum: Added.
683 * platform/chromium-linux/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Added.
684 * platform/chromium-linux/fast/multicol/span/span-as-immediate-child-property-removal-expected.checksum: Added.
685 * platform/chromium-linux/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Added.
686 * platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.checksum: Added.
687 * platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Added.
688 * platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-expected.checksum: Added.
689 * platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-expected.png: Added.
690 * platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-removal-expected.checksum: Added.
691 * platform/chromium-linux/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Added.
692 * platform/chromium-linux/fast/multicol/span/span-margin-collapsing-expected.checksum: Added.
693 * platform/chromium-linux/fast/multicol/span/span-margin-collapsing-expected.png: Added.
694 * platform/chromium-win/fast/multicol/span/anonymous-style-inheritance-expected.checksum: Added.
695 * platform/chromium-win/fast/multicol/span/anonymous-style-inheritance-expected.png: Added.
696 * platform/chromium-win/fast/multicol/span/anonymous-style-inheritance-expected.txt: Added.
697 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.checksum: Added.
698 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Added.
699 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: Added.
700 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-generated-content-expected.checksum: Added.
701 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Added.
702 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: Added.
703 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-property-removal-expected.checksum: Added.
704 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Added.
705 * platform/chromium-win/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt: Added.
706 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.checksum: Added.
707 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Added.
708 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: Added.
709 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-expected.checksum: Added.
710 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-expected.png: Added.
711 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-expected.txt: Added.
712 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-removal-expected.checksum: Added.
713 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Added.
714 * platform/chromium-win/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt: Added.
715 * platform/chromium-win/fast/multicol/span/span-margin-collapsing-expected.checksum: Added.
716 * platform/chromium-win/fast/multicol/span/span-margin-collapsing-expected.png: Added.
717 * platform/chromium-win/fast/multicol/span/span-margin-collapsing-expected.txt: Added.
718 * platform/mac-leopard/fast/multicol/span/anonymous-style-inheritance-expected.checksum: Added.
719 * platform/mac-leopard/fast/multicol/span/anonymous-style-inheritance-expected.png: Added.
720 * platform/mac-leopard/fast/multicol/span/anonymous-style-inheritance-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.txt.
721 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.checksum: Added.
722 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Added.
723 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt.
724 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-generated-content-expected.checksum: Added.
725 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Added.
726 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt.
727 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-property-removal-expected.checksum: Added.
728 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Added.
729 * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.txt.
730 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.checksum: Added.
731 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Added.
732 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt.
733 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-expected.checksum: Added.
734 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-expected.png: Added.
735 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt.
736 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-removal-expected.checksum: Added.
737 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Added.
738 * platform/mac-leopard/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.txt.
739 * platform/mac-leopard/fast/multicol/span/span-margin-collapsing-expected.checksum: Added.
740 * platform/mac-leopard/fast/multicol/span/span-margin-collapsing-expected.png: Added.
741 * platform/mac-leopard/fast/multicol/span/span-margin-collapsing-expected.txt: Copied from LayoutTests/platform/mac/fast/multicol/span/span-margin-collapsing-expected.txt.
743 2010-05-25 James Robinson <jamesr@chromium.org>
745 Unreviewed, pixel expectations change only.
747 Move Leopard-specific pixel test results from platform/mac to platform/mac-leopard
748 https://bugs.webkit.org/show_bug.cgi?id=39317
750 This is the first 200 diffs from css1/ and css2.1/.
752 * platform/mac-leopard/css1/basic: Added.
753 * platform/mac-leopard/css1/basic/class_as_selector-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/class_as_selector-expected.checksum.
754 * platform/mac-leopard/css1/basic/class_as_selector-expected.png: Copied from LayoutTests/platform/mac/css1/basic/class_as_selector-expected.png.
755 * platform/mac-leopard/css1/basic/comments-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/comments-expected.checksum.
756 * platform/mac-leopard/css1/basic/comments-expected.png: Copied from LayoutTests/platform/mac/css1/basic/comments-expected.png.
757 * platform/mac-leopard/css1/basic/containment-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/containment-expected.checksum.
758 * platform/mac-leopard/css1/basic/containment-expected.png: Copied from LayoutTests/platform/mac/css1/basic/containment-expected.png.
759 * platform/mac-leopard/css1/basic/contextual_selectors-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/contextual_selectors-expected.checksum.
760 * platform/mac-leopard/css1/basic/contextual_selectors-expected.png: Copied from LayoutTests/platform/mac/css1/basic/contextual_selectors-expected.png.
761 * platform/mac-leopard/css1/basic/grouping-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/grouping-expected.checksum.
762 * platform/mac-leopard/css1/basic/grouping-expected.png: Copied from LayoutTests/platform/mac/css1/basic/grouping-expected.png.
763 * platform/mac-leopard/css1/basic/id_as_selector-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/id_as_selector-expected.checksum.
764 * platform/mac-leopard/css1/basic/id_as_selector-expected.png: Copied from LayoutTests/platform/mac/css1/basic/id_as_selector-expected.png.
765 * platform/mac-leopard/css1/basic/inheritance-expected.checksum: Copied from LayoutTests/platform/mac/css1/basic/inheritance-expected.checksum.
766 * platform/mac-leopard/css1/basic/inheritance-expected.png: Copied from LayoutTests/platform/mac/css1/basic/inheritance-expected.png.
767 * platform/mac-leopard/css1/box_properties: Added.
768 * platform/mac-leopard/css1/box_properties/border-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border-expected.checksum.
769 * platform/mac-leopard/css1/box_properties/border-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border-expected.png.
770 * platform/mac-leopard/css1/box_properties/border_bottom-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom-expected.checksum.
771 * platform/mac-leopard/css1/box_properties/border_bottom-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom-expected.png.
772 * platform/mac-leopard/css1/box_properties/border_bottom_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_inline-expected.checksum.
773 * platform/mac-leopard/css1/box_properties/border_bottom_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_inline-expected.png.
774 * platform/mac-leopard/css1/box_properties/border_bottom_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_width-expected.checksum.
775 * platform/mac-leopard/css1/box_properties/border_bottom_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_width-expected.png.
776 * platform/mac-leopard/css1/box_properties/border_bottom_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_width_inline-expected.checksum.
777 * platform/mac-leopard/css1/box_properties/border_bottom_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_bottom_width_inline-expected.png.
778 * platform/mac-leopard/css1/box_properties/border_color-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_color-expected.checksum.
779 * platform/mac-leopard/css1/box_properties/border_color-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_color-expected.png.
780 * platform/mac-leopard/css1/box_properties/border_color_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_color_inline-expected.checksum.
781 * platform/mac-leopard/css1/box_properties/border_color_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_color_inline-expected.png.
782 * platform/mac-leopard/css1/box_properties/border_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_inline-expected.checksum.
783 * platform/mac-leopard/css1/box_properties/border_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_inline-expected.png.
784 * platform/mac-leopard/css1/box_properties/border_left-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_left-expected.checksum.
785 * platform/mac-leopard/css1/box_properties/border_left-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_left-expected.png.
786 * platform/mac-leopard/css1/box_properties/border_left_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_inline-expected.checksum.
787 * platform/mac-leopard/css1/box_properties/border_left_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_inline-expected.png.
788 * platform/mac-leopard/css1/box_properties/border_left_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_width-expected.checksum.
789 * platform/mac-leopard/css1/box_properties/border_left_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_width-expected.png.
790 * platform/mac-leopard/css1/box_properties/border_left_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_width_inline-expected.checksum.
791 * platform/mac-leopard/css1/box_properties/border_left_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_left_width_inline-expected.png.
792 * platform/mac-leopard/css1/box_properties/border_right-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_right-expected.checksum.
793 * platform/mac-leopard/css1/box_properties/border_right-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_right-expected.png.
794 * platform/mac-leopard/css1/box_properties/border_right_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_inline-expected.checksum.
795 * platform/mac-leopard/css1/box_properties/border_right_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_inline-expected.png.
796 * platform/mac-leopard/css1/box_properties/border_right_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_width-expected.checksum.
797 * platform/mac-leopard/css1/box_properties/border_right_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_width-expected.png.
798 * platform/mac-leopard/css1/box_properties/border_right_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_width_inline-expected.checksum.
799 * platform/mac-leopard/css1/box_properties/border_right_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_right_width_inline-expected.png.
800 * platform/mac-leopard/css1/box_properties/border_style-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_style-expected.checksum.
801 * platform/mac-leopard/css1/box_properties/border_style-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_style-expected.png.
802 * platform/mac-leopard/css1/box_properties/border_style_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_style_inline-expected.checksum.
803 * platform/mac-leopard/css1/box_properties/border_style_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_style_inline-expected.png.
804 * platform/mac-leopard/css1/box_properties/border_top-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_top-expected.checksum.
805 * platform/mac-leopard/css1/box_properties/border_top-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_top-expected.png.
806 * platform/mac-leopard/css1/box_properties/border_top_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_inline-expected.checksum.
807 * platform/mac-leopard/css1/box_properties/border_top_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_inline-expected.png.
808 * platform/mac-leopard/css1/box_properties/border_top_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_width-expected.checksum.
809 * platform/mac-leopard/css1/box_properties/border_top_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_width-expected.png.
810 * platform/mac-leopard/css1/box_properties/border_top_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_width_inline-expected.checksum.
811 * platform/mac-leopard/css1/box_properties/border_top_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_top_width_inline-expected.png.
812 * platform/mac-leopard/css1/box_properties/border_width-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_width-expected.checksum.
813 * platform/mac-leopard/css1/box_properties/border_width-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_width-expected.png.
814 * platform/mac-leopard/css1/box_properties/border_width_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/border_width_inline-expected.checksum.
815 * platform/mac-leopard/css1/box_properties/border_width_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/border_width_inline-expected.png.
816 * platform/mac-leopard/css1/box_properties/clear-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/clear-expected.checksum.
817 * platform/mac-leopard/css1/box_properties/clear-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/clear-expected.png.
818 * platform/mac-leopard/css1/box_properties/clear_float-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/clear_float-expected.checksum.
819 * platform/mac-leopard/css1/box_properties/clear_float-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/clear_float-expected.png.
820 * platform/mac-leopard/css1/box_properties/float-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/float-expected.checksum.
821 * platform/mac-leopard/css1/box_properties/float-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/float-expected.png.
822 * platform/mac-leopard/css1/box_properties/float_elements_in_series-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/float_elements_in_series-expected.checksum.
823 * platform/mac-leopard/css1/box_properties/float_elements_in_series-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/float_elements_in_series-expected.png.
824 * platform/mac-leopard/css1/box_properties/float_on_text_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/float_on_text_elements-expected.checksum.
825 * platform/mac-leopard/css1/box_properties/float_on_text_elements-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/float_on_text_elements-expected.png.
826 * platform/mac-leopard/css1/box_properties/height-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/height-expected.checksum.
827 * platform/mac-leopard/css1/box_properties/height-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/height-expected.png.
828 * platform/mac-leopard/css1/box_properties/margin-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin-expected.checksum.
829 * platform/mac-leopard/css1/box_properties/margin-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin-expected.png.
830 * platform/mac-leopard/css1/box_properties/margin_bottom-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_bottom-expected.checksum.
831 * platform/mac-leopard/css1/box_properties/margin_bottom-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_bottom-expected.png.
832 * platform/mac-leopard/css1/box_properties/margin_bottom_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_bottom_inline-expected.checksum.
833 * platform/mac-leopard/css1/box_properties/margin_bottom_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_bottom_inline-expected.png.
834 * platform/mac-leopard/css1/box_properties/margin_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_inline-expected.checksum.
835 * platform/mac-leopard/css1/box_properties/margin_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_inline-expected.png.
836 * platform/mac-leopard/css1/box_properties/margin_left-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_left-expected.checksum.
837 * platform/mac-leopard/css1/box_properties/margin_left-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_left-expected.png.
838 * platform/mac-leopard/css1/box_properties/margin_left_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_left_inline-expected.checksum.
839 * platform/mac-leopard/css1/box_properties/margin_left_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_left_inline-expected.png.
840 * platform/mac-leopard/css1/box_properties/margin_right-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_right-expected.checksum.
841 * platform/mac-leopard/css1/box_properties/margin_right-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_right-expected.png.
842 * platform/mac-leopard/css1/box_properties/margin_right_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_right_inline-expected.checksum.
843 * platform/mac-leopard/css1/box_properties/margin_right_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_right_inline-expected.png.
844 * platform/mac-leopard/css1/box_properties/margin_top-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_top-expected.checksum.
845 * platform/mac-leopard/css1/box_properties/margin_top-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_top-expected.png.
846 * platform/mac-leopard/css1/box_properties/margin_top_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/margin_top_inline-expected.checksum.
847 * platform/mac-leopard/css1/box_properties/margin_top_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/margin_top_inline-expected.png.
848 * platform/mac-leopard/css1/box_properties/padding-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding-expected.checksum.
849 * platform/mac-leopard/css1/box_properties/padding-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding-expected.png.
850 * platform/mac-leopard/css1/box_properties/padding_bottom-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_bottom-expected.checksum.
851 * platform/mac-leopard/css1/box_properties/padding_bottom-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_bottom-expected.png.
852 * platform/mac-leopard/css1/box_properties/padding_bottom_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_bottom_inline-expected.checksum.
853 * platform/mac-leopard/css1/box_properties/padding_bottom_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_bottom_inline-expected.png.
854 * platform/mac-leopard/css1/box_properties/padding_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_inline-expected.checksum.
855 * platform/mac-leopard/css1/box_properties/padding_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_inline-expected.png.
856 * platform/mac-leopard/css1/box_properties/padding_left-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_left-expected.checksum.
857 * platform/mac-leopard/css1/box_properties/padding_left-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_left-expected.png.
858 * platform/mac-leopard/css1/box_properties/padding_left_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_left_inline-expected.checksum.
859 * platform/mac-leopard/css1/box_properties/padding_left_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_left_inline-expected.png.
860 * platform/mac-leopard/css1/box_properties/padding_right-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_right-expected.checksum.
861 * platform/mac-leopard/css1/box_properties/padding_right-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_right-expected.png.
862 * platform/mac-leopard/css1/box_properties/padding_right_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_right_inline-expected.checksum.
863 * platform/mac-leopard/css1/box_properties/padding_right_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_right_inline-expected.png.
864 * platform/mac-leopard/css1/box_properties/padding_top-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_top-expected.checksum.
865 * platform/mac-leopard/css1/box_properties/padding_top-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_top-expected.png.
866 * platform/mac-leopard/css1/box_properties/padding_top_inline-expected.checksum: Copied from LayoutTests/platform/mac/css1/box_properties/padding_top_inline-expected.checksum.
867 * platform/mac-leopard/css1/box_properties/padding_top_inline-expected.png: Copied from LayoutTests/platform/mac/css1/box_properties/padding_top_inline-expected.png.
868 * platform/mac-leopard/css1/cascade: Added.
869 * platform/mac-leopard/css1/cascade/cascade_order-expected.checksum: Copied from LayoutTests/platform/mac/css1/cascade/cascade_order-expected.checksum.
870 * platform/mac-leopard/css1/cascade/cascade_order-expected.png: Copied from LayoutTests/platform/mac/css1/cascade/cascade_order-expected.png.
871 * platform/mac-leopard/css1/cascade/important-expected.checksum: Copied from LayoutTests/platform/mac/css1/cascade/important-expected.checksum.
872 * platform/mac-leopard/css1/cascade/important-expected.png: Copied from LayoutTests/platform/mac/css1/cascade/important-expected.png.
873 * platform/mac-leopard/css1/classification: Added.
874 * platform/mac-leopard/css1/classification/display-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/display-expected.checksum.
875 * platform/mac-leopard/css1/classification/display-expected.png: Copied from LayoutTests/platform/mac/css1/classification/display-expected.png.
876 * platform/mac-leopard/css1/classification/list_style-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/list_style-expected.checksum.
877 * platform/mac-leopard/css1/classification/list_style-expected.png: Copied from LayoutTests/platform/mac/css1/classification/list_style-expected.png.
878 * platform/mac-leopard/css1/classification/list_style_image-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/list_style_image-expected.checksum.
879 * platform/mac-leopard/css1/classification/list_style_image-expected.png: Copied from LayoutTests/platform/mac/css1/classification/list_style_image-expected.png.
880 * platform/mac-leopard/css1/classification/list_style_position-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/list_style_position-expected.checksum.
881 * platform/mac-leopard/css1/classification/list_style_position-expected.png: Copied from LayoutTests/platform/mac/css1/classification/list_style_position-expected.png.
882 * platform/mac-leopard/css1/classification/list_style_type-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/list_style_type-expected.checksum.
883 * platform/mac-leopard/css1/classification/list_style_type-expected.png: Copied from LayoutTests/platform/mac/css1/classification/list_style_type-expected.png.
884 * platform/mac-leopard/css1/classification/white_space-expected.checksum: Copied from LayoutTests/platform/mac/css1/classification/white_space-expected.checksum.
885 * platform/mac-leopard/css1/classification/white_space-expected.png: Copied from LayoutTests/platform/mac/css1/classification/white_space-expected.png.
886 * platform/mac-leopard/css1/color_and_background: Added.
887 * platform/mac-leopard/css1/color_and_background/background-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background-expected.checksum.
888 * platform/mac-leopard/css1/color_and_background/background-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background-expected.png.
889 * platform/mac-leopard/css1/color_and_background/background_attachment-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_attachment-expected.checksum.
890 * platform/mac-leopard/css1/color_and_background/background_attachment-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_attachment-expected.png.
891 * platform/mac-leopard/css1/color_and_background/background_color-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_color-expected.checksum.
892 * platform/mac-leopard/css1/color_and_background/background_color-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_color-expected.png.
893 * platform/mac-leopard/css1/color_and_background/background_image-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_image-expected.checksum.
894 * platform/mac-leopard/css1/color_and_background/background_image-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_image-expected.png.
895 * platform/mac-leopard/css1/color_and_background/background_position-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_position-expected.checksum.
896 * platform/mac-leopard/css1/color_and_background/background_position-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_position-expected.png.
897 * platform/mac-leopard/css1/color_and_background/background_repeat-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/background_repeat-expected.checksum.
898 * platform/mac-leopard/css1/color_and_background/background_repeat-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/background_repeat-expected.png.
899 * platform/mac-leopard/css1/color_and_background/color-expected.checksum: Copied from LayoutTests/platform/mac/css1/color_and_background/color-expected.checksum.
900 * platform/mac-leopard/css1/color_and_background/color-expected.png: Copied from LayoutTests/platform/mac/css1/color_and_background/color-expected.png.
901 * platform/mac-leopard/css1/font_properties: Added.
902 * platform/mac-leopard/css1/font_properties/font-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font-expected.checksum.
903 * platform/mac-leopard/css1/font_properties/font-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font-expected.png.
904 * platform/mac-leopard/css1/font_properties/font_size-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font_size-expected.checksum.
905 * platform/mac-leopard/css1/font_properties/font_size-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font_size-expected.png.
906 * platform/mac-leopard/css1/font_properties/font_style-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font_style-expected.checksum.
907 * platform/mac-leopard/css1/font_properties/font_style-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font_style-expected.png.
908 * platform/mac-leopard/css1/font_properties/font_weight-expected.checksum: Copied from LayoutTests/platform/mac/css1/font_properties/font_weight-expected.checksum.
909 * platform/mac-leopard/css1/font_properties/font_weight-expected.png: Copied from LayoutTests/platform/mac/css1/font_properties/font_weight-expected.png.
910 * platform/mac-leopard/css1/formatting_model: Added.
911 * platform/mac-leopard/css1/formatting_model/canvas-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/canvas-expected.checksum.
912 * platform/mac-leopard/css1/formatting_model/canvas-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/canvas-expected.png.
913 * platform/mac-leopard/css1/formatting_model/floating_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/floating_elements-expected.checksum.
914 * platform/mac-leopard/css1/formatting_model/floating_elements-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/floating_elements-expected.png.
915 * platform/mac-leopard/css1/formatting_model/height_of_lines-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/height_of_lines-expected.checksum.
916 * platform/mac-leopard/css1/formatting_model/height_of_lines-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/height_of_lines-expected.png.
917 * platform/mac-leopard/css1/formatting_model/horizontal_formatting-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/horizontal_formatting-expected.checksum.
918 * platform/mac-leopard/css1/formatting_model/horizontal_formatting-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/horizontal_formatting-expected.png.
919 * platform/mac-leopard/css1/formatting_model/inline_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/inline_elements-expected.checksum.
920 * platform/mac-leopard/css1/formatting_model/inline_elements-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/inline_elements-expected.png.
921 * platform/mac-leopard/css1/formatting_model/replaced_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/replaced_elements-expected.checksum.
922 * platform/mac-leopard/css1/formatting_model/replaced_elements-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/replaced_elements-expected.png.
923 * platform/mac-leopard/css1/formatting_model/vertical_formatting-expected.checksum: Copied from LayoutTests/platform/mac/css1/formatting_model/vertical_formatting-expected.checksum.
924 * platform/mac-leopard/css1/formatting_model/vertical_formatting-expected.png: Copied from LayoutTests/platform/mac/css1/formatting_model/vertical_formatting-expected.png.
925 * platform/mac-leopard/css1/pseudo: Added.
926 * platform/mac-leopard/css1/pseudo/anchor-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/anchor-expected.checksum.
927 * platform/mac-leopard/css1/pseudo/anchor-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/anchor-expected.png.
928 * platform/mac-leopard/css1/pseudo/firstletter-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/firstletter-expected.checksum.
929 * platform/mac-leopard/css1/pseudo/firstletter-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/firstletter-expected.png.
930 * platform/mac-leopard/css1/pseudo/firstline-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/firstline-expected.checksum.
931 * platform/mac-leopard/css1/pseudo/firstline-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/firstline-expected.png.
932 * platform/mac-leopard/css1/pseudo/multiple_pseudo_elements-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/multiple_pseudo_elements-expected.checksum.
933 * platform/mac-leopard/css1/pseudo/multiple_pseudo_elements-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/multiple_pseudo_elements-expected.png.
934 * platform/mac-leopard/css1/pseudo/pseudo_elements_in_selectors-expected.checksum: Copied from LayoutTests/platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.checksum.
935 * platform/mac-leopard/css1/pseudo/pseudo_elements_in_selectors-expected.png: Copied from LayoutTests/platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.png.
936 * platform/mac-leopard/css1/text_properties/letter_spacing-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/letter_spacing-expected.checksum.
937 * platform/mac-leopard/css1/text_properties/letter_spacing-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/letter_spacing-expected.png.
938 * platform/mac-leopard/css1/text_properties/line_height-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/line_height-expected.checksum.
939 * platform/mac-leopard/css1/text_properties/line_height-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/line_height-expected.png.
940 * platform/mac-leopard/css1/text_properties/text_align-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/text_align-expected.checksum.
941 * platform/mac-leopard/css1/text_properties/text_align-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/text_align-expected.png.
942 * platform/mac-leopard/css1/text_properties/text_decoration-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/text_decoration-expected.checksum.
943 * platform/mac-leopard/css1/text_properties/text_decoration-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/text_decoration-expected.png.
944 * platform/mac-leopard/css1/text_properties/text_indent-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/text_indent-expected.checksum.
945 * platform/mac-leopard/css1/text_properties/text_indent-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/text_indent-expected.png.
946 * platform/mac-leopard/css1/text_properties/vertical_align-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/vertical_align-expected.checksum.
947 * platform/mac-leopard/css1/text_properties/vertical_align-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/vertical_align-expected.png.
948 * platform/mac-leopard/css1/text_properties/word_spacing-expected.checksum: Copied from LayoutTests/platform/mac/css1/text_properties/word_spacing-expected.checksum.
949 * platform/mac-leopard/css1/text_properties/word_spacing-expected.png: Copied from LayoutTests/platform/mac/css1/text_properties/word_spacing-expected.png.
950 * platform/mac-leopard/css1/units: Added.
951 * platform/mac-leopard/css1/units/color_units-expected.checksum: Copied from LayoutTests/platform/mac/css1/units/color_units-expected.checksum.
952 * platform/mac-leopard/css1/units/color_units-expected.png: Copied from LayoutTests/platform/mac/css1/units/color_units-expected.png.
953 * platform/mac-leopard/css1/units/length_units-expected.checksum: Copied from LayoutTests/platform/mac/css1/units/length_units-expected.checksum.
954 * platform/mac-leopard/css1/units/length_units-expected.png: Copied from LayoutTests/platform/mac/css1/units/length_units-expected.png.
955 * platform/mac-leopard/css1/units/percentage_units-expected.checksum: Copied from LayoutTests/platform/mac/css1/units/percentage_units-expected.checksum.
956 * platform/mac-leopard/css1/units/percentage_units-expected.png: Copied from LayoutTests/platform/mac/css1/units/percentage_units-expected.png.
957 * platform/mac-leopard/css1/units/urls-expected.checksum: Copied from LayoutTests/platform/mac/css1/units/urls-expected.checksum.
958 * platform/mac-leopard/css1/units/urls-expected.png: Copied from LayoutTests/platform/mac/css1/units/urls-expected.png.
959 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-00-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.checksum.
960 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.png.
961 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-01-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.checksum.
962 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.png.
963 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.checksum.
964 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.png.
965 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-03-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.checksum.
966 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.png.
967 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-04-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.checksum.
968 * platform/mac-leopard/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.png.
969 * platform/mac-leopard/css2.1/t0402-syntax-01-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-01-f-expected.checksum.
970 * platform/mac-leopard/css2.1/t0402-syntax-01-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-01-f-expected.png.
971 * platform/mac-leopard/css2.1/t0402-syntax-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-02-f-expected.checksum.
972 * platform/mac-leopard/css2.1/t0402-syntax-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-02-f-expected.png.
973 * platform/mac-leopard/css2.1/t0402-syntax-03-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-03-f-expected.checksum.
974 * platform/mac-leopard/css2.1/t0402-syntax-03-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-03-f-expected.png.
975 * platform/mac-leopard/css2.1/t0402-syntax-04-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-04-f-expected.checksum.
976 * platform/mac-leopard/css2.1/t0402-syntax-04-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-04-f-expected.png.
977 * platform/mac-leopard/css2.1/t0402-syntax-05-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-05-f-expected.checksum.
978 * platform/mac-leopard/css2.1/t0402-syntax-05-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-05-f-expected.png.
979 * platform/mac-leopard/css2.1/t0402-syntax-06-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-06-f-expected.checksum.
980 * platform/mac-leopard/css2.1/t0402-syntax-06-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0402-syntax-06-f-expected.png.
981 * platform/mac-leopard/css2.1/t0505-c16-descendant-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-00-e-expected.checksum.
982 * platform/mac-leopard/css2.1/t0505-c16-descendant-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-00-e-expected.png.
983 * platform/mac-leopard/css2.1/t0505-c16-descendant-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-01-e-expected.checksum.
984 * platform/mac-leopard/css2.1/t0505-c16-descendant-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-01-e-expected.png.
985 * platform/mac-leopard/css2.1/t0505-c16-descendant-02-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-02-e-expected.checksum.
986 * platform/mac-leopard/css2.1/t0505-c16-descendant-02-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0505-c16-descendant-02-e-expected.png.
987 * platform/mac-leopard/css2.1/t0509-c15-ids-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0509-c15-ids-00-a-expected.checksum.
988 * platform/mac-leopard/css2.1/t0509-c15-ids-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0509-c15-ids-00-a-expected.png.
989 * platform/mac-leopard/css2.1/t0509-c15-ids-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0509-c15-ids-01-e-expected.checksum.
990 * platform/mac-leopard/css2.1/t0509-c15-ids-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0509-c15-ids-01-e-expected.png.
991 * platform/mac-leopard/css2.1/t0509-id-sel-syntax-01-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.checksum.
992 * platform/mac-leopard/css2.1/t0509-id-sel-syntax-01-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.png.
993 * platform/mac-leopard/css2.1/t0509-id-sel-syntax-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.checksum.
994 * platform/mac-leopard/css2.1/t0509-id-sel-syntax-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.png.
995 * platform/mac-leopard/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.checksum.
996 * platform/mac-leopard/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png.
997 * platform/mac-leopard/css2.1/t0511-c21-pseud-anch-00-e-i-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.checksum.
998 * platform/mac-leopard/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png.
999 * platform/mac-leopard/css2.1/t0511-c21-pseud-link-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.checksum.
1000 * platform/mac-leopard/css2.1/t0511-c21-pseud-link-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.png.
1001 * platform/mac-leopard/css2.1/t0511-c21-pseud-link-01-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.checksum.
1002 * platform/mac-leopard/css2.1/t0511-c21-pseud-link-01-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.png.
1003 * platform/mac-leopard/css2.1/t0511-c21-pseud-link-02-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.checksum.
1004 * platform/mac-leopard/css2.1/t0511-c21-pseud-link-02-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.png.
1005 * platform/mac-leopard/css2.1/t0511-c21-pseud-link-03-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.checksum.
1006 * platform/mac-leopard/css2.1/t0511-c21-pseud-link-03-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.png.
1007 * platform/mac-leopard/css2.1/t0602-c13-inh-underlin-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.checksum.
1008 * platform/mac-leopard/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.png.
1009 * platform/mac-leopard/css2.1/t0602-c13-inheritance-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.checksum.
1010 * platform/mac-leopard/css2.1/t0602-c13-inheritance-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.png.
1011 * platform/mac-leopard/css2.1/t0602-inherit-bdr-pad-b-00-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.checksum.
1012 * platform/mac-leopard/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.png.
1013 * platform/mac-leopard/css2.1/t0603-c11-import-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0603-c11-import-00-b-expected.checksum.
1014 * platform/mac-leopard/css2.1/t0603-c11-import-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0603-c11-import-00-b-expected.png.
1015 * platform/mac-leopard/css2.1/t0801-c412-hz-box-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.checksum.
1016 * platform/mac-leopard/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.png.
1017 * platform/mac-leopard/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.checksum.
1018 * platform/mac-leopard/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png.
1019 * platform/mac-leopard/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.checksum.
1020 * platform/mac-leopard/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png.
1021 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.checksum.
1022 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png.
1023 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.checksum.
1024 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png.
1025 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.checksum.
1026 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png.
1027 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.checksum.
1028 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png.
1029 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.checksum.
1030 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png.
1031 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.checksum.
1032 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png.
1033 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.checksum.
1034 * platform/mac-leopard/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png.
1035 * platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.checksum.
1036 * platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png.
1037 * platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.checksum.
1038 * platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png.
1039 * platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-02-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.checksum.
1040 * platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.png.
1041 * platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-03-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.checksum.
1042 * platform/mac-leopard/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.png.
1043 * platform/mac-leopard/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.checksum.
1044 * platform/mac-leopard/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png.
1045 * platform/mac-leopard/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.checksum.
1046 * platform/mac-leopard/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png.
1047 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.checksum.
1048 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png.
1049 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.checksum.
1050 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png.
1051 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.checksum.
1052 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png.
1053 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.checksum.
1054 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png.
1055 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.checksum.
1056 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png.
1057 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.checksum.
1058 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png.
1059 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.checksum.
1060 * platform/mac-leopard/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png.
1061 * platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.checksum.
1062 * platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png.
1063 * platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.checksum.
1064 * platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png.
1065 * platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-02-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.checksum.
1066 * platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-02-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.png.
1067 * platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-03-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.checksum.
1068 * platform/mac-leopard/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.png.
1069 * platform/mac-leopard/css2.1/t0803-c5505-imrgn-00-a-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.checksum.
1070 * platform/mac-leopard/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png.
1071 * platform/mac-leopard/css2.1/t0803-c5505-mrgn-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.checksum.
1072 * platform/mac-leopard/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png.
1073 * platform/mac-leopard/css2.1/t0803-c5505-mrgn-01-e-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.checksum.
1074 * platform/mac-leopard/css2.1/t0803-c5505-mrgn-01-e-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.png.
1075 * platform/mac-leopard/css2.1/t0803-c5505-mrgn-02-c-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.checksum.
1076 * platform/mac-leopard/css2.1/t0803-c5505-mrgn-02-c-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.png.
1077 * platform/mac-leopard/css2.1/t0803-c5505-mrgn-03-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.checksum.
1078 * platform/mac-leopard/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png.
1079 * platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.checksum.
1080 * platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png.
1081 * platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.checksum.
1082 * platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png.
1083 * platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.checksum.
1084 * platform/mac-leopard/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png.
1085 * platform/mac-leopard/css2.1/t0804-c5506-padn-t-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.checksum.
1086 * platform/mac-leopard/css2.1/t0804-c5506-padn-t-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.png.
1087 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.checksum.
1088 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png.
1089 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.checksum.
1090 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png.
1091 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.checksum.
1092 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png.
1093 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.checksum.
1094 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png.
1095 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.checksum.
1096 * platform/mac-leopard/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png.
1097 * platform/mac-leopard/css2.1/t0804-c5507-padn-r-00-c-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.checksum.
1098 * platform/mac-leopard/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png.
1099 * platform/mac-leopard/css2.1/t0804-c5507-padn-r-01-c-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.checksum.
1100 * platform/mac-leopard/css2.1/t0804-c5507-padn-r-01-c-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.png.
1101 * platform/mac-leopard/css2.1/t0804-c5507-padn-r-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.checksum.
1102 * platform/mac-leopard/css2.1/t0804-c5507-padn-r-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.png.
1103 * platform/mac-leopard/css2.1/t0804-c5507-padn-r-03-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.checksum.
1104 * platform/mac-leopard/css2.1/t0804-c5507-padn-r-03-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.png.
1105 * platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.checksum.
1106 * platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png.
1107 * platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.checksum.
1108 * platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png.
1109 * platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.checksum.
1110 * platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png.
1111 * platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.checksum.
1112 * platform/mac-leopard/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png.
1113 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.checksum.
1114 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png.
1115 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.checksum.
1116 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png.
1117 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.checksum.
1118 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png.
1119 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.checksum.
1120 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png.
1121 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.checksum.
1122 * platform/mac-leopard/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png.
1123 * platform/mac-leopard/css2.1/t0804-c5509-padn-l-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.checksum.
1124 * platform/mac-leopard/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png.
1125 * platform/mac-leopard/css2.1/t0804-c5509-padn-l-01-b-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.checksum.
1126 * platform/mac-leopard/css2.1/t0804-c5509-padn-l-01-b-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.png.
1127 * platform/mac-leopard/css2.1/t0804-c5509-padn-l-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.checksum.
1128 * platform/mac-leopard/css2.1/t0804-c5509-padn-l-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.png.
1129 * platform/mac-leopard/css2.1/t0804-c5509-padn-l-03-f-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.checksum.
1130 * platform/mac-leopard/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.png.
1131 * platform/mac-leopard/css2.1/t0804-c5510-ipadn-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.checksum.
1132 * platform/mac-leopard/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png.
1133 * platform/mac-leopard/css2.1/t0804-c5510-padn-00-b-ag-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.checksum.
1134 * platform/mac-leopard/css2.1/t0804-c5510-padn-00-b-ag-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.png.
1135 * platform/mac-leopard/css2.1/t0804-c5510-padn-01-e-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.checksum.
1136 * platform/mac-leopard/css2.1/t0804-c5510-padn-01-e-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.png.
1137 * platform/mac-leopard/css2.1/t0804-c5510-padn-02-f-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-02-f-expected.checksum.
1138 * platform/mac-leopard/css2.1/t0804-c5510-padn-02-f-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0804-c5510-padn-02-f-expected.png.
1139 * platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.checksum.
1140 * platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.png.
1141 * platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.checksum.
1142 * platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png.
1143 * platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.checksum.
1144 * platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.png.
1145 * platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-03-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.checksum.
1146 * platform/mac-leopard/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.png.
1147 * platform/mac-leopard/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.checksum.
1148 * platform/mac-leopard/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png.
1149 * platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-00-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.checksum.
1150 * platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.png.
1151 * platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.checksum.
1152 * platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png.
1153 * platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-02-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.checksum.
1154 * platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-02-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.png.
1155 * platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-03-b-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.checksum.
1156 * platform/mac-leopard/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.png.
1157 * platform/mac-leopard/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.checksum.
1158 * platform/mac-leopard/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Copied from LayoutTests/platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png.
1159 * platform/mac-leopard/css2.1/t09-c5526c-display-00-e-expected.checksum: Copied from LayoutTests/platform/mac/css2.1/t09-c5526c-display-00-e-expected.checksum.
1160 * platform/mac-leopard/css2.1/t09-c5526c-display-00-e-expected.png: Copied from LayoutTests/platform/mac/css2.1/t09-c5526c-display-00-e-expected.png.
1161 * platform/mac/css1/basic/class_as_selector-expected.checksum: Replaced.
1162 * platform/mac/css1/basic/class_as_selector-expected.png: Replaced.
1163 * platform/mac/css1/basic/comments-expected.checksum: Replaced.
1164 * platform/mac/css1/basic/comments-expected.png: Replaced.
1165 * platform/mac/css1/basic/containment-expected.checksum: Replaced.
1166 * platform/mac/css1/basic/containment-expected.png: Replaced.
1167 * platform/mac/css1/basic/contextual_selectors-expected.checksum: Replaced.
1168 * platform/mac/css1/basic/contextual_selectors-expected.png: Replaced.
1169 * platform/mac/css1/basic/grouping-expected.checksum: Replaced.
1170 * platform/mac/css1/basic/grouping-expected.png: Replaced.
1171 * platform/mac/css1/basic/id_as_selector-expected.checksum: Replaced.
1172 * platform/mac/css1/basic/id_as_selector-expected.png: Replaced.
1173 * platform/mac/css1/basic/inheritance-expected.checksum: Replaced.
1174 * platform/mac/css1/basic/inheritance-expected.png: Replaced.
1175 * platform/mac/css1/box_properties/border-expected.checksum: Replaced.
1176 * platform/mac/css1/box_properties/border-expected.png: Replaced.
1177 * platform/mac/css1/box_properties/border_bottom-expected.checksum: Replaced.
1178 * platform/mac/css1/box_properties/border_bottom-expected.png: Replaced.
1179 * platform/mac/css1/box_properties/border_bottom_inline-expected.checksum: Replaced.
1180 * platform/mac/css1/box_properties/border_bottom_inline-expected.png: Replaced.
1181 * platform/mac/css1/box_properties/border_bottom_width-expected.checksum: Replaced.
1182 * platform/mac/css1/box_properties/border_bottom_width-expected.png: Replaced.
1183 * platform/mac/css1/box_properties/border_bottom_width_inline-expected.checksum: Replaced.
1184 * platform/mac/css1/box_properties/border_bottom_width_inline-expected.png: Replaced.
1185 * platform/mac/css1/box_properties/border_color-expected.checksum: Replaced.
1186 * platform/mac/css1/box_properties/border_color-expected.png: Replaced.
1187 * platform/mac/css1/box_properties/border_color_inline-expected.checksum: Replaced.
1188 * platform/mac/css1/box_properties/border_color_inline-expected.png: Replaced.
1189 * platform/mac/css1/box_properties/border_inline-expected.checksum: Replaced.
1190 * platform/mac/css1/box_properties/border_inline-expected.png: Replaced.
1191 * platform/mac/css1/box_properties/border_left-expected.checksum: Replaced.
1192 * platform/mac/css1/box_properties/border_left-expected.png: Replaced.
1193 * platform/mac/css1/box_properties/border_left_inline-expected.checksum: Replaced.
1194 * platform/mac/css1/box_properties/border_left_inline-expected.png: Replaced.
1195 * platform/mac/css1/box_properties/border_left_width-expected.checksum: Replaced.
1196 * platform/mac/css1/box_properties/border_left_width-expected.png: Replaced.
1197 * platform/mac/css1/box_properties/border_left_width_inline-expected.checksum: Replaced.
1198 * platform/mac/css1/box_properties/border_left_width_inline-expected.png: Replaced.
1199 * platform/mac/css1/box_properties/border_right-expected.checksum: Replaced.
1200 * platform/mac/css1/box_properties/border_right-expected.png: Replaced.
1201 * platform/mac/css1/box_properties/border_right_inline-expected.checksum: Replaced.
1202 * platform/mac/css1/box_properties/border_right_inline-expected.png: Replaced.
1203 * platform/mac/css1/box_properties/border_right_width-expected.checksum: Replaced.
1204 * platform/mac/css1/box_properties/border_right_width-expected.png: Replaced.
1205 * platform/mac/css1/box_properties/border_right_width_inline-expected.checksum: Replaced.
1206 * platform/mac/css1/box_properties/border_right_width_inline-expected.png: Replaced.
1207 * platform/mac/css1/box_properties/border_style-expected.checksum: Replaced.
1208 * platform/mac/css1/box_properties/border_style-expected.png: Replaced.
1209 * platform/mac/css1/box_properties/border_style_inline-expected.checksum: Replaced.
1210 * platform/mac/css1/box_properties/border_style_inline-expected.png: Replaced.
1211 * platform/mac/css1/box_properties/border_top-expected.checksum: Replaced.
1212 * platform/mac/css1/box_properties/border_top-expected.png: Replaced.
1213 * platform/mac/css1/box_properties/border_top_inline-expected.checksum: Replaced.
1214 * platform/mac/css1/box_properties/border_top_inline-expected.png: Replaced.
1215 * platform/mac/css1/box_properties/border_top_width-expected.checksum: Replaced.
1216 * platform/mac/css1/box_properties/border_top_width-expected.png: Replaced.
1217 * platform/mac/css1/box_properties/border_top_width_inline-expected.checksum: Replaced.
1218 * platform/mac/css1/box_properties/border_top_width_inline-expected.png: Replaced.
1219 * platform/mac/css1/box_properties/border_width-expected.checksum: Replaced.
1220 * platform/mac/css1/box_properties/border_width-expected.png: Replaced.
1221 * platform/mac/css1/box_properties/border_width_inline-expected.checksum: Replaced.
1222 * platform/mac/css1/box_properties/border_width_inline-expected.png: Replaced.
1223 * platform/mac/css1/box_properties/clear-expected.checksum: Replaced.
1224 * platform/mac/css1/box_properties/clear-expected.png: Replaced.
1225 * platform/mac/css1/box_properties/clear_float-expected.checksum: Replaced.
1226 * platform/mac/css1/box_properties/clear_float-expected.png: Replaced.
1227 * platform/mac/css1/box_properties/float-expected.checksum: Replaced.
1228 * platform/mac/css1/box_properties/float-expected.png: Replaced.
1229 * platform/mac/css1/box_properties/float_elements_in_series-expected.checksum: Replaced.
1230 * platform/mac/css1/box_properties/float_elements_in_series-expected.png: Replaced.
1231 * platform/mac/css1/box_properties/float_on_text_elements-expected.checksum: Replaced.
1232 * platform/mac/css1/box_properties/float_on_text_elements-expected.png: Replaced.
1233 * platform/mac/css1/box_properties/height-expected.checksum: Replaced.
1234 * platform/mac/css1/box_properties/height-expected.png: Replaced.
1235 * platform/mac/css1/box_properties/margin-expected.checksum: Replaced.
1236 * platform/mac/css1/box_properties/margin-expected.png: Replaced.
1237 * platform/mac/css1/box_properties/margin_bottom-expected.checksum: Replaced.
1238 * platform/mac/css1/box_properties/margin_bottom-expected.png: Replaced.
1239 * platform/mac/css1/box_properties/margin_bottom_inline-expected.checksum: Replaced.
1240 * platform/mac/css1/box_properties/margin_bottom_inline-expected.png: Replaced.
1241 * platform/mac/css1/box_properties/margin_inline-expected.checksum: Replaced.
1242 * platform/mac/css1/box_properties/margin_inline-expected.png: Replaced.
1243 * platform/mac/css1/box_properties/margin_left-expected.checksum: Replaced.
1244 * platform/mac/css1/box_properties/margin_left-expected.png: Replaced.
1245 * platform/mac/css1/box_properties/margin_left_inline-expected.checksum: Replaced.
1246 * platform/mac/css1/box_properties/margin_left_inline-expected.png: Replaced.
1247 * platform/mac/css1/box_properties/margin_right-expected.checksum: Replaced.
1248 * platform/mac/css1/box_properties/margin_right-expected.png: Replaced.
1249 * platform/mac/css1/box_properties/margin_right_inline-expected.checksum: Replaced.
1250 * platform/mac/css1/box_properties/margin_right_inline-expected.png: Replaced.
1251 * platform/mac/css1/box_properties/margin_top-expected.checksum: Replaced.
1252 * platform/mac/css1/box_properties/margin_top-expected.png: Replaced.
1253 * platform/mac/css1/box_properties/margin_top_inline-expected.checksum: Replaced.
1254 * platform/mac/css1/box_properties/margin_top_inline-expected.png: Replaced.
1255 * platform/mac/css1/box_properties/padding-expected.checksum: Replaced.
1256 * platform/mac/css1/box_properties/padding-expected.png: Replaced.
1257 * platform/mac/css1/box_properties/padding_bottom-expected.checksum: Replaced.
1258 * platform/mac/css1/box_properties/padding_bottom-expected.png: Replaced.
1259 * platform/mac/css1/box_properties/padding_bottom_inline-expected.checksum: Replaced.
1260 * platform/mac/css1/box_properties/padding_bottom_inline-expected.png: Replaced.
1261 * platform/mac/css1/box_properties/padding_inline-expected.checksum: Replaced.
1262 * platform/mac/css1/box_properties/padding_inline-expected.png: Replaced.
1263 * platform/mac/css1/box_properties/padding_left-expected.checksum: Replaced.
1264 * platform/mac/css1/box_properties/padding_left-expected.png: Replaced.
1265 * platform/mac/css1/box_properties/padding_left_inline-expected.checksum: Replaced.
1266 * platform/mac/css1/box_properties/padding_left_inline-expected.png: Replaced.
1267 * platform/mac/css1/box_properties/padding_right-expected.checksum: Replaced.
1268 * platform/mac/css1/box_properties/padding_right-expected.png: Replaced.
1269 * platform/mac/css1/box_properties/padding_right_inline-expected.checksum: Replaced.
1270 * platform/mac/css1/box_properties/padding_right_inline-expected.png: Replaced.
1271 * platform/mac/css1/box_properties/padding_top-expected.checksum: Replaced.
1272 * platform/mac/css1/box_properties/padding_top-expected.png: Replaced.
1273 * platform/mac/css1/box_properties/padding_top_inline-expected.checksum: Replaced.
1274 * platform/mac/css1/box_properties/padding_top_inline-expected.png: Replaced.
1275 * platform/mac/css1/cascade/cascade_order-expected.checksum: Replaced.
1276 * platform/mac/css1/cascade/cascade_order-expected.png: Replaced.
1277 * platform/mac/css1/cascade/important-expected.checksum: Replaced.
1278 * platform/mac/css1/cascade/important-expected.png: Replaced.
1279 * platform/mac/css1/classification/display-expected.checksum: Replaced.
1280 * platform/mac/css1/classification/display-expected.png: Replaced.
1281 * platform/mac/css1/classification/list_style-expected.checksum: Replaced.
1282 * platform/mac/css1/classification/list_style-expected.png: Replaced.
1283 * platform/mac/css1/classification/list_style_image-expected.checksum: Replaced.
1284 * platform/mac/css1/classification/list_style_image-expected.png: Replaced.
1285 * platform/mac/css1/classification/list_style_position-expected.checksum: Replaced.
1286 * platform/mac/css1/classification/list_style_position-expected.png: Replaced.
1287 * platform/mac/css1/classification/list_style_type-expected.checksum: Replaced.
1288 * platform/mac/css1/classification/list_style_type-expected.png: Replaced.
1289 * platform/mac/css1/classification/white_space-expected.checksum: Replaced.
1290 * platform/mac/css1/classification/white_space-expected.png: Replaced.
1291 * platform/mac/css1/color_and_background/background-expected.checksum: Replaced.
1292 * platform/mac/css1/color_and_background/background-expected.png: Replaced.
1293 * platform/mac/css1/color_and_background/background_attachment-expected.checksum: Replaced.
1294 * platform/mac/css1/color_and_background/background_attachment-expected.png: Replaced.
1295 * platform/mac/css1/color_and_background/background_color-expected.checksum: Replaced.
1296 * platform/mac/css1/color_and_background/background_color-expected.png: Replaced.
1297 * platform/mac/css1/color_and_background/background_image-expected.checksum: Replaced.
1298 * platform/mac/css1/color_and_background/background_image-expected.png: Replaced.
1299 * platform/mac/css1/color_and_background/background_position-expected.checksum: Replaced.
1300 * platform/mac/css1/color_and_background/background_position-expected.png: Replaced.
1301 * platform/mac/css1/color_and_background/background_repeat-expected.checksum: Replaced.
1302 * platform/mac/css1/color_and_background/background_repeat-expected.png: Replaced.
1303 * platform/mac/css1/color_and_background/color-expected.checksum: Replaced.
1304 * platform/mac/css1/color_and_background/color-expected.png: Replaced.
1305 * platform/mac/css1/font_properties/font-expected.checksum: Replaced.
1306 * platform/mac/css1/font_properties/font-expected.png: Replaced.
1307 * platform/mac/css1/font_properties/font_size-expected.checksum: Replaced.
1308 * platform/mac/css1/font_properties/font_size-expected.png: Replaced.
1309 * platform/mac/css1/font_properties/font_style-expected.checksum: Replaced.
1310 * platform/mac/css1/font_properties/font_style-expected.png: Replaced.
1311 * platform/mac/css1/font_properties/font_weight-expected.checksum: Replaced.
1312 * platform/mac/css1/font_properties/font_weight-expected.png: Replaced.
1313 * platform/mac/css1/formatting_model/canvas-expected.checksum: Replaced.
1314 * platform/mac/css1/formatting_model/canvas-expected.png: Replaced.
1315 * platform/mac/css1/formatting_model/floating_elements-expected.checksum: Replaced.
1316 * platform/mac/css1/formatting_model/floating_elements-expected.png: Replaced.
1317 * platform/mac/css1/formatting_model/height_of_lines-expected.checksum: Replaced.
1318 * platform/mac/css1/formatting_model/height_of_lines-expected.png: Replaced.
1319 * platform/mac/css1/formatting_model/horizontal_formatting-expected.checksum: Replaced.
1320 * platform/mac/css1/formatting_model/horizontal_formatting-expected.png: Replaced.
1321 * platform/mac/css1/formatting_model/inline_elements-expected.checksum: Replaced.
1322 * platform/mac/css1/formatting_model/inline_elements-expected.png: Replaced.
1323 * platform/mac/css1/formatting_model/replaced_elements-expected.checksum: Replaced.
1324 * platform/mac/css1/formatting_model/replaced_elements-expected.png: Replaced.
1325 * platform/mac/css1/formatting_model/vertical_formatting-expected.checksum: Replaced.
1326 * platform/mac/css1/formatting_model/vertical_formatting-expected.png: Replaced.
1327 * platform/mac/css1/pseudo/anchor-expected.checksum: Replaced.
1328 * platform/mac/css1/pseudo/anchor-expected.png: Replaced.
1329 * platform/mac/css1/pseudo/firstletter-expected.checksum: Replaced.
1330 * platform/mac/css1/pseudo/firstletter-expected.png: Replaced.
1331 * platform/mac/css1/pseudo/firstline-expected.checksum: Replaced.
1332 * platform/mac/css1/pseudo/firstline-expected.png: Replaced.
1333 * platform/mac/css1/pseudo/multiple_pseudo_elements-expected.checksum: Replaced.
1334 * platform/mac/css1/pseudo/multiple_pseudo_elements-expected.png: Replaced.
1335 * platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.checksum: Replaced.
1336 * platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.png: Replaced.
1337 * platform/mac/css1/text_properties/letter_spacing-expected.checksum: Replaced.
1338 * platform/mac/css1/text_properties/letter_spacing-expected.png: Replaced.
1339 * platform/mac/css1/text_properties/line_height-expected.checksum: Replaced.
1340 * platform/mac/css1/text_properties/line_height-expected.png: Replaced.
1341 * platform/mac/css1/text_properties/text_align-expected.checksum: Replaced.
1342 * platform/mac/css1/text_properties/text_align-expected.png: Replaced.
1343 * platform/mac/css1/text_properties/text_decoration-expected.checksum: Replaced.
1344 * platform/mac/css1/text_properties/text_decoration-expected.png: Replaced.
1345 * platform/mac/css1/text_properties/text_indent-expected.checksum: Replaced.
1346 * platform/mac/css1/text_properties/text_indent-expected.png: Replaced.
1347 * platform/mac/css1/text_properties/vertical_align-expected.checksum: Replaced.
1348 * platform/mac/css1/text_properties/vertical_align-expected.png: Replaced.
1349 * platform/mac/css1/text_properties/word_spacing-expected.checksum: Replaced.
1350 * platform/mac/css1/text_properties/word_spacing-expected.png: Replaced.
1351 * platform/mac/css1/units/color_units-expected.checksum: Replaced.
1352 * platform/mac/css1/units/color_units-expected.png: Replaced.
1353 * platform/mac/css1/units/length_units-expected.checksum: Replaced.
1354 * platform/mac/css1/units/length_units-expected.png: Replaced.
1355 * platform/mac/css1/units/percentage_units-expected.checksum: Replaced.
1356 * platform/mac/css1/units/percentage_units-expected.png: Replaced.
1357 * platform/mac/css1/units/urls-expected.checksum: Replaced.
1358 * platform/mac/css1/units/urls-expected.png: Replaced.
1359 * platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.checksum: Replaced.
1360 * platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Replaced.
1361 * platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.checksum: Replaced.
1362 * platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Replaced.
1363 * platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.checksum: Replaced.
1364 * platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Replaced.
1365 * platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.checksum: Replaced.
1366 * platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Replaced.
1367 * platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.checksum: Replaced.
1368 * platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Replaced.
1369 * platform/mac/css2.1/t0402-syntax-01-f-expected.checksum: Replaced.
1370 * platform/mac/css2.1/t0402-syntax-01-f-expected.png: Replaced.
1371 * platform/mac/css2.1/t0402-syntax-02-f-expected.checksum: Replaced.
1372 * platform/mac/css2.1/t0402-syntax-02-f-expected.png: Replaced.
1373 * platform/mac/css2.1/t0402-syntax-03-f-expected.checksum: Replaced.
1374 * platform/mac/css2.1/t0402-syntax-03-f-expected.png: Replaced.
1375 * platform/mac/css2.1/t0402-syntax-04-f-expected.checksum: Replaced.
1376 * platform/mac/css2.1/t0402-syntax-04-f-expected.png: Replaced.
1377 * platform/mac/css2.1/t0402-syntax-05-f-expected.checksum: Replaced.
1378 * platform/mac/css2.1/t0402-syntax-05-f-expected.png: Replaced.
1379 * platform/mac/css2.1/t0402-syntax-06-f-expected.checksum: Replaced.
1380 * platform/mac/css2.1/t0402-syntax-06-f-expected.png: Replaced.
1381 * platform/mac/css2.1/t0505-c16-descendant-00-e-expected.checksum: Replaced.
1382 * platform/mac/css2.1/t0505-c16-descendant-00-e-expected.png: Replaced.
1383 * platform/mac/css2.1/t0505-c16-descendant-01-e-expected.checksum: Replaced.
1384 * platform/mac/css2.1/t0505-c16-descendant-01-e-expected.png: Replaced.
1385 * platform/mac/css2.1/t0505-c16-descendant-02-e-expected.checksum: Replaced.
1386 * platform/mac/css2.1/t0505-c16-descendant-02-e-expected.png: Replaced.
1387 * platform/mac/css2.1/t0509-c15-ids-00-a-expected.checksum: Replaced.
1388 * platform/mac/css2.1/t0509-c15-ids-00-a-expected.png: Replaced.
1389 * platform/mac/css2.1/t0509-c15-ids-01-e-expected.checksum: Replaced.
1390 * platform/mac/css2.1/t0509-c15-ids-01-e-expected.png: Replaced.
1391 * platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.checksum: Replaced.
1392 * platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.png: Replaced.
1393 * platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.checksum: Replaced.
1394 * platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.png: Replaced.
1395 * platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.checksum: Replaced.
1396 * platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Replaced.
1397 * platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.checksum: Replaced.
1398 * platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Replaced.
1399 * platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.checksum: Replaced.
1400 * platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.png: Replaced.
1401 * platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.checksum: Replaced.
1402 * platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.png: Replaced.
1403 * platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.checksum: Replaced.
1404 * platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.png: Replaced.
1405 * platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.checksum: Replaced.
1406 * platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.png: Replaced.
1407 * platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.checksum: Replaced.
1408 * platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Replaced.
1409 * platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.checksum: Replaced.
1410 * platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.png: Replaced.
1411 * platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.checksum: Replaced.
1412 * platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Replaced.
1413 * platform/mac/css2.1/t0603-c11-import-00-b-expected.checksum: Replaced.
1414 * platform/mac/css2.1/t0603-c11-import-00-b-expected.png: Replaced.
1415 * platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.checksum: Replaced.
1416 * platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Replaced.
1417 * platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.checksum: Replaced.
1418 * platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Replaced.
1419 * platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.checksum: Replaced.
1420 * platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Replaced.
1421 * platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.checksum: Replaced.
1422 * platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Replaced.
1423 * platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.checksum: Replaced.
1424 * platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Replaced.
1425 * platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.checksum: Replaced.
1426 * platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Replaced.
1427 * platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.checksum: Replaced.
1428 * platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png: Replaced.
1429 * platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.checksum: Replaced.
1430 * platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Replaced.
1431 * platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.checksum: Replaced.
1432 * platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Replaced.
1433 * platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.checksum: Replaced.
1434 * platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Replaced.
1435 * platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.checksum: Replaced.
1436 * platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Replaced.
1437 * platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.checksum: Replaced.
1438 * platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png: Replaced.
1439 * platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.checksum: Replaced.
1440 * platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: Replaced.
1441 * platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.checksum: Replaced.
1442 * platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Replaced.
1443 * platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.checksum: Replaced.
1444 * platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Replaced.
1445 * platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.checksum: Replaced.
1446 * platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Replaced.
1447 * platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.checksum: Replaced.
1448 * platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Replaced.
1449 * platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.checksum: Replaced.
1450 * platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Replaced.
1451 * platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.checksum: Replaced.
1452 * platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Replaced.
1453 * platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.checksum: Replaced.
1454 * platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png: Replaced.
1455 * platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.checksum: Replaced.
1456 * platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Replaced.
1457 * platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.checksum: Replaced.
1458 * platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Replaced.
1459 * platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.checksum: Replaced.
1460 * platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Replaced.
1461 * platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.checksum: Replaced.
1462 * platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Replaced.
1463 * platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.checksum: Replaced.
1464 * platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png: Replaced.
1465 * platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.checksum: Replaced.
1466 * platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.png: Replaced.
1467 * platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.checksum: Replaced.
1468 * platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Replaced.
1469 * platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.checksum: Replaced.
1470 * platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Replaced.
1471 * platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.checksum: Replaced.
1472 * platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Replaced.
1473 * platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.checksum: Replaced.
1474 * platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.png: Replaced.
1475 * platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.checksum: Replaced.
1476 * platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.png: Replaced.
1477 * platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.checksum: Replaced.
1478 * platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png: Replaced.
1479 * platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.checksum: Replaced.
1480 * platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Replaced.
1481 * platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.checksum: Replaced.
1482 * platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Replaced.
1483 * platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.checksum: Replaced.
1484 * platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Replaced.
1485 * platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.checksum: Replaced.
1486 * platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.png: Replaced.
1487 * platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.checksum: Replaced.
1488 * platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Replaced.
1489 * platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.checksum: Replaced.
1490 * platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Replaced.
1491 * platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.checksum: Replaced.
1492 * platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Replaced.
1493 * platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.checksum: Replaced.
1494 * platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png: Replaced.
1495 * platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.checksum: Replaced.
1496 * platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Replaced.
1497 * platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.checksum: Replaced.
1498 * platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Replaced.
1499 * platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.checksum: Replaced.
1500 * platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.png: Replaced.
1501 * platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.checksum: Replaced.
1502 * platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.png: Replaced.
1503 * platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.checksum: Replaced.
1504 * platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.png: Replaced.
1505 * platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.checksum: Replaced.
1506 * platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Replaced.
1507 * platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.checksum: Replaced.
1508 * platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Replaced.
1509 * platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.checksum: Replaced.
1510 * platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Replaced.
1511 * platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.checksum: Replaced.
1512 * platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png: Replaced.
1513 * platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.checksum: Replaced.
1514 * platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Replaced.
1515 * platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.checksum: Replaced.
1516 * platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Replaced.
1517 * platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.checksum: Replaced.
1518 * platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Replaced.
1519 * platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.checksum: Replaced.
1520 * platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png: Replaced.
1521 * platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.checksum: Replaced.
1522 * platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Replaced.
1523 * platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.checksum: Replaced.
1524 * platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Replaced.
1525 * platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.checksum: Replaced.
1526 * platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.png: Replaced.
1527 * platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.checksum: Replaced.
1528 * platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.png: Replaced.
1529 * platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.checksum: Replaced.
1530 * platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Replaced.
1531 * platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.checksum: Replaced.
1532 * platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Replaced.
1533 * platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.checksum: Replaced.
1534 * platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.png: Replaced.
1535 * platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.checksum: Replaced.
1536 * platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.png: Replaced.
1537 * platform/mac/css2.1/t0804-c5510-padn-02-f-expected.checksum: Replaced.
1538 * platform/mac/css2.1/t0804-c5510-padn-02-f-expected.png: Replaced.
1539 * platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.checksum: Replaced.
1540 * platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Replaced.
1541 * platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.checksum: Replaced.
1542 * platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Replaced.
1543 * platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.checksum: Replaced.
1544 * platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.png: Replaced.
1545 * platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.checksum: Replaced.
1546 * platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Replaced.
1547 * platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.checksum: Replaced.
1548 * platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Replaced.
1549 * platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.checksum: Replaced.
1550 * platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Replaced.
1551 * platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.checksum: Replaced.
1552 * platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Replaced.
1553 * platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.checksum: Replaced.
1554 * platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.png: Replaced.
1555 * platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.checksum: Replaced.
1556 * platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Replaced.
1557 * platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.checksum: Replaced.
1558 * platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Replaced.
1559 * platform/mac/css2.1/t09-c5526c-display-00-e-expected.checksum: Replaced.
1560 * platform/mac/css2.1/t09-c5526c-display-00-e-expected.png: Replaced.
1562 2010-05-25 James Robinson <jamesr@chromium.org>
1564 Unreviewed pixel expectations change
1566 Move Leopard-specific pixel test results from platform/mac to platform/mac-leopard
1567 https://bugs.webkit.org/show_bug.cgi?id=39317
1569 Moves leopard-specific pixel test expectations for tests in tables/mozilla to
1570 platform/mac-leopard and adds new snow leopard expectations to platform/mac.
1571 This is the second batch (after 60185) of of updates for pixel diffs <0.1%
1572 in the LayoutTests/tables/ directory.
1574 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_center-expected.checksum.
1575 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_center-expected.png.
1576 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_char-expected.checksum.
1577 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_char-expected.png.
1578 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.checksum.
1579 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.png.
1580 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_left-expected.checksum.
1581 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_left-expected.png.
1582 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_right-expected.checksum.
1583 * platform/mac-leopard/tables/mozilla/marvin/tbody_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_align_right-expected.png.
1584 * platform/mac-leopard/tables/mozilla/marvin/tbody_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_char-expected.checksum.
1585 * platform/mac-leopard/tables/mozilla/marvin/tbody_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_char-expected.png.
1586 * platform/mac-leopard/tables/mozilla/marvin/tbody_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.checksum.
1587 * platform/mac-leopard/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.png.
1588 * platform/mac-leopard/tables/mozilla/marvin/tbody_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.checksum.
1589 * platform/mac-leopard/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.png.
1590 * platform/mac-leopard/tables/mozilla/marvin/tbody_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.checksum.
1591 * platform/mac-leopard/tables/mozilla/marvin/tbody_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.png.
1592 * platform/mac-leopard/tables/mozilla/marvin/tbody_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.checksum.
1593 * platform/mac-leopard/tables/mozilla/marvin/tbody_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.png.
1594 * platform/mac-leopard/tables/mozilla/marvin/td_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.checksum.
1595 * platform/mac-leopard/tables/mozilla/marvin/td_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.png.
1596 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.checksum.
1597 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.png.
1598 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.checksum.
1599 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.png.
1600 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.checksum.
1601 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.png.
1602 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.checksum.
1603 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.png.
1604 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.checksum.
1605 * platform/mac-leopard/tables/mozilla/marvin/tfoot_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.png.
1606 * platform/mac-leopard/tables/mozilla/marvin/tfoot_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_char-expected.checksum.
1607 * platform/mac-leopard/tables/mozilla/marvin/tfoot_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_char-expected.png.
1608 * platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.checksum.
1609 * platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.png.
1610 * platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.checksum.
1611 * platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.png.
1612 * platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.checksum.
1613 * platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.png.
1614 * platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.checksum.
1615 * platform/mac-leopard/tables/mozilla/marvin/tfoot_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.png.
1616 * platform/mac-leopard/tables/mozilla/marvin/thead_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_center-expected.checksum.
1617 * platform/mac-leopard/tables/mozilla/marvin/thead_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_center-expected.png.
1618 * platform/mac-leopard/tables/mozilla/marvin/thead_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_char-expected.checksum.
1619 * platform/mac-leopard/tables/mozilla/marvin/thead_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_char-expected.png.
1620 * platform/mac-leopard/tables/mozilla/marvin/thead_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_justify-expected.checksum.
1621 * platform/mac-leopard/tables/mozilla/marvin/thead_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_justify-expected.png.
1622 * platform/mac-leopard/tables/mozilla/marvin/thead_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_left-expected.checksum.
1623 * platform/mac-leopard/tables/mozilla/marvin/thead_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_left-expected.png.
1624 * platform/mac-leopard/tables/mozilla/marvin/thead_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_right-expected.checksum.
1625 * platform/mac-leopard/tables/mozilla/marvin/thead_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_align_right-expected.png.
1626 * platform/mac-leopard/tables/mozilla/marvin/thead_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_char-expected.checksum.
1627 * platform/mac-leopard/tables/mozilla/marvin/thead_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_char-expected.png.
1628 * platform/mac-leopard/tables/mozilla/marvin/thead_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.checksum.
1629 * platform/mac-leopard/tables/mozilla/marvin/thead_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.png.
1630 * platform/mac-leopard/tables/mozilla/marvin/thead_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.checksum.
1631 * platform/mac-leopard/tables/mozilla/marvin/thead_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.png.
1632 * platform/mac-leopard/tables/mozilla/marvin/thead_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.checksum.
1633 * platform/mac-leopard/tables/mozilla/marvin/thead_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.png.
1634 * platform/mac-leopard/tables/mozilla/marvin/thead_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_top-expected.checksum.
1635 * platform/mac-leopard/tables/mozilla/marvin/thead_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/thead_valign_top-expected.png.
1636 * platform/mac-leopard/tables/mozilla/marvin/tr_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.checksum.
1637 * platform/mac-leopard/tables/mozilla/marvin/tr_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.png.
1638 * platform/mac-leopard/tables/mozilla/marvin/x_col_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.checksum.
1639 * platform/mac-leopard/tables/mozilla/marvin/x_col_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.png.
1640 * platform/mac-leopard/tables/mozilla/marvin/x_col_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.checksum.
1641 * platform/mac-leopard/tables/mozilla/marvin/x_col_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.png.
1642 * platform/mac-leopard/tables/mozilla/marvin/x_col_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.checksum.
1643 * platform/mac-leopard/tables/mozilla/marvin/x_col_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.png.
1644 * platform/mac-leopard/tables/mozilla/marvin/x_col_width_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.checksum.
1645 * platform/mac-leopard/tables/mozilla/marvin/x_col_width_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.png.
1646 * platform/mac-leopard/tables/mozilla/marvin/x_col_width_rel-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.checksum.
1647 * platform/mac-leopard/tables/mozilla/marvin/x_col_width_rel-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.png.
1648 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.checksum.
1649 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.png.
1650 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.checksum.
1651 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png.
1652 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.checksum.
1653 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png.
1654 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_width_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.checksum.
1655 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.png.
1656 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_width_rel-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.checksum.
1657 * platform/mac-leopard/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.png.
1658 * platform/mac-leopard/tables/mozilla/marvin/x_table-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table-expected.checksum.
1659 * platform/mac-leopard/tables/mozilla/marvin/x_table-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table-expected.png.
1660 * platform/mac-leopard/tables/mozilla/marvin/x_table_bgcolor_name-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.checksum.
1661 * platform/mac-leopard/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.png.
1662 * platform/mac-leopard/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.checksum.
1663 * platform/mac-leopard/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png.
1664 * platform/mac-leopard/tables/mozilla/marvin/x_table_border-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border-expected.checksum.
1665 * platform/mac-leopard/tables/mozilla/marvin/x_table_border-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border-expected.png.
1666 * platform/mac-leopard/tables/mozilla/marvin/x_table_border_none-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border_none-expected.checksum.
1667 * platform/mac-leopard/tables/mozilla/marvin/x_table_border_none-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border_none-expected.png.
1668 * platform/mac-leopard/tables/mozilla/marvin/x_table_border_px-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border_px-expected.checksum.
1669 * platform/mac-leopard/tables/mozilla/marvin/x_table_border_px-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_border_px-expected.png.
1670 * platform/mac-leopard/tables/mozilla/marvin/x_table_frame_void-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.checksum.
1671 * platform/mac-leopard/tables/mozilla/marvin/x_table_frame_void-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.png.
1672 * platform/mac-leopard/tables/mozilla/marvin/x_table_rules_groups-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.checksum.
1673 * platform/mac-leopard/tables/mozilla/marvin/x_table_rules_groups-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.png.
1674 * platform/mac-leopard/tables/mozilla/marvin/x_table_rules_none-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.checksum.
1675 * platform/mac-leopard/tables/mozilla/marvin/x_table_rules_none-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.png.
1676 * platform/mac-leopard/tables/mozilla/marvin/x_table_width_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.checksum.
1677 * platform/mac-leopard/tables/mozilla/marvin/x_table_width_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.png.
1678 * platform/mac-leopard/tables/mozilla/marvin/x_table_width_px-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_width_px-expected.checksum.
1679 * platform/mac-leopard/tables/mozilla/marvin/x_table_width_px-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_table_width_px-expected.png.
1680 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.checksum.
1681 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.png.
1682 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum.
1683 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.png.
1684 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.checksum.
1685 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png.
1686 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.checksum.
1687 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png.
1688 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.checksum.
1689 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.png.
1690 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.checksum.
1691 * platform/mac-leopard/tables/mozilla/marvin/x_tbody_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.png.
1692 * platform/mac-leopard/tables/mozilla/marvin/x_td_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_center-expected.checksum.
1693 * platform/mac-leopard/tables/mozilla/marvin/x_td_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_center-expected.png.
1694 * platform/mac-leopard/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.checksum.
1695 * platform/mac-leopard/tables/mozilla/marvin/x_td_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.png.
1696 * platform/mac-leopard/tables/mozilla/marvin/x_td_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_left-expected.checksum.
1697 * platform/mac-leopard/tables/mozilla/marvin/x_td_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_left-expected.png.
1698 * platform/mac-leopard/tables/mozilla/marvin/x_td_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_right-expected.checksum.
1699 * platform/mac-leopard/tables/mozilla/marvin/x_td_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_align_right-expected.png.
1700 * platform/mac-leopard/tables/mozilla/marvin/x_td_bgcolor_name-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.checksum.
1701 * platform/mac-leopard/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.png.
1702 * platform/mac-leopard/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.checksum.
1703 * platform/mac-leopard/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png.
1704 * platform/mac-leopard/tables/mozilla/marvin/x_td_height-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_height-expected.checksum.
1705 * platform/mac-leopard/tables/mozilla/marvin/x_td_height-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_height-expected.png.
1706 * platform/mac-leopard/tables/mozilla/marvin/x_td_nowrap-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.checksum.
1707 * platform/mac-leopard/tables/mozilla/marvin/x_td_nowrap-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.png.
1708 * platform/mac-leopard/tables/mozilla/marvin/x_td_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.checksum.
1709 * platform/mac-leopard/tables/mozilla/marvin/x_td_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.png.
1710 * platform/mac-leopard/tables/mozilla/marvin/x_td_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.checksum.
1711 * platform/mac-leopard/tables/mozilla/marvin/x_td_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.png.
1712 * platform/mac-leopard/tables/mozilla/marvin/x_td_width-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_width-expected.checksum.
1713 * platform/mac-leopard/tables/mozilla/marvin/x_td_width-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_td_width-expected.png.
1714 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.checksum.
1715 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.png.
1716 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum.
1717 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.png.
1718 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.checksum.
1719 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png.
1720 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.checksum.
1721 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png.
1722 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.checksum.
1723 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png.
1724 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.checksum.
1725 * platform/mac-leopard/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.png.
1726 * platform/mac-leopard/tables/mozilla/marvin/x_th_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_center-expected.checksum.
1727 * platform/mac-leopard/tables/mozilla/marvin/x_th_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_center-expected.png.
1728 * platform/mac-leopard/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.checksum.
1729 * platform/mac-leopard/tables/mozilla/marvin/x_th_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.png.
1730 * platform/mac-leopard/tables/mozilla/marvin/x_th_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_left-expected.checksum.
1731 * platform/mac-leopard/tables/mozilla/marvin/x_th_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_left-expected.png.
1732 * platform/mac-leopard/tables/mozilla/marvin/x_th_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_right-expected.checksum.
1733 * platform/mac-leopard/tables/mozilla/marvin/x_th_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_align_right-expected.png.
1734 * platform/mac-leopard/tables/mozilla/marvin/x_th_bgcolor_name-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.checksum.
1735 * platform/mac-leopard/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.png.
1736 * platform/mac-leopard/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.checksum.
1737 * platform/mac-leopard/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png.
1738 * platform/mac-leopard/tables/mozilla/marvin/x_th_nowrap-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.checksum.
1739 * platform/mac-leopard/tables/mozilla/marvin/x_th_nowrap-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.png.
1740 * platform/mac-leopard/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum.
1741 * platform/mac-leopard/tables/mozilla/marvin/x_th_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.png.
1742 * platform/mac-leopard/tables/mozilla/marvin/x_th_width-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_width-expected.checksum.
1743 * platform/mac-leopard/tables/mozilla/marvin/x_th_width-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_th_width-expected.png.
1744 * platform/mac-leopard/tables/mozilla/marvin/x_thead_align_char-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.checksum.
1745 * platform/mac-leopard/tables/mozilla/marvin/x_thead_align_char-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.png.
1746 * platform/mac-leopard/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.checksum.
1747 * platform/mac-leopard/tables/mozilla/marvin/x_thead_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.png.
1748 * platform/mac-leopard/tables/mozilla/marvin/x_thead_class-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_class-expected.checksum.
1749 * platform/mac-leopard/tables/mozilla/marvin/x_thead_class-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_class-expected.png.
1750 * platform/mac-leopard/tables/mozilla/marvin/x_thead_id-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_id-expected.checksum.
1751 * platform/mac-leopard/tables/mozilla/marvin/x_thead_id-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_id-expected.png.
1752 * platform/mac-leopard/tables/mozilla/marvin/x_thead_style-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_style-expected.checksum.
1753 * platform/mac-leopard/tables/mozilla/marvin/x_thead_style-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_style-expected.png.
1754 * platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.checksum.
1755 * platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.png.
1756 * platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.checksum.
1757 * platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.png.
1758 * platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.checksum.
1759 * platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.png.
1760 * platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.checksum.
1761 * platform/mac-leopard/tables/mozilla/marvin/x_thead_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.png.
1762 * platform/mac-leopard/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.checksum.
1763 * platform/mac-leopard/tables/mozilla/marvin/x_tr_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.png.
1764 * platform/mac-leopard/tables/mozilla/marvin/x_tr_bgcolor_name-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.checksum.
1765 * platform/mac-leopard/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png.
1766 * platform/mac-leopard/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.checksum.
1767 * platform/mac-leopard/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png.
1768 * platform/mac-leopard/tables/mozilla/marvin/x_tr_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.checksum.
1769 * platform/mac-leopard/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.png.
1770 * platform/mac-leopard/tables/mozilla/marvin/x_tr_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.checksum.
1771 * platform/mac-leopard/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.png.
1772 * platform/mac-leopard/tables/mozilla/other: Added.
1773 * platform/mac-leopard/tables/mozilla/other/cell_widths-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/cell_widths-expected.checksum.
1774 * platform/mac-leopard/tables/mozilla/other/cell_widths-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/cell_widths-expected.png.
1775 * platform/mac-leopard/tables/mozilla/other/cellspacing-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/cellspacing-expected.checksum.
1776 * platform/mac-leopard/tables/mozilla/other/cellspacing-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/cellspacing-expected.png.
1777 * platform/mac-leopard/tables/mozilla/other/nested2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/nested2-expected.checksum.
1778 * platform/mac-leopard/tables/mozilla/other/nested2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/nested2-expected.png.
1779 * platform/mac-leopard/tables/mozilla/other/nestedTables-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/nestedTables-expected.checksum.
1780 * platform/mac-leopard/tables/mozilla/other/nestedTables-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/nestedTables-expected.png.
1781 * platform/mac-leopard/tables/mozilla/other/padding-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/padding-expected.checksum.
1782 * platform/mac-leopard/tables/mozilla/other/padding-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/padding-expected.png.
1783 * platform/mac-leopard/tables/mozilla/other/test3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/test3-expected.checksum.
1784 * platform/mac-leopard/tables/mozilla/other/test3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/test3-expected.png.
1785 * platform/mac-leopard/tables/mozilla/other/test6-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/test6-expected.checksum.
1786 * platform/mac-leopard/tables/mozilla/other/test6-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/test6-expected.png.
1787 * platform/mac-leopard/tables/mozilla/other/wa_table_thtd_rowspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.checksum.
1788 * platform/mac-leopard/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.png.
1789 * platform/mac-leopard/tables/mozilla_expected_failures: Added.
1790 * platform/mac-leopard/tables/mozilla_expected_failures/bugs: Added.
1791 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/97619-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.checksum.
1792 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/97619-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.png.
1793 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1010-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.checksum.
1794 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1010-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.png.
1795 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum.
1796 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.png.
1797 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug101759-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.checksum.
1798 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug101759-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.png.
1799 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum.
1800 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.png.
1801 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum.
1802 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png.
1803 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum.
1804 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.png.
1805 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum.
1806 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1128-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.png.
1807 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug11331-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.checksum.
1808 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug11331-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.png.
1809 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug11945-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.checksum.
1810 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug11945-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.png.
1811 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug131020-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.checksum.
1812 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png.
1813 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum.
1814 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png.
1815 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug14489-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.checksum.
1816 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug14489-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.png.
1817 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum.
1818 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png.
1819 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug17826-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.checksum.
1820 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug17826-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.png.
1821 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug18770-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.checksum.
1822 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug18770-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.png.
1823 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug21518-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.checksum.
1824 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug21518-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.png.
1825 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug22122-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.checksum.
1826 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug22122-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.png.
1827 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum.
1828 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png.
1829 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug25707-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.checksum.
1830 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug25707-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.png.
1831 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum.
1832 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png.
1833 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-18-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.checksum.
1834 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png.
1835 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.checksum.
1836 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png.
1837 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug32205-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.checksum.
1838 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png.
1839 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug32205-4-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.checksum.
1840 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png.
1841 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug42043-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.checksum.
1842 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug42043-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.png.
1843 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug4294-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.checksum.
1844 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug4294-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.png.
1845 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug47163-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.checksum.
1846 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug47163-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.png.
1847 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug51000-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.checksum.
1848 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug51000-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.png.
1849 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug56024-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.checksum.
1850 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.png.
1851 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug59252-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.checksum.
1852 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug59252-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.png.
1853 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug61042-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.checksum.
1854 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png.
1855 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug61042-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.checksum.
1856 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png.
1857 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug73629-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.checksum.
1858 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug73629-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.png.
1859 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum.
1860 * platform/mac-leopard/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.png.
1861 * platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders: Added.
1862 * platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum.
1863 * platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png.
1864 * platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum.
1865 * platform/mac-leopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png.
1866 * platform/mac-leopard/tables/mozilla_expected_failures/core: Added.
1867 * platform/mac-leopard/tables/mozilla_expected_failures/core/backgrounds-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.checksum.
1868 * platform/mac-leopard/tables/mozilla_expected_failures/core/backgrounds-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.png.
1869 * platform/mac-leopard/tables/mozilla_expected_failures/core/captions1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions1-expected.checksum.
1870 * platform/mac-leopard/tables/mozilla_expected_failures/core/captions1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions1-expected.png.
1871 * platform/mac-leopard/tables/mozilla_expected_failures/core/captions2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions2-expected.checksum.
1872 * platform/mac-leopard/tables/mozilla_expected_failures/core/captions2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions2-expected.png.
1873 * platform/mac-leopard/tables/mozilla_expected_failures/core/captions3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions3-expected.checksum.
1874 * platform/mac-leopard/tables/mozilla_expected_failures/core/captions3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/captions3-expected.png.
1875 * platform/mac-leopard/tables/mozilla_expected_failures/core/col_span2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.checksum.
1876 * platform/mac-leopard/tables/mozilla_expected_failures/core/col_span2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.png.
1877 * platform/mac-leopard/tables/mozilla_expected_failures/core/columns-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/columns-expected.checksum.
1878 * platform/mac-leopard/tables/mozilla_expected_failures/core/columns-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/columns-expected.png.
1879 * platform/mac-leopard/tables/mozilla_expected_failures/core/conflicts-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.checksum.
1880 * platform/mac-leopard/tables/mozilla_expected_failures/core/conflicts-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.png.
1881 * platform/mac-leopard/tables/mozilla_expected_failures/core/standards1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/standards1-expected.checksum.
1882 * platform/mac-leopard/tables/mozilla_expected_failures/core/standards1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/core/standards1-expected.png.
1883 * platform/mac-leopard/tables/mozilla_expected_failures/marvin: Added.
1884 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum.
1885 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png.
1886 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum.
1887 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png.
1888 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum.
1889 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png.
1890 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum.
1891 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png.
1892 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum.
1893 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png.
1894 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum.
1895 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png.
1896 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum.
1897 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png.
1898 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum.
1899 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png.
1900 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.checksum.
1901 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png.
1902 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.checksum.
1903 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png.
1904 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.checksum.
1905 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png.
1906 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.checksum.
1907 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png.
1908 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.checksum.
1909 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png.
1910 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.checksum.
1911 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png.
1912 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.checksum.
1913 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png.
1914 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.checksum.
1915 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png.
1916 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.checksum.
1917 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png.
1918 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.checksum.
1919 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png.
1920 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.checksum.
1921 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png.
1922 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.checksum.
1923 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png.
1924 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.checksum.
1925 * platform/mac-leopard/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png.
1926 * platform/mac-leopard/tables/mozilla_expected_failures/other: Added.
1927 * platform/mac-leopard/tables/mozilla_expected_failures/other/empty_cells-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.checksum.
1928 * platform/mac-leopard/tables/mozilla_expected_failures/other/empty_cells-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.png.
1929 * platform/mac-leopard/tables/mozilla_expected_failures/other/test4-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/other/test4-expected.checksum.
1930 * platform/mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla_expected_failures/other/test4-expected.png.
1931 * platform/mac/tables/mozilla/marvin/tbody_align_center-expected.checksum: Replaced.
1932 * platform/mac/tables/mozilla/marvin/tbody_align_center-expected.png: Replaced.
1933 * platform/mac/tables/mozilla/marvin/tbody_align_char-expected.checksum: Replaced.
1934 * platform/mac/tables/mozilla/marvin/tbody_align_char-expected.png: Replaced.
1935 * platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.checksum: Replaced.
1936 * platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.png: Replaced.
1937 * platform/mac/tables/mozilla/marvin/tbody_align_left-expected.checksum: Replaced.
1938 * platform/mac/tables/mozilla/marvin/tbody_align_left-expected.png: Replaced.
1939 * platform/mac/tables/mozilla/marvin/tbody_align_right-expected.checksum: Replaced.
1940 * platform/mac/tables/mozilla/marvin/tbody_align_right-expected.png: Replaced.
1941 * platform/mac/tables/mozilla/marvin/tbody_char-expected.checksum: Replaced.
1942 * platform/mac/tables/mozilla/marvin/tbody_char-expected.png: Replaced.
1943 * platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.checksum: Replaced.
1944 * platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Replaced.
1945 * platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.checksum: Replaced.
1946 * platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Replaced.
1947 * platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.checksum: Replaced.
1948 * platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.png: Replaced.
1949 * platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.checksum: Replaced.
1950 * platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.png: Replaced.
1951 * platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.checksum: Replaced.
1952 * platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.png: Replaced.
1953 * platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.checksum: Replaced.
1954 * platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.png: Replaced.
1955 * platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.checksum: Replaced.
1956 * platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.png: Replaced.
1957 * platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.checksum: Replaced.
1958 * platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.png: Replaced.
1959 * platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.checksum: Replaced.
1960 * platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.png: Replaced.
1961 * platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.checksum: Replaced.
1962 * platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.png: Replaced.
1963 * platform/mac/tables/mozilla/marvin/tfoot_char-expected.checksum: Replaced.
1964 * platform/mac/tables/mozilla/marvin/tfoot_char-expected.png: Replaced.
1965 * platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.checksum: Replaced.
1966 * platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Replaced.
1967 * platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.checksum: Replaced.
1968 * platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Replaced.
1969 * platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.checksum: Replaced.
1970 * platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Replaced.
1971 * platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.checksum: Replaced.
1972 * platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.png: Replaced.
1973 * platform/mac/tables/mozilla/marvin/thead_align_center-expected.checksum: Replaced.
1974 * platform/mac/tables/mozilla/marvin/thead_align_center-expected.png: Replaced.
1975 * platform/mac/tables/mozilla/marvin/thead_align_char-expected.checksum: Replaced.
1976 * platform/mac/tables/mozilla/marvin/thead_align_char-expected.png: Replaced.
1977 * platform/mac/tables/mozilla/marvin/thead_align_justify-expected.checksum: Replaced.
1978 * platform/mac/tables/mozilla/marvin/thead_align_justify-expected.png: Replaced.
1979 * platform/mac/tables/mozilla/marvin/thead_align_left-expected.checksum: Replaced.
1980 * platform/mac/tables/mozilla/marvin/thead_align_left-expected.png: Replaced.
1981 * platform/mac/tables/mozilla/marvin/thead_align_right-expected.checksum: Replaced.
1982 * platform/mac/tables/mozilla/marvin/thead_align_right-expected.png: Replaced.
1983 * platform/mac/tables/mozilla/marvin/thead_char-expected.checksum: Replaced.
1984 * platform/mac/tables/mozilla/marvin/thead_char-expected.png: Replaced.
1985 * platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.checksum: Replaced.
1986 * platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.png: Replaced.
1987 * platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.checksum: Replaced.
1988 * platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.png: Replaced.
1989 * platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.checksum: Replaced.
1990 * platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.png: Replaced.
1991 * platform/mac/tables/mozilla/marvin/thead_valign_top-expected.checksum: Replaced.
1992 * platform/mac/tables/mozilla/marvin/thead_valign_top-expected.png: Replaced.
1993 * platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.checksum: Replaced.
1994 * platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.png: Replaced.
1995 * platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.checksum: Replaced.
1996 * platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.png: Replaced.
1997 * platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.checksum: Replaced.
1998 * platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.png: Replaced.
1999 * platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.checksum: Replaced.
2000 * platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.png: Replaced.
2001 * platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.checksum: Replaced.
2002 * platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.png: Replaced.
2003 * platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.checksum: Replaced.
2004 * platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.png: Replaced.
2005 * platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.checksum: Replaced.
2006 * platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: Replaced.
2007 * platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.checksum: Replaced.
2008 * platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: Replaced.
2009 * platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.checksum: Replaced.
2010 * platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: Replaced.
2011 * platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.checksum: Replaced.
2012 * platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: Replaced.
2013 * platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.checksum: Replaced.
2014 * platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: Replaced.
2015 * platform/mac/tables/mozilla/marvin/x_table-expected.checksum: Replaced.
2016 * platform/mac/tables/mozilla/marvin/x_table-expected.png: Replaced.
2017 * platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.checksum: Replaced.
2018 * platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: Replaced.
2019 * platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.checksum: Replaced.
2020 * platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: Replaced.
2021 * platform/mac/tables/mozilla/marvin/x_table_border-expected.checksum: Replaced.
2022 * platform/mac/tables/mozilla/marvin/x_table_border-expected.png: Replaced.
2023 * platform/mac/tables/mozilla/marvin/x_table_border_none-expected.checksum: Replaced.
2024 * platform/mac/tables/mozilla/marvin/x_table_border_none-expected.png: Replaced.
2025 * platform/mac/tables/mozilla/marvin/x_table_border_px-expected.checksum: Replaced.
2026 * platform/mac/tables/mozilla/marvin/x_table_border_px-expected.png: Replaced.
2027 * platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.checksum: Replaced.
2028 * platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.png: Replaced.
2029 * platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.checksum: Replaced.
2030 * platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.png: Replaced.
2031 * platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.checksum: Replaced.
2032 * platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.png: Replaced.
2033 * platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.checksum: Replaced.
2034 * platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.png: Replaced.
2035 * platform/mac/tables/mozilla/marvin/x_table_width_px-expected.checksum: Replaced.
2036 * platform/mac/tables/mozilla/marvin/x_table_width_px-expected.png: Replaced.
2037 * platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.checksum: Replaced.
2038 * platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.png: Replaced.
2039 * platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Replaced.
2040 * platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Replaced.
2041 * platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.checksum: Replaced.
2042 * platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: Replaced.
2043 * platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.checksum: Replaced.
2044 * platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: Replaced.
2045 * platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.checksum: Replaced.
2046 * platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: Replaced.
2047 * platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.checksum: Replaced.
2048 * platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.png: Replaced.
2049 * platform/mac/tables/mozilla/marvin/x_td_align_center-expected.checksum: Replaced.
2050 * platform/mac/tables/mozilla/marvin/x_td_align_center-expected.png: Replaced.
2051 * platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Replaced.
2052 * platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.png: Replaced.
2053 * platform/mac/tables/mozilla/marvin/x_td_align_left-expected.checksum: Replaced.
2054 * platform/mac/tables/mozilla/marvin/x_td_align_left-expected.png: Replaced.
2055 * platform/mac/tables/mozilla/marvin/x_td_align_right-expected.checksum: Replaced.
2056 * platform/mac/tables/mozilla/marvin/x_td_align_right-expected.png: Replaced.
2057 * platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.checksum: Replaced.
2058 * platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: Replaced.
2059 * platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.checksum: Replaced.
2060 * platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: Replaced.
2061 * platform/mac/tables/mozilla/marvin/x_td_height-expected.checksum: Replaced.
2062 * platform/mac/tables/mozilla/marvin/x_td_height-expected.png: Replaced.
2063 * platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.checksum: Replaced.
2064 * platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.png: Replaced.
2065 * platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.checksum: Replaced.
2066 * platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.png: Replaced.
2067 * platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.checksum: Replaced.
2068 * platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.png: Replaced.
2069 * platform/mac/tables/mozilla/marvin/x_td_width-expected.checksum: Replaced.
2070 * platform/mac/tables/mozilla/marvin/x_td_width-expected.png: Replaced.
2071 * platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.checksum: Replaced.
2072 * platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.png: Replaced.
2073 * platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Replaced.
2074 * platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Replaced.
2075 * platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.checksum: Replaced.
2076 * platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: Replaced.
2077 * platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.checksum: Replaced.
2078 * platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: Replaced.
2079 * platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.checksum: Replaced.
2080 * platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: Replaced.
2081 * platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.checksum: Replaced.
2082 * platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: Replaced.
2083 * platform/mac/tables/mozilla/marvin/x_th_align_center-expected.checksum: Replaced.
2084 * platform/mac/tables/mozilla/marvin/x_th_align_center-expected.png: Replaced.
2085 * platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Replaced.
2086 * platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.png: Replaced.
2087 * platform/mac/tables/mozilla/marvin/x_th_align_left-expected.checksum: Replaced.
2088 * platform/mac/tables/mozilla/marvin/x_th_align_left-expected.png: Replaced.
2089 * platform/mac/tables/mozilla/marvin/x_th_align_right-expected.checksum: Replaced.
2090 * platform/mac/tables/mozilla/marvin/x_th_align_right-expected.png: Replaced.
2091 * platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.checksum: Replaced.
2092 * platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: Replaced.
2093 * platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.checksum: Replaced.
2094 * platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: Replaced.
2095 * platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.checksum: Replaced.
2096 * platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.png: Replaced.
2097 * platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum: Replaced.
2098 * platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.png: Replaced.
2099 * platform/mac/tables/mozilla/marvin/x_th_width-expected.checksum: Replaced.
2100 * platform/mac/tables/mozilla/marvin/x_th_width-expected.png: Replaced.
2101 * platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.checksum: Replaced.
2102 * platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.png: Replaced.
2103 * platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Replaced.
2104 * platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.png: Replaced.
2105 * platform/mac/tables/mozilla/marvin/x_thead_class-expected.checksum: Replaced.
2106 * platform/mac/tables/mozilla/marvin/x_thead_class-expected.png: Replaced.
2107 * platform/mac/tables/mozilla/marvin/x_thead_id-expected.checksum: Replaced.
2108 * platform/mac/tables/mozilla/marvin/x_thead_id-expected.png: Replaced.
2109 * platform/mac/tables/mozilla/marvin/x_thead_style-expected.checksum: Replaced.
2110 * platform/mac/tables/mozilla/marvin/x_thead_style-expected.png: Replaced.
2111 * platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.checksum: Replaced.
2112 * platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: Replaced.
2113 * platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.checksum: Replaced.
2114 * platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: Replaced.
2115 * platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.checksum: Replaced.
2116 * platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.png: Replaced.
2117 * platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.checksum: Replaced.
2118 * platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.png: Replaced.
2119 * platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Replaced.
2120 * platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.png: Replaced.
2121 * platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.checksum: Replaced.
2122 * platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: Replaced.
2123 * platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.checksum: Replaced.
2124 * platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: Replaced.
2125 * platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.checksum: Replaced.
2126 * platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: Replaced.
2127 * platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.checksum: Replaced.
2128 * platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: Replaced.
2129 * platform/mac/tables/mozilla/other/cell_widths-expected.checksum: Replaced.
2130 * platform/mac/tables/mozilla/other/cell_widths-expected.png: Replaced.
2131 * platform/mac/tables/mozilla/other/cellspacing-expected.checksum: Replaced.
2132 * platform/mac/tables/mozilla/other/cellspacing-expected.png: Replaced.
2133 * platform/mac/tables/mozilla/other/nested2-expected.checksum: Replaced.
2134 * platform/mac/tables/mozilla/other/nested2-expected.png: Replaced.
2135 * platform/mac/tables/mozilla/other/nestedTables-expected.checksum: Replaced.
2136 * platform/mac/tables/mozilla/other/nestedTables-expected.png: Replaced.
2137 * platform/mac/tables/mozilla/other/padding-expected.checksum: Replaced.
2138 * platform/mac/tables/mozilla/other/padding-expected.png: Replaced.
2139 * platform/mac/tables/mozilla/other/test3-expected.checksum: Replaced.
2140 * platform/mac/tables/mozilla/other/test3-expected.png: Replaced.
2141 * platform/mac/tables/mozilla/other/test6-expected.checksum: Replaced.
2142 * platform/mac/tables/mozilla/other/test6-expected.png: Replaced.
2143 * platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.checksum: Replaced.
2144 * platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: Replaced.
2145 * platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.checksum: Replaced.
2146 * platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.png: Replaced.
2147 * platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.checksum: Replaced.
2148 * platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.png: Replaced.
2149 * platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum: Replaced.
2150 * platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Replaced.
2151 * platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.checksum: Replaced.
2152 * platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.png: Replaced.
2153 * platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum: Replaced.
2154 * platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Replaced.
2155 * platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum: Replaced.
2156 * platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: Replaced.
2157 * platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum: Replaced.
2158 * platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Replaced.
2159 * platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum: Replaced.
2160 * platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.png: Replaced.
2161 * platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.checksum: Replaced.
2162 * platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.png: Replaced.
2163 * platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.checksum: Replaced.
2164 * platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.png: Replaced.
2165 * platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.checksum: Replaced.
2166 * platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: Replaced.
2167 * platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum: Replaced.
2168 * platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: Replaced.
2169 * platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.checksum: Replaced.
2170 * platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.png: Replaced.
2171 * platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Replaced.
2172 * platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Replaced.
2173 * platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.checksum: Replaced.
2174 * platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.png: Replaced.
2175 * platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.checksum: Replaced.
2176 * platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.png: Replaced.
2177 * platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.checksum: Replaced.
2178 * platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.png: Replaced.
2179 * platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.checksum: Replaced.
2180 * platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.png: Replaced.
2181 * platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Replaced.
2182 * platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Replaced.
2183 * platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.checksum: Replaced.
2184 * platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.png: Replaced.
2185 * platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum: Replaced.
2186 * platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Replaced.
2187 * platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.checksum: Replaced.
2188 * platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: Replaced.
2189 * platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.checksum: Replaced.
2190 * platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Replaced.
2191 * platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.checksum: Replaced.
2192 * platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: Replaced.
2193 * platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.checksum: Replaced.
2194 * platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: Replaced.
2195 * platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.checksum: Replaced.
2196 * platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.png: Replaced.
2197 * platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.checksum: Replaced.
2198 * platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.png: Replaced.
2199 * platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.checksum: Replaced.
2200 * platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.png: Replaced.
2201 * platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.checksum: Replaced.
2202 * platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.png: Replaced.
2203 * platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.checksum: Replaced.
2204 * platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Replaced.
2205 * platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.checksum: Replaced.
2206 * platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.png: Replaced.
2207 * platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.checksum: Replaced.
2208 * platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: Replaced.
2209 * platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.checksum: Replaced.
2210 * platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: Replaced.
2211 * platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.checksum: Replaced.
2212 * platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.png: Replaced.
2213 * platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum: Replaced.
2214 * platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Replaced.
2215 * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Replaced.
2216 * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Replaced.
2217 * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Replaced.
2218 * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Replaced.
2219 * platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.checksum: Replaced.
2220 * platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.png: Replaced.
2221 * platform/mac/tables/mozilla_expected_failures/core/captions1-expected.checksum: Replaced.
2222 * platform/mac/tables/mozilla_expected_failures/core/captions1-expected.png: Replaced.
2223 * platform/mac/tables/mozilla_expected_failures/core/captions2-expected.checksum: Replaced.
2224 * platform/mac/tables/mozilla_expected_failures/core/captions2-expected.png: Replaced.
2225 * platform/mac/tables/mozilla_expected_failures/core/captions3-expected.checksum: Replaced.
2226 * platform/mac/tables/mozilla_expected_failures/core/captions3-expected.png: Replaced.
2227 * platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.checksum: Replaced.
2228 * platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.png: Replaced.
2229 * platform/mac/tables/mozilla_expected_failures/core/columns-expected.checksum: Replaced.
2230 * platform/mac/tables/mozilla_expected_failures/core/columns-expected.png: Replaced.
2231 * platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.checksum: Replaced.
2232 * platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.png: Replaced.
2233 * platform/mac/tables/mozilla_expected_failures/core/standards1-expected.checksum: Replaced.
2234 * platform/mac/tables/mozilla_expected_failures/core/standards1-expected.png: Replaced.
2235 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum: Replaced.
2236 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: Replaced.
2237 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum: Replaced.
2238 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: Replaced.
2239 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum: Replaced.
2240 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: Replaced.
2241 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum: Replaced.
2242 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Replaced.
2243 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum: Replaced.
2244 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Replaced.
2245 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum: Replaced.
2246 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: Replaced.
2247 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum: Replaced.
2248 * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Replaced.
2249 * platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum: Replaced.
2250 * platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Replaced.
2251 * platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.checksum: Replaced.
2252 * platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Replaced.
2253 * platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.checksum: Replaced.
2254 * platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: Replaced.
2255 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.checksum: Replaced.
2256 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: Replaced.
2257 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.checksum: Replaced.
2258 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: Replaced.
2259 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.checksum: Replaced.
2260 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: Replaced.
2261 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.checksum: Replaced.
2262 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: Replaced.
2263 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.checksum: Replaced.
2264 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: Replaced.
2265 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.checksum: Replaced.
2266 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: Replaced.
2267 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.checksum: Replaced.
2268 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: Replaced.
2269 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.checksum: Replaced.
2270 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: Replaced.
2271 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.checksum: Replaced.
2272 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: Replaced.
2273 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.checksum: Replaced.
2274 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: Replaced.
2275 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.checksum: Replaced.
2276 * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: Replaced.
2277 * platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.checksum: Replaced.
2278 * platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.png: Replaced.
2279 * platform/mac/tables/mozilla_expected_failures/other/test4-expected.checksum: Replaced.
2280 * platform/mac/tables/mozilla_expected_failures/other/test4-expected.png: Replaced.
2282 2010-05-25 Dirk Pranke <dpranke@chromium.org>
2284 Reviewed by Dimitri Glazkov.
2286 Re-commit r58765 - it had been rolled out to see if it was causing
2287 a perf regression (in r59787 and r59789), but that does not seem to
2290 https://bugs.webkit.org/show_bug.cgi?id=39605
2292 * fast/notifications/notifications-replace-expected.txt: Added.
2293 * fast/notifications/notifications-replace.html: Added.
2294 * fast/notifications/notifications-rtl-expected.txt: Added.
2295 * fast/notifications/notifications-rtl.html: Added.
2297 2010-05-25 James Robinson <jamesr@chromium.org>
2299 Reviewed by Darin Adler.
2301 Move Leopard-specific pixel test results from platform/mac to platform/mac-leopard
2302 https://bugs.webkit.org/show_bug.cgi?id=39317
2304 Add leopard baselines for one test I missed.
2306 * platform/mac-leopard/tables/mozilla/bugs/bug8411-expected.checksum: Added.
2307 * platform/mac-leopard/tables/mozilla/bugs/bug8411-expected.png: Added.
2309 2010-05-25 Jer Noble <jer.noble@apple.com>
2311 Reviewed by Adam Roben.
2313 Full screen doesn't work for video elements
2314 https://bugs.webkit.org/show_bug.cgi?id=39557
2315 rdar://problem/8011813
2317 Re-enabled fullscreen support on windows, and modified tests to match.
2319 * platform/win/media/controls-after-reload-expected.txt:
2320 * platform/win/media/controls-drag-timebar-expected.txt:
2321 * platform/win/media/controls-strict-expected.txt:
2322 * platform/win/media/controls-styling-expected.txt:
2323 * platform/win/media/video-controls-rendering-expected.txt:
2324 * platform/win/media/video-display-toggle-expected.txt:
2325 * platform/win/media/video-no-audio-expected.txt:
2327 2010-05-25 Alexey Proskuryakov <ap@apple.com>
2329 Reviewed by Darin Adler.
2331 https://bugs.webkit.org/show_bug.cgi?id=18595
2332 REGRESSION (r20766): Setting display:none on an iframe causes the ownerDocument to freeze
2334 * fast/events/autoscroll-nonscrollable-iframe-in-scrollable-div.html:
2335 * fast/events/autoscroll-with-non-scrollable-parent.html:
2336 Fixed a typo in tests that I used as copy/paste inspiration. It isn't significant here,
2337 because frame's left and top offsets are equal.
2339 * fast/events/frame-detached-in-mousedown-expected.txt: Added.
2340 * fast/events/frame-detached-in-mousedown.html: Added.
2342 2010-05-25 James Robinson <jamesr@chromium.org>
2344 Unreviewed. Pixel expectations change only
2346 Move Leopard-specific pixel test results from platform/mac to platform/mac-leopard
2347 https://bugs.webkit.org/show_bug.cgi?id=39317
2349 Adds snow leopard specific baselines for tables/mozilla and moves the current
2350 leopard-specific baselines to platform/mac-leopard.
2352 * platform/mac-leopard/tables: Added.
2353 * platform/mac-leopard/tables/mozilla: Added.
2354 * platform/mac-leopard/tables/mozilla/bugs: Added.
2355 * platform/mac-leopard/tables/mozilla/bugs/bug10296-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug10296-1-expected.checksum.
2356 * platform/mac-leopard/tables/mozilla/bugs/bug10296-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug10296-1-expected.png.
2357 * platform/mac-leopard/tables/mozilla/bugs/bug1055-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1055-1-expected.checksum.
2358 * platform/mac-leopard/tables/mozilla/bugs/bug1055-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1055-1-expected.png.
2359 * platform/mac-leopard/tables/mozilla/bugs/bug106816-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug106816-expected.checksum.
2360 * platform/mac-leopard/tables/mozilla/bugs/bug106816-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug106816-expected.png.
2361 * platform/mac-leopard/tables/mozilla/bugs/bug113235-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug113235-3-expected.checksum.
2362 * platform/mac-leopard/tables/mozilla/bugs/bug113235-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug113235-3-expected.png.
2363 * platform/mac-leopard/tables/mozilla/bugs/bug11944-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug11944-expected.checksum.
2364 * platform/mac-leopard/tables/mozilla/bugs/bug11944-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug11944-expected.png.
2365 * platform/mac-leopard/tables/mozilla/bugs/bug119786-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug119786-expected.checksum.
2366 * platform/mac-leopard/tables/mozilla/bugs/bug119786-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug119786-expected.png.
2367 * platform/mac-leopard/tables/mozilla/bugs/bug131020-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug131020-expected.checksum.
2368 * platform/mac-leopard/tables/mozilla/bugs/bug131020-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug131020-expected.png.
2369 * platform/mac-leopard/tables/mozilla/bugs/bug13118-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug13118-expected.checksum.
2370 * platform/mac-leopard/tables/mozilla/bugs/bug13118-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug13118-expected.png.
2371 * platform/mac-leopard/tables/mozilla/bugs/bug13196-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug13196-expected.checksum.
2372 * platform/mac-leopard/tables/mozilla/bugs/bug13196-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug13196-expected.png.
2373 * platform/mac-leopard/tables/mozilla/bugs/bug133756-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug133756-2-expected.checksum.
2374 * platform/mac-leopard/tables/mozilla/bugs/bug133756-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug133756-2-expected.png.
2375 * platform/mac-leopard/tables/mozilla/bugs/bug139524-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug139524-2-expected.checksum.
2376 * platform/mac-leopard/tables/mozilla/bugs/bug139524-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug139524-2-expected.png.
2377 * platform/mac-leopard/tables/mozilla/bugs/bug14159-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug14159-1-expected.checksum.
2378 * platform/mac-leopard/tables/mozilla/bugs/bug14159-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug14159-1-expected.png.
2379 * platform/mac-leopard/tables/mozilla/bugs/bug1430-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1430-expected.checksum.
2380 * platform/mac-leopard/tables/mozilla/bugs/bug1430-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1430-expected.png.
2381 * platform/mac-leopard/tables/mozilla/bugs/bug14929-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug14929-expected.checksum.
2382 * platform/mac-leopard/tables/mozilla/bugs/bug14929-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug14929-expected.png.
2383 * platform/mac-leopard/tables/mozilla/bugs/bug15247-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug15247-expected.checksum.
2384 * platform/mac-leopard/tables/mozilla/bugs/bug15247-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug15247-expected.png.
2385 * platform/mac-leopard/tables/mozilla/bugs/bug17130-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug17130-1-expected.checksum.
2386 * platform/mac-leopard/tables/mozilla/bugs/bug17130-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug17130-1-expected.png.
2387 * platform/mac-leopard/tables/mozilla/bugs/bug17130-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug17130-2-expected.checksum.
2388 * platform/mac-leopard/tables/mozilla/bugs/bug17130-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug17130-2-expected.png.
2389 * platform/mac-leopard/tables/mozilla/bugs/bug1800-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1800-expected.checksum.
2390 * platform/mac-leopard/tables/mozilla/bugs/bug1800-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug1800-expected.png.
2391 * platform/mac-leopard/tables/mozilla/bugs/bug18359-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18359-expected.checksum.
2392 * platform/mac-leopard/tables/mozilla/bugs/bug18359-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18359-expected.png.
2393 * platform/mac-leopard/tables/mozilla/bugs/bug18955-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18955-expected.checksum.
2394 * platform/mac-leopard/tables/mozilla/bugs/bug18955-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug18955-expected.png.
2395 * platform/mac-leopard/tables/mozilla/bugs/bug19061-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19061-1-expected.checksum.
2396 * platform/mac-leopard/tables/mozilla/bugs/bug19061-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19061-1-expected.png.
2397 * platform/mac-leopard/tables/mozilla/bugs/bug19061-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19061-2-expected.checksum.
2398 * platform/mac-leopard/tables/mozilla/bugs/bug19061-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19061-2-expected.png.
2399 * platform/mac-leopard/tables/mozilla/bugs/bug194024-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug194024-expected.checksum.
2400 * platform/mac-leopard/tables/mozilla/bugs/bug194024-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug194024-expected.png.
2401 * platform/mac-leopard/tables/mozilla/bugs/bug19599-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19599-expected.checksum.
2402 * platform/mac-leopard/tables/mozilla/bugs/bug19599-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug19599-expected.png.
2403 * platform/mac-leopard/tables/mozilla/bugs/bug20804-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug20804-expected.checksum.
2404 * platform/mac-leopard/tables/mozilla/bugs/bug20804-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug20804-expected.png.
2405 * platform/mac-leopard/tables/mozilla/bugs/bug2267-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2267-expected.checksum.
2406 * platform/mac-leopard/tables/mozilla/bugs/bug2267-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2267-expected.png.
2407 * platform/mac-leopard/tables/mozilla/bugs/bug23235-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug23235-expected.checksum.
2408 * platform/mac-leopard/tables/mozilla/bugs/bug23235-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug23235-expected.png.
2409 * platform/mac-leopard/tables/mozilla/bugs/bug23299-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug23299-expected.checksum.
2410 * platform/mac-leopard/tables/mozilla/bugs/bug23299-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug23299-expected.png.
2411 * platform/mac-leopard/tables/mozilla/bugs/bug24627-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug24627-expected.checksum.
2412 * platform/mac-leopard/tables/mozilla/bugs/bug24627-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug24627-expected.png.
2413 * platform/mac-leopard/tables/mozilla/bugs/bug2479-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-3-expected.checksum.
2414 * platform/mac-leopard/tables/mozilla/bugs/bug2479-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-3-expected.png.
2415 * platform/mac-leopard/tables/mozilla/bugs/bug2479-4-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-4-expected.checksum.
2416 * platform/mac-leopard/tables/mozilla/bugs/bug2479-4-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2479-4-expected.png.
2417 * platform/mac-leopard/tables/mozilla/bugs/bug25086-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug25086-expected.checksum.
2418 * platform/mac-leopard/tables/mozilla/bugs/bug25086-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug25086-expected.png.
2419 * platform/mac-leopard/tables/mozilla/bugs/bug25663-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug25663-expected.checksum.
2420 * platform/mac-leopard/tables/mozilla/bugs/bug25663-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug25663-expected.png.
2421 * platform/mac-leopard/tables/mozilla/bugs/bug2684-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2684-expected.checksum.
2422 * platform/mac-leopard/tables/mozilla/bugs/bug2684-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2684-expected.png.
2423 * platform/mac-leopard/tables/mozilla/bugs/bug27038-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug27038-2-expected.checksum.
2424 * platform/mac-leopard/tables/mozilla/bugs/bug27038-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug27038-2-expected.png.
2425 * platform/mac-leopard/tables/mozilla/bugs/bug2773-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2773-expected.checksum.
2426 * platform/mac-leopard/tables/mozilla/bugs/bug2773-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2773-expected.png.
2427 * platform/mac-leopard/tables/mozilla/bugs/bug2886-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2886-expected.checksum.
2428 * platform/mac-leopard/tables/mozilla/bugs/bug2886-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2886-expected.png.
2429 * platform/mac-leopard/tables/mozilla/bugs/bug29058-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29058-3-expected.checksum.
2430 * platform/mac-leopard/tables/mozilla/bugs/bug29058-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29058-3-expected.png.
2431 * platform/mac-leopard/tables/mozilla/bugs/bug29429-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29429-expected.checksum.
2432 * platform/mac-leopard/tables/mozilla/bugs/bug29429-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug29429-expected.png.
2433 * platform/mac-leopard/tables/mozilla/bugs/bug2947-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2947-expected.checksum.
2434 * platform/mac-leopard/tables/mozilla/bugs/bug2947-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2947-expected.png.
2435 * platform/mac-leopard/tables/mozilla/bugs/bug2981-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2981-1-expected.checksum.
2436 * platform/mac-leopard/tables/mozilla/bugs/bug2981-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2981-1-expected.png.
2437 * platform/mac-leopard/tables/mozilla/bugs/bug2981-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2981-2-expected.checksum.
2438 * platform/mac-leopard/tables/mozilla/bugs/bug2981-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2981-2-expected.png.
2439 * platform/mac-leopard/tables/mozilla/bugs/bug2997-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2997-expected.checksum.
2440 * platform/mac-leopard/tables/mozilla/bugs/bug2997-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug2997-expected.png.
2441 * platform/mac-leopard/tables/mozilla/bugs/bug30692-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug30692-expected.checksum.
2442 * platform/mac-leopard/tables/mozilla/bugs/bug30692-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug30692-expected.png.
2443 * platform/mac-leopard/tables/mozilla/bugs/bug3103-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3103-expected.checksum.
2444 * platform/mac-leopard/tables/mozilla/bugs/bug3103-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3103-expected.png.
2445 * platform/mac-leopard/tables/mozilla/bugs/bug32205-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug32205-3-expected.checksum.
2446 * platform/mac-leopard/tables/mozilla/bugs/bug32205-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug32205-3-expected.png.
2447 * platform/mac-leopard/tables/mozilla/bugs/bug33855-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug33855-expected.checksum.
2448 * platform/mac-leopard/tables/mozilla/bugs/bug33855-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug33855-expected.png.
2449 * platform/mac-leopard/tables/mozilla/bugs/bug3454-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3454-expected.checksum.
2450 * platform/mac-leopard/tables/mozilla/bugs/bug3454-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3454-expected.png.
2451 * platform/mac-leopard/tables/mozilla/bugs/bug3681-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3681-1-expected.checksum.
2452 * platform/mac-leopard/tables/mozilla/bugs/bug3681-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3681-1-expected.png.
2453 * platform/mac-leopard/tables/mozilla/bugs/bug3977-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3977-expected.checksum.
2454 * platform/mac-leopard/tables/mozilla/bugs/bug3977-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug3977-expected.png.
2455 * platform/mac-leopard/tables/mozilla/bugs/bug41890-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug41890-expected.checksum.
2456 * platform/mac-leopard/tables/mozilla/bugs/bug41890-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug41890-expected.png.
2457 * platform/mac-leopard/tables/mozilla/bugs/bug42187-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug42187-expected.checksum.
2458 * platform/mac-leopard/tables/mozilla/bugs/bug42187-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug42187-expected.png.
2459 * platform/mac-leopard/tables/mozilla/bugs/bug43039-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug43039-expected.checksum.
2460 * platform/mac-leopard/tables/mozilla/bugs/bug43039-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug43039-expected.png.
2461 * platform/mac-leopard/tables/mozilla/bugs/bug4382-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4382-expected.checksum.
2462 * platform/mac-leopard/tables/mozilla/bugs/bug4382-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4382-expected.png.
2463 * platform/mac-leopard/tables/mozilla/bugs/bug43854-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug43854-2-expected.checksum.
2464 * platform/mac-leopard/tables/mozilla/bugs/bug43854-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug43854-2-expected.png.
2465 * platform/mac-leopard/tables/mozilla/bugs/bug4427-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4427-expected.checksum.
2466 * platform/mac-leopard/tables/mozilla/bugs/bug4427-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug4427-expected.png.
2467 * platform/mac-leopard/tables/mozilla/bugs/bug44505-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug44505-expected.checksum.
2468 * platform/mac-leopard/tables/mozilla/bugs/bug44505-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug44505-expected.png.
2469 * platform/mac-leopard/tables/mozilla/bugs/bug45055-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug45055-2-expected.checksum.
2470 * platform/mac-leopard/tables/mozilla/bugs/bug45055-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug45055-2-expected.png.
2471 * platform/mac-leopard/tables/mozilla/bugs/bug45486-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug45486-expected.checksum.
2472 * platform/mac-leopard/tables/mozilla/bugs/bug45486-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug45486-expected.png.
2473 * platform/mac-leopard/tables/mozilla/bugs/bug46368-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-1-expected.checksum.
2474 * platform/mac-leopard/tables/mozilla/bugs/bug46368-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-1-expected.png.
2475 * platform/mac-leopard/tables/mozilla/bugs/bug46368-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-2-expected.checksum.
2476 * platform/mac-leopard/tables/mozilla/bugs/bug46368-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46368-2-expected.png.
2477 * platform/mac-leopard/tables/mozilla/bugs/bug46623-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46623-2-expected.checksum.
2478 * platform/mac-leopard/tables/mozilla/bugs/bug46623-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46623-2-expected.png.
2479 * platform/mac-leopard/tables/mozilla/bugs/bug46924-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46924-expected.checksum.
2480 * platform/mac-leopard/tables/mozilla/bugs/bug46924-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug46924-expected.png.
2481 * platform/mac-leopard/tables/mozilla/bugs/bug47432-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug47432-expected.checksum.
2482 * platform/mac-leopard/tables/mozilla/bugs/bug47432-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug47432-expected.png.
2483 * platform/mac-leopard/tables/mozilla/bugs/bug51727-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug51727-expected.checksum.
2484 * platform/mac-leopard/tables/mozilla/bugs/bug51727-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug51727-expected.png.
2485 * platform/mac-leopard/tables/mozilla/bugs/bug52505-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52505-expected.checksum.
2486 * platform/mac-leopard/tables/mozilla/bugs/bug52505-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52505-expected.png.
2487 * platform/mac-leopard/tables/mozilla/bugs/bug52506-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52506-expected.checksum.
2488 * platform/mac-leopard/tables/mozilla/bugs/bug52506-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug52506-expected.png.
2489 * platform/mac-leopard/tables/mozilla/bugs/bug5538-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5538-expected.checksum.
2490 * platform/mac-leopard/tables/mozilla/bugs/bug5538-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5538-expected.png.
2491 * platform/mac-leopard/tables/mozilla/bugs/bug55694-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug55694-expected.checksum.
2492 * platform/mac-leopard/tables/mozilla/bugs/bug55694-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug55694-expected.png.
2493 * platform/mac-leopard/tables/mozilla/bugs/bug57300-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug57300-expected.checksum.
2494 * platform/mac-leopard/tables/mozilla/bugs/bug57300-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug57300-expected.png.
2495 * platform/mac-leopard/tables/mozilla/bugs/bug5799-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5799-expected.checksum.
2496 * platform/mac-leopard/tables/mozilla/bugs/bug5799-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5799-expected.png.
2497 * platform/mac-leopard/tables/mozilla/bugs/bug5835-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5835-expected.checksum.
2498 * platform/mac-leopard/tables/mozilla/bugs/bug5835-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug5835-expected.png.
2499 * platform/mac-leopard/tables/mozilla/bugs/bug60749-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug60749-expected.checksum.
2500 * platform/mac-leopard/tables/mozilla/bugs/bug60749-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug60749-expected.png.
2501 * platform/mac-leopard/tables/mozilla/bugs/bug6184-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6184-expected.checksum.
2502 * platform/mac-leopard/tables/mozilla/bugs/bug6184-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6184-expected.png.
2503 * platform/mac-leopard/tables/mozilla/bugs/bug6404-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6404-expected.checksum.
2504 * platform/mac-leopard/tables/mozilla/bugs/bug6404-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug6404-expected.png.
2505 * platform/mac-leopard/tables/mozilla/bugs/bug650-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug650-expected.checksum.
2506 * platform/mac-leopard/tables/mozilla/bugs/bug650-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug650-expected.png.
2507 * platform/mac-leopard/tables/mozilla/bugs/bug68912-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug68912-expected.checksum.
2508 * platform/mac-leopard/tables/mozilla/bugs/bug68912-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug68912-expected.png.
2509 * platform/mac-leopard/tables/mozilla/bugs/bug69382-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug69382-1-expected.checksum.
2510 * platform/mac-leopard/tables/mozilla/bugs/bug69382-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug69382-1-expected.png.
2511 * platform/mac-leopard/tables/mozilla/bugs/bug7112-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7112-1-expected.checksum.
2512 * platform/mac-leopard/tables/mozilla/bugs/bug7112-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7112-1-expected.png.
2513 * platform/mac-leopard/tables/mozilla/bugs/bug7112-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7112-2-expected.checksum.
2514 * platform/mac-leopard/tables/mozilla/bugs/bug7112-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7112-2-expected.png.
2515 * platform/mac-leopard/tables/mozilla/bugs/bug7121-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7121-1-expected.checksum.
2516 * platform/mac-leopard/tables/mozilla/bugs/bug7121-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7121-1-expected.png.
2517 * platform/mac-leopard/tables/mozilla/bugs/bug7342-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7342-expected.checksum.
2518 * platform/mac-leopard/tables/mozilla/bugs/bug7342-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7342-expected.png.
2519 * platform/mac-leopard/tables/mozilla/bugs/bug7471-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7471-expected.checksum.
2520 * platform/mac-leopard/tables/mozilla/bugs/bug7471-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7471-expected.png.
2521 * platform/mac-leopard/tables/mozilla/bugs/bug7714-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7714-expected.checksum.
2522 * platform/mac-leopard/tables/mozilla/bugs/bug7714-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug7714-expected.png.
2523 * platform/mac-leopard/tables/mozilla/bugs/bug78162-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug78162-expected.checksum.
2524 * platform/mac-leopard/tables/mozilla/bugs/bug78162-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug78162-expected.png.
2525 * platform/mac-leopard/tables/mozilla/bugs/bug80762-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug80762-1-expected.checksum.
2526 * platform/mac-leopard/tables/mozilla/bugs/bug80762-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug80762-1-expected.png.
2527 * platform/mac-leopard/tables/mozilla/bugs/bug82946-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug82946-1-expected.checksum.
2528 * platform/mac-leopard/tables/mozilla/bugs/bug82946-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug82946-1-expected.png.
2529 * platform/mac-leopard/tables/mozilla/bugs/bug8858-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug8858-expected.checksum.
2530 * platform/mac-leopard/tables/mozilla/bugs/bug8858-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug8858-expected.png.
2531 * platform/mac-leopard/tables/mozilla/bugs/bug8950-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug8950-expected.checksum.
2532 * platform/mac-leopard/tables/mozilla/bugs/bug8950-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug8950-expected.png.
2533 * platform/mac-leopard/tables/mozilla/bugs/bug9123-1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug9123-1-expected.checksum.
2534 * platform/mac-leopard/tables/mozilla/bugs/bug9123-1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug9123-1-expected.png.
2535 * platform/mac-leopard/tables/mozilla/bugs/bug9123-2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug9123-2-expected.checksum.
2536 * platform/mac-leopard/tables/mozilla/bugs/bug9123-2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug9123-2-expected.png.
2537 * platform/mac-leopard/tables/mozilla/bugs/bug92143-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug92143-expected.checksum.
2538 * platform/mac-leopard/tables/mozilla/bugs/bug92143-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug92143-expected.png.
2539 * platform/mac-leopard/tables/mozilla/bugs/bug93363-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug93363-expected.checksum.
2540 * platform/mac-leopard/tables/mozilla/bugs/bug93363-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug93363-expected.png.
2541 * platform/mac-leopard/tables/mozilla/bugs/bug96334-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug96334-expected.checksum.
2542 * platform/mac-leopard/tables/mozilla/bugs/bug96334-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug96334-expected.png.
2543 * platform/mac-leopard/tables/mozilla/bugs/bug965-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug965-expected.checksum.
2544 * platform/mac-leopard/tables/mozilla/bugs/bug965-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/bugs/bug965-expected.png.
2545 * platform/mac-leopard/tables/mozilla/collapsing_borders: Added.
2546 * platform/mac-leopard/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum.
2547 * platform/mac-leopard/tables/mozilla/collapsing_borders/bug41262-3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.png.
2548 * platform/mac-leopard/tables/mozilla/core: Added.
2549 * platform/mac-leopard/tables/mozilla/core/borders-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/borders-expected.checksum.
2550 * platform/mac-leopard/tables/mozilla/core/borders-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/borders-expected.png.
2551 * platform/mac-leopard/tables/mozilla/core/col_span-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_span-expected.checksum.
2552 * platform/mac-leopard/tables/mozilla/core/col_span-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_span-expected.png.
2553 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum.
2554 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.png.
2555 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_autoPer-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.checksum.
2556 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_autoPer-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.png.
2557 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_fix-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.checksum.
2558 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_fix-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.png.
2559 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_fixPer-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.checksum.
2560 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_fixPer-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.png.
2561 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_per-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_per-expected.checksum.
2562 * platform/mac-leopard/tables/mozilla/core/col_widths_auto_per-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_auto_per-expected.png.
2563 * platform/mac-leopard/tables/mozilla/core/col_widths_fix_autoFix-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.checksum.
2564 * platform/mac-leopard/tables/mozilla/core/col_widths_fix_autoFix-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.png.
2565 * platform/mac-leopard/tables/mozilla/core/col_widths_fix_autoPer-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.checksum.
2566 * platform/mac-leopard/tables/mozilla/core/col_widths_fix_autoPer-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.png.
2567 * platform/mac-leopard/tables/mozilla/core/col_widths_fix_fix-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.checksum.
2568 * platform/mac-leopard/tables/mozilla/core/col_widths_fix_fix-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.png.
2569 * platform/mac-leopard/tables/mozilla/core/col_widths_fix_fixPer-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.checksum.
2570 * platform/mac-leopard/tables/mozilla/core/col_widths_fix_fixPer-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.png.
2571 * platform/mac-leopard/tables/mozilla/core/margins-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/margins-expected.checksum.
2572 * platform/mac-leopard/tables/mozilla/core/margins-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/margins-expected.png.
2573 * platform/mac-leopard/tables/mozilla/core/one_row-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/one_row-expected.checksum.
2574 * platform/mac-leopard/tables/mozilla/core/one_row-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/one_row-expected.png.
2575 * platform/mac-leopard/tables/mozilla/core/row_span-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/row_span-expected.checksum.
2576 * platform/mac-leopard/tables/mozilla/core/row_span-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/row_span-expected.png.
2577 * platform/mac-leopard/tables/mozilla/core/table_rules-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/table_rules-expected.checksum.
2578 * platform/mac-leopard/tables/mozilla/core/table_rules-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/table_rules-expected.png.
2579 * platform/mac-leopard/tables/mozilla/core/table_widths-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/core/table_widths-expected.checksum.
2580 * platform/mac-leopard/tables/mozilla/core/table_widths-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/core/table_widths-expected.png.
2581 * platform/mac-leopard/tables/mozilla/dom: Added.
2582 * platform/mac-leopard/tables/mozilla/dom/deleteTbodyRebuild1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.checksum.
2583 * platform/mac-leopard/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.png.
2584 * platform/mac-leopard/tables/mozilla/dom/insertCellsRebuild1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.checksum.
2585 * platform/mac-leopard/tables/mozilla/dom/insertCellsRebuild1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.png.
2586 * platform/mac-leopard/tables/mozilla/images: Added.
2587 * platform/mac-leopard/tables/mozilla/images/adforce_imgis_com-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/images/adforce_imgis_com-expected.checksum.
2588 * platform/mac-leopard/tables/mozilla/images/adforce_imgis_com-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/images/adforce_imgis_com-expected.png.
2589 * platform/mac-leopard/tables/mozilla/marvin: Added.
2590 * platform/mac-leopard/tables/mozilla/marvin/body_tbody-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_tbody-expected.checksum.
2591 * platform/mac-leopard/tables/mozilla/marvin/body_tbody-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_tbody-expected.png.
2592 * platform/mac-leopard/tables/mozilla/marvin/body_tfoot-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_tfoot-expected.checksum.
2593 * platform/mac-leopard/tables/mozilla/marvin/body_tfoot-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_tfoot-expected.png.
2594 * platform/mac-leopard/tables/mozilla/marvin/body_thead-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_thead-expected.checksum.
2595 * platform/mac-leopard/tables/mozilla/marvin/body_thead-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/body_thead-expected.png.
2596 * platform/mac-leopard/tables/mozilla/marvin/col_span-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/col_span-expected.checksum.
2597 * platform/mac-leopard/tables/mozilla/marvin/col_span-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/col_span-expected.png.
2598 * platform/mac-leopard/tables/mozilla/marvin/colgroup_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.checksum.
2599 * platform/mac-leopard/tables/mozilla/marvin/colgroup_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.png.
2600 * platform/mac-leopard/tables/mozilla/marvin/colgroup_align_justify-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.checksum.
2601 * platform/mac-leopard/tables/mozilla/marvin/colgroup_align_justify-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.png.
2602 * platform/mac-leopard/tables/mozilla/marvin/colgroup_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.checksum.
2603 * platform/mac-leopard/tables/mozilla/marvin/colgroup_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.png.
2604 * platform/mac-leopard/tables/mozilla/marvin/colgroup_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.checksum.
2605 * platform/mac-leopard/tables/mozilla/marvin/colgroup_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.png.
2606 * platform/mac-leopard/tables/mozilla/marvin/colgroup_span-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_span-expected.checksum.
2607 * platform/mac-leopard/tables/mozilla/marvin/colgroup_span-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_span-expected.png.
2608 * platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum.
2609 * platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.png.
2610 * platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum.
2611 * platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.png.
2612 * platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum.
2613 * platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_middle-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.png.
2614 * platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_top-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.checksum.
2615 * platform/mac-leopard/tables/mozilla/marvin/colgroup_valign_top-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.png.
2616 * platform/mac-leopard/tables/mozilla/marvin/colgroup_width_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.checksum.
2617 * platform/mac-leopard/tables/mozilla/marvin/colgroup_width_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.png.
2618 * platform/mac-leopard/tables/mozilla/marvin/colgroup_width_px-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.checksum.
2619 * platform/mac-leopard/tables/mozilla/marvin/colgroup_width_px-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.png.
2620 * platform/mac-leopard/tables/mozilla/marvin/table_frame_border-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_frame_border-expected.checksum.
2621 * platform/mac-leopard/tables/mozilla/marvin/table_frame_border-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_frame_border-expected.png.
2622 * platform/mac-leopard/tables/mozilla/marvin/table_frame_box-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_frame_box-expected.checksum.
2623 * platform/mac-leopard/tables/mozilla/marvin/table_frame_box-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_frame_box-expected.png.
2624 * platform/mac-leopard/tables/mozilla/marvin/table_row_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_center-expected.checksum.
2625 * platform/mac-leopard/tables/mozilla/marvin/table_row_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_center-expected.png.
2626 * platform/mac-leopard/tables/mozilla/marvin/table_row_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_left-expected.checksum.
2627 * platform/mac-leopard/tables/mozilla/marvin/table_row_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_left-expected.png.
2628 * platform/mac-leopard/tables/mozilla/marvin/table_row_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_right-expected.checksum.
2629 * platform/mac-leopard/tables/mozilla/marvin/table_row_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_row_align_right-expected.png.
2630 * platform/mac-leopard/tables/mozilla/marvin/table_rules_all-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_all-expected.checksum.
2631 * platform/mac-leopard/tables/mozilla/marvin/table_rules_all-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_all-expected.png.
2632 * platform/mac-leopard/tables/mozilla/marvin/table_rules_groups-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_groups-expected.checksum.
2633 * platform/mac-leopard/tables/mozilla/marvin/table_rules_groups-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_groups-expected.png.
2634 * platform/mac-leopard/tables/mozilla/marvin/table_rules_none-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_none-expected.checksum.
2635 * platform/mac-leopard/tables/mozilla/marvin/table_rules_none-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/table_rules_none-expected.png.
2636 * platform/mac-leopard/tables/mozilla/marvin/tables_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_center-expected.checksum.
2637 * platform/mac-leopard/tables/mozilla/marvin/tables_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_center-expected.png.
2638 * platform/mac-leopard/tables/mozilla/marvin/tables_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_left-expected.checksum.
2639 * platform/mac-leopard/tables/mozilla/marvin/tables_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_left-expected.png.
2640 * platform/mac-leopard/tables/mozilla/marvin/tables_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_right-expected.checksum.
2641 * platform/mac-leopard/tables/mozilla/marvin/tables_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_align_right-expected.png.
2642 * platform/mac-leopard/tables/mozilla/marvin/tables_border_0-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_0-expected.checksum.
2643 * platform/mac-leopard/tables/mozilla/marvin/tables_border_0-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_0-expected.png.
2644 * platform/mac-leopard/tables/mozilla/marvin/tables_border_1-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_1-expected.checksum.
2645 * platform/mac-leopard/tables/mozilla/marvin/tables_border_1-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_1-expected.png.
2646 * platform/mac-leopard/tables/mozilla/marvin/tables_border_2-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_2-expected.checksum.
2647 * platform/mac-leopard/tables/mozilla/marvin/tables_border_2-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_2-expected.png.
2648 * platform/mac-leopard/tables/mozilla/marvin/tables_border_3-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_3-expected.checksum.
2649 * platform/mac-leopard/tables/mozilla/marvin/tables_border_3-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_border_3-expected.png.
2650 * platform/mac-leopard/tables/mozilla/marvin/tables_cellpadding-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.checksum.
2651 * platform/mac-leopard/tables/mozilla/marvin/tables_cellpadding-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.png.
2652 * platform/mac-leopard/tables/mozilla/marvin/tables_cellpadding_pct-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.checksum.
2653 * platform/mac-leopard/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.png.
2654 * platform/mac-leopard/tables/mozilla/marvin/tables_cellspacing-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.checksum.
2655 * platform/mac-leopard/tables/mozilla/marvin/tables_cellspacing-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.png.
2656 * platform/mac-leopard/tables/mozilla/marvin/tables_class-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_class-expected.checksum.
2657 * platform/mac-leopard/tables/mozilla/marvin/tables_class-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_class-expected.png.
2658 * platform/mac-leopard/tables/mozilla/marvin/tables_id-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_id-expected.checksum.
2659 * platform/mac-leopard/tables/mozilla/marvin/tables_id-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_id-expected.png.
2660 * platform/mac-leopard/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum.
2661 * platform/mac-leopard/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.png.
2662 * platform/mac-leopard/tables/mozilla/marvin/tables_style-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_style-expected.checksum.
2663 * platform/mac-leopard/tables/mozilla/marvin/tables_style-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_style-expected.png.
2664 * platform/mac-leopard/tables/mozilla/marvin/tables_td_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.checksum.
2665 * platform/mac-leopard/tables/mozilla/marvin/tables_td_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.png.
2666 * platform/mac-leopard/tables/mozilla/marvin/tables_td_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.checksum.
2667 * platform/mac-leopard/tables/mozilla/marvin/tables_td_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.png.
2668 * platform/mac-leopard/tables/mozilla/marvin/tables_td_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.checksum.
2669 * platform/mac-leopard/tables/mozilla/marvin/tables_td_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.png.
2670 * platform/mac-leopard/tables/mozilla/marvin/tables_td_colspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.checksum.
2671 * platform/mac-leopard/tables/mozilla/marvin/tables_td_colspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.png.
2672 * platform/mac-leopard/tables/mozilla/marvin/tables_td_height-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_height-expected.checksum.
2673 * platform/mac-leopard/tables/mozilla/marvin/tables_td_height-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_height-expected.png.
2674 * platform/mac-leopard/tables/mozilla/marvin/tables_td_nowrap-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.checksum.
2675 * platform/mac-leopard/tables/mozilla/marvin/tables_td_nowrap-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.png.
2676 * platform/mac-leopard/tables/mozilla/marvin/tables_td_rowspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.checksum.
2677 * platform/mac-leopard/tables/mozilla/marvin/tables_td_rowspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.png.
2678 * platform/mac-leopard/tables/mozilla/marvin/tables_td_width-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_width-expected.checksum.
2679 * platform/mac-leopard/tables/mozilla/marvin/tables_td_width-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_td_width-expected.png.
2680 * platform/mac-leopard/tables/mozilla/marvin/tables_th_align_center-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.checksum.
2681 * platform/mac-leopard/tables/mozilla/marvin/tables_th_align_center-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.png.
2682 * platform/mac-leopard/tables/mozilla/marvin/tables_th_align_left-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.checksum.
2683 * platform/mac-leopard/tables/mozilla/marvin/tables_th_align_left-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.png.
2684 * platform/mac-leopard/tables/mozilla/marvin/tables_th_align_right-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.checksum.
2685 * platform/mac-leopard/tables/mozilla/marvin/tables_th_align_right-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.png.
2686 * platform/mac-leopard/tables/mozilla/marvin/tables_th_colspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.checksum.
2687 * platform/mac-leopard/tables/mozilla/marvin/tables_th_colspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.png.
2688 * platform/mac-leopard/tables/mozilla/marvin/tables_th_height-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_height-expected.checksum.
2689 * platform/mac-leopard/tables/mozilla/marvin/tables_th_height-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_height-expected.png.
2690 * platform/mac-leopard/tables/mozilla/marvin/tables_th_rowspan-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.checksum.
2691 * platform/mac-leopard/tables/mozilla/marvin/tables_th_rowspan-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.png.
2692 * platform/mac-leopard/tables/mozilla/marvin/tables_th_width-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_width-expected.checksum.
2693 * platform/mac-leopard/tables/mozilla/marvin/tables_th_width-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_th_width-expected.png.
2694 * platform/mac-leopard/tables/mozilla/marvin/tables_width_percent-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_width_percent-expected.checksum.
2695 * platform/mac-leopard/tables/mozilla/marvin/tables_width_percent-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_width_percent-expected.png.
2696 * platform/mac-leopard/tables/mozilla/marvin/tables_width_px-expected.checksum: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_width_px-expected.checksum.
2697 * platform/mac-leopard/tables/mozilla/marvin/tables_width_px-expected.png: Copied from LayoutTests/platform/mac/tables/mozilla/marvin/tables_width_px-expected.png.
2698 * platform/mac/tables/mozilla/bugs/bug10296-1-expected.checksum: Replaced.
2699 * platform/mac/tables/mozilla/bugs/bug10296-1-expected.png: Replaced.
2700 * platform/mac/tables/mozilla/bugs/bug1055-1-expected.checksum: Replaced.
2701 * platform/mac/tables/mozilla/bugs/bug1055-1-expected.png: Replaced.
2702 * platform/mac/tables/mozilla/bugs/bug106816-expected.checksum: Replaced.
2703 * platform/mac/tables/mozilla/bugs/bug106816-expected.png: Replaced.
2704 * platform/mac/tables/mozilla/bugs/bug113235-3-expected.checksum: Replaced.
2705 * platform/mac/tables/mozilla/bugs/bug113235-3-expected.png: Replaced.
2706 * platform/mac/tables/mozilla/bugs/bug11944-expected.checksum: Replaced.
2707 * platform/mac/tables/mozilla/bugs/bug11944-expected.png: Replaced.
2708 * platform/mac/tables/mozilla/bugs/bug119786-expected.checksum: Replaced.
2709 * platform/mac/tables/mozilla/bugs/bug119786-expected.png: Replaced.
2710 * platform/mac/tables/mozilla/bugs/bug131020-expected.checksum: Replaced.
2711 * platform/mac/tables/mozilla/bugs/bug131020-expected.png: Replaced.
2712 * platform/mac/tables/mozilla/bugs/bug13118-expected.checksum: Replaced.
2713 * platform/mac/tables/mozilla/bugs/bug13118-expected.png: Replaced.
2714 * platform/mac/tables/mozilla/bugs/bug13196-expected.checksum: Replaced.
2715 * platform/mac/tables/mozilla/bugs/bug13196-expected.png: Replaced.
2716 * platform/mac/tables/mozilla/bugs/bug133756-2-expected.checksum: Replaced.
2717 * platform/mac/tables/mozilla/bugs/bug133756-2-expected.png: Replaced.
2718 * platform/mac/tables/mozilla/bugs/bug139524-2-expected.checksum: Replaced.
2719 * platform/mac/tables/mozilla/bugs/bug139524-2-expected.png: Replaced.
2720 * platform/mac/tables/mozilla/bugs/bug14159-1-expected.checksum: Replaced.
2721 * platform/mac/tables/mozilla/bugs/bug14159-1-expected.png: Replaced.
2722 * platform/mac/tables/mozilla/bugs/bug1430-expected.checksum: Replaced.
2723 * platform/mac/tables/mozilla/bugs/bug1430-expected.png: Replaced.
2724 * platform/mac/tables/mozilla/bugs/bug14929-expected.checksum: Replaced.
2725 * platform/mac/tables/mozilla/bugs/bug14929-expected.png: Replaced.
2726 * platform/mac/tables/mozilla/bugs/bug15247-expected.checksum: Replaced.
2727 * platform/mac/tables/mozilla/bugs/bug15247-expected.png: Replaced.
2728 * platform/mac/tables/mozilla/bugs/bug17130-1-expected.checksum: Replaced.
2729 * platform/mac/tables/mozilla/bugs/bug17130-1-expected.png: Replaced.
2730 * platform/mac/tables/mozilla/bugs/bug17130-2-expected.checksum: Replaced.
2731 * platform/mac/tables/mozilla/bugs/bug17130-2-expected.png: Replaced.
2732 * platform/mac/tables/mozilla/bugs/bug1800-expected.checksum: Replaced.
2733 * platform/mac/tables/mozilla/bugs/bug1800-expected.png: Replaced.
2734 * platform/mac/tables/mozilla/bugs/bug18359-expected.checksum: Replaced.
2735 * platform/mac/tables/mozilla/bugs/bug18359-expected.png: Replaced.
2736 * platform/mac/tables/mozilla/bugs/bug18955-expected.checksum: Replaced.
2737 * platform/mac/tables/mozilla/bugs/bug18955-expected.png: Replaced.
2738 * platform/mac/tables/mozilla/bugs/bug19061-1-expected.checksum: Replaced.
2739 * platform/mac/tables/mozilla/bugs/bug19061-1-expected.png: Replaced.
2740 * platform/mac/tables/mozilla/bugs/bug19061-2-expected.checksum: Replaced.
2741 * platform/mac/tables/mozilla/bugs/bug19061-2-expected.png: Replaced.
2742 * platform/mac/tables/mozilla/bugs/bug194024-expected.checksum: Replaced.
2743 * platform/mac/tables/mozilla/bugs/bug194024-expected.png: Replaced.
2744 * platform/mac/tables/mozilla/bugs/bug19599-expected.checksum: Replaced.
2745 * platform/mac/tables/mozilla/bugs/bug19599-expected.png: Replaced.
2746 * platform/mac/tables/mozilla/bugs/bug20804-expected.checksum: Replaced.
2747 * platform/mac/tables/mozilla/bugs/bug20804-expected.png: Replaced.
2748 * platform/mac/tables/mozilla/bugs/bug2267-expected.checksum: Replaced.
2749 * platform/mac/tables/mozilla/bugs/bug2267-expected.png: Replaced.
2750 * platform/mac/tables/mozilla/bugs/bug23235-expected.checksum: Replaced.
2751 * platform/mac/tables/mozilla/bugs/bug23235-expected.png: Replaced.
2752 * platform/mac/tables/mozilla/bugs/bug23299-expected.checksum: Replaced.
2753 * platform/mac/tables/mozilla/bugs/bug23299-expected.png: Replaced.
2754 * platform/mac/tables/mozilla/bugs/bug24627-expected.checksum: Replaced.
2755 * platform/mac/tables/mozilla/bugs/bug24627-expected.png: Replaced.
2756 * platform/mac/tables/mozilla/bugs/bug2479-3-expected.checksum: Replaced.
2757 * platform/mac/tables/mozilla/bugs/bug2479-3-expected.png: Replaced.
2758 * platform/mac/tables/mozilla/bugs/bug2479-4-expected.checksum: Replaced.
2759 * platform/mac/tables/mozilla/bugs/bug2479-4-expected.png: Replaced.
2760 * platform/mac/tables/mozilla/bugs/bug25086-expected.checksum: Replaced.
2761 * platform/mac/tables/mozilla/bugs/bug25086-expected.png: Replaced.
2762 * platform/mac/tables/mozilla/bugs/bug25663-expected.checksum: Replaced.
2763 * platform/mac/tables/mozilla/bugs/bug25663-expected.png: Replaced.
2764 * platform/mac/tables/mozilla/bugs/bug2684-expected.checksum: Replaced.
2765 * platform/mac/tables/mozilla/bugs/bug2684-expected.png: Replaced.
2766 * platform/mac/tables/mozilla/bugs/bug27038-2-expected.checksum: Replaced.
2767 * platform/mac/tables/mozilla/bugs/bug27038-2-expected.png: Replaced.
2768 * platform/mac/tables/mozilla/bugs/bug2773-expected.checksum: Replaced.
2769 * platform/mac/tables/mozilla/bugs/bug2773-expected.png: Replaced.
2770 * platform/mac/tables/mozilla/bugs/bug2886-expected.checksum: Replaced.
2771 * platform/mac/tables/mozilla/bugs/bug2886-expected.png: Replaced.
2772 * platform/mac/tables/mozilla/bugs/bug29058-3-expected.checksum: Replaced.
2773 * platform/mac/tables/mozilla/bugs/bug29058-3-expected.png: Replaced.
2774 * platform/mac/tables/mozilla/bugs/bug29429-expected.checksum: Replaced.
2775 * platform/mac/tables/mozilla/bugs/bug29429-expected.png: Replaced.
2776 * platform/mac/tables/mozilla/bugs/bug2947-expected.checksum: Replaced.
2777 * platform/mac/tables/mozilla/bugs/bug2947-expected.png: Replaced.
2778 * platform/mac/tables/mozilla/bugs/bug2981-1-expected.checksum: Replaced.
2779 * platform/mac/tables/mozilla/bugs/bug2981-1-expected.png: Replaced.
2780 * platform/mac/tables/mozilla/bugs/bug2981-2-expected.checksum: Replaced.
2781 * platform/mac/tables/mozilla/bugs/bug2981-2-expected.png: Replaced.
2782 * platform/mac/tables/mozilla/bugs/bug2997-expected.checksum: Replaced.
2783 * platform/mac/tables/mozilla/bugs/bug2997-expected.png: Replaced.
2784 * platform/mac/tables/mozilla/bugs/bug30692-expected.checksum: Replaced.
2785 * platform/mac/tables/mozilla/bugs/bug30692-expected.png: Replaced.
2786 * platform/mac/tables/mozilla/bugs/bug3103-expected.checksum: Replaced.
2787 * platform/mac/tables/mozilla/bugs/bug3103-expected.png: Replaced.
2788 * platform/mac/tables/mozilla/bugs/bug32205-3-expected.checksum: Replaced.
2789 * platform/mac/tables/mozilla/bugs/bug32205-3-expected.png: Replaced.
2790 * platform/mac/tables/mozilla/bugs/bug33855-expected.checksum: Replaced.
2791 * platform/mac/tables/mozilla/bugs/bug33855-expected.png: Replaced.
2792 * platform/mac/tables/mozilla/bugs/bug3454-expected.checksum: Replaced.
2793 * platform/mac/tables/mozilla/bugs/bug3454-expected.png: Replaced.
2794 * platform/mac/tables/mozilla/bugs/bug3681-1-expected.checksum: Replaced.
2795 * platform/mac/tables/mozilla/bugs/bug3681-1-expected.png: Replaced.
2796 * platform/mac/tables/mozilla/bugs/bug3977-expected.checksum: Replaced.
2797 * platform/mac/tables/mozilla/bugs/bug3977-expected.png: Replaced.
2798 * platform/mac/tables/mozilla/bugs/bug41890-expected.checksum: Replaced.
2799 * platform/mac/tables/mozilla/bugs/bug41890-expected.png: Replaced.
2800 * platform/mac/tables/mozilla/bugs/bug42187-expected.checksum: Replaced.
2801 * platform/mac/tables/mozilla/bugs/bug42187-expected.png: Replaced.
2802 * platform/mac/tables/mozilla/bugs/bug43039-expected.checksum: Replaced.
2803 * platform/mac/tables/mozilla/bugs/bug43039-expected.png: Replaced.
2804 * platform/mac/tables/mozilla/bugs/bug4382-expected.checksum: Replaced.
2805 * platform/mac/tables/mozilla/bugs/bug4382-expected.png: Replaced.
2806 * platform/mac/tables/mozilla/bugs/bug43854-2-expected.checksum: Replaced.
2807 * platform/mac/tables/mozilla/bugs/bug43854-2-expected.png: Replaced.
2808 * platform/mac/tables/mozilla/bugs/bug4427-expected.checksum: Replaced.
2809 * platform/mac/tables/mozilla/bugs/bug4427-expected.png: Replaced.
2810 * platform/mac/tables/mozilla/bugs/bug44505-expected.checksum: Replaced.
2811 * platform/mac/tables/mozilla/bugs/bug44505-expected.png: Replaced.
2812 * platform/mac/tables/mozilla/bugs/bug45055-2-expected.checksum: Replaced.
2813 * platform/mac/tables/mozilla/bugs/bug45055-2-expected.png: Replaced.
2814 * platform/mac/tables/mozilla/bugs/bug45486-expected.checksum: Replaced.
2815 * platform/mac/tables/mozilla/bugs/bug45486-expected.png: Replaced.
2816 * platform/mac/tables/mozilla/bugs/bug46368-1-expected.checksum: Replaced.
2817 * platform/mac/tables/mozilla/bugs/bug46368-1-expected.png: Replaced.
2818 * platform/mac/tables/mozilla/bugs/bug46368-2-expected.checksum: Replaced.
2819 * platform/mac/tables/mozilla/bugs/bug46368-2-expected.png: Replaced.
2820 * platform/mac/tables/mozilla/bugs/bug46623-2-expected.checksum: Replaced.
2821 * platform/mac/tables/mozilla/bugs/bug46623-2-expected.png: Replaced.
2822 * platform/mac/tables/mozilla/bugs/bug46924-expected.checksum: Replaced.
2823 * platform/mac/tables/mozilla/bugs/bug46924-expected.png: Replaced.
2824 * platform/mac/tables/mozilla/bugs/bug47432-expected.checksum: Replaced.
2825 * platform/mac/tables/mozilla/bugs/bug47432-expected.png: Replaced.
2826 * platform/mac/tables/mozilla/bugs/bug51727-expected.checksum: Replaced.
2827 * platform/mac/tables/mozilla/bugs/bug51727-expected.png: Replaced.
2828 * platform/mac/tables/mozilla/bugs/bug52505-expected.checksum: Replaced.
2829 * platform/mac/tables/mozilla/bugs/bug52505-expected.png: Replaced.
2830 * platform/mac/tables/mozilla/bugs/bug52506-expected.checksum: Replaced.
2831 * platform/mac/tables/mozilla/bugs/bug52506-expected.png: Replaced.
2832 * platform/mac/tables/mozilla/bugs/bug5538-expected.checksum: Replaced.
2833 * platform/mac/tables/mozilla/bugs/bug5538-expected.png: Replaced.
2834 * platform/mac/tables/mozilla/bugs/bug55694-expected.checksum: Replaced.
2835 * platform/mac/tables/mozilla/bugs/bug55694-expected.png: Replaced.
2836 * platform/mac/tables/mozilla/bugs/bug57300-expected.checksum: Replaced.
2837 * platform/mac/tables/mozilla/bugs/bug57300-expected.png: Replaced.
2838 * platform/mac/tables/mozilla/bugs/bug5799-expected.checksum: Replaced.
2839 * platform/mac/tables/mozilla/bugs/bug5799-expected.png: Replaced.
2840 * platform/mac/tables/mozilla/bugs/bug5835-expected.checksum: Replaced.
2841 * platform/mac/tables/mozilla/bugs/bug5835-expected.png: Replaced.
2842 * platform/mac/tables/mozilla/bugs/bug60749-expected.checksum: Replaced.
2843 * platform/mac/tables/mozilla/bugs/bug60749-expected.png: Replaced.
2844 * platform/mac/tables/mozilla/bugs/bug6184-expected.checksum: Replaced.
2845 * platform/mac/tables/mozilla/bugs/bug6184-expected.png: Replaced.
2846 * platform/mac/tables/mozilla/bugs/bug6404-expected.checksum: Replaced.
2847 * platform/mac/tables/mozilla/bugs/bug6404-expected.png: Replaced.
2848 * platform/mac/tables/mozilla/bugs/bug650-expected.checksum: Replaced.
2849 * platform/mac/tables/mozilla/bugs/bug650-expected.png: Replaced.
2850 * platform/mac/tables/mozilla/bugs/bug68912-expected.checksum: Replaced.
2851 * platform/mac/tables/mozilla/bugs/bug68912-expected.png: Replaced.
2852 * platform/mac/tables/mozilla/bugs/bug69382-1-expected.checksum: Replaced.
2853 * platform/mac/tables/mozilla/bugs/bug69382-1-expected.png: Replaced.
2854 * platform/mac/tables/mozilla/bugs/bug7112-1-expected.checksum: Replaced.
2855 * platform/mac/tables/mozilla/bugs/bug7112-1-expected.png: Replaced.
2856 * platform/mac/tables/mozilla/bugs/bug7112-2-expected.checksum: Replaced.
2857 * platform/mac/tables/mozilla/bugs/bug7112-2-expected.png: Replaced.
2858 * platform/mac/tables/mozilla/bugs/bug7121-1-expected.checksum: Replaced.
2859 * platform/mac/tables/mozilla/bugs/bug7121-1-expected.png: Replaced.
2860 * platform/mac/tables/mozilla/bugs/bug7342-expected.checksum: Replaced.
2861 * platform/mac/tables/mozilla/bugs/bug7342-expected.png: Replaced.
2862 * platform/mac/tables/mozilla/bugs/bug7471-expected.checksum: Replaced.
2863 * platform/mac/tables/mozilla/bugs/bug7471-expected.png: Replaced.
2864 * platform/mac/tables/mozilla/bugs/bug7714-expected.checksum: Replaced.
2865 * platform/mac/tables/mozilla/bugs/bug7714-expected.png: Replaced.
2866 * platform/mac/tables/mozilla/bugs/bug78162-expected.checksum: Replaced.
2867 * platform/mac/tables/mozilla/bugs/bug78162-expected.png: Replaced.
2868 * platform/mac/tables/mozilla/bugs/bug80762-1-expected.checksum: Replaced.
2869 * platform/mac/tables/mozilla/bugs/bug80762-1-expected.png: Replaced.
2870 * platform/mac/tables/mozilla/bugs/bug82946-1-expected.checksum: Replaced.
2871 * platform/mac/tables/mozilla/bugs/bug82946-1-expected.png: Replaced.
2872 * platform/mac/tables/mozilla/bugs/bug8411-expected.checksum:
2873 * platform/mac/tables/mozilla/bugs/bug8411-expected.png:
2874 * platform/mac/tables/mozilla/bugs/bug8858-expected.checksum: Replaced.
2875 * platform/mac/tables/mozilla/bugs/bug8858-expected.png: Replaced.
2876 * platform/mac/tables/mozilla/bugs/bug8950-expected.checksum: Replaced.
2877 * platform/mac/tables/mozilla/bugs/bug8950-expected.png: Replaced.
2878 * platform/mac/tables/mozilla/bugs/bug9123-1-expected.checksum: Replaced.
2879 * platform/mac/tables/mozilla/bugs/bug9123-1-expected.png: Replaced.
2880 * platform/mac/tables/mozilla/bugs/bug9123-2-expected.checksum: Replaced.
2881 * platform/mac/tables/mozilla/bugs/bug9123-2-expected.png: Replaced.
2882 * platform/mac/tables/mozilla/bugs/bug92143-expected.checksum: Replaced.
2883 * platform/mac/tables/mozilla/bugs/bug92143-expected.png: Replaced.
2884 * platform/mac/tables/mozilla/bugs/bug93363-expected.checksum: Replaced.
2885 * platform/mac/tables/mozilla/bugs/bug93363-expected.png: Replaced.
2886 * platform/mac/tables/mozilla/bugs/bug96334-expected.checksum: Replaced.
2887 * platform/mac/tables/mozilla/bugs/bug96334-expected.png: Replaced.
2888 * platform/mac/tables/mozilla/bugs/bug965-expected.checksum: Replaced.
2889 * platform/mac/tables/mozilla/bugs/bug965-expected.png: Replaced.
2890 * platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum: Replaced.
2891 * platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.png: Replaced.
2892 * platform/mac/tables/mozilla/core/borders-expected.checksum: Replaced.
2893 * platform/mac/tables/mozilla/core/borders-expected.png: Replaced.
2894 * platform/mac/tables/mozilla/core/col_span-expected.checksum: Replaced.
2895 * platform/mac/tables/mozilla/core/col_span-expected.png: Replaced.
2896 * platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.checksum: Replaced.
2897 * platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Replaced.
2898 * platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.checksum: Replaced.
2899 * platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.png: Replaced.
2900 * platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.checksum: Replaced.
2901 * platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.png: Replaced.
2902 * platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.checksum: Replaced.
2903 * platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.png: Replaced.
2904 * platform/mac/tables/mozilla/core/col_widths_auto_per-expected.checksum: Replaced.
2905 * platform/mac/tables/mozilla/core/col_widths_auto_per-expected.png: Replaced.
2906 * platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.checksum: Replaced.
2907 * platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.png: Replaced.
2908 * platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.checksum: Replaced.
2909 * platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.png: Replaced.
2910 * platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.checksum: Replaced.
2911 * platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.png: Replaced.
2912 * platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.checksum: Replaced.
2913 * platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.png: Replaced.
2914 * platform/mac/tables/mozilla/core/margins-expected.checksum: Replaced.
2915 * platform/mac/tables/mozilla/core/margins-expected.png: Replaced.
2916 * platform/mac/tables/mozilla/core/one_row-expected.checksum: Replaced.
2917 * platform/mac/tables/mozilla/core/one_row-expected.png: Replaced.
2918 * platform/mac/tables/mozilla/core/row_span-expected.checksum: Replaced.
2919 * platform/mac/tables/mozilla/core/row_span-expected.png: Replaced.
2920 * platform/mac/tables/mozilla/core/table_rules-expected.checksum: Replaced.
2921 * platform/mac/tables/mozilla/core/table_rules-expected.png: Replaced.
2922 * platform/mac/tables/mozilla/core/table_widths-expected.checksum: Replaced.
2923 * platform/mac/tables/mozilla/core/table_widths-expected.png: Replaced.
2924 * platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.checksum: Replaced.
2925 * platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: Replaced.
2926 * platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.checksum: Replaced.
2927 * platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.png: Replaced.
2928 * platform/mac/tables/mozilla/images/adforce_imgis_com-expected.checksum: Replaced.
2929 * platform/mac/tables/mozilla/images/adforce_imgis_com-expected.png: Replaced.
2930 * platform/mac/tables/mozilla/marvin/body_tbody-expected.checksum: Replaced.
2931 * platform/mac/tables/mozilla/marvin/body_tbody-expected.png: Replaced.
2932 * platform/mac/tables/mozilla/marvin/body_tfoot-expected.checksum: Replaced.
2933 * platform/mac/tables/mozilla/marvin/body_tfoot-expected.png: Replaced.
2934 * platform/mac/tables/mozilla/marvin/body_thead-expected.checksum: Replaced.
2935 * platform/mac/tables/mozilla/marvin/body_thead-expected.png: Replaced.
2936 * platform/mac/tables/mozilla/marvin/col_span-expected.checksum: Replaced.
2937 * platform/mac/tables/mozilla/marvin/col_span-expected.png: Replaced.
2938 * platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.checksum: Replaced.
2939 * platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.png: Replaced.
2940 * platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.checksum: Replaced.
2941 * platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.png: Replaced.
2942 * platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.checksum: Replaced.
2943 * platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.png: Replaced.
2944 * platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.checksum: Replaced.
2945 * platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.png: Replaced.
2946 * platform/mac/tables/mozilla/marvin/colgroup_span-expected.checksum: Replaced.
2947 * platform/mac/tables/mozilla/marvin/colgroup_span-expected.png: Replaced.
2948 * platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum: Replaced.
2949 * platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: Replaced.
2950 * platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum: Replaced.
2951 * platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: Replaced.
2952 * platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum: Replaced.
2953 * platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.png: Replaced.
2954 * platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.checksum: Replaced.
2955 * platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.png: Replaced.
2956 * platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.checksum: Replaced.
2957 * platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.png: Replaced.
2958 * platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.checksum: Replaced.
2959 * platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.png: Replaced.
2960 * platform/mac/tables/mozilla/marvin/table_frame_border-expected.checksum: Replaced.
2961 * platform/mac/tables/mozilla/marvin/table_frame_border-expected.png: Replaced.
2962 * platform/mac/tables/mozilla/marvin/table_frame_box-expected.checksum: Replaced.
2963 * platform/mac/tables/mozilla/marvin/table_frame_box-expected.png: Replaced.
2964 * platform/mac/tables/mozilla/marvin/table_row_align_center-expected.checksum: Replaced.
2965 * platform/mac/tables/mozilla/marvin/table_row_align_center-expected.png: Replaced.
2966 * platform/mac/tables/mozilla/marvin/table_row_align_left-expected.checksum: Replaced.
2967 * platform/mac/tables/mozilla/marvin/table_row_align_left-expected.png: Replaced.
2968 * platform/mac/tables/mozilla/marvin/table_row_align_right-expected.checksum: Replaced.
2969 * platform/mac/tables/mozilla/marvin/table_row_align_right-expected.png: Replaced.
2970 * platform/mac/tables/mozilla/marvin/table_rules_all-expected.checksum: Replaced.
2971 * platform/mac/tables/mozilla/marvin/table_rules_all-expected.png: Replaced.
2972 * platform/mac/tables/mozilla/marvin/table_rules_groups-expected.checksum: Replaced.
2973 * platform/mac/tables/mozilla/marvin/table_rules_groups-expected.png: Replaced.
2974 * platform/mac/tables/mozilla/marvin/table_rules_none-expected.checksum: Replaced.
2975 * platform/mac/tables/mozilla/marvin/table_rules_none-expected.png: Replaced.
2976 * platform/mac/tables/mozilla/marvin/tables_align_center-expected.checksum: Replaced.
2977 * platform/mac/tables/mozilla/marvin/tables_align_center-expected.png: Replaced.
2978 * platform/mac/tables/mozilla/marvin/tables_align_left-expected.checksum: Replaced.
2979 * platform/mac/tables/mozilla/marvin/tables_align_left-expected.png: Replaced.
2980 * platform/mac/tables/mozilla/marvin/tables_align_right-expected.checksum: Replaced.
2981 * platform/mac/tables/mozilla/marvin/tables_align_right-expected.png: Replaced.
2982 * platform/mac/tables/mozilla/marvin/tables_border_0-expected.checksum: Replaced.
2983 * platform/mac/tables/mozilla/marvin/tables_border_0-expected.png: Replaced.
2984 * platform/mac/tables/mozilla/marvin/tables_border_1-expected.checksum: Replaced.
2985 * platform/mac/tables/mozilla/marvin/tables_border_1-expected.png: Replaced.
2986 * platform/mac/tables/mozilla/marvin/tables_border_2-expected.checksum: Replaced.
2987 * platform/mac/tables/mozilla/marvin/tables_border_2-expected.png: Replaced.
2988 * platform/mac/tables/mozilla/marvin/tables_border_3-expected.checksum: Replaced.
2989 * platform/mac/tables/mozilla/marvin/tables_border_3-expected.png: Replaced.
2990 * platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.checksum: Replaced.
2991 * platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.png: Replaced.
2992 * platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.checksum: Replaced.
2993 * platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: Replaced.
2994 * platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.checksum: Replaced.
2995 * platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.png: Replaced.
2996 * platform/mac/tables/mozilla/marvin/tables_class-expected.checksum: Replaced.
2997 * platform/mac/tables/mozilla/marvin/tables_class-expected.png: Replaced.
2998 * platform/mac/tables/mozilla/marvin/tables_id-expected.checksum: Replaced.
2999 * platform/mac/tables/mozilla/marvin/tables_id-expected.png: Replaced.
3000 * platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum: Replaced.
3001 * platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: Replaced.
3002 * platform/mac/tables/mozilla/marvin/tables_style-expected.checksum: Replaced.
3003 * platform/mac/tables/mozilla/marvin/tables_style-expected.png: Replaced.
3004 * platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.checksum: Replaced.
3005 * platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.png: Replaced.
3006 * platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.checksum: Replaced.
3007 * platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.png: Replaced.
3008 * platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.checksum: Replaced.
3009 * platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.png: Replaced.
3010 * platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.checksum: Replaced.
3011 * platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.png: Replaced.
3012 * platform/mac/tables/mozilla/marvin/tables_td_height-expected.checksum: Replaced.
3013 * platform/mac/tables/mozilla/marvin/tables_td_height-expected.png: Replaced.
3014 * platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.checksum: Replaced.
3015 * platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.png: Replaced.
3016 * platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.checksum: Replaced.
3017 * platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.png: Replaced.
3018 * platform/mac/tables/mozilla/marvin/tables_td_width-expected.checksum: Replaced.
3019 * platform/mac/tables/mozilla/marvin/tables_td_width-expected.png: Replaced.
3020 * platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.checksum: Replaced.
3021 * platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.png: Replaced.
3022 * platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.checksum: Replaced.
3023 * platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.png: Replaced.
3024 * platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.checksum: Replaced.
3025 * platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.png: Replaced.
3026 * platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.checksum: Replaced.
3027 * platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.png: Replaced.
3028 * platform/mac/tables/mozilla/marvin/tables_th_height-expected.checksum: Replaced.
3029 * platform/mac/tables/mozilla/marvin/tables_th_height-expected.png: Replaced.
3030 * platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.checksum: Replaced.
3031 * platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.png: Replaced.
3032 * platform/mac/tables/mozilla/marvin/tables_th_width-expected.checksum: Replaced.
3033 * platform/mac/tables/mozilla/marvin/tables_th_width-expected.png: Replaced.
3034 * platform/mac/tables/mozilla/marvin/tables_width_percent-expected.checksum: Replaced.
3035 * platform/mac/tables/mozilla/marvin/tables_width_percent-expected.png: Replaced.
3036 * platform/mac/tables/mozilla/marvin/tables_width_px-expected.checksum: Replaced.
3037 * platform/mac/tables/mozilla/marvin/tables_width_px-expected.png: Replaced.
3039 2010-05-25 Darin Adler <darin@apple.com>
3041 Update more files that changed as a result of
3042 https://bugs.webkit.org/show_bug.cgi?id=39516
3043 That patch added -webkit-column-span.
3045 * fast/css/getComputedStyle/computed-style-expected.txt:
3046 * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
3047 * platform/chromium-mac/fast/css/computed-style-expected.txt:
3048 * platform/chromium-mac/fast/css/computed-style-without-renderer-expected.txt:
3049 * platform/chromium-win/fast/css/computed-style-expected.txt:
3050 * platform/chromium-win/fast/css/computed-style-without-renderer-expected.txt:
3051 * platform/qt/fast/css/getComputedStyle/computed-style-expected.txt:
3052 * platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
3053 * platform/win/fast/css/getComputedStyle/computed-style-expected.txt:
3054 * platform/win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
3055 Added -webkit-column-span.
3057 2010-05-25 Julie Parent <jparent@chromium.org>
3061 Update Chromium test expectations from r60172.
3063 * platform/chromium/html5lib/webkit-runner-expected.txt:
3065 2010-05-25 Adam Barth <abarth@webkit.org>
3067 Reviewed by Eric Seidel.
3069 Add more HTML5 entity parsing test coverage
3070 https://bugs.webkit.org/show_bug.cgi?id=39662
3072 These tests all pass in Firefox. We have some more work to do here.
3073 There's a large testing matrix for entities, so expect more tests in
3076 * html5lib/webkit-runner-expected-html5.txt:
3077 * html5lib/webkit-runner-expected.txt:
3078 * html5lib/webkit-runner.html:
3080 2010-05-25 Antonio Gomes <tonikitoo@webkit.org>
3082 Unreviewed attempt to make Tiger bot green.
3084 [Mac][Tiger] failing philip canvas tests
3085 https://bugs.webkit.org/show_bug.cgi?id=39677
3087 * platform/mac-tiger/Skipped:
3089 2010-05-25 Chang Shu <chang.shu@nokia.com>
3093 Skipped two additional canvas test cases that failed on SnowLeopard only.
3094 https://bugs.webkit.org/show_bug.cgi?id=20553
3096 * platform/mac-snowleopard/Skipped:
3098 2010-05-25 Chang Shu <chang.shu@nokia.com>
3100 Reviewed by Kenneth Rohde Christiansen.
3102 The following are the steps on how the expected results were created:
3103 1. Generated ~800 results on Mac.
3104 2. Manually edited ~100 failed results to "Passed" to make them "expected".
3105 All ~800 expected results are the same across the platforms.
3106 3. Put the failed ones in Mac's Skipped list. Other platforms are skipping
3107 the whole directory, which will be worked on later.
3108 https://bugs.webkit.org/show_bug.cgi?id=20553
3110 * canvas/philip/tests/*-expected.txt: 788 files Added.
3111 * platform/mac/Skipped:
3113 2010-05-25 Adam Barth <abarth@webkit.org>
3115 Reviewed by Eric Seidel.
3117 Clear attributes for each tag in the HTML5 parser
3118 https://bugs.webkit.org/show_bug.cgi?id=39660
3120 I'm surprised this wasn't covered already, but sometimes the most basic
3121 things are the hardest to remember to test.
3123 * html5lib/resources/webkit01.dat:
3125 2010-05-25 Tony Chang <tony@chromium.org>
3127 Not reviewed, fixing the expected result.
3129 [chromium] add v8 baseline for html5lib/webkit-runner.html (error message differences)
3130 https://bugs.webkit.org/show_bug.cgi?id=39659
3132 I checked in expected results generated from the wrong revision.
3134 * platform/chromium/html5lib/webkit-runner-expected.txt:
3136 2010-05-25 Tony Chang <tony@chromium.org>
3138 Reviewed by Adam Barth.
3140 [chromium] add v8 baseline for html5lib/webkit-runner.html (error message differences)
3141 https://bugs.webkit.org/show_bug.cgi?id=39659
3143 * platform/chromium/html5lib/webkit-runner-expected.txt: Added.
3145 2010-05-25 Tony Chang <tony@chromium.org>
3147 Not reviewed, updating test expectations.
3149 [chromium] Fix test expectation for fast/dom/global-constructors.html
3150 https://bugs.webkit.org/show_bug.cgi?id=39656
3152 This test was modified in r60119 and the V8 specific expecatation needs updating.
3153 Also disable fast/dom/prototype-property.html because it's failing.
3155 * platform/chromium-mac/fast/dom/global-constructors-expected.txt: Removed.
3156 * platform/chromium-win/fast/dom/global-constructors-expected.txt: Removed.
3157 * platform/chromium/fast/dom/global-constructors-expected.txt: Copied from LayoutTests/platform/chromium-mac/fast/dom/global-constructors-expected.txt.
3158 * platform/chromium/test_expectations.txt:
3160 2010-05-25 Adam Barth <abarth@webkit.org>
3164 Use @type="text/plain" to silence JavaScript parse errors. These
3165 errors show up differently in JSC and V8 and that's not what we're
3166 trying to test with this test.
3168 * html5lib/resources/scriptdata01.dat:
3169 * html5lib/webkit-runner-expected-html5.txt:
3170 * html5lib/webkit-runner-expected.txt:
3172 2010-05-25 Adam Barth <abarth@webkit.org>
3174 Reviewed by Eric Seidel.
3176 Fix <noembed> and <plaintext> content models
3177 https://bugs.webkit.org/show_bug.cgi?id=39653
3179 Update expected result to show new passing test.
3181 * html5lib/webkit-runner-expected-html5.txt:
3183 2010-05-24 Adam Barth <abarth@webkit.org>
3185 Reviewed by Eric Seidel.
3187 First cut at HTML5 entities
3188 https://bugs.webkit.org/show_bug.cgi?id=39649
3190 Update the expected results to show the new passing tests. Yay!
3192 * html5lib/webkit-runner-expected-html5.txt:
3194 2010-05-24 Robert Hogan <robert@webkit.org>
3196 Reviewed by Laszlo Gombos.
3198 [Qt] DRT Support for removeOriginAccessWhitelistEntry
3200 Unskips http/tests/xmlhttprequest/origin-whitelisting-removal.html
3202 [Qt] DRT Support for removeOriginAccessWhitelistEntry
3203 https://bugs.webkit.org/show_bug.cgi?id=39565
3205 * platform/qt/Skipped:
3207 2010-05-24 Andreas Kling <andreas.kling@nokia.com>
3209 Reviewed by Sam Weinig.
3211 Add a test to verify that the 'prototype' property on generated Web IDL interfaces is { DontDelete | ReadOnly }.
3214 http://www.w3.org/TR/WebIDL/#interface-object
3216 https://bugs.webkit.org/show_bug.cgi?id=39436
3218 * fast/dom/global-constructors-expected.txt: Updated baseline.
3219 * fast/dom/global-constructors.html:
3220 * fast/dom/prototype-property-expected.txt: Added.
3221 * fast/dom/prototype-property.html: Added.
3222 * fast/dom/script-tests/prototype-property.js: Added.
3223 (tryToDeletePrototype):
3224 (tryToSetPrototype):
3226 2010-05-24 Adam Barth <abarth@webkit.org>
3228 Reviewed by Eric Seidel.
3230 Import remaining html5lib tests into webkit-runner.html
3231 https://bugs.webkit.org/show_bug.cgi?id=39638
3233 We should be able to drive the diffs between webkit-runner-expected.txt
3234 and webkit-runner-expected-html5.txt to zero.
3236 Another option is to remove webkit-runner and just use runner.html, but
3237 we don't yet support <script src=...> in the HTML5 parser.
3239 * html5lib/webkit-runner-expected-html5.txt:
3240 * html5lib/webkit-runner-expected.txt:
3241 * html5lib/webkit-runner.html:
3243 2010-05-24 Adam Barth <abarth@webkit.org>
3245 Reviewed by Eric Seidel.
3247 Teach the HTML5 parser how to lex escaped script data
3248 https://bugs.webkit.org/show_bug.cgi?id=39630
3250 Add a bunch of tests for parsing script data. I think these tests
3251 drive the lexer into all the script data states.
3253 * html5lib/resources/scriptdata01.dat: Added.
3254 * html5lib/webkit-runner-expected-html5.txt:
3255 * html5lib/webkit-runner-expected.txt:
3256 * html5lib/webkit-runner.html:
3258 2010-05-24 James Robinson <jamesr@chromium.org>
3260 Unreviewed baseline only change
3262 Move Leopard-specific pixel test results from platform/mac to platform/mac-leopard
3263 https://bugs.webkit.org/show_bug.cgi?id=39317
3265 This shuffles the pixel failures in editing/ that are due to small (<0.1%) pixel
3266 diffs in text rendering between Leopard and Snow Leopard.
3268 * platform/mac-leopard/editing/deleting/4922367-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/4922367-expected.checksum.
3269 * platform/mac-leopard/editing/deleting/4922367-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/4922367-expected.png.
3270 * platform/mac-leopard/editing/deleting/5026848-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5026848-1-expected.checksum.
3271 * platform/mac-leopard/editing/deleting/5026848-1-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5026848-1-expected.png.
3272 * platform/mac-leopard/editing/deleting/5026848-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5026848-2-expected.checksum.
3273 * platform/mac-leopard/editing/deleting/5026848-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5026848-2-expected.png.
3274 * platform/mac-leopard/editing/deleting/5026848-3-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5026848-3-expected.checksum.
3275 * platform/mac-leopard/editing/deleting/5026848-3-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5026848-3-expected.png.
3276 * platform/mac-leopard/editing/deleting/5032066-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5032066-expected.checksum.
3277 * platform/mac-leopard/editing/deleting/5032066-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5032066-expected.png.
3278 * platform/mac-leopard/editing/deleting/5091898-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5091898-expected.checksum.
3279 * platform/mac-leopard/editing/deleting/5091898-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5091898-expected.png.
3280 * platform/mac-leopard/editing/deleting/5099303-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5099303-expected.checksum.
3281 * platform/mac-leopard/editing/deleting/5099303-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5099303-expected.png.
3282 * platform/mac-leopard/editing/deleting/5115601-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5115601-expected.checksum.
3283 * platform/mac-leopard/editing/deleting/5115601-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5115601-expected.png.
3284 * platform/mac-leopard/editing/deleting/5126166-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5126166-expected.checksum.
3285 * platform/mac-leopard/editing/deleting/5126166-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5126166-expected.png.
3286 * platform/mac-leopard/editing/deleting/5144139-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5144139-2-expected.checksum.
3287 * platform/mac-leopard/editing/deleting/5144139-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5144139-2-expected.png.
3288 * platform/mac-leopard/editing/deleting/5168598-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5168598-expected.checksum.
3289 * platform/mac-leopard/editing/deleting/5168598-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5168598-expected.png.
3290 * platform/mac-leopard/editing/deleting/5206311-1-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5206311-1-expected.checksum.
3291 * platform/mac-leopard/editing/deleting/5206311-1-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5206311-1-expected.png.
3292 * platform/mac-leopard/editing/deleting/5206311-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5206311-2-expected.checksum.
3293 * platform/mac-leopard/editing/deleting/5206311-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5206311-2-expected.png.
3294 * platform/mac-leopard/editing/deleting/5272440-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5272440-expected.checksum.
3295 * platform/mac-leopard/editing/deleting/5272440-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5272440-expected.png.
3296 * platform/mac-leopard/editing/deleting/5369009-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5369009-expected.checksum.
3297 * platform/mac-leopard/editing/deleting/5369009-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5369009-expected.png.
3298 * platform/mac-leopard/editing/deleting/5390681-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5390681-2-expected.checksum.
3299 * platform/mac-leopard/editing/deleting/5390681-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5390681-2-expected.png.
3300 * platform/mac-leopard/editing/deleting/5390681-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5390681-expected.checksum.
3301 * platform/mac-leopard/editing/deleting/5390681-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5390681-expected.png.
3302 * platform/mac-leopard/editing/deleting/5433862-2-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5433862-2-expected.checksum.
3303 * platform/mac-leopard/editing/deleting/5433862-2-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5433862-2-expected.png.
3304 * platform/mac-leopard/editing/deleting/5483370-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/5483370-expected.checksum.
3305 * platform/mac-leopard/editing/deleting/5483370-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/5483370-expected.png.
3306 * platform/mac-leopard/editing/deleting/delete-4038408-fix-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-4038408-fix-expected.checksum.
3307 * platform/mac-leopard/editing/deleting/delete-4038408-fix-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-4038408-fix-expected.png.
3308 * platform/mac-leopard/editing/deleting/delete-br-013-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-013-expected.checksum.
3309 * platform/mac-leopard/editing/deleting/delete-br-013-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-013-expected.png.
3310 * platform/mac-leopard/editing/deleting/delete-first-list-item-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-first-list-item-expected.checksum.
3311 * platform/mac-leopard/editing/deleting/delete-first-list-item-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-first-list-item-expected.png.
3312 * platform/mac-leopard/editing/deleting/delete-line-015-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-015-expected.checksum.
3313 * platform/mac-leopard/editing/deleting/delete-line-015-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-015-expected.png.
3314 * platform/mac-leopard/editing/deleting/delete-line-016-expected.checksum: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-016-expected.checksum.
3315 * platform/mac-leopard/editing/deleting/delete-line-016-expected.png: Copied from LayoutTests/platform/mac/editing/deleting/delete-line-016-expected.png.