- 24 Sep, 2012 40 commits
-
-
roger_fong@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=96942 * platform/win/Skipped: Skipping a test for the newly added feature. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129393 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
[BlackBerry] Basic authentication challenge credentials for stored credentials again after restarting browser https://bugs.webkit.org/show_bug.cgi?id=96362 Patch by Sean Wang <Xuewen.Wang@torchmobile.com.cn> on 2012-09-24 Reviewed by Rob Buis. Fix a mistake of the commit 11fdc73c Trunk has been changed during reviewing that patch. No new tests, this is to correct a build error. * platform/network/blackberry/CredentialBackingStore.cpp: (WebCore::CredentialBackingStore::getProtectionSpace): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129392 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zandobersek@gmail.com authored
https://bugs.webkit.org/show_bug.cgi?id=90776 Reviewed by Ryosuke Niwa. Source/WebKit/gtk: Add a method for enabling the Shadow DOM through RuntimeEnabledFeatures. The method is called from DumpRenderTree when resetting state. * WebCoreSupport/DumpRenderTreeSupportGtk.cpp: (DumpRenderTreeSupportGtk::setShadowDOMEnabled): * WebCoreSupport/DumpRenderTreeSupportGtk.h: (DumpRenderTreeSupportGtk): Tools: Enable Shadow DOM through DumpRenderTreeSupport when resetting defaults in between tests. * DumpRenderTree/gtk/DumpRenderTree.cpp: (resetDefaultsToConsistentValues): LayoutTests: Unskip Shadow DOM layout tests, adding two required baselines and failure expectations for tests that still fail. * platform/gtk/TestExpectations: * platform/gtk/fast/dom/shadow/form-in-shadow-expected.txt: Added. * platform/gtk/fast/dom/shadow/tab-order-iframe-and-shadow-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129391 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jsbell@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=92776 * platform/chromium/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129390 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
http://webkit.org/b/97269mitz@apple.com authored
discrepancy between line breaking and max width computation. Rubber-stamped by Anders Carlsson. * platform/graphics/mac/ComplexTextController.cpp: (WebCore::ComplexTextController::adjustGlyphsAndAdvances): LayoutTests: Reveted r129176 and r129185. Rubber-stamped by Anders Carlsson. * platform/mac-lion/fast/writing-mode/text-orientation-basic-expected.txt: * platform/mac/fast/text/emphasis-expected.png: * platform/mac/fast/text/emphasis-expected.txt: * platform/mac/fast/text/sticky-typesetting-features-expected.png: * platform/mac/fast/text/sticky-typesetting-features-expected.txt: * platform/mac/fast/text/thai-combining-mark-positioning-expected.png: * platform/mac/fast/text/thai-combining-mark-positioning-expected.txt: * platform/mac/fast/writing-mode/text-orientation-basic-expected.png: * platform/mac/fast/writing-mode/text-orientation-basic-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129389 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97055 Patch by Bo Liu <boliu@chromium.org> on 2012-09-24 Reviewed by Adam Barth. Relanding 128780, 128676, 128645. Was reverted in 128914 due to performance regression in Chromium. New changes in addition to previously reverted patches: Refactored CachedResource::requestResource, loadResource, and revalidateResource. Moved CachedResource::load method to end of requestResource so there is one place where load is called for all resources. Added a enum parameter for requestResource and determineRevalidationPolicy so that FrameLoaderClient::allowImage call do not need to be called multiple times. Removed CachedImage::load call in requestImage so it is not called twice. Removed unnecessary Frame.h includes in CachedResource and CachedImage. Removed dead load() method declaration in CachedImage. Updated text expectation for two image-permissions tests to reflect the removed calls to allowImage. .: * Source/autotools/symbols.filter: Source/WebCore: Tests: fast/loader/display-image-unset-allows-cached-image-load.html fast/loader/display-image-unset-can-block-image-and-can-reload-in-place.html fast/loader/images-enabled-unset-can-block-image-and-can-reload-in-place.html * WebCore.exp.in: * loader/FrameLoader.cpp: (WebCore::FrameLoader::didBeginDocument): * loader/SubresourceLoader.cpp: (WebCore::SubresourceLoader::willSendRequest): * loader/cache/CachedImage.cpp: * loader/cache/CachedImage.h: * loader/cache/CachedResource.cpp: (WebCore::CachedResource::didAddClient): * loader/cache/CachedResource.h: (WebCore): (WebCore::CachedResource::stillNeedsLoad): * loader/cache/CachedResourceLoader.cpp: (WebCore::CachedResourceLoader::CachedResourceLoader): (WebCore::CachedResourceLoader::requestImage): (WebCore::CachedResourceLoader::canRequest): (WebCore::CachedResourceLoader::requestResource): (WebCore::CachedResourceLoader::revalidateResource): (WebCore::CachedResourceLoader::loadResource): (WebCore::CachedResourceLoader::determineRevalidationPolicy): (WebCore::CachedResourceLoader::setAutoLoadImages): (WebCore): (WebCore::CachedResourceLoader::setImagesEnabled): (WebCore::CachedResourceLoader::clientDefersImage): (WebCore::CachedResourceLoader::shouldDeferImageLoad): (WebCore::CachedResourceLoader::reloadImagesIfNotDeferred): * loader/cache/CachedResourceLoader.h: (CachedResourceLoader): * page/Settings.cpp: (WebCore::setImageLoadingSettings): (WebCore::Settings::Settings): (WebCore::Settings::setLoadsImagesAutomatically): (WebCore::Settings::imageLoadingSettingsTimerFired): (WebCore::Settings::setImagesEnabled): * page/Settings.h: (Settings): * testing/InternalSettings.cpp: (WebCore::InternalSettings::Backup::Backup): (WebCore::InternalSettings::Backup::restoreTo): (WebCore::InternalSettings::setImagesEnabled): (WebCore): * testing/InternalSettings.h: (Backup): (InternalSettings): * testing/InternalSettings.idl: Source/WebKit2: * win/WebKit2.def: LayoutTests: * fast/loader/display-image-unset-allows-cached-image-load-expected.txt: Added. * fast/loader/display-image-unset-allows-cached-image-load.html: Added. * fast/loader/display-image-unset-can-block-image-and-can-reload-in-place-expected.txt: Added. * fast/loader/display-image-unset-can-block-image-and-can-reload-in-place.html: Added. * fast/loader/images-enabled-unset-can-block-image-and-can-reload-in-place-expected.txt: Added. * fast/loader/images-enabled-unset-can-block-image-and-can-reload-in-place.html: Added. * fast/loader/resources/image1.html: Added. * fast/loader/resources/image2.html: Added. * platform/chromium/permissionclient/image-permissions-expected.txt: * platform/chromium/permissionclient/image-permissions.html: * platform/chromium/permissionclient/resources/image.html: * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129388 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=73767 Source/WebCore: Patch by Joone Hur <joone.hur@intel.com>, Gustavo Noronha Silva <gustavo.noronha@collabora.com> on 2012-09-24 Reviewed by Martin Robinson. This patch is needed for enabling Accelerated Compositing(Clutter backend) with the patches submitted in bug 92045 and 91940. No new tests. This will be covered by pixel tests for Qt/GTK+ accelerated compositing and 3D transforms. * GNUmakefile.list.am: * platform/clutter/GRefPtrClutter.cpp: Removed. * platform/clutter/GRefPtrClutter.h: Removed. * platform/graphics/clutter/PlatformClutterLayerClient.h: Added. (WebCore): (PlatformClutterLayerClient): (WebCore::PlatformClutterLayerClient::~PlatformClutterLayerClient): * platform/graphics/clutter/TransformationMatrixClutter.cpp: Added to convert CoglMatrix to TransformationMatrix. (WebCore): (WebCore::TransformationMatrix::operator CoglMatrix): * platform/graphics/transforms/TransformationMatrix.h: (TransformationMatrix): Source/WebKit/gtk: Patch by Joone Hur <joone.hur@intel.com> on 2012-09-24 Reviewed by Martin Robinson. This patch is needed for enabling Accelerated Compositing(Clutter backend) with the patches submitted in bug 92045 and 91940. * WebCoreSupport/AcceleratedCompositingContextClutter.cpp: (WebKit::AcceleratedCompositingContext::scrollNonCompositedContents): Added to fix bulid break. (WebKit): Source/WebKit2: Patch by Joone Hur <joone.hur@intel.com>, Gustavo Noronha Silva <gustavo.noronha@collabora.com> on 2012-09-24 Reviewed by Martin Robinson. Fixed link errors by adding Clutter library and header to WebKit2 build. * GNUmakefile.am: Source/WTF: Patch by Joone Hur <joone.hur@intel.com> on 2012-09-24 Reviewed by Martin Robinson. Add ClutterActor and GraphicsLayerActor to GTypedefs.h. * wtf/gobject/GTypedefs.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129387 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
* platform/chromium-linux/media/video-zoom-controls-expected.txt: Removed. * platform/chromium-win/media/video-zoom-controls-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129386 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dgrogan@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=96548 Reviewed by Adam Barth. Source/WebCore: We are largely compatible with the FF implementation and the w3c test suite submitted by MS. The w3c test suite doesn't yet check for lack of prefix; this is mostly to signal to devs that we think our implementation is stable. This patch uses the new FeatureObserver to get data about prefixed vs unprefixed usage. Tests: storage/indexeddb/unprefix-workers.html storage/indexeddb/unprefix.html * Modules/indexeddb/DOMWindowIndexedDatabase.cpp: (WebCore::DOMWindowIndexedDatabase::indexedDB): * Modules/indexeddb/DOMWindowIndexedDatabase.h: (DOMWindowIndexedDatabase): * Modules/indexeddb/DOMWindowIndexedDatabase.idl: * Modules/indexeddb/WorkerContextIndexedDatabase.cpp: (WebCore::WorkerContextIndexedDatabase::indexedDB): * Modules/indexeddb/WorkerContextIndexedDatabase.h: (WorkerContextIndexedDatabase): * Modules/indexeddb/WorkerContextIndexedDatabase.idl: * bindings/generic/RuntimeEnabledFeatures.h: Making the auxiliary objects RuntimeEnabled didn't make much sense as they are useless without the factory, so always enable them. (WebCore::RuntimeEnabledFeatures::indexedDBEnabled): * bindings/scripts/CodeGeneratorGObject.pm: (SkipAttribute): * page/FeatureObserver.h: LayoutTests: * storage/indexeddb/resources/unprefix.js: Added. (test): * storage/indexeddb/unprefix-expected.txt: Added. * storage/indexeddb/unprefix-workers-expected.txt: Added. * storage/indexeddb/unprefix-workers.html: Added. * storage/indexeddb/unprefix.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129385 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
wjmaclean@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=97248 Reviewed by Yuta Kitamura. Updating image baselines for gesture highlight tests. There are subtle changes in the rendering of text in the target links, impercetable to the eye but ImageDiff picks them up. * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-composited-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-composited-scrolled-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-composited-scrolled-late-composite-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-composited-scrolled-late-noncomposite-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-iframe-scrolled-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-composited-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-composited-scrolled-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change-2-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-layout-change-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-scrolled-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-scrolled-late-composite-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-1-overflow-div-scrolled-late-noncomposite-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-iframe-composited-inner-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-iframe-composited-outer-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-iframe-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-iframe-scrolled-inner-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-iframe-scrolled-inner-late-composite-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-iframe-scrolled-outer-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-iframe-scrolled-outer-late-composite-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-inner-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-inner-scroll-inner-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-inner-scroll-outer-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-outer-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-outer-scroll-inner-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-composited-outer-scroll-outer-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-scrolled-inner-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-2-overflow-div-scrolled-outer-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-cancel-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-expected.png: * platform/chromium-linux/platform/chromium-linux/compositing/gestures/gesture-tapHighlight-simple-window-scroll-expected.png: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129384 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=96746 Patch by Andrey Adaikin <aandrey@chromium.org> on 2012-09-24 Reviewed by Pavel Feldman. First step towards the 2D canvas instrumentation from the WebGL injected script module side. We trace and save all calls that affect the 2D canvas context state and it's resources (Gradient and Pattern) so that we could replay the context and resources states later. The 2D canvas context state consists of: - current transformation matrix - current default path - current clipping region (affected by the "clip" command) - current values of the context attributes (like strokeStyle, fillStyle, etc.) - a stack of saved drawing states (affected by the "save" and "restore" commands) * inspector/InjectedScriptCanvasModuleSource.js: (.): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129383 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rakuco@webkit.org authored
Skip a few tests unskipped in r129372 and r129375 that still fail on the bots. * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129382 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97442 Patch by Andrey Adaikin <aandrey@chromium.org> on 2012-09-24 Reviewed by Pavel Feldman. 1) The conditional breakpoint popup may not show up the first time we click on the gutter. This was the case because the popup decoration element would be deleted from the line while it was being highlighted and appended afterwards. Now we do not remove decorations from the DOM while highlighting. 2) Also the popup will close itself on any mouse click event, even if it's targeted to the input box itself. This was due to pointer-events: none; CSS style for the parent element. Now we just override this style for the input box. * inspector/front-end/DefaultTextEditor.js: (WebInspector.TextEditorMainPanel.prototype._paintLine): (WebInspector.TextEditorMainPanel.prototype._insertSpanBefore): (WebInspector.TextEditorMainPanel.prototype._insertTextNodeBefore): * inspector/front-end/inspector.css: (.source-frame-breakpoint-condition): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129381 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
carlosgc@webkit.org authored
[GTK] WebKitWebView:is-loading is not updated when the is loaded is started by link clicked navigation action https://bugs.webkit.org/show_bug.cgi?id=97458 Reviewed by Xan Lopez. WebKitWebView:is-loading is set to TRUE when the load is started by using the API. We want to make sure that both URI and is-loading are updated before load-started is emitted, so we can update both right before emitting load-started. * UIProcess/API/gtk/WebKitWebView.cpp: (webkitWebViewEmitLoadChanged): Update both uri and is-loading properties before emitting load-changed signal with WEBKIT_LOAD_STARTED. (webkit_web_view_load_uri): Don't call webkitWebViewSetIsLoading(). (webkit_web_view_load_html): Ditto. (webkit_web_view_load_alternate_html): Ditto. (webkit_web_view_load_plain_text): Ditto. (webkit_web_view_load_request): Ditto. (webkit_web_view_reload): Ditto. (webkit_web_view_reload_bypass_cache): Ditto. (webkit_web_view_go_back): Ditto. (webkit_web_view_go_forward): Ditto. (webkit_web_view_go_to_back_forward_list_item): Ditto. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129380 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rakuco@webkit.org authored
Move some inspector tests from Skipped to TestExpectations with a proper explanation and related bug report. * platform/efl/Skipped: * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129379 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jsbell@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=97368 Reviewed by Tony Chang. Change the logging - but not the flow or assertions - of some of our more complex tests, to take advantage of our newer helper functions. * storage/indexeddb/factory-deletedatabase-interactions-expected.txt: * storage/indexeddb/open-close-version-expected.txt: * storage/indexeddb/resources/factory-deletedatabase-interactions.js: * storage/indexeddb/resources/open-close-version.js: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129378 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
* platform/chromium-linux/media/video-zoom-controls-expected.txt: Added. * platform/chromium-mac/media/video-zoom-controls-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129377 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rakuco@webkit.org authored
Move a test that is failing on both WK1 and WK2 to the common TestExpectations file. * platform/efl-wk1/TestExpectations: * platform/efl-wk2/TestExpectations: * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129376 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rakuco@webkit.org authored
* platform/efl/TestExpectations: Unskip passing inspector test. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129375 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97331 Patch by Andrey Adaikin <aandrey@chromium.org> on 2012-09-24 Reviewed by Yury Semikhatsky. We should set CanvasAgent in InstrumentingAgents from enable() command and remove from disable(), instead of doing this in constructor and destructor. * inspector/InspectorCanvasAgent.cpp: (WebCore::InspectorCanvasAgent::InspectorCanvasAgent): (WebCore::InspectorCanvasAgent::~InspectorCanvasAgent): (WebCore::InspectorCanvasAgent::restore): (WebCore::InspectorCanvasAgent::enable): (WebCore::InspectorCanvasAgent::disable): * inspector/InspectorCanvasAgent.h: (InspectorCanvasAgent): * inspector/InspectorCanvasInstrumentation.h: (WebCore::InspectorInstrumentation::wrapCanvas2DRenderingContextForInstrumentation): (WebCore::InspectorInstrumentation::wrapWebGLRenderingContextForInstrumentation): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129374 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
danakj@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=97147 Reviewed by James Robinson. Source/Platform: These methods allow us to restore a WebFilterOperation from a blob of opaque data. The pickling code needs to be able to create an empty object and then fill in the pieces, so these setters allow it to do so. Test: WebFilterOperationsTest.saveAndRestore * chromium/public/WebFilterOperation.h: (WebKit::WebFilterOperation::amount): (WebKit::WebFilterOperation::dropShadowOffset): (WebKit::WebFilterOperation::matrix): (WebKit::WebFilterOperation::zoomRect): (WebFilterOperation): (WebKit::WebFilterOperation::createEmptyFilter): (WebKit::WebFilterOperation::setType): (WebKit::WebFilterOperation::setAmount): (WebKit::WebFilterOperation::setDropShadowOffset): (WebKit::WebFilterOperation::setDropShadowColor): (WebKit::WebFilterOperation::setMatrix): (WebKit::WebFilterOperation::setZoomRect): * chromium/src/WebFilterOperation.cpp: Source/WebKit/chromium: * tests/FilterOperationsTest.cpp: (WebKit): (WebKit::TEST): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129373 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rakuco@webkit.org authored
* platform/efl/Skipped: Unskip a few inspector-related tests which are currently passing. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129372 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
paroga@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97412 Reviewed by Adam Barth. Source/WebCore: * css/StylePropertySet.cpp: Removed useless define. Source/WebKit/chromium: * src/WebPageSerializerImpl.cpp: (WebKit::WebPageSerializerImpl::openTagToString): Replaced operator+= with StringBuilder::append(). (WebKit::WebPageSerializerImpl::endTagToString): Ditto. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129371 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eae@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=97265 Reviewed by Eric Seidel. Source/WebCore: Change snapSizeToPixel to preserve sign for location which affects rounding. Test: fast/sub-pixel/snap-negative-location.html * platform/FractionalLayoutUnit.h: (WebCore::snapSizeToPixel): LayoutTests: Add test for snapSizeToPixel handling of negative locations. Skipped on platforms that do not enable subpixel layout. * fast/sub-pixel/snap-negative-location-expected.html: Added. * fast/sub-pixel/snap-negative-location.html: Added. * platform/mac-lion/Skipped: * platform/mac-snowleopard/Skipped: * platform/mac-wk2/Skipped: * platform/mac/Skipped: * platform/qt-4.8/Skipped: * platform/qt/Skipped: * platform/win-wk2/Skipped: * platform/win-xp/Skipped: * platform/win/Skipped: * platform/wincairo/Skipped: * platform/wk2/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129370 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
peter@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=95688 Reviewed by Eric Seidel. This allows robots to access show_bug.cgi, thus granting them access to index contents and discussion on WebKit bugs. All other pages, except for the site index itself, still have indexing disabled. * robots.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129369 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
MIPS store8 functions https://bugs.webkit.org/show_bug.cgi?id=97243 Patch by Balazs Kilvady <kilvadyb@homejinni.com> on 2012-09-24 Reviewed by Oliver Hunt. Add MIPS store8 functions. * assembler/MIPSAssembler.h: (JSC::MIPSAssembler::lhu): New function. (MIPSAssembler): (JSC::MIPSAssembler::sb): New function. (JSC::MIPSAssembler::sh): New function. * assembler/MacroAssemblerMIPS.h: (JSC::MacroAssemblerMIPS::store8): New function. (MacroAssemblerMIPS): (JSC::MacroAssemblerMIPS::store16): New function. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129367 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zandobersek@gmail.com authored
REGRESSION (r129211-r129218): http/tests/loading/redirect-with-no-location-crash.html failing on GTK Linux 64-bit Release WK2 (Tests) https://bugs.webkit.org/show_bug.cgi?id=97404 Reviewed by Philippe Normand. Tools: Print out the 'didReceiveTitle' information when dumping frame load callbacks. * DumpRenderTree/gtk/DumpRenderTree.cpp: (webViewTitleChanged): LayoutTests: Remove WebKit2-specific failure expectation and GTK-specific baseline for the test in title. * platform/gtk-wk2/TestExpectations: * platform/gtk/http/tests/loading/redirect-with-no-location-crash-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129366 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97447 Patch by Jonathan Liu <net147@gmail.com> on 2012-09-24 Reviewed by Andreas Kling. Not all compilers will pad an unsigned bitfield to the smallest size. Use unsigned char instead of unsigned to reduce padding for compilers that pad to the underlying type. No new tests. There is already a compile-time assertion. * css/CSSRule.cpp: (SameSizeAsCSSRule): * css/CSSRule.h: (CSSRule): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129365 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97452 Unreviewed EFL rebaseline. Rebaseline several test cases in the EFL Skipped file and unskip them. Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-09-24 * platform/efl/Skipped: * platform/efl/fast/table/prepend-in-anonymous-table-expected.png: * platform/efl/fast/table/prepend-in-anonymous-table-expected.txt: * platform/efl/fast/text/basic/011-expected.png: * platform/efl/fast/text/basic/011-expected.txt: * platform/efl/fast/text/basic/013-expected.png: * platform/efl/fast/text/basic/013-expected.txt: * platform/efl/fast/text/bidi-embedding-pop-and-push-same-expected.png: * platform/efl/fast/text/capitalize-boundaries-expected.png: * platform/efl/fast/text/capitalize-boundaries-expected.txt: * platform/efl/fast/text/cg-fallback-bolding-expected.png: * platform/efl/fast/text/drawBidiText-expected.png: * platform/efl/fast/text/emphasis-vertical-expected.png: * platform/efl/fast/text/emphasis-vertical-expected.txt: * platform/efl/fast/text/fallback-traits-fixup-expected.png: * platform/efl/fast/text/fallback-traits-fixup-expected.txt: * platform/efl/fast/text/firstline/001-expected.png: * platform/efl/fast/text/firstline/001-expected.txt: * platform/efl/fast/text/firstline/002-expected.png: * platform/efl/fast/text/firstline/003-expected.png: * platform/efl/fast/text/format-control-expected.png: * platform/efl/fast/text/format-control-expected.txt: * platform/efl/fast/text/hyphens-expected.png: * platform/efl/fast/text/hyphens-expected.txt: * platform/efl/fast/text/in-rendered-text-rtl-expected.png: * platform/efl/fast/text/international/001-expected.png: * platform/efl/fast/text/international/001-expected.txt: * platform/efl/fast/text/international/002-expected.png: * platform/efl/fast/text/international/002-expected.txt: * platform/efl/fast/text/international/003-expected.png: * platform/efl/fast/text/international/003-expected.txt: * platform/efl/fast/text/international/bidi-L2-run-reordering-expected.png: * platform/efl/fast/text/international/bidi-LDB-2-CSS-expected.png: * platform/efl/fast/text/international/bidi-LDB-2-CSS-expected.txt: * platform/efl/fast/text/international/bidi-LDB-2-HTML-expected.png: * platform/efl/fast/text/international/bidi-LDB-2-HTML-expected.txt: * platform/efl/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: * platform/efl/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt: * platform/efl/fast/text/international/bidi-european-terminators-expected.png: * platform/efl/fast/text/international/bidi-explicit-embedding-expected.png: * platform/efl/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: * platform/efl/fast/text/international/bidi-innertext-expected.png: * platform/efl/fast/text/international/bidi-layout-across-linebreak-expected.png: * platform/efl/fast/text/international/bidi-layout-across-linebreak-expected.txt: Added. * platform/efl/fast/text/international/bidi-listbox-expected.png: * platform/efl/fast/text/international/bidi-listbox-expected.txt: Added. * platform/efl/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.png: * platform/efl/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.txt: Added. * platform/efl/fast/text/international/bidi-override-expected.png: * platform/efl/fast/text/international/bidi-override-expected.txt: Added. * platform/efl/fast/text/international/rtl-caret-expected.png: * platform/efl/fast/text/international/rtl-white-space-pre-wrap-expected.png: * platform/efl/fast/text/international/rtl-white-space-pre-wrap-expected.txt: * platform/efl/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: * platform/efl/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: * platform/efl/fast/text/international/wrap-CJK-001-expected.png: * platform/efl/fast/text/international/wrap-CJK-001-expected.txt: * platform/efl/fast/text/midword-break-hang-expected.png: * platform/efl/fast/text/midword-break-hang-expected.txt: * platform/efl/fast/text/trailing-white-space-2-expected.png: * platform/efl/fast/text/trailing-white-space-expected.png: * platform/efl/fast/text/whitespace/024-expected.png: * platform/efl/fast/text/whitespace/024-expected.txt: * platform/efl/fast/writing-mode/Kusa-Makura-background-canvas-expected.png: * platform/efl/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt: * platform/efl/fast/writing-mode/border-vertical-lr-expected.png: * platform/efl/fast/writing-mode/border-vertical-lr-expected.txt: * platform/efl/fast/writing-mode/fallback-orientation-expected.png: * platform/efl/fast/writing-mode/fallback-orientation-expected.txt: * platform/efl/svg/as-border-image/svg-as-border-image-2-expected.png: Added. * platform/efl/svg/as-border-image/svg-as-border-image-2-expected.txt: * platform/efl/svg/as-border-image/svg-as-border-image-expected.png: Added. * platform/efl/svg/as-border-image/svg-as-border-image-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129364 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97346 Patch by Peter Rybin <peter.rybin@gmail.com> on 2012-09-24 Reviewed by Yury Semikhatsky. A missing guard condition is added. * inspector/front-end/ObjectPropertiesSection.js: (WebInspector.FunctionScopeMainTreeElement.prototype.onpopulate.didGetDetails): (WebInspector.FunctionScopeMainTreeElement.prototype.onpopulate): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129361 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rgabor@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97451 Patch by Zoltan Arvai <zarvai@inf.u-szeged.hu> on 2012-09-24 * platform/qt/Skipped: Skip inspector-protocol/css-getSupportedCSSProperties.html. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129359 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97449 Unreviewed EFL gardening. fast/forms/select/select-state-restore.html sometimes times out on the WebKit2 EFL debug build bot. Add it to TestExpectations. Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-09-24 * platform/efl-wk2/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129357 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
anilsson@rim.com authored
https://bugs.webkit.org/show_bug.cgi?id=97102 Reviewed by Antonio Gomes. Source/WebCore: Add a CookieManager method that takes a list of strings to parse instead of just one string. Expose CookieParser::parseOneCookie. Reviewed internally by Otto D. Cheung. No change in behavior, no new tests. * platform/blackberry/CookieManager.cpp: (WebCore::CookieManager::setCookies): (WebCore): * platform/blackberry/CookieManager.h: * platform/blackberry/CookieParser.cpp: (WebCore::CookieParser::parseOneCookie): (WebCore): * platform/blackberry/CookieParser.h: (CookieParser): Source/WebKit: Add cookie database file to build system. Reviewed internally by Otto D. Cheung. * PlatformBlackBerry.cmake: Source/WebKit/blackberry: The cookie database is exposed through WebCookieJar, which has only two methods: cookies() and setCookies(). Also add a new WebString::fromUTF8 overload that takes a const char* and a length, in order to avoid a strlen call when converting from other string classes to WebString. This is useful for callers of the new cookie API when converting cookies to WebString. Reviewed internally by Otto D. Cheung. PR 209282 * Api/WebCookieJar.cpp: Added. (WebKit): (BlackBerry::WebKit::WebCookieJar::WebCookieJar): (BlackBerry::WebKit::WebCookieJar::cookies): (BlackBerry::WebKit::WebCookieJar::setCookies): * Api/WebCookieJar.h: Added. (WebKit): * Api/WebPage.cpp: (BlackBerry::WebKit::WebPagePrivate::WebPagePrivate): (BlackBerry::WebKit::WebPagePrivate::~WebPagePrivate): (BlackBerry::WebKit::WebPage::cookieJar): (WebKit): * Api/WebPage.h: (WebKit): * Api/WebPage_p.h: (WebKit): (WebPagePrivate): * Api/WebString.cpp: (BlackBerry::WebKit::WebString::fromUtf8): (WebKit): * Api/WebString.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129356 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
vsevik@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=97332 Reviewed by Alexander Pavlov. Source/WebCore: Improved open resource dialog filtering to make the amount of false positive search results less. * inspector/front-end/FilteredItemSelectionDialog.js: (WebInspector.FilteredItemSelectionDialog.prototype._innerCreateSearchRegExp): (WebInspector.FilteredItemSelectionDialog.prototype._highlightItem.get var): (WebInspector.FilteredItemSelectionDialog.prototype._highlightItem): LayoutTests: * inspector/filtered-item-selection-dialog-filtering-expected.txt: * inspector/filtered-item-selection-dialog-filtering.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129355 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97448 Unreviewed EFL rebaseline. Rebaseline several test cases in the Skipped file and unskip them. Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-09-24 * platform/efl/Skipped: * platform/efl/svg/as-image/animated-svg-as-image-expected.png: Added. * platform/efl/svg/as-image/animated-svg-as-image-expected.txt: * platform/efl/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png: Added. * platform/efl/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.txt: * platform/efl/svg/as-image/animated-svg-as-image-same-image-expected.png: Added. * platform/efl/svg/as-image/animated-svg-as-image-same-image-expected.txt: * platform/efl/svg/as-image/img-preserveAspectRatio-support-1-expected.png: Added. * platform/efl/svg/as-image/img-preserveAspectRatio-support-1-expected.txt: * platform/efl/svg/as-image/img-preserveAspectRatio-support-2-expected.png: Added. * platform/efl/svg/as-image/img-preserveAspectRatio-support-2-expected.txt: * platform/efl/svg/as-image/same-image-two-instances-expected.png: Added. * platform/efl/svg/as-image/same-image-two-instances-expected.txt: * platform/efl/svg/as-image/svg-image-change-content-size-expected.png: Added. * platform/efl/svg/as-image/svg-image-change-content-size-expected.txt: * platform/efl/svg/batik/masking/maskRegions-expected.png: Added. * platform/efl/svg/batik/masking/maskRegions-expected.txt: * platform/efl/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.png: Added. * platform/efl/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.txt: * platform/efl/svg/css/path-gradient-stroke-shadow-expected.png: Added. * platform/efl/svg/css/path-gradient-stroke-shadow-expected.txt: * platform/efl/svg/dom/css-transforms-expected.png: Added. * platform/efl/svg/dom/css-transforms-expected.txt: Added. * platform/efl/svg/hixie/error/012-expected.png: Added. * platform/efl/svg/hixie/error/012-expected.txt: * platform/efl/svg/hixie/error/013-expected.png: Added. * platform/efl/svg/hixie/error/013-expected.txt: * platform/efl/svg/hixie/mixed/003-expected.png: Added. * platform/efl/svg/hixie/mixed/003-expected.txt: * platform/efl/svg/hixie/mixed/004-expected.png: Added. * platform/efl/svg/hixie/mixed/004-expected.txt: * platform/efl/svg/hixie/mixed/005-expected.png: Added. * platform/efl/svg/hixie/mixed/005-expected.txt: * platform/efl/svg/hixie/mixed/006-expected.png: Added. * platform/efl/svg/hixie/mixed/006-expected.txt: * platform/efl/svg/hixie/mixed/007-expected.png: Added. * platform/efl/svg/hixie/mixed/007-expected.txt: * platform/efl/svg/hixie/mixed/008-expected.png: Added. * platform/efl/svg/hixie/mixed/008-expected.txt: * platform/efl/svg/hixie/mixed/009-expected.png: Added. * platform/efl/svg/hixie/mixed/009-expected.txt: * platform/efl/svg/hixie/mixed/010-expected.png: Added. * platform/efl/svg/hixie/mixed/010-expected.txt: * platform/efl/svg/hixie/mixed/011-expected.png: Added. * platform/efl/svg/hixie/mixed/011-expected.txt: * platform/efl/svg/hixie/perf/007-expected.png: Added. * platform/efl/svg/hixie/perf/007-expected.txt: * platform/efl/svg/hixie/processing-model/003-expected.png: Added. * platform/efl/svg/hixie/processing-model/003-expected.txt: * platform/efl/svg/hixie/processing-model/004-expected.png: Added. * platform/efl/svg/hixie/processing-model/004-expected.txt: * platform/efl/svg/hixie/rendering-model/003-expected.png: Added. * platform/efl/svg/hixie/rendering-model/003-expected.txt: * platform/efl/svg/hixie/rendering-model/004-expected.png: Added. * platform/efl/svg/hixie/rendering-model/004-expected.txt: * platform/efl/svg/hixie/text/003-expected.png: Added. * platform/efl/svg/hixie/text/003-expected.txt: * platform/efl/svg/in-html/by-reference-expected.png: Added. * platform/efl/svg/in-html/by-reference-expected.txt: * platform/efl/svg/in-html/circle-expected.png: Added. * platform/efl/svg/in-html/circle-expected.txt: * platform/efl/svg/overflow/overflow-on-inner-svg-element-expected.png: Added. * platform/efl/svg/overflow/overflow-on-inner-svg-element-expected.txt: * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.png: Added. * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.txt: * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.png: Added. * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.txt: * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.png: Added. * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.txt: * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.png: Added. * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.txt: * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.png: Added. * platform/efl/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.txt: * platform/efl/svg/repaint/inner-svg-change-viewPort-relative-expected.png: Added. * platform/efl/svg/repaint/inner-svg-change-viewPort-relative-expected.txt: Added. * platform/efl/svg/transforms/animated-path-inside-transformed-html-expected.png: Added. * platform/efl/svg/transforms/animated-path-inside-transformed-html-expected.txt: * platform/efl/svg/transforms/svg-css-transforms-clip-path-expected.png: Added. * platform/efl/svg/transforms/svg-css-transforms-clip-path-expected.txt: * platform/efl/svg/transforms/svg-css-transforms-expected.png: Added. * platform/efl/svg/transforms/svg-css-transforms-expected.txt: * platform/efl/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: Added. * platform/efl/svg/transforms/text-with-pattern-inside-transformed-html-expected.txt: * platform/efl/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Added. * platform/efl/svg/transforms/text-with-pattern-with-svg-transform-expected.txt: * platform/efl/svg/wicd/rightsizing-grid-expected.png: Added. * platform/efl/svg/wicd/rightsizing-grid-expected.txt: * platform/efl/svg/wicd/test-rightsizing-a-expected.png: Added. * platform/efl/svg/wicd/test-rightsizing-a-expected.txt: * platform/efl/svg/wicd/test-rightsizing-b-expected.png: Added. * platform/efl/svg/wicd/test-rightsizing-b-expected.txt: * platform/efl/svg/wicd/test-scalable-background-image1-expected.png: Added. * platform/efl/svg/wicd/test-scalable-background-image1-expected.txt: * platform/efl/svg/wicd/test-scalable-background-image2-expected.png: Added. * platform/efl/svg/wicd/test-scalable-background-image2-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129354 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97203 Patch by Andrey Adaikin <aandrey@chromium.org> on 2012-09-24 Reviewed by Yury Semikhatsky. Implements wrapping a 2D canvas context through the injected canvas module script facility. * bindings/js/JSHTMLCanvasElementCustom.cpp: (WebCore::JSHTMLCanvasElement::getContext): * bindings/v8/custom/V8HTMLCanvasElementCustom.cpp: (WebCore::V8HTMLCanvasElement::getContextCallback): * inspector/InjectedScriptCanvasModule.cpp: (WebCore::InjectedScriptCanvasModule::wrapCanvas2DContext): (WebCore): (WebCore::InjectedScriptCanvasModule::wrapWebGLContext): (WebCore::InjectedScriptCanvasModule::callWrapContextFunction): * inspector/InjectedScriptCanvasModule.h: (InjectedScriptCanvasModule): * inspector/InspectorCanvasAgent.cpp: (WebCore::InspectorCanvasAgent::wrapCanvas2DRenderingContextForInstrumentation): (WebCore): * inspector/InspectorCanvasAgent.h: (InspectorCanvasAgent): * inspector/InspectorCanvasInstrumentation.h: (WebCore::InspectorInstrumentation::wrapCanvas2DRenderingContextForInstrumentation): (WebCore): * inspector/InspectorInstrumentation.h: (InspectorInstrumentation): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129353 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97302 Patch by Byungwoo Lee <bw80.lee@samsung.com> on 2012-09-24 Reviewed by Gyuyoung Kim. libewk2UnitTestInjectedBundleSample.so file is created under the Source directory. Change install directory for the library to under the build directory. * PlatformEfl.cmake: * UIProcess/API/efl/tests/UnitTestUtils/EWK2UnitTestEnvironment.cpp: (EWK2UnitTest::EWK2UnitTestEnvironment::injectedBundleSample): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129352 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
pfeldman@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=97446 Reviewed by Alexander Pavlov. Added 0 check on frame view. * inspector/InspectorOverlay.cpp: (WebCore::InspectorOverlay::update): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129350 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=97445 Unreviewed EFL gardening. Skip again fast/dom/shadow/shadowdom-for-object-without-shadow.html and unskip fast/dom/shadow/shadowdom-for-object-only-shadow.html instead. Patch by Christophe Dumez <christophe.dumez@intel.com> on 2012-09-24 * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129349 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
apavlov@chromium.org authored
Web Inspector: [REGRESSION] Cmd-Shift-C doesn't enable element inspection mode when inspector hidden https://bugs.webkit.org/show_bug.cgi?id=97249 Reviewed by Yury Semikhatsky. Fix regression from r125871. * inspector/front-end/InspectorFrontendAPI.js: (InspectorFrontendAPI.enterInspectElementMode): * inspector/front-end/inspector.js: (WebInspector._createGlobalStatusBarItems): (WebInspector.documentKeyDown): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@129348 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-