- 14 Sep, 2012 18 commits
-
-
https://bugs.webkit.org/show_bug.cgi?id=96751ojan@chromium.org authored
The results all look like they pass. * platform/chromium-linux/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt: Copied from LayoutTests/platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt. * platform/chromium-win-xp/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt: Copied from LayoutTests/platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt. * platform/chromium-win/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt: Copied from LayoutTests/platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt. * platform/chromium/TestExpectations: * platform/chromium/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt: Renamed from LayoutTests/platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128635 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
https://bugs.webkit.org/show_bug.cgi?id=94916ojan@chromium.org authored
All the differences were anti-aliasing/form-controls. * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-padding-with-datalist-expected.png: Added. * platform/chromium-linux/fast/forms/datalist/input-appearance-range-with-transform-expected.png: Added. * platform/chromium-mac-snowleopard/fast/forms/datalist/input-appearance-range-with-padding-with-datalist-expected.png: Added. * platform/chromium-mac-snowleopard/fast/forms/datalist/input-appearance-range-with-transform-expected.png: Added. * platform/chromium-win-xp/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: Removed. * platform/chromium-win/fast/forms/datalist/input-appearance-range-with-datalist-zoomed-expected.png: * platform/chromium-win/fast/forms/datalist/input-appearance-range-with-padding-with-datalist-expected.png: Added. * platform/chromium-win/fast/forms/datalist/input-appearance-range-with-transform-expected.png: Added. * platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128634 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
michelangelo@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=95223 Reviewed by Dean Jackson. Source/WebCore: Custom Filters' support for array() is introduced. Values within the array() function will be passed as uniforms to shaders. Values within array() are comma-separated; the specification will be updated accordingly: https://www.w3.org/Bugs/Public/show_bug.cgi?id=18839 Test: css3/filters/custom/custom-filter-array.html * GNUmakefile.list.am: * Target.pri: * WebCore.gypi: * WebCore.vcproj/WebCore.vcproj: * WebCore.xcodeproj/project.pbxproj: * css/CSSComputedStyleDeclaration.cpp: (WebCore::valueForCustomFilterArrayParameter): (WebCore): (WebCore::valueForCustomFilterParameter): * css/StyleResolver.cpp: (WebCore::StyleResolver::collectMatchingRulesForList): * css/StyleResolver.h: (StyleResolver): * platform/graphics/filters/CustomFilterArrayParameter.h: Container for array() parameter values. (WebCore): (CustomFilterArrayParameter): (WebCore::CustomFilterArrayParameter::create): (WebCore::CustomFilterArrayParameter::size): (WebCore::CustomFilterArrayParameter::valueAt): (WebCore::CustomFilterArrayParameter::addValue): (WebCore::CustomFilterArrayParameter::blend): (WebCore::CustomFilterArrayParameter::operator==): (WebCore::CustomFilterArrayParameter::CustomFilterArrayParameter): * platform/graphics/filters/CustomFilterParameter.h: * platform/graphics/filters/FECustomFilter.cpp: (WebCore::FECustomFilter::bindProgramArrayParameters): (WebCore): (WebCore::FECustomFilter::bindProgramParameters): * platform/graphics/filters/FECustomFilter.h: (WebCore): (FECustomFilter): LayoutTests: New tests have been added for checking the correctness of array() within shaders. * css3/filters/custom/custom-filter-array-expected.html: Added. * css3/filters/custom/custom-filter-array.html: Added. * css3/filters/custom/custom-filter-property-computed-style-expected.txt: * css3/filters/custom/custom-filter-property-parsing-invalid-expected.txt: * css3/filters/resources/fragment-color.fs: Added. * css3/filters/script-tests/custom-filter-property-computed-style.js: * css3/filters/script-tests/custom-filter-property-parsing-invalid.js: * platform/chromium/css3/filters/custom/custom-filter-property-computed-style-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128626 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=57570 Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-09-14 Reviewed by Kenneth Rohde Christiansen. Source/WebKit2: Add new didExceedDatabaseQuota callback to WKBundlePageUIClient and call it from WebChromeClient::exceededDatabaseQuota(). This is needed by WebKitTestRunner to dump information about database callbacks. * Shared/APIClientTraits.h: * WebProcess/InjectedBundle/API/c/WKBundlePage.h: * WebProcess/InjectedBundle/InjectedBundle.cpp: (WebKit::InjectedBundle::setDatabaseQuota): Call WebDatabaseManager::setQuotaForOrigin() with "file__0" instead of "file:///" as origin identifier. WebDatabaseManager expects a database identifier, not a string representation of the security origin. "file__0" is the string that is used as databaseIdentifier of local files. This bug was causing the database quota not to be set. The test cases would therefore fail due to the quota being 0 instead of the value explicitly set. * WebProcess/InjectedBundle/InjectedBundlePageUIClient.cpp: (WebKit::InjectedBundlePageUIClient::didExceedDatabaseQuota): (WebKit): * WebProcess/InjectedBundle/InjectedBundlePageUIClient.h: (InjectedBundlePageUIClient): * WebProcess/WebCoreSupport/WebChromeClient.cpp: (WebKit::WebChromeClient::exceededDatabaseQuota): Tools: Implement testRunner.dumpDatabaseCallbacks in WebKitTestRunner and dump the information expected by the test cases. * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp: (WTR::InjectedBundle::beginTesting): Explicitly set the default database quota. * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: (WTR::securityOriginToStr): New convenience function to convert a security origin to the string expected in test results. (WTR): (WTR::InjectedBundlePage::InjectedBundlePage): (WTR::InjectedBundlePage::didExceedDatabaseQuota): (WTR::InjectedBundlePage::didReachApplicationCacheOriginQuota): Minor refactoring to share code with didExceedDatabaseQuota. * WebKitTestRunner/InjectedBundle/InjectedBundlePage.h: (InjectedBundlePage): * WebKitTestRunner/InjectedBundle/TestRunner.cpp: (WTR::TestRunner::TestRunner): * WebKitTestRunner/InjectedBundle/TestRunner.h: (WTR::TestRunner::dumpDatabaseCallbacks): (WTR::TestRunner::shouldDumpDatabaseCallbacks): (TestRunner): LayoutTests: Unskip several test cases which require implementation of testRunner.dumpDatabaseCallbacks in WebKitTestRunner. * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128623 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96795 Unreviewed EFL gardening. Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-09-14 * platform/efl-wk2/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128621 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
sergio@webkit.org authored
Added a bunch of tests failing in the WK2 tests bot to the Skipped list with the proper links to each bug. * platform/gtk-wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128620 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96788 Patch by Rick Byers <rbyers@chromium.org> on 2012-09-14 Reviewed by Antonio Gomes. Source/WebCore: Adjust the co-ordinate space correctly when doing hit testing for gesture events (as for all other event handling code here). Test: platform/chromium/plugins/gesture-events-scrolled.html * page/EventHandler.cpp: (WebCore::EventHandler::handleGestureEvent): LayoutTests: Add layout test based on gesture-events.html which tests the case when the document is scrolled (so that client co-ordinates don't equal page co-ordinates). * platform/chromium/plugins/gesture-events-scrolled-expected.txt: Added. * platform/chromium/plugins/gesture-events-scrolled.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128615 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96762 Unreviewed EFL gardening, unskip now passing tests. Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-09-14 * platform/efl-wk2/TestExpectations: * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128613 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=42691 Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-09-14 Reviewed by Kenneth Rohde Christiansen. Source/WebKit2: Add WKBundleFrame private API to stop loading of a frame. This is needed by WebKitTestRunner to implement testrunner.setStopProvisionalFrameLoads. Original patch by Alexey Proskuryakov. * WebProcess/InjectedBundle/API/c/WKBundleFrame.cpp: (WKBundleFrameStopLoading): * WebProcess/InjectedBundle/API/c/WKBundleFramePrivate.h: * WebProcess/WebPage/WebFrame.cpp: (WebKit::WebFrame::stopLoading): (WebKit): * WebProcess/WebPage/WebFrame.h: (WebFrame): Tools: Add implementation for testrunner.setStopProvisionalFrameLoads() in WebKitTestRunner. Original patch by Alexey Proskuryakov. * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: (WTR::InjectedBundlePage::didStartProvisionalLoadForFrame): * WebKitTestRunner/InjectedBundle/TestRunner.cpp: (WTR::TestRunner::TestRunner): * WebKitTestRunner/InjectedBundle/TestRunner.h: (TestRunner): (WTR::TestRunner::setStopProvisionalFrameLoads): (WTR::TestRunner::shouldStopProvisionalFrameLoads): LayoutTests: Unskip fast/loader/stop-provisional-loads.html now that WebKitTestRunner implements testrunner.setStopProvisionalFrameLoads(). * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128612 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96646 Unreviewed EFL gardening of flaky tests on wk1. Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-09-14 * platform/efl-wk1/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128605 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=42687 Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-09-14 Reviewed by Kenneth Rohde Christiansen. Source/WebKit2: Implement testRunner.setTabKeyCyclesThroughElements for WebKitTestRunner. * WebProcess/InjectedBundle/API/c/WKBundle.cpp: (WKBundleSetTabKeyCyclesThroughElements): * WebProcess/InjectedBundle/API/c/WKBundlePrivate.h: * WebProcess/InjectedBundle/InjectedBundle.cpp: (WebKit::InjectedBundle::setTabKeyCyclesThroughElements): (WebKit): * WebProcess/InjectedBundle/InjectedBundle.h: (InjectedBundle): Tools: Implement testRunner.setTabKeyCyclesThroughElements for WebKitTestRunner. * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: * WebKitTestRunner/InjectedBundle/InjectedBundle.cpp: (WTR::InjectedBundle::beginTesting): * WebKitTestRunner/InjectedBundle/TestRunner.cpp: (WTR::TestRunner::setTabKeyCyclesThroughElements): (WTR): * WebKitTestRunner/InjectedBundle/TestRunner.h: (TestRunner): LayoutTests: fast/events/keypress-insert-tab.html is passing now on wk2. So, unskip in common skipped files and re-skip it on efl-wk1 until WK82864 is fixed. * platform/efl-wk1/TestExpectations: * platform/efl/Skipped: * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128604 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96727 Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-09-14 Reviewed by Kenneth Rohde Christiansen. Tools: Add support for handling a string as modifier argument to EventSendingController::keyDown. * WebKitTestRunner/InjectedBundle/EventSendingController.cpp: (WTR::parseModifierArray): LayoutTests: Unskip passing test fast/forms/legend-access-key.html * platform/efl-wk2/TestExpectations: * platform/gtk-wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128602 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=42546 Patch by Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> on 2012-09-14 Reviewed by Kenneth Rohde Christiansen. Tools: Exported TestRunner::setCustomPolicyDelegate() method. Allowed Policy Delegate dumping even if we're not in 'waitUntilDone' mode. * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: (WTR::InjectedBundlePage::decidePolicyForNavigationAction): LayoutTests: Unskipped corresponding test cases. Distributed those which still not passing to appropriate groups in Skipped file. * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128600 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tkent@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=96728 Patch by Keishi Hattori <keishi@webkit.org> on 2012-09-14 Reviewed by Kent Tamura. Source/WebCore: This patch implements partial lang attribute support for input type=time that turns on only when enabled through InternalSettings. Test: fast/forms/time-multiple-fields/time-multiple-fields-localization.html * dom/Document.cpp: (WebCore::Document::getLocalizer): Returns a localizer for a given locale. Localizers are cached for repeated use. (WebCore): * dom/Document.h: (WebCore): (Document): * html/TimeInputType.cpp: (WebCore::TimeInputType::updateInnerTextValue): Use the locale for the input element. * html/shadow/DateTimeEditElement.cpp: (DateTimeEditBuilder): (WebCore::DateTimeEditBuilder::DateTimeEditBuilder): (WebCore::DateTimeEditBuilder::visitField): (WebCore::DateTimeEditElement::layout): (WebCore::DateTimeEditElement::setValueAsDate): (WebCore::DateTimeEditElement::setEmptyValue): * html/shadow/DateTimeEditElement.h: (WebCore): (DateTimeEditElement): Source/WebKit/chromium: * tests/LocalizedDateICUTest.cpp: (LocalizedDateICUTest::localizedDateFormatText): (LocalizedDateICUTest::localizedShortDateFormatText): LayoutTests: * fast/forms/resources/common.js: (getUserAgentShadowTextContent): Used to get the text inside an input element. * fast/forms/time-multiple-fields/time-multiple-fields-localization.html: Added. * platform/chromium-mac/fast/forms/time-multiple-fields/time-multiple-fields-localization-expected.txt: Added. * platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128594 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96740 Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-09-14 Reviewed by Kenneth Rohde Christiansen. Tools: Dump information expected by the test cases about the following frame load callbacks: "didDisplayInsecureContentForFrame" "didRunInsecureContentForFrame" "didDetectXSSForFrame" * WebKitTestRunner/InjectedBundle/InjectedBundlePage.cpp: (WTR::InjectedBundlePage::willPerformClientRedirectForFrame): Print a URL as expected by test results by calling pathSuitableForTestResult() instead of printing raw URL. (WTR::InjectedBundlePage::didDisplayInsecureContentForFrame): (WTR::InjectedBundlePage::didRunInsecureContentForFrame): (WTR::InjectedBundlePage::didDetectXSSForFrame): LayoutTests: Unskip test cases which were failing due to missing frame load callbacks information dumping with WebKitTestRunner. * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128585 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96738 Unreviewed gardening. Move 2 globalhistory tests to their correct section in WK2 Skipped list. Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-09-14 * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128577 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
vsevik@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=96662 Reviewed by Alexander Pavlov. Extracted InspectorTest.makeXHR() methods to simplify tests. * http/tests/inspector/appcache/appcache-swap-expected.txt: * http/tests/inspector/appcache/appcache-swap.html: * http/tests/inspector/console-xhr-logging-async-expected.txt: * http/tests/inspector/console-xhr-logging-async.html: * http/tests/inspector/console-xhr-logging.html: * http/tests/inspector/network-test.js: (xhrLoadedCallback): (initialize_NetworkTest.InspectorTest.makeSimpleXHR): (initialize_NetworkTest.InspectorTest.makeSimpleXHRWithPayload): (initialize_NetworkTest.InspectorTest.makeXHR.innerCallback): (initialize_NetworkTest.InspectorTest.makeXHR): (doSimpleXHR): (doSimpleXHRWithPayload): (doXHR): (makeXHR): * http/tests/inspector/network/async-xhr-json-mime-type-expected.txt: * http/tests/inspector/network/async-xhr-json-mime-type.html: * http/tests/inspector/network/network-clear-cache.html-disabled: * http/tests/inspector/network/network-clear-cookies.html-disabled: * http/tests/inspector/network/network-content-replacement-xhr-expected.txt: * http/tests/inspector/network/network-content-replacement-xhr.html: * http/tests/inspector/network/network-cyrillic-xhr-expected.txt: * http/tests/inspector/network/network-cyrillic-xhr.html: * http/tests/inspector/network/network-disable-cache-xhrs-expected.txt: * http/tests/inspector/network/network-disable-cache-xhrs.html: * http/tests/inspector/network/network-disabling-check-no-memory-leak-expected.txt: * http/tests/inspector/network/network-disabling-check-no-memory-leak.html: * http/tests/inspector/network/network-empty-xhr-expected.txt: * http/tests/inspector/network/network-empty-xhr.html: * http/tests/inspector/network/network-sidebar-width-expected.txt: * http/tests/inspector/network/network-sidebar-width.html: * http/tests/inspector/network/network-size-sync.html: * http/tests/inspector/network/network-xhr-async-double-expected.txt: * http/tests/inspector/network/network-xhr-async-double.html: * http/tests/inspector/network/network-xhr-async-expected.txt: * http/tests/inspector/network/network-xhr-async.html: * http/tests/inspector/network/network-xhr-same-url-as-main-resource-expected.txt: * http/tests/inspector/network/network-xhr-same-url-as-main-resource.html: * http/tests/inspector/network/network-xhr-sync-expected.txt: * http/tests/inspector/network/network-xhr-sync.html: * http/tests/inspector/resource-tree/resource-tree-no-xhrs-expected.txt: * http/tests/inspector/resource-tree/resource-tree-no-xhrs.html: * platform/chromium/http/tests/inspector/console-xhr-logging-async-expected.txt: * platform/chromium/http/tests/inspector/console-xhr-logging-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128569 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
* platform/qt/fast/events/keyevent-iframe-removed-crash-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128561 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 13 Sep, 2012 22 commits
-
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96675 Patch by Luciano Wolf <luciano.wolf@openbossa.org> on 2012-09-13 Reviewed by Simon Hausmann. Update Skipped list after userAgent proper support. * platform/qt-5.0-wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128555 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tkent@chromium.org authored
* platform/chromium/TestExpectations: Fix an error in the previous change. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128554 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tkent@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=96725 * platform/chromium/TestExpectations: http/tests/media/media-source/video-media-source-state-changes.html is flaky git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128551 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tkent@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=93589 * platform/chromium/TestExpectations: script-change-externalResourcesRequired-while-loading.svg is flaky on all platforms. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128549 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tkent@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=96720 * platform/chromium/TestExpectations: time-multiple-fields-preserve-value-after-history-back.html is flaky. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128547 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
http://trac.webkit.org/changeset/128517ojan@chromium.org authored
* fast/table/height-percent-test-expected.txt: * platform/chromium-mac-snowleopard/fast/table/height-percent-test-expected.png: * platform/chromium-mac-snowleopard/tables/mozilla/core/cell_heights-expected.png: * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug19526-expected.png: * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug85016-expected.png: * platform/chromium-mac/fast/table/height-percent-test-expected.png: * platform/chromium-mac/tables/mozilla/core/cell_heights-expected.png: * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug19526-expected.png: * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug85016-expected.png: * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: * platform/chromium-win/fast/table/height-percent-test-expected.png: * platform/chromium-win/tables/mozilla/core/cell_heights-expected.png: * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug19526-expected.png: * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug85016-expected.png: * platform/chromium/TestExpectations: * platform/efl/TestExpectations: * platform/efl/fast/table/height-percent-test-expected.txt: Removed. * platform/gtk/TestExpectations: * platform/gtk/fast/table/height-percent-test-expected.txt: Removed. * platform/gtk/tables/mozilla/core/cell_heights-expected.txt: * platform/gtk/tables/mozilla_expected_failures/bugs/bug19526-expected.txt: Removed. * platform/gtk/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: * platform/mac/TestExpectations: * platform/mac/tables/mozilla/core/cell_heights-expected.txt: * platform/mac/tables/mozilla_expected_failures/bugs/bug19526-expected.txt: * platform/qt/TestExpectations: * platform/qt/fast/table/height-percent-test-expected.txt: Renamed from LayoutTests/platform/mac/fast/table/height-percent-test-expected.txt. * platform/qt/tables/mozilla/core/cell_heights-expected.txt: * platform/qt/tables/mozilla_expected_failures/bugs/bug19526-expected.txt: * platform/qt/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: * platform/win-future/fast/table/height-percent-test-expected.txt: Copied from LayoutTests/fast/table/height-percent-test-expected.txt. * tables/mozilla_expected_failures/bugs/bug19526-expected.txt: Renamed from LayoutTests/platform/efl/tables/mozilla_expected_failures/bugs/bug19526-expected.txt. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128540 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ojan@chromium.org authored
http://trac.webkit.org/changeset/128517. The results are now consistent across platforms. * platform/efl/fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks-expected.txt: Removed. * platform/gtk/fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks-expected.txt: Removed. * platform/mac/TestExpectations: * platform/qt/fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128538 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
https://bugs.webkit.org/show_bug.cgi?id=93654ap@apple.com authored
REGRESSION(r125126): It made fast/events/keyevent-iframe-removed-crash.html assert Unskipped tests that should not assert any more (there were more than the one in bug title). Re-attributed some remaining failures that were tracked together with that. * platform/gtk/TestExpectations: * platform/mac/Skipped: * platform/qt/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128532 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ojan@chromium.org authored
fixed in http://trac.webkit.org/changeset/128528. * platform/chromium/TestExpectations: * platform/efl/TestExpectations: * platform/gtk/TestExpectations: * platform/mac/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128530 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jamesr@google.com authored
remove the now-unnecessary cr-mac expectations for fast/writing-mode test. fix baseline for fast/table/bad-replaced-sizing-preferred-logical-widths.html * platform/chromium-mac/fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128528 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ojan@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=96426 Reviewed by Tony Chang. Source/WebCore: In quirks mode, for the body element, we need to keep walking up to the html element if the body's height is auto. Also, we need to subtract the body/html elements margin/border/padding so that we properly get the body's content height. This behavior matches IE9, FF and Opera. None of this applies to standards mode since we don't walk up the containingBlock chain for auto-sized elements. Test: fast/css/percentage-height-auto-sized-body-quirks.html * rendering/RenderBox.cpp: (WebCore::RenderBox::computePercentageLogicalHeight): LayoutTests: * fast/css/percentage-height-auto-sized-body-quirks-expected.txt: Added. * fast/css/percentage-height-auto-sized-body-quirks.html: Added. Verified that this matches IE9, FF15 and Opera12. * fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks-expected.txt: * platform/chromium-linux/fast/table/height-percent-test-expected.png: * platform/chromium-linux/tables/mozilla/core/cell_heights-expected.png: * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug19526-expected.png: * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug85016-expected.png: * platform/chromium-win/tables/mozilla/core/cell_heights-expected.txt: * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug19526-expected.txt: * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: * platform/mac/fast/table/height-percent-test-expected.txt: Verified that all the changes match FF15. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128517 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jamesr@google.com authored
* platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128515 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jamesr@google.com authored
* platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128510 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96366 Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-09-13 Reviewed by Anders Carlsson. Source/WebKit2: Implement testRunner.callShouldCloseOnWebView for WebKitTestRunner by calling shouldClose() on the FrameLoader. * WebProcess/InjectedBundle/API/c/WKBundleFrame.cpp: (WKBundleFrameCallShouldCloseOnWebView): * WebProcess/InjectedBundle/API/c/WKBundleFrame.h: Tools: Implement testRunner.callShouldCloseOnWebView for WebKitTestRunner by calling shouldClose() on the FrameLoader. * WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl: * WebKitTestRunner/InjectedBundle/TestRunner.cpp: (WTR::TestRunner::callShouldCloseOnWebView): (WTR): * WebKitTestRunner/InjectedBundle/TestRunner.h: (TestRunner): LayoutTests: Unskip passing test fast/events/onbeforeunload-focused-iframe.html * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128491 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=73917 Patch by Lauro Neto <lauro.neto@openbossa.org> on 2012-09-13 Reviewed by Simon Hausmann. Access-key tests were failing due to hardcoded Mac OS X in the Qt WK2 user agent string. This commit moves the WK1 implementation to a shared one to be used by both versions. Source/WebCore: Adds the shared user agent implementation. * Target.pri: * platform/qt/UserAgentQt.cpp: Added. (WebCore): (WebCore::UserAgentQt::standardUserAgent): * platform/qt/UserAgentQt.h: Added. (WebCore): (UserAgentQt): Source/WebKit/qt: Change QWebPage to use the shared user agent implementation. * Api/qwebpage.cpp: (QWebPage::userAgentForUrl): Source/WebKit2: Use the shared implementation instead of hardcoding the user agent. * UIProcess/qt/WebPageProxyQt.cpp: (WebKit::WebPageProxy::standardUserAgent): LayoutTests: Unskip now passing tests. * platform/qt-5.0-wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128472 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96640 Unreviewed gardening. Corrected expectations for the following files: fast/dom/HTMLAnchorElement/anchor-nodownload-set.html fast/dom/HTMLAnchorElement/anchor-download.html Patch by Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> on 2012-09-13 * platform/efl-wk2/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128467 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kenneth@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=82294 Reviewed by Gyuyoung Kim. Source/WebKit/efl: Add a support method for getting layerTreeAsText. * WebCoreSupport/DumpRenderTreeSupportEfl.cpp: (DumpRenderTreeSupportEfl::layerTreeAsText): * WebCoreSupport/DumpRenderTreeSupportEfl.h: Tools: Implement layerTreeAsText using the DumpRenderTreeSupportEfl method. * DumpRenderTree/efl/TestRunnerEfl.cpp: (TestRunner::layerTreeAsText): LayoutTests: The tests are no longer failing because of missing layerTreeAsText but due to accelerated compositing not being enabled. * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128454 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zandobersek@gmail.com authored
Specifying a few slow tests on the debug configuration that pass when given sufficient time to do so. Branching expectations for three spellcheck test failures, on release configuration they time out while on the debug configuration they have enough time to fail. * platform/gtk/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128452 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96630 Unreviewed gardening. Patch by Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com> on 2012-09-13 * platform/efl/TestExpectations: Unskip fast/overflow/overflow-height-float-not-removed-crash.html. * platform/efl/fast/table/height-percent-test-vertical-expected.png: Rebase. * platform/efl/fast/table/height-percent-test-vertical-expected.txt: Ditto. * platform/efl/fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks-expected.txt: Added. Rebase. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128446 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kkristof@inf.u-szeged.hu authored
https://bugs.webkit.org/show_bug.cgi?id=96634 Unreviewed gardening. * platform/qt-5.0-wk2/Skipped: skip the failing test. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128445 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
* platform/qt/Skipped: Unskip a now passing test, and add a missing URL. * platform/qt/fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks-expected.txt: Updated. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128444 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kadam@inf.u-szeged.hu authored
[Qt] Unreviewed gardening. Rebaseline after 128433. It hasn't been updated correctly in the previous revision. * platform/qt/fast/writing-mode/percentage-height-orthogonal-writing-modes-quirks-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@128443 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-