profile/ivi/webkit-efl.git
12 years agoREGRESSION(r100517): We're leaking many, many DOM objects!
weinig@apple.com [Mon, 2 Jan 2012 23:31:57 +0000 (23:31 +0000)]
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).

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103913 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoMove dispatchSentMessagesUntil out of the RunLoop class.
weinig@apple.com [Mon, 2 Jan 2012 23:08:10 +0000 (23:08 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103912 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[EFL] Remove whitespace/declaration style exception
gyuyoung.kim@samsung.com [Mon, 2 Jan 2012 21:09:32 +0000 (21:09 +0000)]
[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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103911 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[mac] Remove -[WebView setHoverFeedbackSuspended:]
mitz@apple.com [Mon, 2 Jan 2012 19:18:01 +0000 (19:18 +0000)]
[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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103910 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoBuild fix.
mitz@apple.com [Mon, 2 Jan 2012 18:04:52 +0000 (18:04 +0000)]
Build fix.

* Platform/CoreIPC/mac/ConnectionMac.cpp:
* Platform/mac/SharedMemoryMac.cpp:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103909 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago2012-01-02 Nikolas Zimmermann <nzimmermann@rim.com>
zimmermann@webkit.org [Mon, 2 Jan 2012 16:26:41 +0000 (16:26 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103908 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoFix chromium mac build after r103905
caio.oliveira@openbossa.org [Mon, 2 Jan 2012 15:39:10 +0000 (15:39 +0000)]
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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103907 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[GTK] Add a way to change web view settings in MiniBrowser
carlosgc@webkit.org [Mon, 2 Jan 2012 14:56:35 +0000 (14:56 +0000)]
[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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103906 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUse HashMap<OwnPtr> in RenderSVGResourceGradient
caio.oliveira@openbossa.org [Mon, 2 Jan 2012 14:07:53 +0000 (14:07 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103905 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[GTK] Implement create/ready-to-show/close signals in MiniBrowser
carlosgc@webkit.org [Mon, 2 Jan 2012 13:39:21 +0000 (13:39 +0000)]
[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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103904 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt] Fix qmake warning about unescaped backslashes
vestbo@webkit.org [Mon, 2 Jan 2012 13:23:32 +0000 (13:23 +0000)]
[Qt] Fix qmake warning about unescaped backslashes

Reviewed by Ossy.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103903 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed Qt-WK2 gardening.
kbalazs@webkit.org [Mon, 2 Jan 2012 12:30:36 +0000 (12:30 +0000)]
Unreviewed Qt-WK2 gardening.

Unskip table tests for wk2 after platform results
have been added in r103898.

* platform/qt-wk2/Skipped:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103902 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[GTK] fast/dom/constructed-objects-prototypes.html fails
philn@webkit.org [Mon, 2 Jan 2012 11:22:53 +0000 (11:22 +0000)]
[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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103901 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed. Fix make distcheck issue.
carlosgc@webkit.org [Mon, 2 Jan 2012 11:09:39 +0000 (11:09 +0000)]
Unreviewed. Fix make distcheck issue.

* GNUmakefile.am: Add resolve-supplemental.pl script to
EXTRA_DIST.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103900 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agofast/dom/htmlcollection-zombies.html fails on GTK and on Qt
ossy@webkit.org [Mon, 2 Jan 2012 10:49:42 +0000 (10:49 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103899 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoRebaseline table tests to reflect new width of table captions after r103875
ossy@webkit.org [Mon, 2 Jan 2012 10:07:26 +0000 (10:07 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103898 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, skip two canvas tests failing in GTK after r103849.
philn@webkit.org [Mon, 2 Jan 2012 10:01:01 +0000 (10:01 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103897 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectations update.
mnaganov@chromium.org [Mon, 2 Jan 2012 09:59:40 +0000 (09:59 +0000)]
[Chromium] Unreviewed test expectations update.
https://bugs.webkit.org/show_bug.cgi?id=75430

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103896 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoRemove unnecessary [Custom] attribute in CanvasRenderingContext2D.idl
ossy@webkit.org [Mon, 2 Jan 2012 09:52:45 +0000 (09:52 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103895 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, GTK rebaseline after r103251 and r103875.
philn@webkit.org [Mon, 2 Jan 2012 09:07:07 +0000 (09:07 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103894 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoClear HTMLCollection's internal cache on construction.
kling@webkit.org [Mon, 2 Jan 2012 08:42:50 +0000 (08:42 +0000)]
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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103893 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, unskipping tests needing a GTK rebaseline.
philn@webkit.org [Mon, 2 Jan 2012 08:40:44 +0000 (08:40 +0000)]
Unreviewed, unskipping tests needing a GTK rebaseline.

* platform/gtk/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103892 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[EFL] Move function to get dpi to the WebCore/platform/efl/EflScreenUtilities.cpp.
commit-queue@webkit.org [Mon, 2 Jan 2012 06:46:45 +0000 (06:46 +0000)]
[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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103891 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] need win/linux baselines for patch from issue 69694
thakis@chromium.org [Mon, 2 Jan 2012 06:33:16 +0000 (06:33 +0000)]
[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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103890 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed test expectations change for chromium.
atwilson@chromium.org [Mon, 2 Jan 2012 01:01:20 +0000 (01:01 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103889 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoMerge CollectionCache into HTMLCollection.
kling@webkit.org [Mon, 2 Jan 2012 00:37:59 +0000 (00:37 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103888 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCall instructions should leave room for linking information
fpizlo@apple.com [Mon, 2 Jan 2012 00:33:07 +0000 (00:33 +0000)]
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):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103887 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, checking in missing update to gc-9.html from r103883.
kling@webkit.org [Sun, 1 Jan 2012 23:40:57 +0000 (23:40 +0000)]
Unreviewed, checking in missing update to gc-9.html from r103883.

* fast/dom/gc-9-expected.txt:
* fast/dom/gc-9.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103886 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectations update after r103877.
mnaganov@chromium.org [Sun, 1 Jan 2012 21:41:04 +0000 (21:41 +0000)]
[Chromium] Unreviewed test expectations update after r103877.
https://bugs.webkit.org/show_bug.cgi?id=75418

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103885 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectations update after r103875.
mnaganov@chromium.org [Sun, 1 Jan 2012 21:24:34 +0000 (21:24 +0000)]
[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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103884 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoMove the remaining collections to caching on their respective base nodes.
kling@webkit.org [Sun, 1 Jan 2012 21:05:42 +0000 (21:05 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103883 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUse overload methods to implement [Optional] parameters in AudioNode.idl
commit-queue@webkit.org [Sun, 1 Jan 2012 20:56:27 +0000 (20:56 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103882 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt] Layout divergence between WK1/2 in table tests
kbalazs@webkit.org [Sun, 1 Jan 2012 20:12:52 +0000 (20:12 +0000)]
[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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103881 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoEnvironmentUtilities::stripValuesEndingWithString enters an infinite loop if the...
mitz@apple.com [Sun, 1 Jan 2012 19:44:03 +0000 (19:44 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103880 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoImproved reproting of kernel return codes.
mitz@apple.com [Sun, 1 Jan 2012 19:24:00 +0000 (19:24 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103879 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoFinal update to Chromium expectations for Mac and Win following r103875.
robert@webkit.org [Sun, 1 Jan 2012 19:03:46 +0000 (19:03 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103878 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUpdate to expectations from r103875
robert@webkit.org [Sun, 1 Jan 2012 18:29:23 +0000 (18:29 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103877 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUpdate test expectations after r103875
robert@webkit.org [Sun, 1 Jan 2012 16:59:59 +0000 (16:59 +0000)]
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:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103876 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCSS 2.1 failure: border-collapse-offset-002.htm fails
robert@webkit.org [Sun, 1 Jan 2012 15:12:55 +0000 (15:12 +0000)]
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

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103875 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed. Rebaselined run-bindings-tests results.
haraken@chromium.org [Sun, 1 Jan 2012 09:43:42 +0000 (09:43 +0000)]
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103874 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoMake HTMLCollections play nice after their base node is gone.
kling@webkit.org [Sun, 1 Jan 2012 05:54:09 +0000 (05:54 +0000)]
Make HTMLCollections play nice after their base node is gone.
<http://webkit.org/b/75410>

Reviewed by Anders Carlsson.

Source/WebCore:

Added HTMLCollection::detachFromNode() and call that from destructors of nodes
with cached collections.

Sprinkled checks/assertions where applicable to make sure HTMLCollections are
empty after their associated node has been destroyed.

This is a slight change in behavior, as collections would previously keep
their nodes alive indefinitely. Added a test to document this.

Test: fast/dom/htmlcollection-zombies.html

* dom/Document.cpp:
(WebCore::Document::~Document):
* html/HTMLAllCollection.cpp:
(WebCore::HTMLAllCollection::namedItemWithIndex):
* html/HTMLCollection.cpp:
(WebCore::HTMLCollection::detachFromNode):
(WebCore::HTMLCollection::resetCollectionInfo):
(WebCore::HTMLCollection::itemAfter):
(WebCore::HTMLCollection::calcLength):
(WebCore::HTMLCollection::length):
(WebCore::HTMLCollection::item):
(WebCore::HTMLCollection::nextItem):
(WebCore::HTMLCollection::namedItem):
(WebCore::HTMLCollection::updateNameCache):
(WebCore::HTMLCollection::hasNamedItem):
(WebCore::HTMLCollection::namedItems):
(WebCore::HTMLCollection::tags):
* html/HTMLCollection.h:
* html/HTMLFormCollection.cpp:
(WebCore::HTMLFormCollection::calcLength):
(WebCore::HTMLFormCollection::item):
(WebCore::HTMLFormCollection::getNamedItem):
(WebCore::HTMLFormCollection::getNamedFormItem):
(WebCore::HTMLFormCollection::namedItem):
(WebCore::HTMLFormCollection::updateNameCache):
* html/HTMLFormElement.cpp:
(WebCore::HTMLFormElement::~HTMLFormElement):
* html/HTMLNameCollection.cpp:
(WebCore::HTMLNameCollection::itemAfter):
* html/HTMLOptionsCollection.cpp:
(WebCore::HTMLOptionsCollection::add):
(WebCore::HTMLOptionsCollection::remove):
(WebCore::HTMLOptionsCollection::selectedIndex):
(WebCore::HTMLOptionsCollection::setSelectedIndex):
(WebCore::HTMLOptionsCollection::setLength):
* html/HTMLPropertiesCollection.cpp:
(WebCore::HTMLPropertiesCollection::length):
(WebCore::HTMLPropertiesCollection::item):
(WebCore::HTMLPropertiesCollection::names):
* html/HTMLSelectElement.cpp:
(WebCore::HTMLSelectElement::~HTMLSelectElement):
* html/HTMLSelectElement.h:
* html/HTMLTableElement.cpp:
(WebCore::HTMLTableElement::~HTMLTableElement):
* html/HTMLTableElement.h:
* html/HTMLTableRowsCollection.cpp:
(WebCore::HTMLTableRowsCollection::itemAfter):

LayoutTests:

* fast/dom/htmlcollection-zombies-expected.txt: Added.
* fast/dom/htmlcollection-zombies.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103873 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoHTMLCollection: Remove the constructor's custom CollectionCache* argument.
kling@webkit.org [Sun, 1 Jan 2012 04:34:01 +0000 (04:34 +0000)]
HTMLCollection: Remove the constructor's custom CollectionCache* argument.
<http://webkit.org/b/75414>

Reviewed by Anders Carlsson.

We no longer need to initialize HTMLCollections with a custom CollectionCache,
so remove the argument from the constructor.

* html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
* html/HTMLCollection.h:
* html/HTMLFormCollection.cpp:
(WebCore::HTMLFormCollection::HTMLFormCollection):
* html/HTMLNameCollection.cpp:
(WebCore::HTMLNameCollection::HTMLNameCollection):
* html/HTMLOptionsCollection.cpp:
(WebCore::HTMLOptionsCollection::HTMLOptionsCollection):
* html/HTMLTableRowsCollection.cpp:
(WebCore::HTMLTableRowsCollection::HTMLTableRowsCollection):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103872 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoContinue trying to fix the ASSERT-enabled Windows build after r103858.
mitz@apple.com [Sun, 1 Jan 2012 02:19:07 +0000 (02:19 +0000)]
Continue trying to fix the ASSERT-enabled Windows build after r103858.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::drawRectToPDF):
(WebKit::WebPage::drawPagesToPDF):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103871 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoContinue trying to fix the Windows build after r103823.
mitz@apple.com [Sun, 1 Jan 2012 02:07:23 +0000 (02:07 +0000)]
Continue trying to fix the Windows build after r103823.

* JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103870 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoStart trying to fix the Windows build after r103858.
mitz@apple.com [Sun, 1 Jan 2012 01:59:47 +0000 (01:59 +0000)]
Start trying to fix the Windows build after r103858.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::drawPDFPage):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103869 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoStart trying to fix the Windows build after r103823.
mitz@apple.com [Sun, 1 Jan 2012 01:23:04 +0000 (01:23 +0000)]
Start trying to fix the Windows build after r103823.

* JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103868 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoSource/WebCore: WebCore changes for: REGRESSION (WebKit2): Cursor, hover states not...
mitz@apple.com [Sun, 1 Jan 2012 01:04:08 +0000 (01:04 +0000)]
Source/WebCore: WebCore changes for: REGRESSION (WebKit2): Cursor, hover states not updated when page scrolls under stationary mouse pointer
https://bugs.webkit.org/show_bug.cgi?id=75405

Reviewed by Anders Carlsson.

Test: fast/events/frame-scroll-fake-mouse-move.html

* page/FrameView.cpp:
(WebCore::FrameView::scrollPositionChanged): Added a call to
EventHandler::dispatchFakeMouseMoveEventSoon().

Source/WebKit/mac: WebKit/mac changes for: REGRESSION (WebKit2): Cursor, hover states not updated when page scrolls under stationary mouse pointer
https://bugs.webkit.org/show_bug.cgi?id=75405

Reviewed by Anders Carlsson.

Removed the WebKit/mac mechanism for dispatching fake mouse moved events
when an HTML frame scrolls, since FrameView now does this.

* WebView/WebHTMLView.mm:
(-[WebHTMLViewPrivate dealloc]): Removed an assertion about a removed ivar.
(-[WebHTMLView _updateMouseoverWithFakeEvent]): Removed call to
-_cancelUpdateMouseoverTimer.
(-[WebHTMLView _frameOrBoundsChanged]): Removed code to schedule a timer
for dispatching a mouse moved event on scroll.
(-[WebHTMLView close]): Removed call to _cancelUpdateMouseoverTimer.
(-[WebHTMLView viewWillMoveToWindow:]): Ditto.
(-[WebHTMLView mouseDown:]): Ditto.

LayoutTests: REGRESSION (WebKit2): Cursor, hover states not updated when page scrolls under stationary mouse pointer
https://bugs.webkit.org/show_bug.cgi?id=75405

Reviewed by Anders Carlsson.

* fast/events/frame-scroll-fake-mouse-move-expected.txt: Added.
* fast/events/frame-scroll-fake-mouse-move.html: Copied from
LayoutTests/fast/events/overflow-scroll-fake-mouse-move.html and adapted to page scrolling.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103867 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoMiniBrowser sets the WKView’s frame incorrectly
mitz@apple.com [Sun, 1 Jan 2012 00:58:20 +0000 (00:58 +0000)]
MiniBrowser sets the WKView’s frame incorrectly
https://bugs.webkit.org/show_bug.cgi?id=75393

Reviewed by Anders Carlsson.

* MiniBrowser/MiniBrowser.xcodeproj/project.pbxproj: Removed Make Launchable build phase,
which is not needed since the binray is linked with the frameworks search path set to the
built products directory.
* MiniBrowser/mac/BrowserWindowController.m:
(-[BrowserWindowController awakeFromNib]): Changed to set the WKView’s frame to its
container’s bounds rather than its frame.
* MiniBrowser/mac/make-launchable.sh: Removed.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103866 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCache named item collections on Document, not just their caches.
kling@webkit.org [Sun, 1 Jan 2012 00:56:01 +0000 (00:56 +0000)]
Cache named item collections on Document, not just their caches.
<http://webkit.org/b/75403>

Reviewed by Anders Carlsson.

Keep two maps of name -> RefPtr<HTMLNameCollection> on Document. We already
had maps for the CollectionCaches and were creating the HTMLNameCollections
every time they were accessed. We now let the collections create and manage
the CollectionCaches instead of Document.

No new tests since these collections are not exposed to the web.

* dom/Document.h:
* dom/Document.cpp:
(WebCore::Document::windowNamedItems):
(WebCore::Document::documentNamedItems):

    Replace the name/CollectionCache maps by name/HTMLNameCollection maps.

* bindings/js/JSDOMWindowCustom.cpp:
(WebCore::namedItemGetter):
* bindings/js/JSHTMLDocumentCustom.cpp:
(WebCore::JSHTMLDocument::nameGetter):

    Pass names as AtomicStrings to Document's collection getters.

* html/HTMLNameCollection.h:
(WebCore::HTMLNameCollection::create):
* html/HTMLNameCollection.cpp:
(WebCore::HTMLNameCollection::HTMLNameCollection):

    Store the name in an AtomicString instead of a String, incidentally
    making traversal of HTMLNameCollections more efficient.

* html/CollectionType.h:

    Remove two now-unneeded constants.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103865 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoRemove Document::collectionInfo() and let collections manage their caches.
kling@webkit.org [Sun, 1 Jan 2012 00:50:00 +0000 (00:50 +0000)]
Remove Document::collectionInfo() and let collections manage their caches.
<http://webkit.org/b/75401>

Reviewed by Anders Carlsson.

Remove the CollectionCaches from Document and have the document's collections
create and manage the caches on-demand instead. This is a step towards merging
CollectionCache into HTMLCollection.

* dom/Document.h:
* dom/Document.cpp:
* html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
* html/HTMLOptionsCollection.cpp:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103864 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoRenderThemeMac: Avoid double hash lookup in systemColor().
kling@webkit.org [Sat, 31 Dec 2011 23:41:55 +0000 (23:41 +0000)]
RenderThemeMac: Avoid double hash lookup in systemColor().
<http://webkit.org/b/75409>

Reviewed by Anders Carlsson.

* rendering/RenderThemeMac.mm:
(WebCore::RenderThemeMac::systemColor):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103863 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCSSStyleSelector: Avoid double hash lookup in keyframeStylesForAnimation().
kling@webkit.org [Sat, 31 Dec 2011 23:39:46 +0000 (23:39 +0000)]
CSSStyleSelector: Avoid double hash lookup in keyframeStylesForAnimation().
<http://webkit.org/b/75408>

Reviewed by Anders Carlsson.

* css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::keyframeStylesForAnimation):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103862 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoKeyframeAnimation: Use hash lookups to determine if property is animated.
kling@webkit.org [Sat, 31 Dec 2011 23:36:08 +0000 (23:36 +0000)]
KeyframeAnimation: Use hash lookups to determine if property is animated.
<http://webkit.org/b/75407>

Reviewed by Anders Carlsson.

Clean out an old FIXME about using hash lookups instead of iterating over
the properties.

* page/animation/KeyframeAnimation.cpp:
(WebCore::KeyframeAnimation::hasAnimationForProperty):
(WebCore::KeyframeAnimation::affectsProperty):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103861 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoSource/WebCore: WebCore change for <rdar://problem/10463059> Cannot print USPS shippi...
mitz@apple.com [Sat, 31 Dec 2011 20:58:39 +0000 (20:58 +0000)]
Source/WebCore: WebCore change for <rdar://problem/10463059> Cannot print USPS shipping labels
http://webkit.org/b/72801

Reviewed by Anders Carlsson and Alexey Proskuryakov.

* WebCore.exp.in: Exported Chrome::print().

Source/WebKit2: <rdar://problem/10463059> Cannot print USPS shipping labels
http://webkit.org/b/72801

Reviewed by Anders Carlsson and Alexey Proskuryakov.

* WebProcess/Plugins/PDF/BuiltInPDFView.cpp:
(appendValuesInPDFNameSubtreeToVector): Copied from WebKit/mac/WebView/WebPDFDocumentExtras.mm.
(getAllValuesInPDFNameTree): Ditto.
(getAllScriptsInPDFDocument): Copied allScriptsInPDFDocument() from WebPDFDocumentExtras.mm
and changed it to append to a Vector<RetainPtr<CFStringRef> >.
(WebKit::BuiltInPDFView::create): Changed to take a WebFrame* rather than a Page*.
(WebKit::BuiltInPDFView::BuiltInPDFView): Ditto. Updated initializer accordingly.
(WebKit::BuiltInPDFView::pdfDocumentDidLoad): Copied and adapted code from
-[WebPDFRepresentation finishedLoadingWithDataSource:] to run scripts from the PDF with a
Doc object as the this object.
(WebKit::BuiltInPDFView::initialize): Adapted for the change from having a Page* to having
a WebFrame*.
(WebKit::BuiltInPDFView::destroy): Ditto.
(WebKit::BuiltInPDFView::isActive): Ditto.
(WebKit::jsPDFDocInitialize): Added. Refs the BuiltInPDFView which is the private object for
this Doc.
(WebKit::jsPDFDocFinalize): Added. Derefs the BuiltInPDFView for this Doc.
(WebKit::BuiltInPDFView::jsPDFDocPrint): Added. Calls WebCore::Chrome::print().
(WebKit::BuiltInPDFView::makeJSPDFDoc): Copied from WebKit/mac/WebView/WebJSPDFDoc.mm and
modified to use this BuiltInPDFView as the private object of the Doc being made.
* WebProcess/Plugins/PDF/BuiltInPDFView.h:
(WebKit::BuiltInPDFView::disconnectFromPage): Adapted for the change from having a Page* to
having a WebFrame*.
* WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::createPlugin): Pass the WebFrame to WebPage::createPlugin().
* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::createPlugin): Added a WebFrame* parameter, which is used when creating
a BuiltInPDFView.
* WebProcess/WebPage/WebPage.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103860 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago<rdar://problem/8553040> REGRESSION (WebKit2): Safari status text doesn't change...
mitz@apple.com [Sat, 31 Dec 2011 20:44:44 +0000 (20:44 +0000)]
<rdar://problem/8553040> REGRESSION (WebKit2): Safari status text doesn't change when you change the modifier keys without moving the mouse
https://bugs.webkit.org/show_bug.cgi?id=75404

Reviewed by Jon Honeycutt.

* UIProcess/API/mac/WKView.mm:
(-[WKView dealloc]): Remove the flags changed event monitor.
(-[WKView _postFakeMouseMovedEventForFlagsChangedEvent:]): Added. Similarly to
-[WebHTMLView _postFlagsChangedEvent:], creates a mouse moved event and passes it to
-mouseMoved:.
(-[WKView initWithFrame:contextRef:pageGroupRef:]): Create a local event monitor for flags
changed events.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103859 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoSource/WebCore: WebCore changes for <rdar://problem/8750356> REGRESSION (WebKit2...
mitz@apple.com [Sat, 31 Dec 2011 20:29:46 +0000 (20:29 +0000)]
Source/WebCore: WebCore changes for <rdar://problem/8750356> REGRESSION (WebKit2): Printing a subframe containing a PDF prints the on-screen view instead of the entire PDF document
<http://webkit.org/b/75232>

Reviewed by Alexey Proskuryakov.

* WebCore.exp.in: Exported PluginDocument::pluginWidget().
* WebCore.xcodeproj/project.pbxproj: Promoted PluginDocument.h to private.
* html/PluginDocument.h: Fixed a typo in a comment.

Source/WebKit2: <rdar://problem/8750356> REGRESSION (WebKit2): Printing a subframe containing a PDF prints the on-screen view instead of the entire PDF document
<http://webkit.org/b/75232>

Reviewed by Alexey Proskuryakov.

* UIProcess/API/C/WKPage.cpp:
(WKPageDrawPagesToPDF): Added WKPrintInfo parameter, which is passed through as a PrintInfo
to the WebPageProxy.
* UIProcess/API/C/WKPagePrivate.h:
* UIProcess/API/mac/WKPrintingView.mm:
(-[WKPrintingView _preparePDFDataForPrintingOnSecondaryThread]): Changed to pass the PrintInfo
down to WebPageProxy::drawPagesToPDF.
(-[WKPrintingView _drawPreview:]): Changed to pass the PrintInfo down to
WebPageProxy::drawRectToPDF.
* UIProcess/API/mac/WKView.mm:
(-[WKView canChangeFrameLayout:]): Changed to use WebFrameProxy::isDisplayingPDFDocument, which
works for subframes as well.
(-[WKView printOperationWithPrintInfo:forFrame:]): Added a FIXME.
* UIProcess/WebFrameProxy.cpp:
(WebKit::WebFrameProxy::isDisplayingPDFDocument): Added.
* UIProcess/WebFrameProxy.h:
* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::drawRectToPDF): Added a PrintInfo parameter, which is passed through to
the Web process.
(WebKit::WebPageProxy::drawPagesToPDF): Ditto.
* UIProcess/WebPageProxy.h:
* WebProcess/Plugins/PDF/BuiltInPDFView.h:
Added an override of pdfDocumentForPrinting() which returns the PDFDocument.
* WebProcess/Plugins/Plugin.h:
(WebKit::Plugin::pdfDocumentForPrinting): Added. This base class implementation returns 0.
* WebProcess/Plugins/PluginView.h:
(WebKit::PluginView::pdfDocumentForPrinting): Added. Calls through to the Plugin.
* WebProcess/WebPage/WebPage.cpp:
(WebKit::pdfDocumentForPrintingFrame): Added this helper function. If the frame is displaying
a plug-in document, allows the plug-in to provide a PDF document for printing.
(WebKit::WebPage::beginPrinting): Added an early return if the frame provides a PDF document
for printing.
(WebKit::WebPage::computePagesForPrinting): If the frame provides a PDF document for printing,
create for each page in the PDF document a page rect with the size available for printing.
(WebKit::drawPDFPage): Added this helper function, which draws a page from the PDF document
into one of the aforementioned page rects. It rotates the PDF page 90 degrees if necessary to
better match the aspect ratio of the paper, then it centers it on the paper. This matches the
behavior of a PDFView when printed with default settings.
(WebKit::WebPage::drawRectToPDF): If the frame provides a PDF document for printing, draw the
PDF pages falling within the requested rect.
(WebKit::WebPage::drawPagesToPDF): If the frame provides a PDF document for printing, draw
the requested pages.
* WebProcess/WebPage/WebPage.h:
* WebProcess/WebPage/WebPage.messages.in: Added a PrintInfo parameter to DrawRectToPDF and
DrawPagesToPDF.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103858 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoAllow disabling accelerated compositing in WebMediaPlayerClient (so audio-only <video...
commit-queue@webkit.org [Sat, 31 Dec 2011 06:02:49 +0000 (06:02 +0000)]
Allow disabling accelerated compositing in WebMediaPlayerClient (so audio-only <video> isn't accelerated).
https://bugs.webkit.org/show_bug.cgi?id=75261

Patch by Ami Fischman <fischman@chromium.org> on 2011-12-30
Reviewed by Darin Fisher.

* public/WebMediaPlayerClient.h:
* src/WebMediaPlayerClientImpl.cpp:
(WebKit::WebMediaPlayerClientImpl::disableAcceleratedCompositing):
(WebKit::WebMediaPlayerClientImpl::AudioSourceProviderImpl::setClient):
* src/WebMediaPlayerClientImpl.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103857 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCache and reuse the HTMLTableElement.rows collection.
kling@webkit.org [Sat, 31 Dec 2011 02:56:55 +0000 (02:56 +0000)]
Cache and reuse the HTMLTableElement.rows collection.
<http://webkit.org/b/75398>

Reviewed by Anders Carlsson.

Source/WebCore:

Let HTMLTableElement::rows() cache the returned collection and tie it to the
lifetime of the form.

Test: fast/dom/table-rows-collection-idempotence.html
      fast/dom/gc-9.html

* html/HTMLTableElement.h:
* html/HTMLTableElement.cpp:
(WebCore::HTMLTableElement::rows):

    Cache the HTMLTableRowsCollection returned by rows() on the HTMLTableElement.
    Remove the per-table CollectionCache and let the collection manage that.

* html/HTMLTableRowsCollection.h:
* html/HTMLTableRowsCollection.cpp:
(WebCore::HTMLTableRowsCollection::HTMLTableRowsCollection):
(WebCore::HTMLTableRowsCollection::create):

    Tell the base class constructor to not retain the back-pointer to the table.

LayoutTests:

- Update gc-9.html to document the new lifetime characteristics of HTMLTableElement.rows.
- Add a test to verify that HTMLTableElement.rows returns the same object when called repeatedly.

* fast/dom/gc-9-expected.txt:
* fast/dom/gc-9.html:
* fast/dom/table-rows-collection-idempotence-expected.txt: Added.
* fast/dom/table-rows-collection-idempotence.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103856 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCache and reuse the HTMLSelectElement.options collection.
kling@webkit.org [Sat, 31 Dec 2011 02:43:33 +0000 (02:43 +0000)]
Cache and reuse the HTMLSelectElement.options collection.
<http://webkit.org/b/75399>

Reviewed by Anders Carlsson.

Source/WebCore:

Let HTMLSelectElement::options() cache the returned collection and tie it to the
lifetime of the form. This shrinks HTMLSelectElement by sizeof(CollectionCache)
minus one pointer.

Test: fast/dom/select-options-collection-idempotence.html
      fast/gc-9.html

* html/HTMLSelectElement.h:
* html/HTMLSelectElement.cpp:
(WebCore::HTMLSelectElement::options):

    Cache the HTMLOptionsCollection returned by options() on the HTMLSelectElement.
    Remove the per-select CollectionCache and let the collection manage that.

* html/HTMLOptionsCollection.h:
* html/HTMLOptionsCollection.cpp:
(WebCore::HTMLOptionsCollection::create):
(WebCore::HTMLOptionsCollection::HTMLOptionsCollection):

    Tell the base class constructor to not retain the back-pointer to the element.

* html/HTMLSelectElement.cpp:
(WebCore::HTMLSelectElement::setRecalcListItems):
* html/HTMLOptionsCollection.cpp:
(WebCore::HTMLOptionsCollection::invalidateCache):

    Added so HTMLSelectElement can invalidate the collection without triggering
    unnecessary instantiation of a CollectionCache.

LayoutTests:

- Update gc-9.html to document the new lifetime characteristics of HTMLSelectElement.options.
- Add a test to verify that HTMLSelectElement.options returns the same object when called repeatedly.

* fast/dom/gc-9-expected.txt:
* fast/dom/gc-9.html:
* fast/dom/select-options-collection-idempotence-expected.txt: Added.
* fast/dom/select-options-collection-idempotence.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103855 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoEnable the [Supplemental] IDL on CMake
haraken@chromium.org [Sat, 31 Dec 2011 01:10:47 +0000 (01:10 +0000)]
Enable the [Supplemental] IDL on CMake
https://bugs.webkit.org/show_bug.cgi?id=75345

Reviewed by Daniel Bates.

This patch enables the [Supplemental] IDL on CMake by changing the build
flow of CMake 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/*

* CMakeLists.txt:
* UseJSC.cmake: Modified to reflect the new build flow as described above.
* UseV8.cmake: Ditto.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103854 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Qt] fast/css/absolute-inline-alignment.html fails
robert@webkit.org [Sat, 31 Dec 2011 00:20:00 +0000 (00:20 +0000)]
[Qt] fast/css/absolute-inline-alignment.html fails
https://bugs.webkit.org/show_bug.cgi?id=75400

Unreviewed, skipping 2 new tests on Qt after r103851.

* platform/qt/Skipped:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103853 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] media/track/track-cue-rendering.html fails
eric.carlson@apple.com [Fri, 30 Dec 2011 21:27:14 +0000 (21:27 +0000)]
[chromium] media/track/track-cue-rendering.html fails
https://bugs.webkit.org/show_bug.cgi?id=75098

Reviewed by Dan Bernstein.

* media/media-controls.js:
(textTrackDisplayElement): Don't assume there is only one shadow DOM element used to
    display captions.
* media/track/track-cue-nothing-to-render-expected.txt: Updated.
* media/track/track-cue-nothing-to-render.html: Fix the test so it checks the track
    container and cue text pseudo element properties separately.
* media/track/track-cue-rendering-expected.txt: Updated for textTrackDisplayElement change.
* media/track/track-cue-rendering.html: Ditto.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103852 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoREGRESSION (r94492): Text is shifted to the right in some buttons in the Mac App...
robert@webkit.org [Fri, 30 Dec 2011 20:58:29 +0000 (20:58 +0000)]
REGRESSION (r94492): Text is shifted to the right in some buttons in the Mac App Store
https://bugs.webkit.org/show_bug.cgi?id=74723

Reviewed by Dan Bernstein.

Source/WebCore:

Tests: fast/css/absolute-inline-alignment-2.html
       fast/css/absolute-inline-alignment.html

Inline positioned elements in the leading spaces of an inline run need to align to
adjacent text, so add them to the run as they're encountered.

* rendering/RenderBlockLineLayout.cpp:
(WebCore::LineInfo::LineInfo): Keep a count of positioned objects encountered when
 skipping leading whitespace.
(WebCore::LineInfo::runsFromLeadingWhitespace):
(WebCore::LineInfo::resetRunsFromLeadingWhitespace):
(WebCore::LineInfo::incrementRunsFromLeadingWhitespace):
(WebCore::RenderBlock::constructLine): Leading positioned objects should not be considered
 when deciding the number of runs in a line. Otherwise they would contribute towards line
 height themselves and prevent a free-standing BR following the positioned object from providing a full
 20px of height.
(WebCore::RenderBlock::layoutRunsAndFloatsInRange): Since a run containing line-breaks will enter
 skipLeadingWhitespace for each new line we reset the count every time so that the count of positioned
 objects we encounter only affects the line they appear on. This case is covered by
 fast/inline/styledEmptyInlinesWithBRs.html
(WebCore::RenderBlock::LineBreaker::skipLeadingWhitespace): Add a run for each inline positioned object
 encountered in leading white space. Keep a count of them so that they can be excluded from
 the total number of runs in constructLine.

LayoutTests:

* fast/css/absolute-inline-alignment-2-expected.html: Added.
* fast/css/absolute-inline-alignment-2.html: Added.
* fast/css/absolute-inline-alignment-expected.html: Added.
* fast/css/absolute-inline-alignment.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103851 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agomedia/video-scales-in-media-document.html is Chromium specific
commit-queue@webkit.org [Fri, 30 Dec 2011 20:53:28 +0000 (20:53 +0000)]
media/video-scales-in-media-document.html is Chromium specific
https://bugs.webkit.org/show_bug.cgi?id=75079

Moves the test into platform/chromium/media and removes the Skipped
entry for gtk.

Patch by Dale Curtis <dalecurtis@chromium.org> on 2011-12-30
Reviewed by Eric Carlson.

* platform/chromium/media/video-scales-in-media-document-expected.txt: Renamed from LayoutTests/media/video-scales-in-media-document-expected.txt.
* platform/chromium/media/video-scales-in-media-document.html: Renamed from LayoutTests/media/video-scales-in-media-document.html.
* platform/gtk/Skipped:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103850 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoRemove unnecessary [Custom] attribute in CanvasRenderingContext2D.idl
commit-queue@webkit.org [Fri, 30 Dec 2011 20:40:08 +0000 (20:40 +0000)]
Remove unnecessary [Custom] attribute in CanvasRenderingContext2D.idl
https://bugs.webkit.org/show_bug.cgi?id=75376

Patch by Raymond Liu <raymond.liu@intel.com> on 2011-12-30
Reviewed by Adam Barth.

No new tests required.

* bindings/js/JSCanvasRenderingContext2DCustom.cpp:
* html/canvas/CanvasRenderingContext2D.idl:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103849 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCache and reuse the HTMLFormElement.elements collection.
kling@webkit.org [Fri, 30 Dec 2011 20:15:16 +0000 (20:15 +0000)]
Cache and reuse the HTMLFormElement.elements collection.
<http://webkit.org/b/75375>

Reviewed by Anders Carlsson.

Source/WebCore:

Let HTMLFormElement::elements() cache the returned collection and tie it to the
lifetime of the form. This reduces memory consumption by ~70 kB (on 64-bit) when
viewing your average popular post on reddit.com.

Test: fast/dom/form-elements-collection-idempotence.html
      fast/dom/gc-9.html

* html/HTMLFormElement.h:
* html/HTMLFormElement.cpp:
(WebCore::HTMLFormElement::elements):

    Cache the HTMLFormCollection returned by elements() on the HTMLFormElement.
    Remove the per-form CollectionCache and let the collection manage that.

* html/HTMLCollection.h:
* html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
(WebCore::HTMLCollection::create):

    Have the HTMLCollection constructor take a bool argument that decides whether
    we retain the base node pointer or not. This mechanism is a temporary measure
    until all collection types are owned by their respective base nodes.

* html/HTMLFormCollection.h:
* html/HTMLFormCollection.cpp:
(WebCore::HTMLFormCollection::HTMLFormCollection):
(WebCore::HTMLFormCollection::create):

    Tell the base class constructor to not retain the back-pointer to the form.

LayoutTests:

- Update gc-9.html to document the new lifetime characteristics of HTMLFormElement.elements.
- Add a test to verify that HTMLFormElement.elements returns the same object when called repeatedly.

* fast/dom/form-elements-collection-idempotence-expected.txt: Added.
* fast/dom/form-elements-collection-idempotence.html: Added.
* fast/dom/gc-9-expected.txt:
* fast/dom/gc-9.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103848 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoAdd a ParamStorageTraits specialization for RetainPtr
andersca@apple.com [Fri, 30 Dec 2011 19:08:03 +0000 (19:08 +0000)]
Add a ParamStorageTraits specialization for RetainPtr
https://bugs.webkit.org/show_bug.cgi?id=75392

Reviewed by Daniel Bates.

* wtf/Functional.h:
Add a partial specialization of ParamStorageTraits for RetainPtr<T>.

* wtf/RetainPtr.h:
Bring in the retainPtr function template from WTF.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103847 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed buildfix after r103841.
kling@webkit.org [Fri, 30 Dec 2011 19:07:56 +0000 (19:07 +0000)]
Unreviewed buildfix after r103841.

* inspector/InspectorMemoryAgent.cpp:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103846 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoCSSStyleDeclaration: Only allow setting parent rule at construction.
kling@webkit.org [Fri, 30 Dec 2011 18:35:53 +0000 (18:35 +0000)]
CSSStyleDeclaration: Only allow setting parent rule at construction.
<http://webkit.org/b/75391>

Reviewed by Dan Bernstein.

A CSSStyleDeclaration should only ever belong to one CSSRule. Enforce this
at compile-time by replacing setParentRule(CSSRule*) with clearParentRule().

* css/CSSFontFaceRule.cpp:
(WebCore::CSSFontFaceRule::~CSSFontFaceRule):
* css/CSSStyleDeclaration.h:
(WebCore::CSSStyleDeclaration::clearParentRule):
* css/CSSStyleRule.cpp:
(WebCore::CSSStyleRule::~CSSStyleRule):
* css/WebKitCSSKeyframeRule.cpp:
(WebCore::WebKitCSSKeyframeRule::~WebKitCSSKeyframeRule):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103845 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWebKitCSSKeyframeRule.style.parentRule should point to the keyframe rule.
kling@webkit.org [Fri, 30 Dec 2011 17:32:12 +0000 (17:32 +0000)]
WebKitCSSKeyframeRule.style.parentRule should point to the keyframe rule.
<http://webkit.org/b/75336>

Reviewed by Antti Koivisto.

Source/WebCore:

Let CSS animation keyframe rules .style.parentRule point back to the keyframe
board, rather than the keyframes rule containing it.

Test: fast/css/css-keyframe-style-parentRule.html

* css/CSSParser.cpp:
(WebCore::CSSParser::createKeyframeRule):
* css/WebKitCSSKeyframeRule.cpp:
(WebCore::WebKitCSSKeyframeRule::setDeclaration):

    Set the CSSMutableStyleDeclaration's parent rule when creating it instead
    of in WebKitCSSKeyframeRule::setDeclaration(). Add assertion to make sure
    it's only called with declarations already parented to the keyframe rule.

* css/WebKitCSSKeyframesRule.cpp:
(WebCore::WebKitCSSKeyframesRule::~WebKitCSSKeyframesRule):
(WebCore::WebKitCSSKeyframesRule::append):
(WebCore::WebKitCSSKeyframesRule::deleteRule):

    Stop reparenting keyframe rules' style declarations to the keyframes rule.

LayoutTests:

* fast/css/css-keyframe-style-parentRule-expected.txt: Added.
* fast/css/css-keyframe-style-parentRule.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103844 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoEnvironmentUtilities::stripValuesEndingWithString fails when the variable ends with...
mitz@apple.com [Fri, 30 Dec 2011 17:01:20 +0000 (17:01 +0000)]
EnvironmentUtilities::stripValuesEndingWithString fails when the variable ends with the search value
https://bugs.webkit.org/show_bug.cgi?id=75389

Reviewed by Anders Carlsson.

* Platform/unix/EnvironmentUtilities.cpp:
(WebKit::EnvironmentUtilities::stripValuesEndingWithString): Fixed an off-by-1 error when
examining the character after the match.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103843 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed. Rolled DEPS.
commit-queue@webkit.org [Fri, 30 Dec 2011 13:11:36 +0000 (13:11 +0000)]
Unreviewed.  Rolled DEPS.

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-12-30

* DEPS:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103842 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: use typed front-end API in the memory agent
yurys@chromium.org [Fri, 30 Dec 2011 10:30:58 +0000 (10:30 +0000)]
Web Inspector: use typed front-end API in the memory agent
https://bugs.webkit.org/show_bug.cgi?id=75382

Memory agent now uses generate C++ API for communicating to the front-end.

Reviewed by Pavel Feldman.

* inspector/InspectorMemoryAgent.cpp:
(WebCore::DOMTreeStatistics::CounterVisitor::CounterVisitor):
(WebCore::DOMTreeStatistics::CounterVisitor::counters):
(WebCore::DOMTreeStatistics::CounterVisitor::visitNode):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103841 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[Chromium] Unreviewed test expectations change for nested-reflection tests.
mnaganov@chromium.org [Fri, 30 Dec 2011 10:29:05 +0000 (10:29 +0000)]
[Chromium] Unreviewed test expectations change for nested-reflection tests.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103840 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: migrate from "attached" to "compact" styles.
pfeldman@chromium.org [Fri, 30 Dec 2011 10:17:20 +0000 (10:17 +0000)]
Web Inspector: migrate from "attached" to "compact" styles.
https://bugs.webkit.org/show_bug.cgi?id=75381

Source/WebCore:

When front-end is docked to right, it should look like "detached", but is still "attached".
Use "compact" mode instead of "attached" mode in the styles to mitigate it.

Reviewed by Yury Semikhatsky.

* inspector/front-end/SearchController.js:
(WebInspector.SearchController.prototype.updateSearchLabel):
* inspector/front-end/Toolbar.js:
(WebInspector.Toolbar.prototype.set compact):
(WebInspector.Toolbar.prototype._toolbarDragStart):
(WebInspector.Toolbar.prototype._toolbarDrag):
* inspector/front-end/helpScreen.css:
(body.compact .help-window-outer):
(body.compact .help-window-main):
(body.compact .help-window-caption):
(body.compact .help-close-button):
(body.compact .help-content):
* inspector/front-end/inspector.css:
(body.compact #toolbar):
(body.compact.port-qt #toolbar):
(body.compact.inactive #toolbar):
(body.compact #search-toolbar-label):
(body.compact #toolbar-dropdown-arrow):
(body.compact #search):
(body.compact.port-qt .toolbar-item.close-left, body.compact.port-qt .toolbar-item.close-right):
(body.compact #main):
* inspector/front-end/inspector.js:
(WebInspector.set attached):
(WebInspector.get isCompactMode):
(WebInspector.get _setCompactMode):
(WebInspector._installDockToRight.listener.get if):
(WebInspector._installDockToRight.listener):
* inspector/front-end/inspectorCommon.css:
(body.dock-to-right):
(body.dock-to-right.inactive):

Source/WebKit/chromium:

Reviewed by Yury Semikhatsky.

When front-end is docked to right, it should look like "detached", but is still "attached".
Use "compact" mode instead of "attached" mode in the styles to mitigate it.

* src/js/devTools.css:
(body.compact #toolbar):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103839 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r103794.
commit-queue@webkit.org [Fri, 30 Dec 2011 09:20:18 +0000 (09:20 +0000)]
Unreviewed, rolling out r103794.
http://trac.webkit.org/changeset/103794
https://bugs.webkit.org/show_bug.cgi?id=75379

the ASSERT is triggered by several tests (Requested by
jchaffraix on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-12-30

* rendering/RenderTable.cpp:
(WebCore::RenderTable::RenderTable):
(WebCore::RenderTable::addChild):
(WebCore::RenderTable::layout):
(WebCore::RenderTable::recalcSections):
(WebCore::RenderTable::outerBorderAfter):
(WebCore::RenderTable::sectionAbove):
(WebCore::RenderTable::sectionBelow):
* rendering/RenderTable.h:
(WebCore::RenderTable::header):
(WebCore::RenderTable::footer):
(WebCore::RenderTable::firstBody):
(WebCore::RenderTable::hasSections):
(WebCore::RenderTable::topSection):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103838 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agohttps://bugs.webkit.org/show_bug.cgi?id=75373
dslomov@google.com [Fri, 30 Dec 2011 08:43:46 +0000 (08:43 +0000)]
https://bugs.webkit.org/show_bug.cgi?id=75373
[Chromium] Remove WebWorkerClient.h
After coordinated patch in chromium, WebWorkerClient alias for WebSharedWorkerClient is no longer needed.

Reviewed by Adam Barth.

* WebKit.gyp:
* public/WebFrameClient.h:
* public/WebWorkerClient.h: Removed.
* src/WebSharedWorkerImpl.h:
* src/WebWorkerBase.cpp:
* src/WebWorkerClientImpl.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103837 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r103831.
commit-queue@webkit.org [Fri, 30 Dec 2011 06:24:22 +0000 (06:24 +0000)]
Unreviewed, rolling out r103831.
http://trac.webkit.org/changeset/103831
https://bugs.webkit.org/show_bug.cgi?id=75377

broke chromium build (Requested by dslomov_ on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-12-29

* WebKit.gyp:
* public/WebFrameClient.h:
* public/WebWorkerClient.h: Copied from Source/WebKit/chromium/src/WebWorkerBase.cpp.
* src/WebSharedWorkerImpl.h:
* src/WebWorkerBase.cpp:
* src/WebWorkerClientImpl.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103836 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: enable dock-to-right view (still need embedders to support it).
pfeldman@chromium.org [Fri, 30 Dec 2011 06:01:06 +0000 (06:01 +0000)]
Web Inspector: enable dock-to-right view (still need embedders to support it).
https://bugs.webkit.org/show_bug.cgi?id=75360

Patch by Pavel Feldman <pfeldman@google.com> on 2011-12-29
Reviewed by Yury Semikhatsky.

Source/WebCore:

* English.lproj/localizedStrings.js:
* inspector/front-end/Settings.js:
(WebInspector.Settings):
* inspector/front-end/SettingsScreen.js:
(WebInspector.SettingsScreen):
* inspector/front-end/inspector.js:
(WebInspector.set attached):
(WebInspector._renderAsAttached.get return):
(WebInspector._renderAsAttached):
(WebInspector._installDockToRight.updateToolbar):

Source/WebKit/chromium:

* src/js/DevTools.js:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103835 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agodebug-safari --no-saved-state fails to start the debugger
mitz@apple.com [Fri, 30 Dec 2011 04:59:05 +0000 (04:59 +0000)]
debug-safari --no-saved-state fails to start the debugger
https://bugs.webkit.org/show_bug.cgi?id=75374

Reviewed by Sam Weinig.

* Scripts/webkitdirs.pm:
(execMacWebKitAppForDebugging): Pass the --args option to gdb so that it passes arguments to
the executable being debugged.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103834 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoIt should be easier to iterate a Vector backwards
weinig@apple.com [Fri, 30 Dec 2011 04:50:17 +0000 (04:50 +0000)]
It should be easier to iterate a Vector backwards
https://bugs.webkit.org/show_bug.cgi?id=75359

Reviewed by Anders Carlsson.

Source/JavaScriptCore:

Adds Vector::rbegin(), Vector::rend(), and Vector::reversed(),
a new proxy driven way to access a vector backwards. One can use
reversed() in a range-based for loop like so:

    for (auto val: myVector.reversed())
        doSomething(val)

* wtf/Vector.h:
(WTF::Vector::~Vector):
Fix style.

(WTF::Vector::rbegin):
(WTF::Vector::rend):
Added using standard adaptor std::reverse_iterator.

(WTF::Vector::reversed):
(WTF::Vector::VectorReverseProxy::begin):
(WTF::Vector::VectorReverseProxy::end):
Add proxy similar to one used in HashMap for keys() and values()
which allows access to a Vector backwards for use in range-based
for loops.

Tools:

* TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
* TestWebKitAPI/TestWebKitAPI.gypi:
* TestWebKitAPI/win/TestWebKitAPI.vcproj:
Add new Vector test.

* TestWebKitAPI/Tests/Vector.cpp: Added.
(TestWebKitAPI::TEST):
Test Vector iterators, reverse_iterators and new reversed proxy.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103833 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUse IDL overloads in AudioContext.idl for createBuffer
commit-queue@webkit.org [Fri, 30 Dec 2011 02:28:44 +0000 (02:28 +0000)]
Use IDL overloads in AudioContext.idl for createBuffer
https://bugs.webkit.org/show_bug.cgi?id=75293

Patch by Raymond Liu <raymond.liu@intel.com> on 2011-12-29
Reviewed by Adam Barth.

No new tests required.

* bindings/js/JSAudioContextCustom.cpp:
* bindings/v8/custom/V8AudioContextCustom.cpp:
* webaudio/AudioContext.cpp:
(WebCore::AudioContext::createBuffer):
* webaudio/AudioContext.h:
* webaudio/AudioContext.idl:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103832 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agohttps://bugs.webkit.org/show_bug.cgi?id=75373
dslomov@google.com [Fri, 30 Dec 2011 02:13:12 +0000 (02:13 +0000)]
https://bugs.webkit.org/show_bug.cgi?id=75373
[Chromium] Remove WebWorkerClient.h
After coordinated patch in chromium, WebWorkerClient alias for WebSharedWorkerClient is no longer needed.

Reviewed by Adam Barth.

* WebKit.gyp:
* public/WebFrameClient.h:
* public/WebWorkerClient.h: Removed.
* src/WebSharedWorkerImpl.h:
* src/WebWorkerBase.cpp:
* src/WebWorkerClientImpl.h:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103831 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] Unreviewed, add a bug number to a failing test.
tony@chromium.org [Thu, 29 Dec 2011 23:49:52 +0000 (23:49 +0000)]
[chromium] Unreviewed, add a bug number to a failing test.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103830 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed chromium expectation changes to skip array-splice.html.
atwilson@chromium.org [Thu, 29 Dec 2011 23:40:07 +0000 (23:40 +0000)]
Unreviewed chromium expectation changes to skip array-splice.html.

* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103829 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoHTMLDivElement: Remove unnecessary variable in parseMappedAttribute().
kling@webkit.org [Thu, 29 Dec 2011 23:30:17 +0000 (23:30 +0000)]
HTMLDivElement: Remove unnecessary variable in parseMappedAttribute().
<http://webkit.org/b/75363>

Reviewed by Daniel Bates.

* html/HTMLDivElement.cpp:
(WebCore::HTMLDivElement::parseMappedAttribute):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103828 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoHTMLParagraphElement: Remove unnecessary variable in parseMappedAttribute().
kling@webkit.org [Thu, 29 Dec 2011 23:27:28 +0000 (23:27 +0000)]
HTMLParagraphElement: Remove unnecessary variable in parseMappedAttribute().
<http://webkit.org/b/75362>

Reviewed by Daniel Bates.

* html/HTMLParagraphElement.cpp:
(WebCore::HTMLParagraphElement::parseMappedAttribute):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103827 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUse HashMap<OwnPtr> for Document's named item collection caches.
kling@webkit.org [Thu, 29 Dec 2011 23:25:18 +0000 (23:25 +0000)]
Use HashMap<OwnPtr> for Document's named item collection caches.
<http://webkit.org/b/75335>

Reviewed by Daniel Bates.

* dom/Document.cpp:
(WebCore::Document::~Document):

    Remove now-unneeded deleteAllValues() loop.

(WebCore::Document::nameCollectionInfo):

    Use add() instead of find()/add() to avoid one extra hash lookup.

* dom/Document.h:

    Switch the value type of m_nameCollectionInfo to use OwnPtr.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103826 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agomfenced skips the first separator if the separators attribute contains multiple separ...
commit-queue@webkit.org [Thu, 29 Dec 2011 22:49:02 +0000 (22:49 +0000)]
mfenced skips the first separator if the separators attribute contains multiple separators
https://bugs.webkit.org/show_bug.cgi?id=57697

Patch by David Barton <dbarton@mathscribe.com> on 2011-12-29
Reviewed by Dan Bernstein.

Source/WebCore:

Added 2 test cases.

* rendering/mathml/RenderMathMLFenced.cpp:
(WebCore::RenderMathMLFenced::addChild):
    - Thanks to Xun Sun <xun.sun@intel.com> for the off-by-one error fix.

LayoutTests:

* mathml/presentation/fenced-mi.xhtml:
    - Added 2 test cases.
* platform/mac/mathml/presentation/fenced-mi-expected.png:
* platform/mac/mathml/presentation/fenced-mi-expected.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103824 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agohttps://bugs.webkit.org/show_bug.cgi?id=75140
barraclough@apple.com [Thu, 29 Dec 2011 22:40:55 +0000 (22:40 +0000)]
https://bugs.webkit.org/show_bug.cgi?id=75140

Reviewed by Oliver Hunt.

Source/JavaScriptCore:

Start cleaning up JSArray construction. JSArray has a set of create methods,
one of which (currently) takes a 'creation mode' enum parameter. Based on that
parameter, the constructor does one of two completely different things. If the
parameter is 'CreateInitialized' it creates an array, setting the length, but
does not eagerly allocate a storage vector of the specified length. A small
(BASE_VECTOR_LEN sized) initial vector will be allocated, and cleared, property
access to the vector will read the hole value (return undefined). The alternate
usage of this method ('CreateCompact') does something very different. It tries
to create an array of the requested length, and also allocates a storage vector
large enough to hold all properties. It does not clear the storage vector,
leaving the memory uninitialized and requiring the user to call a method
'uncheckedSetIndex' to initialize values in the vector.

This patch factors out these two behaviours, moving the 'CreateCompact' mode
into its own method, 'tryCreateUninitialized' (matching the naming for this
functionality in the string classes). 'tryCreateUninitialized' may return 0 if
memory allocation fails during construction of the object. The construction
pattern changes such that values added during initialization will be marked if
a GC is triggered during array allocation. 'CreateInitialized' no longer need
be passed to create a normal, fully constructed array with a length, and this
method is merged with the version of 'create' that does not take an initial
length (length parameter defaults to 0).

* JavaScriptCore.exp:
* runtime/ArrayConstructor.cpp:
(JSC::constructArrayWithSizeQuirk):
    - removed 'CreateInitialized' argument
* runtime/ArrayPrototype.cpp:
(JSC::arrayProtoFuncSplice):
    - changed to call 'tryCreateUninitialized'
* runtime/FunctionPrototype.cpp:
(JSC::functionProtoFuncBind):
    - changed to call 'tryCreateUninitialized'
* runtime/JSArray.cpp:
(JSC::JSArray::JSArray):
    - initialize m_storage to null; if construction fails, make destruction safe
(JSC::JSArray::finishCreation):
    - merge versions of this method, takes an initialLength parameter defaulting to zero
(JSC::JSArray::tryFinishCreationUninitialized):
    - version of 'finishCreation' that tries to eagerly allocate storage; may fail & return 0
(JSC::JSArray::~JSArray):
    - check for null m_storage, in case array construction failed.
(JSC::JSArray::increaseVectorPrefixLength):
* runtime/JSArray.h:
(JSC::JSArray::create):
    - merge versions of this method, takes an initialLength parameter defaulting to zero
(JSC::JSArray::tryCreateUninitialized):
    - version of 'create' that tries to eagerly allocate storage; may fail & return 0
(JSC::JSArray::initializeIndex):
(JSC::JSArray::completeInitialization):
    - used in conjunction with 'tryCreateUninitialized' to initialize the array
* runtime/JSGlobalObject.h:
(JSC::constructEmptyArray):
    - removed 'CreateInitialized' argument
* runtime/RegExpConstructor.cpp:
(JSC::RegExpMatchesArray::finishCreation):
    - removed 'CreateInitialized' argument

LayoutTests:

Added test case.

* fast/js/script-tests/array-splice.js:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103823 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] Unreviewed, unskip http/tests/plugins/geturlnotify-from-npp-destroystream...
tony@chromium.org [Thu, 29 Dec 2011 22:29:28 +0000 (22:29 +0000)]
[chromium] Unreviewed, unskip http/tests/plugins/geturlnotify-from-npp-destroystream.html
since it passes on my Mac Chromium build. Move plugins/inner-html-display-none-expected.txt
from chromium-win to chromium-- it's a V8 specific result.

* platform/chromium/plugins/inner-html-display-none-expected.txt: Renamed from LayoutTests/platform/chromium-win/plugins/inner-html-display-none-expected.txt.
* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103822 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoUnreviewed, rolling out r103808.
commit-queue@webkit.org [Thu, 29 Dec 2011 22:18:39 +0000 (22:18 +0000)]
Unreviewed, rolling out r103808.
http://trac.webkit.org/changeset/103808
https://bugs.webkit.org/show_bug.cgi?id=75370

Tests failed on Chrome Canary bots. (Requested by atwilson on
#webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-12-29

* media/video-scales-in-media-document-expected.txt: Renamed from LayoutTests/platform/chromium/media/video-scales-in-media-document-expected.txt.
* media/video-scales-in-media-document.html: Renamed from LayoutTests/platform/chromium/media/video-scales-in-media-document.html.
* platform/gtk/Skipped:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103821 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] Unreviewed, rebaseline new flexbox repaint tests on chromium mac
tony@chromium.org [Thu, 29 Dec 2011 22:02:00 +0000 (22:02 +0000)]
[chromium] Unreviewed, rebaseline new flexbox repaint tests on chromium mac
and remove http/tests/plugins/geturlnotify-from-npp-destroystream.html
from test_expectations.txt since it's passing on Win/Linux.

* platform/chromium-cg-mac-leopard/css3/flexbox/repaint-expected.png: Added.
* platform/chromium-cg-mac-leopard/css3/flexbox/repaint-rtl-column-expected.png: Added.
* platform/chromium-cg-mac-snowleopard/css3/flexbox/repaint-expected.png: Added.
* platform/chromium-cg-mac-snowleopard/css3/flexbox/repaint-rtl-column-expected.png: Added.
* platform/chromium-mac-leopard/css3/flexbox/repaint-expected.png: Added.
* platform/chromium-mac-leopard/css3/flexbox/repaint-rtl-column-expected.png: Added.
* platform/chromium-mac-snowleopard/css3/flexbox/repaint-expected.png: Added.
* platform/chromium-mac-snowleopard/css3/flexbox/repaint-rtl-column-expected.png: Added.
* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103820 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years ago[chromium] Unreviewed, add a png baseline for
tony@chromium.org [Thu, 29 Dec 2011 21:45:57 +0000 (21:45 +0000)]
[chromium] Unreviewed, add a png baseline for
mouse-click-plugin-clears-selection on chromium-win and re-add 2 flaky svg tests.

* platform/chromium-cg-mac/plugins/mouse-click-plugin-clears-selection-expected.txt: Removed.
* platform/chromium-mac/plugins/mouse-click-plugin-clears-selection-expected.png: Removed.
* platform/chromium-mac/plugins/mouse-click-plugin-clears-selection-expected.txt: Removed.
* platform/chromium-win/plugins/mouse-click-plugin-clears-selection-expected.png: Renamed from LayoutTests/platform/chromium-win-vista/plugins/mouse-click-plugin-clears-selection-expected.png.
* platform/chromium-win/plugins/mouse-click-plugin-clears-selection-expected.txt: Renamed from LayoutTests/platform/chromium/plugins/mouse-click-plugin-clears-selection-expected.txt.
* platform/chromium/plugins/mouse-click-plugin-clears-selection-expected.png: Renamed from LayoutTests/platform/chromium-cg-mac/plugins/mouse-click-plugin-clears-selection-expected.png.
* platform/chromium/test_expectations.txt:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103819 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoAdd a retainPtr function template
andersca@apple.com [Thu, 29 Dec 2011 21:27:11 +0000 (21:27 +0000)]
Add a retainPtr function template
https://bugs.webkit.org/show_bug.cgi?id=75365

Reviewed by Dan Bernstein.

This makes it easier to make a RetainPtr using template argument deduction, which
is useful when passing RetainPtr objects as function arguments.

* wtf/RetainPtr.h:
(WTF::retainPtr):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103818 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoEnable the [Supplemental] IDL on Qt.
alexis.menard@openbossa.org [Thu, 29 Dec 2011 20:34:37 +0000 (20:34 +0000)]
Enable the [Supplemental] IDL on Qt.
https://bugs.webkit.org/show_bug.cgi?id=75274

Reviewed by Andreas Kling.

http://trac.webkit.org/changeset/103783 broke the Qt SL bot.
This patch fixes the problem by using 'tr' rather than 'sed' which
seems to be more consistent between Mac and Linux.

* DerivedSources.pri:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103817 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoanimation-drt-api-multiple-keyframes.html cannot possibly fail
dbates@webkit.org [Thu, 29 Dec 2011 20:18:22 +0000 (20:18 +0000)]
animation-drt-api-multiple-keyframes.html cannot possibly fail
https://bugs.webkit.org/show_bug.cgi?id=73112

Reviewed by Simon Fraser.

Output a FAIL message when we fail to pause the animation. This matches the
failure mode before <https://trac.webkit.org/changeset/84873> (bug #59389).

Additionally, fixes an issue where we paused at a time after cessation of the
animation following <https://trac.webkit.org/changeset/84873>. Instead, we
should pause at a time before cessation of the animation.

* animations/animation-drt-api-multiple-keyframes.html:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103816 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: Scripts navigator should support incremental search by typing.
vsevik@chromium.org [Thu, 29 Dec 2011 19:08:38 +0000 (19:08 +0000)]
Web Inspector: Scripts navigator should support incremental search by typing.
https://bugs.webkit.org/show_bug.cgi?id=75349

Reviewed by Pavel Feldman.

* inspector/front-end/ScriptsNavigator.js:
(WebInspector.ScriptsNavigator):
(WebInspector.ScriptsNavigator.prototype.get defaultFocusedElement):
(WebInspector.ScriptsNavigator.prototype.show):
(WebInspector.ScriptsNavigator.prototype._reset):
(WebInspector.NavigatorTreeOutline):
(WebInspector.NavigatorTreeOutline.prototype.scriptTreeElements):
(WebInspector.NavigatorTreeOutline.prototype.searchStarted):
(WebInspector.NavigatorTreeOutline.prototype.searchFinished):
(WebInspector.BaseNavigatorTreeElement.prototype.onreveal):
(WebInspector.BaseNavigatorTreeElement.prototype.set titleText):
(WebInspector.BaseNavigatorTreeElement.prototype.matchesSearchText):
* inspector/front-end/inspector.css:
(.outline-disclosure ol.search-match-not-found li.selected .selection):
(.outline-disclosure ol.search-match-found li.selected):
(.outline-disclosure ol.search-match-found li.selected *):
(.outline-disclosure ol.search-match-found li.parent.selected::before):
(.outline-disclosure ol.search-match-found li.parent.expanded.selected::before):
* inspector/front-end/scriptsPanel.css:
(#scripts-navigator-tree-search-box):
(#scripts-navigator-tree-search-box.visible):
(#scripts-navigator-tree-search-box > input):
(.scripts.panel .navigator .search-match-found li.selected .selection):
(.scripts.panel .navigator .search-match-not-found li.selected .selection):
(.scripts.panel .navigator .searching li.selected .selection):
* inspector/front-end/treeoutline.js:
(TreeOutline):
(TreeOutline.prototype._treeKeyPress):
(TreeOutline.prototype._startSearch.focusSearchInput):
(TreeOutline.prototype._startSearch):
(TreeOutline.prototype._searchTextChanged):
(TreeOutline.prototype._showSearchMatchElement):
(TreeOutline.prototype._searchInputKeyDown):
(TreeOutline.prototype._nextSearchMatch):
(TreeOutline.prototype._previousSearchMatch):
(TreeOutline.prototype._searchInputBlur):
(TreeOutline.prototype._searchFinished):
(TreeOutline.prototype.stopSearch):

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103813 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agoWeb Inspector: Scripts navigator should trim long file names and show full url in...
vsevik@chromium.org [Thu, 29 Dec 2011 18:56:44 +0000 (18:56 +0000)]
Web Inspector: Scripts navigator should trim long file names and show full url in tooltip.
https://bugs.webkit.org/show_bug.cgi?id=75343

Reviewed by Pavel Feldman.

Source/WebCore:

Test: inspector/debugger/ui-source-code-display-name.html

* inspector/front-end/ScriptsNavigator.js:
(WebInspector.ScriptsNavigator.prototype.setScriptSourceIsDirty):
* inspector/front-end/ScriptsPanel.js:
(WebInspector.ScriptsPanel.EditorContainer.prototype.showSourceFrame):
(WebInspector.ScriptsPanel.EditorContainer.prototype.replaceSourceFrames):
(WebInspector.ScriptsPanel.SingleFileEditorContainer.prototype.showSourceFrame):
(WebInspector.ScriptsPanel.SingleFileEditorContainer.prototype.replaceSourceFrames):
* inspector/front-end/TabbedEditorContainer.js:
(WebInspector.TabbedEditorContainer):
(WebInspector.TabbedEditorContainer.prototype._appendSourceFrameTab):
(WebInspector.TabbedEditorContainer.prototype._tabClosed):
(WebInspector.TabbedEditorContainer.prototype._replaceSourceFrameTab.get if):
(WebInspector.TabbedEditorContainer.prototype._replaceSourceFrameTab):
(WebInspector.TabbedEditorContainer.prototype.get replaceSourceFrames):
(WebInspector.TabbedEditorContainer.prototype.reset):
* inspector/front-end/TabbedPane.js:
(WebInspector.TabbedPane.prototype.appendTab):
(WebInspector.TabbedPane.prototype.changeTabTooltip):
(WebInspector.TabbedPaneTab):
(WebInspector.TabbedPaneTab.prototype.get tooltip):
(WebInspector.TabbedPaneTab.prototype.set tooltip):
(WebInspector.TabbedPaneTab.prototype._createTabElement):
* inspector/front-end/UISourceCode.js:
(WebInspector.UISourceCode.prototype._parseURL):
* inspector/front-end/utilities.js:
():

LayoutTests:

* http/tests/inspector/debugger-test.js:
(initialize_DebuggerTest):
* inspector/debugger/scripts-panel-expected.txt:
* inspector/debugger/ui-source-code-display-name-expected.txt: Added.
* inspector/debugger/ui-source-code-display-name.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103812 268f45cc-cd09-0410-ab3c-d52691b4dbfc

12 years agogetComputedStyle for margin is not implemented.
alexis.menard@openbossa.org [Thu, 29 Dec 2011 18:52:25 +0000 (18:52 +0000)]
getComputedStyle for margin is not implemented.
https://bugs.webkit.org/show_bug.cgi?id=75358

Reviewed by Andreas Kling.

Source/WebCore:

Implement getComputedStyle for margin.

Test: fast/css/getComputedStyle/getComputedStyle-margin-shorthand.html

* css/CSSComputedStyleDeclaration.cpp:
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):

LayoutTests:

Add test to cover that we return correct values.

* fast/css/getComputedStyle/getComputedStyle-margin-shorthand-expected.txt: Added.
* fast/css/getComputedStyle/getComputedStyle-margin-shorthand.html: Added.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@103811 268f45cc-cd09-0410-ab3c-d52691b4dbfc