- 30 Sep, 2013 23 commits
-
-
jer.noble@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=122049 Reviewed by Eric Carlson. Source/WebCore: Now that our video elements have audio tracks, use their presence or absense to show or hide the volume controls. * Modules/mediacontrols/mediaControlsApple.js: (Controller): (Controller.prototype.addVideoListeners): Listen for audioTrack changes. (Controller.prototype.removeVideoListeners): Stop listening to same. (Controller.prototype.handleAudioTrackChange): Call this.updateHasAudio() (Controller.prototype.handleAudioTrackAdd): Ditto. (Controller.prototype.handleAudioTrackRemove): Ditto. (Controller.prototype.updateHasAudio): Hide the volume controls if no audioTracks are present, and vice versa. LayoutTests: * platform/mac/TestExpectations: * platform/mac/media/video-no-audio-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156656 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
akling@apple.com authored
* WebFrame.cpp: (WebFrame::pauseAnimation): (WebFrame::pauseTransition): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156655 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
paroga@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=122102 Reviewed by Geoffrey Garen. _AddressOfReturnAddress() is supported for all platforms of ths Microsoft compiler, so we can use it for !CPU(X86) too. * jit/JITOperationWrappers.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156654 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jer.noble@apple.com authored
Use metadataItemsFromArray:withLocale: instead of metadataItemsFromArray:filteredAndSortedAccordingToPreferredLanguages: on Lion and earlier. * platform/graphics/avfoundation/objc/AudioTrackPrivateAVFObjC.mm: (WebCore::AudioTrackPrivateAVFObjC::resetPropertiesFromTrack): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156653 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jer.noble@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=122043 Reviewed by Eric Carlson. Source/WebCore: Test: media/track/audio-track.html Add a new class AudioTrackPrivateAVF and subclass AudioTrackPrivateAVFObjC which are backed by a AVPlayerItemTrack. Create one of these tracks when we are notified that the list of available tracks has changed. * WebCore.xcodeproj/project.pbxproj: * html/track/AudioTrack.cpp: (WebCore::AudioTrack::setEnabled): Pass through to the AudioTrackPrivate so that the underlying media track can be (dis|en)abled. * platform/graphics/avfoundation/AudioTrackPrivateAVF.h: Added. (WebCore::AudioTrackPrivateAVF::kind): Simple getter. (WebCore::AudioTrackPrivateAVF::id): Ditto. (WebCore::AudioTrackPrivateAVF::label): Ditto. (WebCore::AudioTrackPrivateAVF::language): Ditto. (WebCore::AudioTrackPrivateAVF::setKind): Simple Setter. (WebCore::AudioTrackPrivateAVF::setId): Ditto. (WebCore::AudioTrackPrivateAVF::setLabel): Ditto. (WebCore::AudioTrackPrivateAVF::setLanguage): Ditto. (WebCore::AudioTrackPrivateAVF::AudioTrackPrivateAVF): Simple constructor. * platform/graphics/avfoundation/objc/AudioTrackPrivateAVFObjC.h: Added. (WebCore::AudioTrackPrivateAVFObjC::create): Simple factory. (WebCore::AudioTrackPrivateAVFObjC::playerItemTrack): Simple getter. * platform/graphics/avfoundation/objc/AudioTrackPrivateAVFObjC.mm: Added. (WebCore::AudioTrackPrivateAVFObjC::AudioTrackPrivateAVFObjC): Call resetPropertiesFromTrack. (WebCore::AudioTrackPrivateAVFObjC::resetPropertiesFromTrack): Fill out the values from the associated AVPlayerItemTrack and its AVAssetTrack. (WebCore::AudioTrackPrivateAVFObjC::setPlayerItemTrack): Call resetPropertiesFromTrack. (WebCore::AudioTrackPrivateAVFObjC::setEnabled): (En|Dis)able the AVPlayerItemTrack. (WebCore::AudioTrackPrivateAVFObjC::languageForAVAssetTrack): Refactored from MediaPlayerPrivateAVFoundationObjC::languageOfPrimaryAudioTrack. * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h: * platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm: (WebCore::MediaPlayerPrivateAVFoundationObjC::tracksChanged): Determine which tracks have been added or removed and notify the clients accordingly. (WebCore::MediaPlayerPrivateAVFoundationObjC::languageOfPrimaryAudioTrack): Refactor into AudioTrackPrivateAVFObjC::languageForAVAssetTrack. LayoutTests: * media/track/audio-track-expected.txt: Added. * media/track/audio-track.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156652 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=122107 Unreviewed EFL gardening. fast/forms/textarea-metrics.html fails in WebKitTestRunner but returns expected results in MiniBrowser. Since GTK uses platform dependent expectation file to migitate this identical discrepancy, the same solution has been applied to EFL. Patch by Robert Plociennik <r.plociennik@samsung.com> on 2013-09-30 * platform/efl/TestExpectations: * platform/efl/fast/forms/textarea-metrics-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156651 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
paroga@webkit.org authored
* WebView.cpp: (WebView::WebView): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156650 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
paroga@webkit.org authored
* WebCoreSupport/FrameLoaderClientWinCE.cpp: (WebKit::FrameLoaderClientWinCE::dispatchDecidePolicyForResponse): (WebKit::FrameLoaderClientWinCE::dispatchDecidePolicyForNewWindowAction): (WebKit::FrameLoaderClientWinCE::dispatchDecidePolicyForNavigationAction): (WebKit::FrameLoaderClientWinCE::dispatchWillSubmitForm): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156649 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
paroga@webkit.org authored
* WebView.cpp: (WebView::wndProc): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156648 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=122098 Patch by Krzysztof Wolanski <k.wolanski@samsung.com> on 2013-09-30 Reviewed by Gyuyoung Kim. Tools: Previously used two types of recording time, which conflicted with each other. * WebKitTestRunner/efl/EventSenderProxyEfl.cpp: (WTR::EventSenderProxy::mouseUp): LayoutTests: After fixing EventSenderProxy extend-selection-after-double-click.html runs correctly. * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156647 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=122096 Unreviewed EFL gardening. Removed expected failures for bug 84835. editing/pasteboard/copy-inside-h1-preserves-h1 and editing/pasteboard/copy-without-selection are still failing due to bug 86623 and have been marked accordingly. Patch by Robert Plociennik <r.plociennik@samsung.com> on 2013-09-30 * platform/efl-wk1/TestExpectations: * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156646 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mario@webkit.org authored
* platform/gtk-wk2/TestExpectations: Removed passing tests. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156645 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=122090 Unreviewed EFL gardening. Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-09-30 * platform/efl-wk2/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156644 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=111850 Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-09-30 Reviewed by Mario Sanchez Prada. Test passes after r156532. * platform/efl/TestExpectations: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156643 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
gyuyoung.kim@samsung.com authored
https://bugs.webkit.org/show_bug.cgi?id=122055 Reviewed by Antti Koivisto. Generated type cast function supports more plenty functions rather than manual functions. To use CSS_VALUE_TYPE_CAST, isCalculationValue() needs to be changed with isCalcValue(). No new tests, no behavior changes. * css/CSSCalculationValue.h: * css/CSSValue.cpp: (WebCore::CSSValue::destroy): * css/CSSValue.h: (WebCore::CSSValue::isCalcValue): * css/StyleResolver.cpp: (WebCore::hasVariableReference): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156642 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rgabor@webkit.org authored
* dfg/DFGSpeculativeJIT.cpp: (JSC::DFG::SpeculativeJIT::compileCurrentBlock): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156641 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
zandobersek@gmail.com authored
https://bugs.webkit.org/show_bug.cgi?id=122089 Reviewed by Gyuyoung Kim. Make the Xvfb screen depth overridable by checking if the XVFB_SCREEN_DEPTH environment variable was set. The default value that's used if the variable wasn't set is 24. * Scripts/webkitpy/port/xvfbdriver.py: (XvfbDriver._xvfb_screen_depth): (XvfbDriver._start): * Scripts/webkitpy/port/xvfbdriver_unittest.py: (XvfbDriverTest.make_driver): (XvfbDriverTest.test_start_no_pixel_tests): (XvfbDriverTest.test_start_pixel_tests): (XvfbDriverTest.test_start_arbitrary_worker_number): (XvfbDriverTest.test_next_free_display): (XvfbDriverTest.test_start_next_worker): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156640 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antti@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=122080 Reviewed by Andreas Kling. This is ugly and shows up in profiles too. Use a bit in RenderElement instead. * rendering/RenderBlock.h: * rendering/RenderBlockFlow.h: Move dirtyLinesFromChangedChild down to RenderBlockFlow. It wouldn't do anything on other RenderBlocks. * rendering/RenderElement.cpp: (WebCore::RenderElement::RenderElement): * rendering/RenderElement.h: Add m_ancestorLineBoxDirty bit. We have 32 unused bits here on 64bit systems. (WebCore::RenderElement::dirtyLinesFromChangedChild): (WebCore::RenderElement::ancestorLineBoxDirty): (WebCore::RenderElement::setAncestorLineBoxDirty): (WebCore::RenderObject::setNeedsLayout): * rendering/RenderInline.h: * rendering/RenderLineBoxList.cpp: (WebCore::RenderLineBoxList::dirtyLinesFromChangedChild): Tighten the interface. * rendering/RenderLineBoxList.h: * rendering/RenderObject.cpp: (WebCore::RenderObject::willBeDestroyed): * rendering/RenderObject.h: Remove the static map. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156639 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
svillar@igalia.com authored
https://bugs.webkit.org/show_bug.cgi?id=103334 Reviewed by Andreas Kling. Source/WebCore: Based on Blink r151684 by <jchaffraix@chromium.org> Test: fast/css-grid-layout/grid-item-area-get-set.html Added support to specify grid positions using the '-webkit-grid-area' shorthand. Named grid areas are still not allowed, to be done in a follow up patch as it likely requires '-webkit-grid-template' support. * css/CSSComputedStyleDeclaration.cpp: (WebCore::ComputedStyleExtractor::propertyValue): * css/CSSParser.cpp: (WebCore::CSSParser::parseValue): (WebCore::CSSParser::parseGridItemPositionShorthand): * css/CSSPropertyNames.in: * css/StylePropertySet.cpp: (WebCore::StylePropertySet::getPropertyValue): * css/StylePropertyShorthand.cpp: (WebCore::webkitGridAreaShorthand): (WebCore::shorthandForProperty): * css/StylePropertyShorthand.h: * css/StyleResolver.cpp: (WebCore::StyleResolver::applyProperty): LayoutTests: From Blink r151684 by <jchaffraix@chromium.org> * fast/css-grid-layout/grid-item-area-get-set-expected.txt: Added. * fast/css-grid-layout/grid-item-area-get-set.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156638 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rgabor@webkit.org authored
* dfg/DFGSpeculativeJIT.cpp: (JSC::DFG::fmodAsDFGOperation): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156637 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
gyuyoung.kim@samsung.com authored
https://bugs.webkit.org/show_bug.cgi?id=122060 Reviewed by Antti Koivisto. As a step to generate toCSSFooValue, toCSSGradientValuem toCSSLinearGradientValue and toCSSRadialGradient are generated. isLinearGradient() and isRadialGradient() are moved from each class to CSSValue in order to generate toCSSFooValue. No new tests, no behavior change. * css/CSSGradientValue.cpp: (WebCore::CSSGradientValue::image): (WebCore::CSSGradientValue::gradientWithStylesResolved): * css/CSSGradientValue.h: * css/CSSImageGeneratorValue.cpp: (WebCore::CSSImageGeneratorValue::image): (WebCore::CSSImageGeneratorValue::fixedSize): (WebCore::CSSImageGeneratorValue::loadSubimages): * css/CSSParser.cpp: (WebCore::CSSParser::parseDeprecatedGradient): * css/CSSValue.cpp: (WebCore::CSSValue::destroy): * css/CSSValue.h: (WebCore::CSSValue::isLinearGradient): (WebCore::CSSValue::isRadialGradient): * css/StyleResolver.cpp: (WebCore::StyleResolver::applyProperty): (WebCore::StyleResolver::styleImage): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156636 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=90159 Patch by Vani Hegde <vani.hegde@samsung.com> on 2013-09-30 Reviewed by Ryosuke Niwa. Source/WebCore: When tried to select some text in an area that has style cursor:default set, cursor type changes to text cursor ignoring the cursor style that is explicitly set. When the cursor style is explicitly set as default (or something else), we should not change it to text cursor no matter what we are over or what operation we are performing (be it hovering over the text or selecting the text). During text selection, changing the cursor type to text only when there is no explicit cursor type set fixes the issue. Test: editing/caret/selection-with-caret-type-progress.html * page/EventHandler.cpp: (WebCore::EventHandler::selectCursor): During selection, set the cursor style to text only if there is no explicit cursor style set. LayoutTests: Test case added to verify that explicitly set cursor style is retained on performing text selection. * editing/caret/selection-with-caret-type-progress-expected.txt: Added. * editing/caret/selection-with-caret-type-progress.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156635 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=122081 Patch by Nadav Rotem <nrotem@apple.com> on 2013-09-29 Reviewed by Geoffrey Garen. * ftl/FTLLowerDFGToLLVM.cpp: (JSC::FTL::LowerDFGToLLVM::compileNode): (JSC::FTL::LowerDFGToLLVM::compileAddSub): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156634 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 29 Sep, 2013 17 commits
-
-
gyuyoung.kim@samsung.com authored
https://bugs.webkit.org/show_bug.cgi?id=122058 Reviewed by Antti Koivisto. Generate toCSSFooValue() for CSSCanvasValue, and use it. This type cast function will help to detect bad-casts. isCanvasValue() is added in order to generate toCSSCanvasValue. No new tests, no behavior change. * css/CSSCanvasValue.h: * css/CSSImageGeneratorValue.cpp: (WebCore::CSSImageGeneratorValue::image): (WebCore::CSSImageGeneratorValue::fixedSize): (WebCore::CSSImageGeneratorValue::loadSubimages): * css/CSSValue.cpp: (WebCore::CSSValue::destroy): * css/CSSValue.h: (WebCore::CSSValue::isCanvasValue): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156633 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
darin@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=122087 Reviewed by Mark Rowe. Source/ThirdParty: * gtest/xcode/Config/General.xcconfig: Added some warnings that Xcode 5 suggested. Source/ThirdParty/ANGLE: * Configurations/Base.xcconfig: Add some of the warnings that Xcode 5 suggested. * src/compiler/preprocessor/Tokenizer.l: Defined YY_NO_INPUT so we don't compile an unused function and get a warning. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156632 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mrowe@apple.com authored
Ensure that C++ and Objective-C++ files build with the right compiler flags. Source/WebCore: * Configurations/WebCore.xcconfig: Source/WebKit/mac: * Configurations/WebKit.xcconfig: Source/WebKit2: * Configurations/BaseTarget.xcconfig: Tools: * DumpRenderTree/mac/Configurations/BaseTarget.xcconfig: * WebKitTestRunner/Configurations/BaseTarget.xcconfig: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156631 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
gyuyoung.kim@samsung.com authored
https://bugs.webkit.org/show_bug.cgi?id=122054 Reviewed by Darin Adler. As a step to use toCSSFooValue, toCSSLineBoxContainValue is generated by using CSS_VALUE_TYPE_CASTS. To use it, isCSSLineBoxContainValue() is changed to isLineBoxContatinValue(). Unnecessary local variable is removed by this patch. No new tests, no behavior changes. * css/CSSLineBoxContainValue.h: * css/CSSValue.cpp: (WebCore::CSSValue::destroy): * css/CSSValue.h: (WebCore::CSSValue::isLineBoxContainValue): * css/StyleResolver.cpp: (WebCore::StyleResolver::applyProperty): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156630 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
gyuyoung.kim@samsung.com authored
https://bugs.webkit.org/show_bug.cgi?id=122057 Reviewed by Antti Koivisto. Generated toCSSFooValue() supports more plenty functions rather than to use manual cast function. No new tests, no behavior changes. * css/CSSCrossfadeValue.h: * css/CSSImageGeneratorValue.cpp: (WebCore::CSSImageGeneratorValue::image): (WebCore::CSSImageGeneratorValue::fixedSize): (WebCore::CSSImageGeneratorValue::loadSubimages): * css/CSSValue.cpp: (WebCore::CSSValue::destroy): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156629 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
gyuyoung.kim@samsung.com authored
https://bugs.webkit.org/show_bug.cgi?id=122056 Reviewed by Antti Koivisto. Generate toCSSFooValue() for CSSFilterImageValue and CSSInitialValue, and use it. This type cast function will help to detect bad-casts. No new tests, no behavior changes. * css/CSSFilterImageValue.h: * css/CSSImageGeneratorValue.cpp: (WebCore::CSSImageGeneratorValue::image): (WebCore::CSSImageGeneratorValue::fixedSize): (WebCore::CSSImageGeneratorValue::loadSubimages): * css/CSSInitialValue.h: * css/CSSValue.cpp: (WebCore::CSSValue::destroy): * css/StyleResolver.cpp: (WebCore::StyleResolver::generatedOrPendingFromValue): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156628 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
darin@apple.com authored
* bindings/js/WebCoreTypedArrayController.cpp: (WebCore::WebCoreTypedArrayController::toJS): Added back the prefix for the call to WebCore::toJS, otherwise this function just calls itself infinitely recursively. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156627 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
weinig@apple.com authored
* WebProcess/Plugins/Netscape/NPRuntimeObjectMap.cpp: (WebKit::NPRuntimeObjectMap::evaluate): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156626 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
weinig@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=122085 Reviewed by Anders Carlsson. * html/HTMLMediaElement.h: * loader/FrameLoader.cpp: (WebCore::FrameLoader::completed): * loader/FrameLoader.h: * loader/SubresourceLoader.cpp: (WebCore::SubresourceLoader::checkForHTTPStatusCodeError): (WebCore::SubresourceLoader::didFinishLoading): (WebCore::SubresourceLoader::didFail): (WebCore::SubresourceLoader::willCancel): * loader/SubresourceLoader.h: Store the PageActivityAssertionToken as a std::unique_ptr. * page/Page.cpp: (WebCore::Page::Page): Use createOwned and pass this by reference for the PageThrottler and PageConsole. (WebCore::Page::~Page): Remove unnecessary clearing of an OwnPtr that is about to be destroyed. * page/Page.h: Make m_pageThrottler const and return it as a reference. * page/PageActivityAssertionToken.cpp: (WebCore::PageActivityAssertionToken::PageActivityAssertionToken): (WebCore::PageActivityAssertionToken::~PageActivityAssertionToken): * page/PageActivityAssertionToken.h: Take the PageThrottler by reference in the constructor. It is never null. * page/PageConsole.cpp: (WebCore::PageConsole::PageConsole): (WebCore::PageConsole::~PageConsole): (WebCore::PageConsole::addMessage): * page/PageConsole.h: Pass and store the Page as a reference and remove an extraneous null check. Remove the create function. * page/PageThrottler.cpp: (WebCore::PageThrottler::PageThrottler): (WebCore::PageThrottler::~PageThrottler): (WebCore::PageThrottler::createActivityToken): (WebCore::PageThrottler::throttlePage): (WebCore::PageThrottler::unthrottlePage): (WebCore::PageThrottler::addActivityToken): (WebCore::PageThrottler::removeActivityToken): * page/PageThrottler.h: Pass and store the Page as a reference. Move the creation of PageActivityAssertionToken here to aid encapsulation. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156625 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
akling@apple.com authored
<https://webkit.org/b/122082> Reviewed by Darin Adler. Functions don't need anything from the global object during their construction and only use it to get to the VM. Reduce loads by simply passing the VM around instead. This patch is mostly mechanical, I just changed the signature of InternalFunction and worked my way from there until it built. JSC release binary size -= 4840 bytes. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156624 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
darin@apple.com authored
* bindings/js/WebCoreTypedArrayController.cpp: Windows has a symbol named Handle, so we need to call JSC::Handle out by name. To fix that, I removed "using namespace JSC" entirely. And just for fun, sort of "rewrote" this file. (WebCore::WebCoreTypedArrayController::WebCoreTypedArrayController): Removed unneeded explicit initialization of m_owner. (WebCore::WebCoreTypedArrayController::~WebCoreTypedArrayController): Fixed formatting. (WebCore::WebCoreTypedArrayController::toJS): Added lots of explicit JSC and got rid of local. (WebCore::WebCoreTypedArrayController::JSArrayBufferOwner::isReachableFromOpaqueRoots): Cut down on locals, used auto& for type, and called it "wrapper" since that's what JSArrayBuffer is. (WebCore::WebCoreTypedArrayController::JSArrayBufferOwner::finalize): More of the same. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156623 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
darin@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=122078 Reviewed by Andreas Kling. Source/ThirdParty/ANGLE: * ANGLE.xcodeproj/project.pbxproj: Let Xcode do its thing to this file. Source/WebCore: * WebCore.exp.in: Updated for name changes. * dom/ContainerNode.h: Moved renderer() here from Element. * dom/Element.h: Moved renderer() from here to ContainerNode. * render/RenderElement.h: Moved renderer() from Element to ContainerNode. * accessibility/AccessibilityImageMapLink.cpp: (WebCore::AccessibilityImageMapLink::imageMapLinkRenderer): (WebCore::AccessibilityImageMapLink::detachFromParent): (WebCore::AccessibilityImageMapLink::elementPath): (WebCore::AccessibilityImageMapLink::elementRect): * accessibility/AccessibilityImageMapLink.h: * accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::computeAccessibilityIsIgnored): * bindings/objc/DOM.mm: (-[DOMElement image]): (-[DOMElement _font]): (-[DOMElement _imageTIFFRepresentation]): * css/CSSCanvasValue.cpp: (WebCore::CSSCanvasValue::canvasChanged): (WebCore::CSSCanvasValue::canvasResized): (WebCore::CSSCanvasValue::canvasDestroyed): (WebCore::CSSCanvasValue::fixedSize): (WebCore::CSSCanvasValue::image): * css/CSSCanvasValue.h: * css/CSSComputedStyleDeclaration.cpp: (WebCore::computeRenderStyleForProperty): * css/CSSCrossfadeValue.cpp: (WebCore::subimageKnownToBeOpaque): (WebCore::CSSCrossfadeValue::fixedSize): (WebCore::CSSCrossfadeValue::knownToBeOpaque): (WebCore::CSSCrossfadeValue::image): (WebCore::CSSCrossfadeValue::crossfadeChanged): * css/CSSCrossfadeValue.h: * css/CSSFilterImageValue.cpp: (WebCore::CSSFilterImageValue::fixedSize): (WebCore::CSSFilterImageValue::knownToBeOpaque): (WebCore::CSSFilterImageValue::image): (WebCore::CSSFilterImageValue::filterImageChanged): * css/CSSFilterImageValue.h: * css/CSSFontSelector.cpp: * css/CSSGradientValue.cpp: (WebCore::CSSGradientValue::image): (WebCore::CSSGradientValue::addStops): (WebCore::CSSGradientValue::knownToBeOpaque): (WebCore::CSSLinearGradientValue::createGradient): (WebCore::CSSRadialGradientValue::createGradient): * css/CSSGradientValue.h: (WebCore::CSSGradientValue::fixedSize): * css/CSSImageGeneratorValue.cpp: (WebCore::CSSImageGeneratorValue::addClient): (WebCore::CSSImageGeneratorValue::removeClient): (WebCore::CSSImageGeneratorValue::image): (WebCore::CSSImageGeneratorValue::fixedSize): (WebCore::CSSImageGeneratorValue::knownToBeOpaque): * css/CSSImageGeneratorValue.h: (WebCore::CSSImageGeneratorValue::clients): * css/CSSImageValue.cpp: (WebCore::CSSImageValue::knownToBeOpaque): * css/CSSImageValue.h: * css/DeprecatedStyleBuilder.cpp: * dom/DocumentMarkerController.cpp: (WebCore::DocumentMarkerController::removeMarkersFromList): (WebCore::DocumentMarkerController::repaintMarkers): * dom/Element.cpp: (WebCore::localZoomForRenderer): (WebCore::adjustForLocalZoom): (WebCore::Element::offsetParent): (WebCore::Element::updateExistingPseudoElement): * dom/ElementRareData.h: (WebCore::ElementRareData::create): (WebCore::ElementRareData::ElementRareData): * dom/Node.cpp: (WebCore::Node::ensureRareData): * editing/DeleteButtonController.cpp: (WebCore::isDeletableElement): * editing/Editor.cpp: (WebCore::Editor::hasBidiSelection): (WebCore::Editor::baseWritingDirectionForSelectionStart): * editing/EditorCommand.cpp: (WebCore::verticalScrollDistance): * editing/htmlediting.cpp: (WebCore::directionOfEnclosingBlock): * editing/ios/EditorIOS.mm: (WebCore::Editor::fontForSelection): (WebCore::getImage): * editing/mac/EditorMac.mm: (WebCore::Editor::fontForSelection): (WebCore::getImage): * editing/markup.cpp: * html/HTMLAreaElement.cpp: (WebCore::HTMLAreaElement::computePath): (WebCore::HTMLAreaElement::computeRect): (WebCore::HTMLAreaElement::setFocus): * html/HTMLAreaElement.h: * html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::reset): * html/HTMLElement.cpp: (WebCore::HTMLElement::setInnerText): * html/HTMLFormControlElement.cpp: (WebCore::updateFromElementCallback): * html/HTMLFormElement.cpp: (WebCore::HTMLFormElement::rendererIsNeeded): * html/HTMLFrameOwnerElement.h: * html/HTMLImageElement.cpp: (WebCore::HTMLImageElement::x): (WebCore::HTMLImageElement::y): (WebCore::HTMLImageElement::willRespondToMouseClickEvents): * html/HTMLMapElement.cpp: * html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::defaultEventHandler): * html/HTMLMeterElement.cpp: (WebCore::HTMLMeterElement::renderMeter): * html/HTMLOptionElement.cpp: (WebCore::HTMLOptionElement::didRecalcStyle): * html/HTMLPlugInElement.cpp: (WebCore::HTMLPlugInElement::willRespondToMouseClickEvents): (WebCore::HTMLPlugInElement::defaultEventHandler): (WebCore::HTMLPlugInElement::isKeyboardFocusable): * html/HTMLPlugInImageElement.cpp: (WebCore::HTMLPlugInImageElement::defaultEventHandler): * html/HTMLProgressElement.cpp: (WebCore::HTMLProgressElement::renderProgress): * html/HTMLSelectElement.cpp: (WebCore::HTMLSelectElement::scrollToSelection): (WebCore::HTMLSelectElement::setOptionsChangedOnRenderer): (WebCore::HTMLSelectElement::selectOption): * html/HTMLTableCellElement.cpp: (WebCore::HTMLTableCellElement::cellAbove): * html/HTMLTextFormControlElement.cpp: (WebCore::hasVisibleTextArea): (WebCore::HTMLTextFormControlElement::setSelectionRange): * html/InputType.h: * html/parser/HTMLResourcePreloader.cpp: * html/shadow/MediaControlElementTypes.cpp: (WebCore::MediaControlElement::setDisplayType): * html/shadow/MediaControlElements.cpp: (WebCore::MediaControlPanelElement::startDrag): (WebCore::MediaControlTextTrackContainerElement::createTextTrackRepresentationImage): * html/shadow/MeterShadowElement.cpp: (WebCore::MeterShadowElement::rendererIsNeeded): (WebCore::MeterInnerElement::rendererIsNeeded): * inspector/InspectorOverlay.cpp: * inspector/InspectorTimelineAgent.cpp: * inspector/InspectorTimelineAgent.h: * loader/ImageLoader.cpp: (WebCore::ImageLoader::renderImageResource): * loader/cache/CachedImage.cpp: (WebCore::CachedImage::currentFrameKnownToBeOpaque): * loader/cache/CachedImage.h: * mathml/MathMLElement.cpp: * page/ContextMenuController.cpp: * page/DragController.cpp: (WebCore::DragController::draggableElement): * page/EventHandler.cpp: (WebCore::EventHandler::EventHandler): (WebCore::EventHandler::clear): (WebCore::EventHandler::startPanScrolling): (WebCore::EventHandler::autoscrollRenderer): (WebCore::EventHandler::scrollOverflow): (WebCore::EventHandler::logicalScrollOverflow): (WebCore::EventHandler::subframeForTargetNode): (WebCore::EventHandler::selectCursor): (WebCore::layerForNode): (WebCore::EventHandler::handleWheelEvent): (WebCore::EventHandler::clearGestureScrollNodes): * page/EventHandler.h: * page/FocusController.cpp: * page/Frame.cpp: (WebCore::Frame::ownerRenderer): (WebCore::Frame::visiblePositionForPoint): (WebCore::Frame::nodeImage): * page/FrameView.cpp: (WebCore::FrameView::applyOverflowToViewport): (WebCore::FrameView::applyPaginationToViewport): (WebCore::FrameView::calculateScrollbarModesForLayout): (WebCore::FrameView::isEnclosedInCompositingLayer): (WebCore::FrameView::embeddedContentBox): (WebCore::FrameView::addSlowRepaintObject): (WebCore::FrameView::removeSlowRepaintObject): (WebCore::FrameView::addViewportConstrainedObject): (WebCore::FrameView::removeViewportConstrainedObject): (WebCore::FrameView::scrollContentsFastPath): (WebCore::FrameView::repaintSlowRepaintObjects): (WebCore::FrameView::setViewportConstrainedObjectsNeedLayout): (WebCore::FrameView::updateOverflowStatus): (WebCore::FrameView::updateScrollCorner): (WebCore::FrameView::paintContents): (WebCore::FrameView::convertFromRenderer): (WebCore::FrameView::convertToRenderer): * page/FrameView.h: * page/PageSerializer.cpp: (WebCore::PageSerializer::addImageToResources): * page/PageSerializer.h: * page/animation/AnimationBase.cpp: (WebCore::AnimationBase::AnimationBase): (WebCore::AnimationBase::updateStateMachine): * page/animation/AnimationBase.h: (WebCore::AnimationBase::renderer): * page/animation/AnimationController.cpp: (WebCore::AnimationControllerPrivate::ensureCompositeAnimation): (WebCore::AnimationControllerPrivate::clear): (WebCore::AnimationControllerPrivate::updateAnimations): (WebCore::AnimationControllerPrivate::updateAnimationTimerForRenderer): (WebCore::AnimationControllerPrivate::isRunningAnimationOnRenderer): (WebCore::AnimationControllerPrivate::isRunningAcceleratedAnimationOnRenderer): (WebCore::AnimationControllerPrivate::suspendAnimationsForDocument): (WebCore::AnimationControllerPrivate::resumeAnimationsForDocument): (WebCore::AnimationControllerPrivate::pauseAnimationAtTime): (WebCore::AnimationControllerPrivate::pauseTransitionAtTime): (WebCore::AnimationControllerPrivate::getAnimatedStyleForRenderer): (WebCore::AnimationControllerPrivate::numberOfActiveAnimations): (WebCore::AnimationController::cancelAnimations): (WebCore::AnimationController::updateAnimations): (WebCore::AnimationController::getAnimatedStyleForRenderer): (WebCore::AnimationController::notifyAnimationStarted): (WebCore::AnimationController::pauseAnimationAtTime): (WebCore::AnimationController::pauseTransitionAtTime): (WebCore::AnimationController::isRunningAnimationOnRenderer): (WebCore::AnimationController::isRunningAcceleratedAnimationOnRenderer): * page/animation/AnimationController.h: * page/animation/AnimationControllerPrivate.h: * page/animation/CSSPropertyAnimation.cpp: (WebCore::crossfadeBlend): * page/animation/CompositeAnimation.cpp: (WebCore::CompositeAnimation::updateTransitions): (WebCore::CompositeAnimation::updateKeyframeAnimations): (WebCore::CompositeAnimation::animate): * page/animation/CompositeAnimation.h: * page/animation/ImplicitAnimation.cpp: (WebCore::ImplicitAnimation::ImplicitAnimation): (WebCore::ImplicitAnimation::animate): (WebCore::ImplicitAnimation::pauseAnimation): (WebCore::ImplicitAnimation::sendTransitionEvent): * page/animation/ImplicitAnimation.h: (WebCore::ImplicitAnimation::create): * page/animation/KeyframeAnimation.cpp: (WebCore::KeyframeAnimation::KeyframeAnimation): (WebCore::KeyframeAnimation::animate): (WebCore::KeyframeAnimation::pauseAnimation): (WebCore::KeyframeAnimation::endAnimation): (WebCore::KeyframeAnimation::sendAnimationEvent): * page/animation/KeyframeAnimation.h: * page/mac/EventHandlerMac.mm: (WebCore::EventHandler::passWidgetMouseDownEventToWidget): (WebCore::EventHandler::passSubframeEventToSubframe): * page/mac/FrameSnapshottingMac.mm: (WebCore::snapshotDragImage): * platform/graphics/mac/MediaPlayerPrivateQTKit.mm: (WebCore::MediaPlayerPrivateQTKit::paint): * rendering/CounterNode.cpp: (WebCore::CounterNode::CounterNode): (WebCore::CounterNode::create): * rendering/CounterNode.h: (WebCore::CounterNode::owner): * rendering/FilterEffectRenderer.cpp: (WebCore::FilterEffectRenderer::buildReferenceFilter): (WebCore::FilterEffectRenderer::build): * rendering/FilterEffectRenderer.h: * rendering/HitTestResult.cpp: (WebCore::HitTestResult::spellingToolTip): (WebCore::HitTestResult::title): (WebCore::HitTestResult::innerTextIfTruncated): (WebCore::HitTestResult::image): * rendering/LayoutRepainter.cpp: (WebCore::LayoutRepainter::LayoutRepainter): * rendering/LayoutRepainter.h: * rendering/LayoutState.h: (WebCore::LayoutState::LayoutState): * rendering/LineWidth.h: * rendering/LogicalSelectionOffsetCaches.h: (WebCore::isContainingBlockCandidateForAbsolutelyPositionedObject): (WebCore::isNonRenderBlockInline): (WebCore::containingBlockForFixedPosition): (WebCore::containingBlockForAbsolutePosition): (WebCore::containingBlockForObjectInFlow): (WebCore::LogicalSelectionOffsetCaches::LogicalSelectionOffsetCaches): * rendering/PaintInfo.h: (WebCore::PaintInfo::PaintInfo): (WebCore::PaintInfo::updateSubtreePaintRootForChildren): * rendering/RenderBox.cpp: (WebCore::RenderBox::paintFillLayers): (WebCore::RenderBox::paintFillLayer): * rendering/RenderBox.h: * rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::paintFillLayerExtended): (WebCore::RenderBoxModelObject::calculateBackgroundImageGeometry): * rendering/RenderBoxModelObject.h: * rendering/RenderCounter.cpp: (WebCore::nextInPreOrder): (WebCore::planCounter): (WebCore::makeCounterNode): (WebCore::RenderCounter::originalText): * rendering/RenderElement.cpp: (WebCore::RenderElement::~RenderElement): (WebCore::RenderElement::insertChildInternal): (WebCore::RenderElement::removeChildInternal): (WebCore::RenderElement::willBeDestroyed): (WebCore::RenderElement::rendererForRootBackground): * rendering/RenderImageResource.cpp: (WebCore::RenderImageResource::initialize): * rendering/RenderImageResource.h: * rendering/RenderImageResourceStyleImage.cpp: (WebCore::RenderImageResourceStyleImage::initialize): * rendering/RenderImageResourceStyleImage.h: (WebCore::RenderImageResourceStyleImage::create): * rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::shouldPropagateCompositingToEnclosingFrame): (WebCore::RenderLayerCompositor::requiresCompositingLayer): (WebCore::RenderLayerCompositor::canBeComposited): (WebCore::RenderLayerCompositor::requiresOwnBackingStore): (WebCore::RenderLayerCompositor::reasonsForCompositing): (WebCore::RenderLayerCompositor::requiresCompositingForTransform): (WebCore::RenderLayerCompositor::requiresCompositingForVideo): (WebCore::RenderLayerCompositor::requiresCompositingForCanvas): (WebCore::RenderLayerCompositor::requiresCompositingForPlugin): (WebCore::RenderLayerCompositor::requiresCompositingForFrame): (WebCore::RenderLayerCompositor::requiresCompositingForAnimation): (WebCore::RenderLayerCompositor::requiresCompositingForIndirectReason): (WebCore::RenderLayerCompositor::requiresCompositingForFilters): (WebCore::RenderLayerCompositor::requiresCompositingForBlending): (WebCore::RenderLayerCompositor::requiresCompositingForPosition): (WebCore::RenderLayerCompositor::isRunningAcceleratedTransformAnimation): * rendering/RenderLayerCompositor.h: * rendering/RenderObject.cpp: (WebCore::RenderObject::containingBlock): (WebCore::mustRepaintFillLayers): (WebCore::RenderObject::borderImageIsLoadedAndCanBeRendered): (WebCore::RenderObject::willBeDestroyed): * rendering/RenderScrollbarPart.cpp: (WebCore::RenderScrollbarPart::rendererOwningScrollbar): * rendering/RenderScrollbarPart.h: * rendering/RenderTableCell.cpp: (WebCore::RenderTableCell::paintBackgroundsBehindCell): * rendering/RenderTableCell.h: * rendering/RenderView.cpp: (WebCore::RenderView::RenderView): * rendering/style/FillLayer.cpp: (WebCore::FillLayer::hasOpaqueImage): * rendering/style/FillLayer.h: * rendering/style/KeyframeList.h: (WebCore::KeyframeList::KeyframeList): * rendering/style/StyleCachedImage.cpp: (WebCore::StyleCachedImage::imageSize): (WebCore::StyleCachedImage::computeIntrinsicDimensions): (WebCore::StyleCachedImage::setContainerSizeForRenderer): (WebCore::StyleCachedImage::addClient): (WebCore::StyleCachedImage::removeClient): (WebCore::StyleCachedImage::image): (WebCore::StyleCachedImage::knownToBeOpaque): * rendering/style/StyleCachedImage.h: * rendering/style/StyleCachedImageSet.cpp: (WebCore::StyleCachedImageSet::imageSize): (WebCore::StyleCachedImageSet::computeIntrinsicDimensions): (WebCore::StyleCachedImageSet::setContainerSizeForRenderer): (WebCore::StyleCachedImageSet::addClient): (WebCore::StyleCachedImageSet::removeClient): (WebCore::StyleCachedImageSet::image): (WebCore::StyleCachedImageSet::knownToBeOpaque): * rendering/style/StyleCachedImageSet.h: * rendering/style/StyleGeneratedImage.cpp: (WebCore::StyleGeneratedImage::imageSize): (WebCore::StyleGeneratedImage::computeIntrinsicDimensions): (WebCore::StyleGeneratedImage::addClient): (WebCore::StyleGeneratedImage::removeClient): (WebCore::StyleGeneratedImage::image): (WebCore::StyleGeneratedImage::knownToBeOpaque): * rendering/style/StyleGeneratedImage.h: * rendering/style/StyleImage.h: (WebCore::StyleImage::imagesEquivalent): * rendering/style/StylePendingImage.h: (WebCore::StylePendingImage::cssImageValue): (WebCore::StylePendingImage::cssImageGeneratorValue): (WebCore::StylePendingImage::cssCursorImageValue): (WebCore::StylePendingImage::cssImageSetValue): (WebCore::StylePendingImage::computeIntrinsicDimensions): * testing/Internals.cpp: (WebCore::Internals::boundingBox): (WebCore::Internals::isSelectPopupVisible): (WebCore::Internals::isPluginUnavailabilityIndicatorObscured): Use RenderElement instead of RenderObject where it was easy to do so. For local variables holding the return value of renderer() functions, use auto instead, so the most-specific possible type will be used, without having to figure out what that is in each case. Also use some more OVERRIDE and FINAL and use nullptr instead of 0. And replace some cryptic short local variable names with words. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156622 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
akling@apple.com authored
<https://webkit.org/b/122079> Reviewed by Geoffrey Garen. ArrayPrototype doesn't need the global object for anything during construction, so reduce the amount of loads by just passing the VM. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156621 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
akling@apple.com authored
<https://webkit.org/b/122077> Reviewed by Sam Weinig. None of the simple builtins need the ExecState for anything during their construction, so reduce the amount of loads by just passing the VM around instead. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156620 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
pdr@google.com authored
https://bugs.webkit.org/show_bug.cgi?id=122070 Reviewed by Andreas Kling. Source/WebCore: This patch fixes a regression from wkrev.com/150259 where pseudo content with borders or outlines would fail to repaint if the color property changed. The root bug is that border-color and outline-color properties use 'color' if no explicit border-color or outline-color are given, and changing color should repaint borders and outlines even if the text content is empty. Relevant spec sections: border: http://www.w3.org/TR/CSS1/#border-color outline: http://www.w3.org/TR/CSS2/ui.html#propdef-outline-color This patch also renames StyleDifferenceRepaintIfText to StyleDifferenceRepaintIfTextOrBorderOrOutline and updates the relevant functions. Test: fast/repaint/hover-pseudo-borders.html * rendering/RenderElement.cpp: (WebCore::RenderElement::hasImmediateNonWhitespaceTextChildOrBorderOrOutline): This function has been renamed to reflect that it returns true for borders or outlines as well. (WebCore::RenderElement::shouldRepaintForStyleDifference): * rendering/RenderElement.h: * rendering/style/RenderStyle.cpp: (WebCore::RenderStyle::changeRequiresRepaintIfTextOrBorderOrOutline): (WebCore::RenderStyle::diff): * rendering/style/RenderStyle.h: * rendering/style/RenderStyleConstants.h: * rendering/svg/SVGResourcesCache.cpp: (WebCore::SVGResourcesCache::clientStyleChanged): These have also been renamed to reflect the new borders and outlines check. LayoutTests: * fast/repaint/hover-pseudo-borders.html: Added. * platform/mac/fast/repaint/hover-pseudo-borders-expected.png: Added. * platform/mac/fast/repaint/hover-pseudo-borders-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156619 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
antti@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=122076 Reviewed by Andreas Kling. More RenderElement, const, &, etc. * dom/Position.cpp: (WebCore::Position::hasRenderedNonAnonymousDescendantsWithHeight): * rendering/InlineFlowBox.cpp: (WebCore::isLastChildForRenderer): (WebCore::isAncestorAndWithinBlock): (WebCore::InlineFlowBox::determineSpacingForFlowBoxes): (WebCore::InlineFlowBox::nodeAtPoint): * rendering/InlineIterator.h: (WebCore::InlineIterator::InlineIterator): (WebCore::InlineIterator::root): (WebCore::isEmptyInline): (WebCore::bidiNextShared): (WebCore::bidiNextSkippingEmptyInlines): (WebCore::bidiNextIncludingEmptyInlines): (WebCore::bidiFirstSkippingEmptyInlines): * rendering/RenderBlockLineLayout.cpp: (WebCore::inlineLogicalWidth): (WebCore::alwaysRequiresLineBox): (WebCore::requiresLineBox): (WebCore::canBreakAtThisPosition): (WebCore::LineBreaker::nextSegmentBreak): * rendering/shapes/ShapeInsideInfo.h: (WebCore::LineSegmentIterator::LineSegmentIterator): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156618 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=122072 Patch by Nadav Rotem <nrotem@apple.com> on 2013-09-29 Reviewed by Geoffrey Garen. * assembler/MacroAssemblerX86Common.h: (JSC::MacroAssemblerX86Common::getUnusedRegister): (JSC::MacroAssemblerX86Common::store8): (JSC::MacroAssemblerX86Common::store16): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156617 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-