Timeline
Jan 2, 2012:
- 11:00 PM Changeset in webkit [103926] by
-
- 3 edits in trunk/Source/JavaScriptCore
Check in fixes for jsc tests following bug #75455.
- tests/mozilla/ecma/GlobalObject/15.1.2.2-1.js:
- tests/mozilla/ecma/GlobalObject/15.1.2.2-2.js:
- 10:56 PM Changeset in webkit [103925] by
-
- 2 edits in trunk/Source/WebKit2
Fixed a typo I made in r103871.
Fixes <http://webkit.org/b/75450> Inline PDF doesn't preview correctly when attempting to print its frame
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::drawRectToPDF): Changed USE(GC) to USE(CG).
- 10:56 PM Changeset in webkit [103924] by
-
- 5 edits in trunk
https://bugs.webkit.org/show_bug.cgi?id=75452
If argument to Error is undefined, message is not set
Reviewed by Sam Weinig.
Source/JavaScriptCore:
Per section 15.11.1.1 of the spec.
- runtime/ErrorInstance.h:
(JSC::ErrorInstance::create):
(JSC::ErrorInstance::finishCreation):
LayoutTests:
Added test case.
- fast/js/native-error-prototype-expected.txt:
- fast/js/script-tests/native-error-prototype.js:
- 9:45 PM Changeset in webkit [103923] by
-
- 2 edits in trunk/Source/WebCore
REGRESSION(r103919): Remove resolve-supplemental.pl from the WebCore target in Xcode
https://bugs.webkit.org/show_bug.cgi?id=75458
Reviewed by Adam Barth.
At r103919, we added resolve-supplemental.pl to WebCore.framework/Resources,
but we should have added it to the project without adding it to any target.
This patch fixes it.
No tests. No change in behavior.
- WebCore.xcodeproj/project.pbxproj:
- 8:32 PM Changeset in webkit [103922] by
-
- 7 edits in trunk
ES5 prohibits parseInt from supporting octal
https://bugs.webkit.org/show_bug.cgi?id=75455
Reviewed by Sam Weinig.
See sections 15.1.2.2 and annex E.
Source/JavaScriptCore:
- runtime/JSGlobalObjectFunctions.cpp:
(JSC::parseInt):
LayoutTests:
- fast/js/kde/GlobalObject-expected.txt:
- fast/js/kde/script-tests/GlobalObject.js:
- Change test to check for correct result.
- sputnik/Implementation_Diagnostics/S15.1.2.2_D1.1-expected.txt:
- sputnik/Implementation_Diagnostics/S15.1.2.2_D1.2-expected.txt:
- One test asserts parseInt handles octal, one asserts it does not! This patch switches which one passes & which fails.
- 6:36 PM Changeset in webkit [103921] by
-
- 4 edits in trunk
https://bugs.webkit.org/show_bug.cgi?id=55343
Global JSON should be configurable but isn't
Reviewed by Sam Weinig.
Source/JavaScriptCore:
- runtime/JSGlobalObject.cpp:
(JSC::JSGlobalObject::reset):
- make JSON configurable
LayoutTests:
- ietestcenter/Javascript/11.4.1-4.a-8-expected.txt:
- check in passing result
- 5:24 PM Changeset in webkit [103920] by
-
- 3 edits in trunk/Source/WebCore
Enable the [Supplemental] IDL on GTK/GObject
https://bugs.webkit.org/show_bug.cgi?id=75411
Reviewed by Adam Barth.
This patch enables the [Supplemental] IDL on GObject bindings of GTK
by changing the build flow of bindings/gobject/GNUmakefile.am as follows.
- Previous build flow:
foreach $idl (all IDL files) {
generate-bindings.pl depends on $idl;
generate-bindings.pl reads $idl;
generate-bindings.pl generates .h and .cpp files for $idl;
}
- New build flow (See the discussions in bug 72138 for more details):
resolve-supplemental.pl depends on all IDL files;
resolve-supplemental.pl reads all IDL files;
resolve-supplemental.pl resolves the dependency of [Supplemental=XXXX];
resolve-supplemental.pl outputs supplemental_dependency.tmp;
foreach $idl (all IDL files) {
generate-bindings.pl depends on $idl and supplemental_dependency.tmp;
generate-bindings.pl reads $idl;
generate-bindings.pl reads supplemental_dependency.tmp;
generate-bindings.pl generates .h and .cpp files for $idl,
including all attributes in the IDL files that are implementing $idl;
}
Tests: Confirm that build succeeds.
http/tests/websocket/tests/*
- GNUmakefile.am:
- bindings/gobject/GNUmakefile.am:
- 4:57 PM Changeset in webkit [103919] by
-
- 2 edits in trunk/Source/WebCore
Add resolve-supplemental.pl to project.pbxproj
https://bugs.webkit.org/show_bug.cgi?id=75426
Reviewed by Adam Barth.
We should have added "resolve-supplemental.pl" to build scripts of AppleWebKit
when we enabled the [Supplemental] IDL on AppleWebKit at r103519.
This is a follow-up patch for it.
No tests. Just confirm that the AppleWebKit build passes.
- WebCore.xcodeproj/project.pbxproj:
- 4:44 PM Changeset in webkit [103918] by
-
- 3 edits in trunk/Source/WebCore
Add resolve-supplemental.pl to build scripts of AppleWin
https://bugs.webkit.org/show_bug.cgi?id=75412
Reviewed by Adam Barth.
We should have added "resolve-supplemental.pl" to build scripts of AppleWin
when we enabled the [Supplemental] IDL on AppleWin at r103519.
This is a follow-up patch for it.
No tests. Just confirm that the AppleWin build passes.
- WebCore.vcproj/MigrateScripts:
- WebCore.vcproj/WebCore.vcproj:
- 4:39 PM Changeset in webkit [103917] by
-
- 2 edits in trunk/Source/WebKit2
Fix the Windows build (again).
- Platform/CoreIPC/Connection.h:
- 3:59 PM Changeset in webkit [103916] by
-
- 4 edits in trunk/Source/WebKit2
Fix windows build.
- Platform/CoreIPC/Connection.h:
- Platform/CoreIPC/win/ConnectionWin.cpp:
- Platform/RunLoop.h:
Missing declarations/includes of BinarySemaphore.
- 3:55 PM Changeset in webkit [103915] by
-
- 2 edits in trunk/Source/WebCore
Fix the build.
- bindings/scripts/CodeGeneratorJS.pm:
- 3:41 PM Changeset in webkit [103914] by
-
- 2 edits in trunk/Source/WebCore
Fix the Windows build after r103888.
- WebCore.vcproj/WebCore.vcproj: Remove CollectionCache.{cpp, h} from
the WebCore vcproj.
- 3:31 PM Changeset in webkit [103913] by
-
- 2 edits in trunk/Source/WebCore
REGRESSION(r100517): We're leaking many, many DOM objects!
https://bugs.webkit.org/show_bug.cgi?id=75451
Reviewed by Mark Rowe.
- bindings/scripts/CodeGeneratorJS.pm:
Add a temporary workaround to the problem of handle finalizers
not getting called by adding back the destructors (or rather
their replacement, destroy() functions).
- 3:08 PM Changeset in webkit [103912] by
-
- 6 edits in trunk/Source/WebKit2
Move dispatchSentMessagesUntil out of the RunLoop class.
https://bugs.webkit.org/show_bug.cgi?id=75320
Reviewed by Dan Bernstein.
- Platform/CoreIPC/Connection.cpp:
(CoreIPC::Connection::SyncMessageState::waitWhileDispatchingSentWin32Messages):
- Platform/CoreIPC/Connection.h:
- Platform/CoreIPC/win/ConnectionWin.cpp:
(CoreIPC::Connection::dispatchSentMessagesUntil):
- Platform/win/RunLoopWin.cpp:
- 1:09 PM Changeset in webkit [103911] by
-
- 6 edits in trunk
[EFL] Remove whitespace/declaration style exception
https://bugs.webkit.org/show_bug.cgi?id=75424
Reviewed by David Levin.
Source/WebKit/efl:
EFL port doesn't need to avoid *whitespace/declaration* exception because of coding
style change. However, EWebLauncher and MiniBrowser need to use EFL coding style because
they are EFL application.
- WebCoreSupport/FrameLoaderClientEfl.cpp:
- ewk/ewk_frame.cpp:
(ewk_frame_feed_touch_event):
- ewk/ewk_tiled_matrix.cpp:
(ewk_tile_matrix_invalidate):
- ewk/ewk_view.cpp:
Tools:
Remove *whitespace/eclaration* style rule. However, EWebLauncher and MiniBrowser are EFL simple
application. So, they still need to use EFL coding style.
- Scripts/webkitpy/style/checker.py:
- 11:18 AM Changeset in webkit [103910] by
-
- 6 edits in trunk/Source/WebKit/mac
[mac] Remove -[WebView setHoverFeedbackSuspended:]
https://bugs.webkit.org/show_bug.cgi?id=75406
Reviewed by Tim Hatcher.
- WebView/WebHTMLView.mm:
(-[WebHTMLView _updateMouseoverWithEvent:]): Removed check for suspended hover updates.
- WebView/WebHTMLViewInternal.h: Removed -_hoverFeedbackSuspendedChanged.
- WebView/WebView.mm:
(-[WebView setHoverFeedbackSuspended:]): Left empty implementation to support versions of
Safari that call this.
(-[WebView isHoverFeedbackSuspended]): Left implementation that always returns NO to support
versions of Safari that call this.
- WebView/WebViewData.h: Removed hoverFeedbackSuspended ivar.
- WebView/WebViewPrivate.h: Removed method definitions.
- 11:06 AM BuildingQt5OnHarmattan edited by
- Add extra file to remove linux-g++-maemo from. Enables Maliit keyboard. (diff)
- 10:04 AM Changeset in webkit [103909] by
-
- 3 edits in trunk/Source/WebKit2
Build fix.
- Platform/CoreIPC/mac/ConnectionMac.cpp:
- Platform/mac/SharedMemoryMac.cpp:
- 8:26 AM Changeset in webkit [103908] by
-
- 3 edits in trunk/Source/WebKit2
2012-01-02 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed. Fix build on Lion, by including mach_error.h in two places that need it.
- PluginProcess/mac/PluginProcessMainMac.mm:
- WebProcess/mac/WebProcessMainMac.mm:
- 7:39 AM Changeset in webkit [103907] by
-
- 2 edits in trunk/Source/WebCore
Fix chromium mac build after r103905
https://bugs.webkit.org/show_bug.cgi?id=75436
Reviewed by Csaba Osztrogonác.
Adding parenthesis to disambiguate because clang gives error
"expression is not assignable".
- rendering/svg/RenderSVGResourceGradient.cpp:
(WebCore::RenderSVGResourceGradient::applyResource):
- 6:56 AM Changeset in webkit [103906] by
-
- 5 edits5 adds in trunk
[GTK] Add a way to change web view settings in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=71568
Reviewed by Philippe Normand.
.:
- GNUmakefile.am: Initialize minibrowser_built_sources.
Tools:
Add a preferences button to the toolbar that shows a dialog to
change settings of the current web view. It uses a GtkTreeView
with a custom cell renderer to support multiple types of values.
- MiniBrowser/gtk/BrowserCellRendererVariant.c: Added.
(browserCellRendererVariantFinalize):
(browserCellRendererVariantGetProperty):
(browserCellRendererVariantSetModeForValue):
(browserCellRendererVariantSetProperty):
(browserCellRendererVariantGetRendererForValue):
(browserCellRendererVariantCellRendererTextEdited):
(browserCellRendererVariantCellRendererSpinEdited):
(browserCellRendererVariantCellRendererActivate):
(browserCellRendererVariantCellRendererRender):
(browserCellRendererVariantCellRendererStartEditing):
(browserCellRendererVariantCellRendererGetPreferredWidth):
(browserCellRendererVariantCellRendererGetPreferredHeight):
(browserCellRendererVariantCellRendererGetPreferredWidthForHeight):
(browserCellRendererVariantCellRendererGetPreferredHeightForWidth):
(browserCellRendererVariantCellRendererGetAlignedArea):
(browser_cell_renderer_variant_init):
(browser_cell_renderer_variant_class_init):
(browser_cell_renderer_variant_new):
- MiniBrowser/gtk/BrowserCellRendererVariant.h: Added.
- MiniBrowser/gtk/BrowserSettingsDialog.c: Added.
(cellRendererChanged):
(browserSettingsDialogSetProperty):
(browser_settings_dialog_init):
(browserSettingsDialogConstructed):
(browser_settings_dialog_class_init):
(browser_settings_dialog_new):
- MiniBrowser/gtk/BrowserSettingsDialog.h: Added.
- MiniBrowser/gtk/BrowserWindow.c:
(settingsCallback):
(browser_window_init):
- MiniBrowser/gtk/GNUmakefile.am:
- MiniBrowser/gtk/browser-marshal.list: Added.
- 6:07 AM Changeset in webkit [103905] by
-
- 3 edits in trunk/Source/WebCore
Use HashMap<OwnPtr> in RenderSVGResourceGradient
https://bugs.webkit.org/show_bug.cgi?id=75364
Reviewed by Daniel Bates.
- rendering/svg/RenderSVGResourceGradient.cpp:
(WebCore::RenderSVGResourceGradient::removeAllClientsFromCache):
(WebCore::RenderSVGResourceGradient::removeClientFromCache):
(WebCore::RenderSVGResourceGradient::applyResource): avoid looking
up the hash twice by using HashMap::add().
- rendering/svg/RenderSVGResourceGradient.h: rename m_gradient to m_gradientMap.
- 5:39 AM Changeset in webkit [103904] by
-
- 2 edits in trunk/Tools
[GTK] Implement create/ready-to-show/close signals in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=74711
Reviewed by Philippe Normand.
- MiniBrowser/gtk/BrowserWindow.c:
(webViewClose): Destroy the window.
(webViewReadyToShow): Use WindowProperties of the new view to
setup and show the window.
(webViewCreate): Create a new view and add it to a browser window.
(browser_window_init):
(browserWindowConstructed): Connect to WebKitWebView::create signal.
- 5:23 AM Changeset in webkit [103903] by
-
- 2 edits in trunk/Source/WebCore
[Qt] Fix qmake warning about unescaped backslashes
Reviewed by Ossy.
- 4:30 AM Changeset in webkit [103902] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Qt-WK2 gardening.
Unskip table tests for wk2 after platform results
have been added in r103898.
- platform/qt-wk2/Skipped:
- 3:22 AM Changeset in webkit [103901] by
-
- 2 edits in trunk/LayoutTests
[GTK] fast/dom/constructed-objects-prototypes.html fails
https://bugs.webkit.org/show_bug.cgi?id=75432
Unreviewed, mark fast/dom/constructed-objects-prototypes.html as
failing in GTK test_expectations.
- platform/gtk/test_expectations.txt:
- 3:09 AM Changeset in webkit [103900] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed. Fix make distcheck issue.
- GNUmakefile.am: Add resolve-supplemental.pl script to
EXTRA_DIST.
- 2:49 AM Changeset in webkit [103899] by
-
- 3 edits in trunk/LayoutTests
fast/dom/htmlcollection-zombies.html fails on GTK and on Qt
https://bugs.webkit.org/show_bug.cgi?id=75431
Unreviewed gardening. Skip fast/dom/htmlcollection-zombies.html until fix.
- platform/gtk/Skipped:
- platform/qt/Skipped:
- 2:07 AM Changeset in webkit [103898] by
-
- 188 edits13 adds in trunk/LayoutTests
Rebaseline table tests to reflect new width of table captions after r103875
https://bugs.webkit.org/show_bug.cgi?id=74888
Unreviewed gardening.
- platform/qt/fast/css/bidi-override-in-anonymous-block-expected.txt:
- platform/qt/fast/css/caption-width-absolute-position-expected.png: Added.
- platform/qt/fast/css/caption-width-absolute-position-expected.txt: Added.
- platform/qt/fast/css/caption-width-absolute-position-offset-top-expected.png: Added.
- platform/qt/fast/css/caption-width-absolute-position-offset-top-expected.txt: Added.
- platform/qt/fast/css/caption-width-fixed-position-expected.png: Added.
- platform/qt/fast/css/caption-width-fixed-position-expected.txt: Added.
- platform/qt/fast/css/caption-width-fixed-position-offset-top-expected.png: Added.
- platform/qt/fast/css/caption-width-fixed-position-offset-top-expected.txt: Added.
- platform/qt/fast/css/caption-width-relative-position-expected.png: Added.
- platform/qt/fast/css/caption-width-relative-position-expected.txt: Added.
- platform/qt/fast/css/caption-width-relative-position-offset-top-expected.png: Added.
- platform/qt/fast/css/caption-width-relative-position-offset-top-expected.txt: Added.
- platform/qt/fast/dom/HTMLTableElement/colSpan-expected.png:
- platform/qt/fast/dom/HTMLTableElement/colSpan-expected.txt:
- platform/qt/fast/dom/HTMLTableElement/createCaption-expected.png:
- platform/qt/fast/dom/HTMLTableElement/createCaption-expected.txt:
- platform/qt/fast/repaint/table-section-repaint-expected.png: Added.
- platform/qt/fast/repaint/table-section-repaint-expected.txt:
- platform/qt/fast/table/frame-and-rules-expected.png:
- platform/qt/fast/table/frame-and-rules-expected.txt:
- platform/qt/tables/mozilla/bugs/bug1163-1-expected.png:
- platform/qt/tables/mozilla/bugs/bug1163-1-expected.txt:
- platform/qt/tables/mozilla/bugs/bug119786-expected.png:
- platform/qt/tables/mozilla/bugs/bug119786-expected.txt:
- platform/qt/tables/mozilla/bugs/bug1302-expected.png:
- platform/qt/tables/mozilla/bugs/bug1302-expected.txt:
- platform/qt/tables/mozilla/bugs/bug222846-expected.png:
- platform/qt/tables/mozilla/bugs/bug222846-expected.txt:
- platform/qt/tables/mozilla/bugs/bug29058-3-expected.png:
- platform/qt/tables/mozilla/bugs/bug29058-3-expected.txt:
- platform/qt/tables/mozilla/bugs/bug29157-expected.png:
- platform/qt/tables/mozilla/bugs/bug29157-expected.txt:
- platform/qt/tables/mozilla/bugs/bug48028-1-expected.png:
- platform/qt/tables/mozilla/bugs/bug48028-1-expected.txt:
- platform/qt/tables/mozilla/bugs/bug48028-2-expected.png:
- platform/qt/tables/mozilla/bugs/bug48028-2-expected.txt:
- platform/qt/tables/mozilla/bugs/bug5838-expected.png:
- platform/qt/tables/mozilla/bugs/bug5838-expected.txt:
- platform/qt/tables/mozilla/bugs/bug6304-expected.png:
- platform/qt/tables/mozilla/bugs/bug6304-expected.txt:
- platform/qt/tables/mozilla/bugs/bug8381-expected.png:
- platform/qt/tables/mozilla/bugs/bug8381-expected.txt:
- platform/qt/tables/mozilla/core/captions-expected.png:
- platform/qt/tables/mozilla/core/captions-expected.txt:
- platform/qt/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
- platform/qt/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
- platform/qt/tables/mozilla/marvin/backgr_position-table-expected.png:
- platform/qt/tables/mozilla/marvin/backgr_position-table-expected.txt:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-expected.png:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-expected.txt:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
- platform/qt/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
- platform/qt/tables/mozilla/marvin/table_frame_border-expected.png:
- platform/qt/tables/mozilla/marvin/table_frame_border-expected.txt:
- platform/qt/tables/mozilla/marvin/table_frame_box-expected.png:
- platform/qt/tables/mozilla/marvin/table_frame_box-expected.txt:
- platform/qt/tables/mozilla/marvin/table_rules_all-expected.png:
- platform/qt/tables/mozilla/marvin/table_rules_all-expected.txt:
- platform/qt/tables/mozilla/marvin/table_rules_none-expected.png:
- platform/qt/tables/mozilla/marvin/table_rules_none-expected.txt:
- platform/qt/tables/mozilla/marvin/tables_caption_align_bot-expected.png:
- platform/qt/tables/mozilla/marvin/tables_caption_align_bot-expected.txt:
- platform/qt/tables/mozilla/marvin/tables_caption_align_top-expected.png:
- platform/qt/tables/mozilla/marvin/tables_caption_align_top-expected.txt:
- platform/qt/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
- platform/qt/tables/mozilla/marvin/x_caption_align_bottom-expected.txt:
- platform/qt/tables/mozilla/marvin/x_caption_align_top-expected.png:
- platform/qt/tables/mozilla/marvin/x_caption_align_top-expected.txt:
- platform/qt/tables/mozilla/marvin/x_caption_class-expected.png:
- platform/qt/tables/mozilla/marvin/x_caption_class-expected.txt:
- platform/qt/tables/mozilla/marvin/x_caption_id-expected.png:
- platform/qt/tables/mozilla/marvin/x_caption_id-expected.txt:
- platform/qt/tables/mozilla/marvin/x_caption_style-expected.png:
- platform/qt/tables/mozilla/marvin/x_caption_style-expected.txt:
- platform/qt/tables/mozilla/other/wa_table_thtd_rowspan-expected.png:
- platform/qt/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt:
- platform/qt/tables/mozilla/other/wa_table_tr_align-expected.png:
- platform/qt/tables/mozilla/other/wa_table_tr_align-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug104898-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug104898-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug106966-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt:
- platform/qt/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
- platform/qt/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
- platform/qt/tables/mozilla_expected_failures/core/captions1-expected.png:
- platform/qt/tables/mozilla_expected_failures/core/captions1-expected.txt:
- platform/qt/tables/mozilla_expected_failures/core/captions2-expected.png:
- platform/qt/tables/mozilla_expected_failures/core/captions2-expected.txt:
- platform/qt/tables/mozilla_expected_failures/core/captions3-expected.png:
- platform/qt/tables/mozilla_expected_failures/core/captions3-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt:
- platform/qt/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
- platform/qt/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt:
- platform/qt/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/qt/tables/mozilla_expected_failures/other/test4-expected.txt:
- platform/qt/test_expectations.txt:
- 2:01 AM Changeset in webkit [103897] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, skip two canvas tests failing in GTK after r103849.
- platform/gtk/Skipped: Skip canvas/philip/tests/2d.pattern.image.string.html
and canvas/philip/tests/2d.pattern.image.undefined.html that need
to be updated.
- 1:59 AM Changeset in webkit [103896] by
-
- 2 edits in trunk/LayoutTests
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=75430
- platform/chromium/test_expectations.txt:
- 1:52 AM Changeset in webkit [103895] by
-
- 2 edits in trunk/LayoutTests
Remove unnecessary [Custom] attribute in CanvasRenderingContext2D.idl
https://bugs.webkit.org/show_bug.cgi?id=75376
Unreviewed gardening after r103849 to paint the bot green.
- platform/qt/Skipped: Skip canvas/philip/tests/2d.pattern.image.string.html
and canvas/philip/tests/2d.pattern.image.undefined.html until proper fix.
- 1:07 AM Changeset in webkit [103894] by
-
- 102 edits6 adds in trunk/LayoutTests
Unreviewed, GTK rebaseline after r103251 and r103875.
- platform/gtk/fast/css/bidi-override-in-anonymous-block-expected.txt:
- platform/gtk/fast/css/caption-width-absolute-position-expected.txt: Added.
- platform/gtk/fast/css/caption-width-absolute-position-offset-top-expected.txt: Added.
- platform/gtk/fast/css/caption-width-fixed-position-expected.txt: Added.
- platform/gtk/fast/css/caption-width-fixed-position-offset-top-expected.txt: Added.
- platform/gtk/fast/css/caption-width-relative-position-expected.txt: Added.
- platform/gtk/fast/css/caption-width-relative-position-offset-top-expected.txt: Added.
- platform/gtk/fast/dom/HTMLTableElement/colSpan-expected.txt:
- platform/gtk/fast/dom/HTMLTableElement/createCaption-expected.txt:
- platform/gtk/fast/repaint/table-section-repaint-expected.txt:
- platform/gtk/fast/table/frame-and-rules-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug1163-1-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug119786-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug1302-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug222846-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug29058-3-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug29157-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug48028-1-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug48028-2-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug5838-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug6304-expected.txt:
- platform/gtk/tables/mozilla/bugs/bug8381-expected.txt:
- platform/gtk/tables/mozilla/core/captions-expected.txt:
- platform/gtk/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
- platform/gtk/tables/mozilla/marvin/backgr_position-table-expected.txt:
- platform/gtk/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
- platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
- platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
- platform/gtk/tables/mozilla/marvin/backgr_simple-table-expected.txt:
- platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
- platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
- platform/gtk/tables/mozilla/marvin/table_frame_border-expected.txt:
- platform/gtk/tables/mozilla/marvin/table_frame_box-expected.txt:
- platform/gtk/tables/mozilla/marvin/table_rules_all-expected.txt:
- platform/gtk/tables/mozilla/marvin/table_rules_none-expected.txt:
- platform/gtk/tables/mozilla/marvin/tables_caption_align_bot-expected.txt:
- platform/gtk/tables/mozilla/marvin/tables_caption_align_top-expected.txt:
- platform/gtk/tables/mozilla/marvin/x_caption_align_bottom-expected.txt:
- platform/gtk/tables/mozilla/marvin/x_caption_align_top-expected.txt:
- platform/gtk/tables/mozilla/marvin/x_caption_class-expected.txt:
- platform/gtk/tables/mozilla/marvin/x_caption_id-expected.txt:
- platform/gtk/tables/mozilla/marvin/x_caption_style-expected.txt:
- platform/gtk/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt:
- platform/gtk/tables/mozilla/other/wa_table_tr_align-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug104898-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug106966-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/core/captions1-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/core/captions2-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/core/captions3-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/other/test4-expected.txt:
- 12:42 AM Changeset in webkit [103893] by
-
- 3 edits in trunk/Source/WebCore
Clear HTMLCollection's internal cache on construction.
<http://webkit.org/b/75423>
Reviewed by Antti Koivisto.
- html/HTMLCollection.h:
- html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
(WebCore::HTMLCollection::invalidateCacheIfNeeded):
- 12:40 AM Changeset in webkit [103892] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, unskipping tests needing a GTK rebaseline.
- platform/gtk/test_expectations.txt:
Jan 1, 2012:
- 10:46 PM Changeset in webkit [103891] by
-
- 6 edits2 adds in trunk/Source
[EFL] Move function to get dpi to the WebCore/platform/efl/EflScreenUtilities.cpp.
https://bugs.webkit.org/show_bug.cgi?id=75292
Patch by Eunmi Lee <eunmi15.lee@samsung.com> on 2012-01-01
Reviewed by Andreas Kling.
Move ewk_util_dpi_get() function in the ewk_util.cpp to the
WebCore/platform/efl/EflScreenUtilities.cpp in order to use it in the WebKit2.
The function's name is changed to getDPI().
Source/WebCore:
- PlatformEfl.cmake:
- platform/efl/EflScreenUtilities.cpp: Added.
(WebCore::getDPI):
- platform/efl/EflScreenUtilities.h: Added.
Source/WebKit/efl:
- ewk/ewk_private.h:
- ewk/ewk_util.cpp:
(ewk_util_image_from_cairo_surface_add):
- ewk/ewk_view.cpp:
(_ewk_view_viewport_attributes_compute):
- 10:33 PM Changeset in webkit [103890] by
-
- 2 edits3 moves1 add in trunk/LayoutTests
[chromium] need win/linux baselines for patch from issue 69694
https://bugs.webkit.org/show_bug.cgi?id=69791
Unreviewed, expectations update.
- platform/chromium-win/plugins/iframe-plugin-bgcolor-expected.txt: Renamed from LayoutTests/platform/mac/plugins/iframe-plugin-bgcolor-expected.txt.
- platform/chromium/plugins/iframe-plugin-bgcolor-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- platform/mac/plugins/iframe-plugin-bgcolor-expected.png: Renamed from LayoutTests/plugins/iframe-plugin-bgcolor-expected.png.
- plugins/iframe-plugin-bgcolor-expected.txt: Renamed from LayoutTests/platform/gtk/plugins/iframe-plugin-bgcolor-expected.txt.
- 5:01 PM Changeset in webkit [103889] by
-
- 1 edit6 adds in trunk/LayoutTests
Unreviewed test expectations change for chromium.
- platform/chromium-linux/fast/css/caption-width-absolute-position-expected.png: Added.
- platform/chromium-linux/fast/css/caption-width-absolute-position-offset-top-expected.png: Added.
- platform/chromium-linux/fast/css/caption-width-fixed-position-expected.png: Added.
- platform/chromium-linux/fast/css/caption-width-fixed-position-offset-top-expected.png: Added.
- platform/chromium-linux/fast/css/caption-width-relative-position-expected.png: Added.
- platform/chromium-linux/fast/css/caption-width-relative-position-offset-top-expected.png: Added.
- 4:37 PM Changeset in webkit [103888] by
-
- 14 edits2 deletes in trunk/Source/WebCore
Merge CollectionCache into HTMLCollection.
<http://webkit.org/b/75423>
Reviewed by Anders Carlsson.
- Move the members of CollectionCache into HTMLCollection.
- Renamed resetCollectionInfo() to invalidateCacheIfNeeded().
- Removed a bunch of overkill HashMap::checkConsistency() calls.
- CMakeLists.txt:
- GNUmakefile.list.am:
- Target.pri:
- WebCore.gypi:
- WebCore.xcodeproj/project.pbxproj:
- html/CollectionCache.cpp: Removed.
- html/CollectionCache.h: Removed.
Remove CollectionCache.
- html/HTMLAllCollection.cpp:
(WebCore::HTMLAllCollection::namedItemWithIndex):
- html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
(WebCore::HTMLCollection::~HTMLCollection):
(WebCore::HTMLCollection::invalidateCacheIfNeeded):
(WebCore::HTMLCollection::length):
(WebCore::HTMLCollection::item):
(WebCore::HTMLCollection::nextItem):
(WebCore::HTMLCollection::namedItem):
(WebCore::HTMLCollection::updateNameCache):
(WebCore::HTMLCollection::hasNamedItem):
(WebCore::HTMLCollection::namedItems):
(WebCore::HTMLCollection::append):
- html/HTMLCollection.h:
- html/HTMLFormCollection.cpp:
(WebCore::HTMLFormCollection::item):
(WebCore::HTMLFormCollection::getNamedItem):
(WebCore::HTMLFormCollection::nextItem):
(WebCore::HTMLFormCollection::namedItem):
(WebCore::HTMLFormCollection::updateNameCache):
HTMLCollection's m_info and info() become "struct m_cache" (protected.)
- html/HTMLOptionsCollection.cpp:
- html/HTMLOptionsCollection.h:
- html/HTMLSelectElement.cpp:
(WebCore::HTMLSelectElement::setRecalcListItems):
Expose HTMLCollection::invalidateCacheIfNeeded() so we can call it from
HTMLSelectElement::setRecalcListItems().
- html/HTMLFormCollection.h:
Remove stale declaration of formCollectionInfo() which no longer exists.
- 4:33 PM Changeset in webkit [103887] by
-
- 3 edits in trunk/Source/JavaScriptCore
Call instructions should leave room for linking information
https://bugs.webkit.org/show_bug.cgi?id=75422
<rdar://problem/10633985>
Reviewed by Oliver Hunt.
- bytecode/Opcode.h:
- bytecompiler/BytecodeGenerator.cpp:
(JSC::BytecodeGenerator::emitCall):
(JSC::BytecodeGenerator::emitConstruct):
- 3:40 PM Changeset in webkit [103886] by
-
- 3 edits in trunk/LayoutTests
Unreviewed, checking in missing update to gc-9.html from r103883.
- fast/dom/gc-9-expected.txt:
- fast/dom/gc-9.html:
- 1:41 PM Changeset in webkit [103885] by
-
- 2 edits in trunk/LayoutTests
[Chromium] Unreviewed test expectations update after r103877.
https://bugs.webkit.org/show_bug.cgi?id=75418
- platform/chromium/test_expectations.txt:
- 1:24 PM Changeset in webkit [103884] by
-
- 383 edits488 adds in trunk/LayoutTests
[Chromium] Unreviewed test expectations update after r103875.
https://bugs.webkit.org/show_bug.cgi?id=74888
- platform/chromium-cg-mac-leopard/fast/dom/HTMLTableElement/colSpan-expected.png: Added.
- platform/chromium-cg-mac-leopard/fast/dom/HTMLTableElement/createCaption-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug1163-1-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug119786-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug1302-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug222846-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug29058-3-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug48028-1-expected.png:
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug48028-2-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug5838-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug6304-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/bugs/bug8381-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/core/captions-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/backgr_layers-opacity-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/backgr_position-table-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/backgr_simple-table-cell-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/backgr_simple-table-column-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/backgr_simple-table-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/backgr_simple-table-row-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/table_frame_border-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/table_frame_box-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/table_rules_all-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/table_rules_none-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/tables_caption_align_bot-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/tables_caption_align_top-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/x_caption_align_bottom-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/x_caption_align_top-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/x_caption_class-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/x_caption_id-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla/marvin/x_caption_style-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug104898-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/core/captions3-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png: Added.
- platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/chromium-cg-mac-snowleopard/fast/css/bidi-override-in-anonymous-block-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/fast/css/caption-width-absolute-position-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/css/caption-width-absolute-position-offset-top-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/css/caption-width-fixed-position-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/css/caption-width-fixed-position-offset-top-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/css/caption-width-relative-position-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/css/caption-width-relative-position-offset-top-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/dom/HTMLTableElement/colSpan-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/dom/HTMLTableElement/colSpan-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/fast/dom/HTMLTableElement/createCaption-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/dom/HTMLTableElement/createCaption-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/fast/table/frame-and-rules-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug1163-1-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug1163-1-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug119786-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug119786-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug1302-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug1302-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug222846-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug222846-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug29058-3-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug29058-3-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug29157-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug48028-1-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug48028-1-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug48028-2-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug48028-2-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug5838-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug5838-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug6304-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug6304-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug8381-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/bugs/bug8381-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/core/captions-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/core/captions-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_layers-opacity-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_layers-opacity-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_position-table-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_position-table-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-cell-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-column-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-column-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-row-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-row-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/table_frame_border-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/table_frame_border-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/table_frame_box-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/table_frame_box-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/table_rules_all-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/table_rules_all-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/table_rules_none-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/table_rules_none-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/tables_caption_align_bot-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/tables_caption_align_bot-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/tables_caption_align_top-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/tables_caption_align_top-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_align_bottom-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_align_bottom-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_align_top-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_align_top-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_class-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_class-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_id-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_id-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_style-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/marvin/x_caption_style-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla/other/wa_table_tr_align-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug10140-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug10216-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug104898-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug104898-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug106966-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug91057-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/core/captions3-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/core/captions3-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.txt: Added.
- platform/chromium-linux/fast/dom/HTMLTableElement/colSpan-expected.png:
- platform/chromium-linux/fast/dom/HTMLTableElement/createCaption-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1163-1-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug119786-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1302-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug222846-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug29058-3-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug48028-1-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug48028-2-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug5838-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug6304-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug8381-expected.png:
- platform/chromium-linux/tables/mozilla/core/captions-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_position-table-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/table_frame_border-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/table_frame_box-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/table_rules_all-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/table_rules_none-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/tables_caption_align_bot-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/tables_caption_align_top-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_align_top-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_class-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_id-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_style-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug104898-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions1-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions2-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions3-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/chromium-mac-leopard/fast/dom/HTMLTableElement/colSpan-expected.png:
- platform/chromium-mac-leopard/fast/dom/HTMLTableElement/createCaption-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug1163-1-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug119786-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug1302-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug222846-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug29058-3-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug48028-1-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug48028-2-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug5838-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug6304-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/bugs/bug8381-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/core/captions-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/backgr_position-table-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/backgr_simple-table-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/table_frame_border-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/table_frame_box-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/table_rules_all-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/table_rules_none-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/tables_caption_align_bot-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/tables_caption_align_top-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/x_caption_align_top-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/x_caption_class-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/x_caption_id-expected.png:
- platform/chromium-mac-leopard/tables/mozilla/marvin/x_caption_style-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug104898-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/core/captions3-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
- platform/chromium-mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/chromium-mac-snowleopard/fast/css/bidi-override-in-anonymous-block-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/css/caption-width-absolute-position-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/caption-width-absolute-position-offset-top-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/caption-width-fixed-position-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/caption-width-fixed-position-offset-top-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/caption-width-relative-position-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/caption-width-relative-position-offset-top-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTableElement/colSpan-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTableElement/colSpan-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTableElement/createCaption-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTableElement/createCaption-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1163-1-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1163-1-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug119786-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug119786-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1302-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1302-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug222846-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug222846-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug29058-3-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug29058-3-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug29157-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug48028-1-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug48028-1-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug48028-2-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug48028-2-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug5838-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug5838-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug6304-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug6304-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug8381-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug8381-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/core/captions-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/core/captions-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_layers-opacity-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_layers-opacity-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_position-table-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_position-table-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-cell-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-column-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-column-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-row-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-row-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/table_frame_border-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/table_frame_border-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/table_frame_box-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/table_frame_box-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/table_rules_all-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/table_rules_all-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/table_rules_none-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/table_rules_none-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/tables_caption_align_bot-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/tables_caption_align_bot-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/tables_caption_align_top-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/tables_caption_align_top-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_align_bottom-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_align_bottom-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_align_top-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_align_top-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_class-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_class-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_id-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_id-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_style-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_caption_style-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/other/wa_table_tr_align-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug10140-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug10216-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug104898-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug104898-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug106966-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug91057-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/core/captions3-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/core/captions3-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.txt: Added.
- platform/chromium-win/fast/css/bidi-override-in-anonymous-block-expected.txt:
- platform/chromium-win/fast/css/caption-width-absolute-position-expected.png: Added.
- platform/chromium-win/fast/css/caption-width-absolute-position-offset-top-expected.png: Added.
- platform/chromium-win/fast/css/caption-width-fixed-position-expected.png: Added.
- platform/chromium-win/fast/css/caption-width-fixed-position-offset-top-expected.png: Added.
- platform/chromium-win/fast/css/caption-width-relative-position-expected.png: Added.
- platform/chromium-win/fast/css/caption-width-relative-position-offset-top-expected.png: Added.
- platform/chromium-win/fast/dom/HTMLTableElement/colSpan-expected.png:
- platform/chromium-win/fast/dom/HTMLTableElement/colSpan-expected.txt:
- platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.png:
- platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.txt:
- platform/chromium-win/fast/repaint/table-section-repaint-expected.txt: Added.
- platform/chromium-win/fast/table/frame-and-rules-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug1163-1-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug1163-1-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug119786-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug119786-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug1302-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug1302-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug222846-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug222846-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug29058-3-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug29058-3-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug29157-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug48028-1-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug48028-1-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug5838-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug5838-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug6304-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug6304-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug8381-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug8381-expected.txt:
- platform/chromium-win/tables/mozilla/core/captions-expected.png:
- platform/chromium-win/tables/mozilla/core/captions-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_position-table-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_position-table-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.png:
- platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.png:
- platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/table_rules_all-expected.png:
- platform/chromium-win/tables/mozilla/marvin/table_rules_all-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/table_rules_none-expected.png:
- platform/chromium-win/tables/mozilla/marvin/table_rules_none-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/tables_caption_align_bot-expected.png:
- platform/chromium-win/tables/mozilla/marvin/tables_caption_align_bot-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/tables_caption_align_top-expected.png:
- platform/chromium-win/tables/mozilla/marvin/tables_caption_align_top-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.txt:
- platform/chromium-win/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt:
- platform/chromium-win/tables/mozilla/other/wa_table_tr_align-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug104898-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug104898-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106966-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-12-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-13-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-16-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-3-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-4-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-6-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions1-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions1-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions2-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions2-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions3-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions3-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.txt:
- platform/chromium/test_expectations.txt:
- 1:05 PM Changeset in webkit [103883] by
-
- 19 edits2 adds8 deletes in trunk
Move the remaining collections to caching on their respective base nodes.
<http://webkit.org/b/75416>
Reviewed by Anders Carlsson.
Source/WebCore:
Add a (lazily-allocated) array of HTMLCollections to ElementRareData and cache
the various collections on their base node rather than recreating them every time.
Test: fast/dom/collection-idempotence.html
fast/dom/gc-9.html
- html/CollectionType.h:
- dom/ElementRareData.h:
(WebCore::ElementRareData::hasCachedHTMLCollections):
(WebCore::ElementRareData::cachedHTMLCollection):
(WebCore::ElementRareData::ensureCachedHTMLCollection):
- dom/Element.h:
- dom/Element.cpp:
(WebCore::Element::ensureCachedHTMLCollection):
Plumbing to cache HTMLCollections on ElementRareData.
(WebCore::Element::~Element):
Detach any cached collections from an element when it's destroyed.
- html/HTMLCollection.h:
- html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
(WebCore::HTMLCollection::create):
(WebCore::HTMLCollection::~HTMLCollection):
(WebCore::HTMLCollection::detachFromNode):
- html/HTMLTableRowsCollection.cpp:
(WebCore::HTMLTableRowsCollection::HTMLTableRowsCollection):
- html/HTMLOptionsCollection.cpp:
(WebCore::HTMLOptionsCollection::HTMLOptionsCollection):
- html/HTMLFormCollection.cpp:
(WebCore::HTMLFormCollection::HTMLFormCollection):
- dom/Document.cpp:
(WebCore::Document::cachedCollection):
Consolidate the HTMLCollection constructors and get rid of the hacks to
optionally retain the base node.
- html/HTMLDataListElement.cpp:
(WebCore::HTMLDataListElement::options):
- html/HTMLElement.cpp:
(WebCore::HTMLElement::children):
- html/HTMLMapElement.cpp:
(WebCore::HTMLMapElement::areas):
- html/HTMLTableElement.cpp:
(WebCore::HTMLTableElement::tBodies):
- html/HTMLTableRowElement.cpp:
(WebCore::HTMLTableRowElement::cells):
- html/HTMLTableSectionElement.cpp:
(WebCore::HTMLTableSectionElement::rows):
Cached collections!
LayoutTests:
- Updated gc-9.html to document the new lifetime behavior of HTMLCollections.
- Merged all the *collection-idempotence.html tests into a big one and added tests for the newly changed collections.
- fast/dom/gc-9-expected.txt:
- fast/dom/gc-9.html:
- fast/dom/collection-idempotence-expected.txt: Added.
- fast/dom/collection-idempotence.html: Added.
- fast/dom/document-collection-idempotence-expected.txt: Removed.
- fast/dom/document-collection-idempotence.html: Removed.
- fast/dom/form-elements-collection-idempotence-expected.txt: Removed.
- fast/dom/form-elements-collection-idempotence.html: Removed.
- fast/dom/select-options-collection-idempotence-expected.txt: Removed.
- fast/dom/select-options-collection-idempotence.html: Removed.
- fast/dom/table-rows-collection-idempotence-expected.txt: Removed.
- fast/dom/table-rows-collection-idempotence.html: Removed.
- 12:56 PM Changeset in webkit [103882] by
-
- 8 edits2 deletes in trunk/Source/WebCore
Use overload methods to implement [Optional] parameters in AudioNode.idl
https://bugs.webkit.org/show_bug.cgi?id=75402
Patch by Raymond Liu <raymond.liu@intel.com> on 2012-01-01
Reviewed by Adam Barth.
No new tests required.
- GNUmakefile.list.am:
- UseV8.cmake:
- WebCore.gypi:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSAudioNodeCustom.cpp: Removed.
- bindings/v8/custom/V8AudioNodeCustom.cpp: Removed.
- webaudio/AudioNode.cpp:
(WebCore::AudioNode::connect):
(WebCore::AudioNode::disconnect):
- webaudio/AudioNode.h:
- webaudio/AudioNode.idl:
- 12:12 PM Changeset in webkit [103881] by
-
- 2 edits in trunk/LayoutTests
[Qt] Layout divergence between WK1/2 in table tests
https://bugs.webkit.org/show_bug.cgi?id=75417
Unreviewed new year gardening.
Skip failing tests for now.
- platform/qt-wk2/Skipped:
- 11:44 AM Changeset in webkit [103880] by
-
- 2 edits in trunk/Source/WebKit2
EnvironmentUtilities::stripValuesEndingWithString enters an infinite loop if the search value
occurs a component other than the first.
Reviewed by Anders Carlsson.
- Platform/unix/EnvironmentUtilities.cpp:
(WebKit::EnvironmentUtilities::stripValuesEndingWithString): Changed to start the search for
the next colon after the current colon.
- 11:24 AM Changeset in webkit [103879] by
-
- 5 edits in trunk/Source/WebKit2
Improved reproting of kernel return codes.
Reviewed by Anders Carlsson.
- Platform/CoreIPC/mac/ConnectionMac.cpp:
(CoreIPC::Connection::exceptionSourceEventHandler): Added the error string to the log message.
- Platform/mac/SharedMemoryMac.cpp:
(WebKit::SharedMemory::create): Ditto.
- PluginProcess/mac/PluginProcessMainMac.mm:
(WebKit::PluginProcessMain): Ditto. Also changed to log to stderr.
- WebProcess/mac/WebProcessMainMac.mm:
(WebKit::WebProcessMain): Ditto.
- 11:03 AM Changeset in webkit [103878] by
-
- 2 edits in trunk/LayoutTests
Final update to Chromium expectations for Mac and Win following r103875.
The failures are IMAGE only, rather than IMAGE+TEXT.
Unreviewed.
- platform/chromium/test_expectations.txt:
- 10:29 AM Changeset in webkit [103877] by
-
- 4 edits1 delete in trunk/LayoutTests
Update to expectations from r103875
Unreviewed, expectations update.
Remove the reference result for border-collapse-offset-002.htm since
it does not work on two platforms. Fix the chromium expectations file
for Mac and Win builds.
- css2.1/20110323/border-collapse-offset-002-expected.html: Removed.
- platform/chromium/test_expectations.txt:
- platform/gtk/test_expectations.txt:
- platform/mac/test_expectations.txt:
- 8:59 AM Changeset in webkit [103876] by
-
- 6 edits in trunk/LayoutTests
Update test expectations after r103875
Unreviewed.
Skip tests on Apple Win that need to be rebaselined as the bot is not using
new-run-webkit-tests.
Rendering of ahem font seems to differ between ports so mark new tests added
om r103875 for rebaselining.
I missed fast/table/frame-and-rules.html as requiring rebaseline as it was
already marked as failing in Chromium Linux.
Mac and GTK render the reference result for border-collapse-offset-002.htm
differently from other ports, so mark it as requiring rebaseline for those
ports.
- platform/chromium/test_expectations.txt:
- platform/gtk/test_expectations.txt:
- platform/mac/test_expectations.txt:
- platform/qt/test_expectations.txt:
- platform/win/Skipped:
- 7:12 AM Changeset in webkit [103875] by
-
- 19 edits22 adds in trunk
CSS 2.1 failure: border-collapse-offset-002.htm fails
https://bugs.webkit.org/show_bug.cgi?id=71705
Reviewed by Julien Chaffraix.
Source/WebCore:
Tests: css2.1/20110323/border-collapse-offset-002-expected.html
fast/css/caption-width-absolute-position-offset-top.htm
fast/css/caption-width-absolute-position.htm
fast/css/caption-width-fixed-position-offset-top.htm
fast/css/caption-width-fixed-position.htm
fast/css/caption-width-relative-position-offset-top.htm
fast/css/caption-width-relative-position.htm
Table captions are implemented as children of the table but have a special
requirement to expand to the full width of the table rather than just the 'available'
width, i.e. the full width minus padding and borders.
To accomodate this create a RenderTableCaption object that reimplements containingBlockLogicalWidthForContent()
to return the full width of the containing block (i.e. the table) rather than the available width.
- CMakeLists.txt: Add RenderTableCaption.[cpp|h]
- GNUmakefile.list.am: Add RenderTableCaption.[cpp|h]
- Target.pri: Add RenderTableCaption.[cpp|h]
- WebCore.gypi: Add RenderTableCaption.[cpp|h]
- WebCore.vcproj/WebCore.vcproj: Add RenderTableCaption.[cpp|h]
- WebCore.xcodeproj/project.pbxproj: Add RenderTableCaption.[cpp|h]
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::addChildIgnoringAnonymousColumnBlocks): Use RenderTableCaption
- rendering/RenderObject.cpp:
(WebCore::RenderObject::createObject): Add RenderTableCaption.[cpp|h]
(WebCore::RenderObject::addChild): ditto
- rendering/RenderObject.h:
(WebCore::RenderObject::isTableCaption):
- rendering/RenderTable.cpp:
(WebCore::RenderTable::addChild):
- rendering/RenderTable.h:
- rendering/RenderTableCaption.cpp: Added.
(WebCore::RenderTableCaption::RenderTableCaption): Implement RenderTableCaption
(WebCore::RenderTableCaption::~RenderTableCaption):
(WebCore::RenderTableCaption::containingBlockLogicalWidthForContent): Return the containing block's full width rather than it's available width.
- rendering/RenderTableCaption.h: Added.
(WebCore::RenderTableCaption::isTableCaption):
(WebCore::toRenderTableCaption):
- rendering/RenderingAllInOne.cpp:
LayoutTests:
Table captions now use the width of the table rather than the width of the table minus
the borders. This allows captions to center accurately but unfortunately a lot of mozilla
table tests need to be rebaselined as many of them use captions for explaining the purpose
of individual test files!
Add border-collapse-offset-002.htm which now renders correctly.
- css2.1/20110323/border-collapse-offset-002-expected.html: Added.
- css2.1/20110323/border-collapse-offset-002.htm: Added.
- fast/css/caption-width-absolute-position-expected.png: Added.
- fast/css/caption-width-absolute-position-expected.txt: Added.
- fast/css/caption-width-absolute-position-offset-top-expected.png: Added.
- fast/css/caption-width-absolute-position-offset-top-expected.txt: Added.
- fast/css/caption-width-absolute-position-offset-top.htm: Added.
- fast/css/caption-width-absolute-position.htm: Added.
- fast/css/caption-width-fixed-position-expected.png: Added.
- fast/css/caption-width-fixed-position-expected.txt: Added.
- fast/css/caption-width-fixed-position-offset-top-expected.png: Added.
- fast/css/caption-width-fixed-position-offset-top-expected.txt: Added.
- fast/css/caption-width-fixed-position-offset-top.htm: Added.
- fast/css/caption-width-fixed-position.htm: Added.
- fast/css/caption-width-relative-position-expected.png: Added.
- fast/css/caption-width-relative-position-expected.txt: Added.
- fast/css/caption-width-relative-position-offset-top-expected.png: Added.
- fast/css/caption-width-relative-position-offset-top-expected.txt: Added.
- fast/css/caption-width-relative-position-offset-top.htm: Added.
- fast/css/caption-width-relative-position.htm: Added.
- platform/chromium/test_expectations.txt: Suppress affected table tests until rebaselined.
- platform/gtk/test_expectations.txt: ditto
- platform/mac/test_expectations.txt: ditto
- platform/qt/test_expectations.txt: ditto
- platform/win/test_expectations.txt: ditto
- 1:43 AM Changeset in webkit [103874] by
-
- 1 edit6 adds in trunk/Source/WebCore
Unreviewed. Rebaselined run-bindings-tests results.
- bindings/scripts/test/CPP/WebDOMTestSupplemental.cpp: Added.
- bindings/scripts/test/CPP/WebDOMTestSupplemental.h: Added.
- bindings/scripts/test/GObject/WebKitDOMTestSupplemental.cpp: Added.
- bindings/scripts/test/GObject/WebKitDOMTestSupplemental.h: Added.
- bindings/scripts/test/ObjC/DOMTestSupplemental.cpp: Added.
- bindings/scripts/test/ObjC/DOMTestSupplemental.h: Added.