Timeline
Jan 25, 2011:
- 11:58 PM Changeset in webkit [76676] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Yuzo Fujishima <yuzo@google.com>
Unreviewed attempt to fix compilation error for Chromium Clang.
- platform/graphics/mac/ComplexTextController.cpp: (WebCore::ComplexTextController::advance):
- 11:17 PM Changeset in webkit [76675] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change
Mark fast/text/offsetForPosition-complex-fallback.html as failing for WIN and LINUX.
- platform/chromium/test_expectations.txt:
- 10:08 PM Changeset in webkit [76674] by
-
- 6 edits2 adds in trunk
2011-01-25 Ned Holbrook <nholbrook@apple.com>
Reviewed by Dan Bernstein.
ComplexTextController incorrectly conflates string length and range of indexes
https://bugs.webkit.org/show_bug.cgi?id=52760
- fast/text/offsetForPosition-complex-fallback-expected.txt: Added.
- fast/text/offsetForPosition-complex-fallback.html: Added.
2011-01-25 Ned Holbrook <nholbrook@apple.com>
Reviewed by Dan Bernstein.
ComplexTextController incorrectly conflates string length and range of indexes
https://bugs.webkit.org/show_bug.cgi?id=52760
Test: fast/text/offsetForPosition-complex-fallback.html
- platform/graphics/mac/ComplexTextController.cpp: (WebCore::ComplexTextController::offsetForPosition): (WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun): (WebCore::ComplexTextController::ComplexTextRun::setIsNonMonotonic): (WebCore::ComplexTextController::advance):
- platform/graphics/mac/ComplexTextController.h: (WebCore::ComplexTextController::ComplexTextRun::create): (WebCore::ComplexTextController::ComplexTextRun::indexEnd):
- platform/graphics/mac/ComplexTextControllerATSUI.cpp: (WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun):
- platform/graphics/mac/ComplexTextControllerCoreText.cpp: (WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun): (WebCore::ComplexTextController::collectComplexTextRunsForCharactersCoreText):
- 9:41 PM Changeset in webkit [76673] by
-
- 2 edits in trunk/LayoutTests
Make this test a bit more robust agains different scrollbar widths.
- fast/overflow/overflow-rtl-vertical-origin.html:
- 9:15 PM Changeset in webkit [76672] by
-
- 2 edits in tags/Safari-534.16.2/Source/WebKit/win
Merge r76671.
- 9:13 PM Changeset in webkit [76671] by
-
- 2 edits in trunk/Source/WebKit/win
Windows production build fix.
Build correct configuration of Interfaces for Debug_All.
- WebKit.vcproj/WebKit.submit.sln:
- 9:04 PM Changeset in webkit [76670] by
-
- 2 edits in tags/Safari-534.16.2/Source/WebCore
Merge r76665.
- 9:02 PM Changeset in webkit [76669] by
-
- 3 edits2 adds in trunk
Scrollbars don't work correctly for top-to-bottom text in an overflow: scroll area
https://bugs.webkit.org/show_bug.cgi?id=53048
Reviewed by David Hyatt.
Source/WebCore:
Test: fast/overflow/overflow-rtl-vertical-origin.html
- rendering/RenderLayer.cpp:
(WebCore::RenderLayer::scrollPosition):
(WebCore::RenderLayer::updateScrollInfoAfterLayout):
Take the scroll origin into account when calculating scrollbars in more places.
LayoutTests:
- fast/overflow/overflow-rtl-vertical-origin-expected.txt: Added.
- fast/overflow/overflow-rtl-vertical-origin.html: Added.
- 8:50 PM Changeset in webkit [76668] by
-
- 7 edits3 adds in trunk
2011-01-25 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
- platform/chromium-win/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.checksum: Added.
- platform/chromium-win/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.png: Added.
- platform/chromium-win/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: Added.
- platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.checksum:
- platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.png:
- platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.txt:
- platform/chromium/test_expectations.txt:
2011-01-25 Kent Tamura <tkent@chromium.org>
Unreviewed trivial change.
- DEPS: Roll to r72581 to have a webkit_support fix.
- 8:47 PM Changeset in webkit [76667] by
-
- 5 edits in tags/Safari-534.16.2/Source
Versioning.
- 8:40 PM Changeset in webkit [76666] by
-
- 1 copy in tags/Safari-534.16.2
New tag.
- 8:39 PM Changeset in webkit [76665] by
-
- 2 edits in trunk/Source/WebCore
Windows production build fix.
Use correct configuration-specific path in makefile.
- WebCore.vcproj/WebCore.make:
- 8:18 PM Changeset in webkit [76664] by
-
- 10 edits2 adds in trunk
Radio button group state is not restored correctly
https://bugs.webkit.org/show_bug.cgi?id=50442
Reviewed by Dimitri Glazkov.
Source/WebCore:
Fixes a bug that radio button states are not restored correctly in
a case that non-first radio button in a group is checked.
If "checked" attribute is present, the radio button is checked and
other radio buttons in the group are unchecked. This behavior
disturbs form state restoring. This patch changes this behavior so
that the "checked" attribute handling is delayed after form state
restoring.
Test: fast/forms/state-restore-radio-group.html
- html/HTMLFormControlElement.h: Make finishParsingChildren() protected so that HTMLInpuElement can call it.
- html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::HTMLInputElement):
- Add createdByParser parameter.
- Initialize m_stateRestored and m_parsingInProgress.
(WebCore::HTMLInputElement::create): Sync with the constructor.
(WebCore::HTMLInputElement::restoreFormControlState):
Set m_stateRestored in order to refer it in finishParsingChildren().
(WebCore::HTMLInputElement::parseMappedAttribute):
Don't call setChecked() during parsing. Move setNeedsValidityCheck()
to setChecked().
(WebCore::HTMLInputElement::finishParsingChildren):
Call setChecked() if form state is not restored.
(WebCore::HTMLInputElement::setChecked):
Move setNeedsValidityCheck() from parseMappedAttribute() because
finishParsingChildren() also needs to call setNeedsValidityCheck().
- html/HTMLInputElement.h:
- Remove the default value of HTMLFormElement* of the HTMLInputElement constructor, and add createdByParser parameter.
- Introduce m_parsingInProgress and m_stateRestored.
- html/HTMLIsIndexElement.cpp:
(WebCore::HTMLIsIndexElement::HTMLIsIndexElement):
Sync with the HTMLInputElement constructor change.
- html/HTMLTagNames.in: Add constructorNeedsCreatedByParser flag.
- rendering/MediaControlElements.cpp:
(WebCore::MediaControlInputElement::MediaControlInputElement):
Sync with the HTMLInputElement constructor change.
- rendering/ShadowElement.cpp:
(WebCore::ShadowInputElement::ShadowInputElement): ditto.
- rendering/ShadowElement.h:
(WebCore::ShadowElement::ShadowElement): ditto.
LayoutTests:
- fast/forms/state-restore-radio-group-expected.txt: Added.
- fast/forms/state-restore-radio-group.html: Added.
- 8:00 PM Changeset in webkit [76663] by
-
- 10 edits in trunk
HTMLFormElement::checkValidity() returns incorrect result if 'invalid' events are canceled.
https://bugs.webkit.org/show_bug.cgi?id=52565
Reviewed by Dimitri Glazkov.
Source/WebCore:
- html/HTMLFormElement.cpp:
(WebCore::HTMLFormElement::validateInteractively):
Check checkInvalidControlsAndCollectUnhandled() result instead of
checking emptiness of unhandled invalid controls list.
(WebCore::HTMLFormElement::checkValidity): ditto.
(WebCore::HTMLFormElement::checkInvalidControlsAndCollectUnhandled):
Renamed from collectUnhandledInvalidControls().
Returns true if there is any invalid control regardless of event canceling.
- html/HTMLFormElement.h: Rename collectUnhandledInvalidControls() to checkInvalidControlsAndCollectUnhandled().
LayoutTests:
Fix tests and results for the behavior change.
- fast/forms/checkValidity-cancel-expected.txt:
- fast/forms/checkValidity-handler-updates-dom-expected.txt:
- fast/forms/interactive-validation-cancel-expected.txt:
- fast/forms/interactive-validation-cancel.html:
- fast/forms/script-tests/checkValidity-cancel.js:
- fast/forms/script-tests/checkValidity-handler-updates-dom.js:
- 7:50 PM Changeset in webkit [76662] by
-
- 10 edits in trunk
2011-01-25 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Range and number inputs should reject increment and decrement by
keyboard or mouse wheel if they are disabled or read-only
https://bugs.webkit.org/show_bug.cgi?id=53151
Add checks for 'disabled' and 'readOnly'.
- fast/forms/input-number-keyoperation-expected.txt:
- fast/forms/input-number-wheel-expected.txt:
- fast/forms/range-keyoperation-expected.txt:
- fast/forms/range-keyoperation.html:
- fast/forms/script-tests/input-number-keyoperation.js:
- fast/forms/script-tests/input-number-wheel.js:
2011-01-25 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Range and number inputs should reject increment and decrement by
keyboard or mouse wheel if they are disabled or read-only
https://bugs.webkit.org/show_bug.cgi?id=53151
- html/RangeInputType.cpp: (WebCore::RangeInputType::handleKeydownEvent): Check disabled() and readOnly().
- html/TextFieldInputType.cpp: (WebCore::TextFieldInputType::handleKeydownEventForSpinButton): ditto. (WebCore::TextFieldInputType::handleWheelEventForSpinButton): ditto.
- 7:44 PM Changeset in webkit [76661] by
-
- 17 edits2 adds in trunk/Source/WebCore
API to support localized numbers for <input type=number>
https://bugs.webkit.org/show_bug.cgi?id=45730
Reviewed by Dimitri Glazkov.
Introduce platform/text/LocalizedNumber.h, and
LocalizedNumberNone.cpp, which is an empty implementation of the
functions in LocalizedNumber.h. We use LocalizedNumberNone.cpp in
all platforms for now.
A string in a type=number field is parsed as a localized number
first. If the parsing fails, it is parsed as the HTML5 number.
We introduce HTMLInputElement::visibleValue(). It represents a value
which should be drawn by a renderer. HTMLInputElement::value() always
returns a number formatted for HTML5, and visibleValue() may return a
localized number.
No new tests because this doesn't change any behavior.
- Android.mk: Add LocalizedNumber.h and/or LocalizedNumberNone.cpp.
- CMakeLists.txt: ditto.
- GNUmakefile.am: ditto.
- WebCore.gypi: ditto.
- WebCore.pro: ditto.
- WebCore.vcproj/WebCore.vcproj: ditto.
- WebCore.xcodeproj/project.pbxproj: ditto.
- dom/InputElement.h: Add visibleValue().
- html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::visibleValue): Added. Just call InputType::visibleValue().
- html/HTMLInputElement.h: Declare visibleValue().
- html/InputType.cpp:
(WebCore::InputType::visibleValue): Add the default implementation of
visibleValue(), which returns HTMLInputElement::value().
- html/InputType.h: Add declarations.
- html/NumberInputType.cpp:
(WebCore::isHTMLNumberCharacter): Renamed from isNumberCharacter().
(WebCore::isNumberCharacter): Calls isLocalizedNumberCharacter() and isHTMLNumberCharacter().
(WebCore::NumberInputType::visibleValue):
Returns a localized number string produced by formatLocalizedNumber().
(WebCore::NumberInputType::isAcceptableValue): Calls parseLocalizedNumber().
(WebCore::NumberInputType::sanitizeValue): Calls parseLocalizedNumber().
- html/NumberInputType.h: Add declarations.
- platform/text/LocalizedNumber.h: Added.
- platform/text/LocalizedNumberNone.cpp: Added.
(WebCore::parseLocalizedNumber):
(WebCore::formatLocalizedNumber):
(WebCore::isLocalizedNumberCharacter):
- rendering/RenderTextControlSingleLine.cpp:
(WebCore::RenderTextControlSingleLine::updateFromElement):
Calls InputElement::visibleValue() instead of value().
- wml/WMLInputElement.h:
(WebCore::WMLInputElement::visibleValue): Added. It just calls value().
- 7:29 PM Changeset in webkit [76660] by
-
- 3 edits1 add in trunk/Source/WebCore
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=53143
Add IntRectHash
- WebCore.xcodeproj/project.pbxproj:
- platform/graphics/IntRectHash.h: Added.
- platform/graphics/IntSizeHash.h: Don't do "using WebCore::IntSize"!
- 7:19 PM Changeset in webkit [76659] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Ilya Sherman <isherman@chromium.org>
Reviewed by Ryosuke Niwa.
Remove trailing whitespace in HTMLInputElement.cpp
https://bugs.webkit.org/show_bug.cgi?id=53152
- html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::updateCheckedRadioButtons): (WebCore::HTMLInputElement::applyStep): (WebCore::HTMLInputElement::updateFocusAppearance): (WebCore::HTMLInputElement::mapToEntry): (WebCore::HTMLInputElement::setAutofilled): (WebCore::HTMLInputElement::willMoveToNewOwnerDocument): (WebCore::HTMLInputElement::didMoveToNewOwnerDocument):
- 6:13 PM Changeset in webkit [76658] by
-
- 3 edits in trunk/Source/WebCore
2011-01-25 Mike Reed <reed@google.com>
Reviewed by James Robinson.
DrawingBufer::reset() today checks if the new size is the same as its
m_size, and if so, returns immediately. This does not match the
semantics of <canvas>, which wants to clear its contents anytime the
size is specified.
https://bugs.webkit.org/show_bug.cgi?id=53149
Test: Covered by existing <canvas> tests using gpu.
- platform/graphics/chromium/DrawingBufferChromium.cpp: (WebCore::DrawingBuffer::DrawingBuffer):
- platform/graphics/gpu/DrawingBuffer.cpp: (WebCore::DrawingBuffer::reset):
- 5:54 PM Changeset in webkit [76657] by
-
- 10 edits in trunk/Source/WebKit2
WK2 leaks when a page is closed
https://bugs.webkit.org/show_bug.cgi?id=53100
Reviewed by Darin Adler.
Allow the WKView a chance to clean up on a page close. In this case,
cleaning up means removing the references the accessibility token has
to the window.
- UIProcess/API/mac/PageClientImpl.h:
- UIProcess/API/mac/PageClientImpl.mm:
(WebKit::PageClientImpl::pageClosed):
- UIProcess/API/mac/WKView.mm:
(-[WKView _setRemoteAccessibilityWindow:]):
(-[WKView _setAccessibilityChildToken:]):
(-[WKView _processDidCrash]):
(-[WKView _pageClosed]):
- UIProcess/API/mac/WKViewInternal.h:
- UIProcess/API/qt/qwkpage_p.h:
(QWKPagePrivate::pageClosed):
- UIProcess/PageClient.h:
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::close):
- UIProcess/win/WebView.cpp:
(WebKit::WebView::pageClosed):
- UIProcess/win/WebView.h:
- 5:17 PM Changeset in webkit [76656] by
-
- 3 edits2 moves in trunk
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Adam Barth.
Move main CMakeLists.txt into Source directory
https://bugs.webkit.org/show_bug.cgi?id=52888
- CMakeLists.txt: Removed.
- Source/CMakeLists.txt: Copied from CMakeLists.txt.
- Source/cmakeconfig.h.cmake: Copied from cmakeconfig.h.cmake.
- cmakeconfig.h.cmake: Removed.
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Adam Barth.
Move main CMakeLists.txt into Source directory
https://bugs.webkit.org/show_bug.cgi?id=52888
- Scripts/webkitdirs.pm:
- 5:07 PM CSS21Results edited by
- (diff)
- 4:50 PM Changeset in webkit [76655] by
-
- 2 edits in trunk/Tools
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Eric Seidel.
Improve label text in submit-to-ews
https://bugs.webkit.org/show_bug.cgi?id=53130
- QueueStatusServer/templates/submittoews.html:
- 4:39 PM CSS21Results edited by
- (diff)
- 4:36 PM Changeset in webkit [76654] by
-
- 5 edits in trunk/Source/WebKit2
2011-01-25 Chris Marrin <cmarrin@apple.com>
Reviewed by Adam Roben.
Expose WebGL flag set/get in WK2
https://bugs.webkit.org/show_bug.cgi?id=53096
- Shared/WebPreferencesStore.h:
- UIProcess/API/C/WKPreferences.cpp: (WKPreferencesSetWebGLEnabled): (WKPreferencesGetWebGLEnabled):
- UIProcess/API/C/WKPreferencesPrivate.h:
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::updatePreferences):
- 4:23 PM CSS21Results edited by
- (diff)
- 4:18 PM Changeset in webkit [76653] by
-
- 5 edits1 add in trunk/Source/WebKit2
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
Add and implement LayerTreeHost::scheduleLayerFlush
https://bugs.webkit.org/show_bug.cgi?id=53135
- WebKit2.xcodeproj/project.pbxproj: Add LayerTreeHostMac.mm.
- WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::scheduleCompositingLayerSync): Call LayerTreeHost::scheduleLayerFlush.
- WebProcess/WebPage/LayerTreeHost.cpp: (WebKit::LayerTreeHost::~LayerTreeHost): Call platformInvalidate().
(WebKit::LayerTreeHost::flushPendingLayerChanges):
Rename from syncCompositingLayers.
- WebProcess/WebPage/mac/LayerTreeHostMac.mm: Added. (WebKit::LayerTreeHost::scheduleLayerFlush): Create a run loop observer if needed. This code is copied from LayerBackedDrawingAreaMac.mm
(WebKit::LayerTreeHost::platformInvalidate):
Invalidate the run loop observer.
(WebKit::LayerTreeHost::flushPendingLayerChangesRunLoopObserverCallback):
Call flushPendingChanges() and remove the run loop observer if it succeeded.
- 4:10 PM Changeset in webkit [76652] by
-
- 6 edits2 adds in trunk
2011-01-25 Cris Neckar <cdn@chromium.org>
Reviewed by Adam Barth.
Test for crash when a window's location changes before creating an object URL.
https://bugs.webkit.org/show_bug.cgi?id=53038
- fast/dom/window-domurl-crash-expected.txt: Added.
- fast/dom/window-domurl-crash.html: Added.
2011-01-25 Cris Neckar <cdn@chromium.org>
Reviewed by Adam Barth.
Add a hashset of DOMURLs to ScriptExecutionContext to track back references.
https://bugs.webkit.org/show_bug.cgi?id=53038
Test: fast/dom/window-domurl-crash.html
- dom/ScriptExecutionContext.cpp: (WebCore::ScriptExecutionContext::~ScriptExecutionContext): (WebCore::ScriptExecutionContext::createdDomUrl): (WebCore::ScriptExecutionContext::destroyedDomUrl):
- dom/ScriptExecutionContext.h: (WebCore::ScriptExecutionContext::domUrls):
- html/DOMURL.cpp: (WebCore::DOMURL::DOMURL): (WebCore::DOMURL::~DOMURL): (WebCore::DOMURL::contextDestroyed):
- html/DOMURL.h: (WebCore::DOMURL::scriptExecutionContext):
- 4:07 PM CSS21Results edited by
- (diff)
- 4:04 PM CSS21Results edited by
- (diff)
- 3:59 PM CSS21Results edited by
- (diff)
- 3:47 PM Changeset in webkit [76651] by
-
- 2 edits in tags/Safari-534.16.1/Source/JavaScriptCore
Merge r76650.
- 3:46 PM Changeset in webkit [76650] by
-
- 2 edits in trunk/Source/JavaScriptCore
Windows Production build fix
Reviewed by Steve Falkenburg.
- JavaScriptCore.vcproj/JavaScriptCore.make: Set BUILDSTYLE to Release_PGO at the very start
of the file so that ConfigurationBuildDir takes that into account. Also set it the right way
(by redefining the macro) rather than the wrong way (by modifying the environment variable).
- 3:40 PM Changeset in webkit [76649] by
-
- 4 edits2 adds in trunk/Source/WebKit2
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Simon Fraser.
Add LayerTreeHost class
https://bugs.webkit.org/show_bug.cgi?id=53132
- WebKit2.xcodeproj/project.pbxproj: Add LayerTreeHost files.
- WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::DrawingAreaImpl): Initialize m_layerTreeHost.
(WebKit::DrawingAreaImpl::setRootCompositingLayer):
Call the m_layerTreeHost.
- WebProcess/WebPage/LayerTreeHost.cpp: Added. (WebKit::LayerTreeHost::attachRootCompositingLayer): (WebKit::LayerTreeHost::detachRootCompositingLayer): Add stubbed out functions.
(WebKit::LayerTreeHost::syncCompositingLayers):
Sync the compositing layers in the main frame.
- WebProcess/WebPage/LayerTreeHost.h: Added.
- 3:31 PM Changeset in webkit [76648] by
-
- 17 edits in trunk/Source/WebCore
https://bugs.webkit.org/show_bug.cgi?id=52983
Eliminate m_tagHistory pointer from CSSSelector
Reviewed by Darin Adler.
Keep the component selectors in the array in CSSSelectorList instead
of maintaining a linked list between them. This allows eliminating
m_tagHistory pointer, shrinking CSSSelector by 25% (selection performance
seems to improve some too due to better locality).
- WebCore.xcodeproj/project.pbxproj:
Make CSSSelector.h a private header.
- css/CSSGrammar.y:
Use CSSParserSelector during parsing to keep the tag history in
a linked list. This is flattened to an array after parsing.
Use accessors for setting selector values.
Use OwnPtr in selector vector.
- css/CSSPageRule.cpp:
(WebCore::CSSPageRule::CSSPageRule):
- css/CSSPageRule.h:
(WebCore::CSSPageRule::create):
Simplify.
- css/CSSParser.cpp:
(WebCore::CSSParser::~CSSParser):
(WebCore::CSSParser::createFloatingSelector):
(WebCore::CSSParser::sinkFloatingSelector):
(WebCore::CSSParser::createStyleRule):
(WebCore::CSSParser::updateSpecifiersWithElementName):
(WebCore::CSSParser::createPageRule):
- css/CSSParser.h:
(WebCore::CSSParser::reusableSelectorVector):
CSSSelector -> CSSParserSelector.
Use OwnPtr in selector vector.
- css/CSSParserValues.cpp:
(WebCore::CSSParserSelector::CSSParserSelector):
(WebCore::CSSParserSelector::~CSSParserSelector):
- css/CSSParserValues.h:
(WebCore::CSSParserSelector::releaseSelector):
(WebCore::CSSParserSelector::setTag):
(WebCore::CSSParserSelector::setValue):
(WebCore::CSSParserSelector::setAttribute):
(WebCore::CSSParserSelector::setArgument):
(WebCore::CSSParserSelector::setSimpleSelector):
(WebCore::CSSParserSelector::setMatch):
(WebCore::CSSParserSelector::setRelation):
(WebCore::CSSParserSelector::setForPage):
(WebCore::CSSParserSelector::pseudoType):
(WebCore::CSSParserSelector::isUnknownPseudoElement):
(WebCore::CSSParserSelector::isSimple):
(WebCore::CSSParserSelector::tagHistory):
(WebCore::CSSParserSelector::setTagHistory):
Linked list used during parsing.
Avoid recursive destruction.
- css/CSSSelector.cpp:
(WebCore::CSSSelector::extractPseudoType):
(WebCore::CSSSelector::operator==):
(WebCore::CSSSelector::selectorText):
(WebCore::CSSSelector::setSimpleSelector):
- css/CSSSelector.h:
(WebCore::CSSSelector::CSSSelector):
(WebCore::CSSSelector::~CSSSelector):
(WebCore::CSSSelector::tagHistory):
(WebCore::CSSSelector::tag):
(WebCore::CSSSelector::value):
(WebCore::CSSSelector::setTag):
(WebCore::CSSSelector::isLastInTagHistory):
(WebCore::CSSSelector::setNotLastInTagHistory):
(WebCore::CSSSelector::RareData::RareData):
(WebCore::CSSSelector::RareData::~RareData):
(WebCore::CSSSelector::createRareData):
(WebCore::CSSSelector::setValue):
Remove m_tagHistory.
Keep m_value in the union with the rare data pointer instead.
Make m_value and m_tag private, implement accessors.
Add a new bit to indicate end of the tag history (multipart selector).
Eliminate complex destruction. Selectors are now deleted as an array or by a CSSParserSelector chain.
- css/CSSSelectorList.cpp:
(WebCore::CSSSelectorList::adoptSelectorVector):
Flatten everything to an array.
(WebCore::SelectorNeedsNamespaceResolutionFunctor::operator()):
- css/CSSSelectorList.h:
(WebCore::CSSSelectorList::hasOneSelector):
(WebCore::CSSSelectorList::next):
Skip over the subparts of multipart selectors to find the next selector.
- css/CSSStyleRule.h:
(WebCore::CSSStyleRule::adoptSelectorVector):
CSSSelector -> CSSParserSelector.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
(WebCore::CSSRuleSet::addRule):
(WebCore::collectIdsAndSiblingRulesFromList):
(WebCore::CSSStyleSelector::matchPageRulesForList):
- dom/Node.cpp:
(WebCore::Node::querySelector):
- dom/SelectorNodeList.cpp:
(WebCore::createSelectorNodeList):
Use accessors.
- 3:25 PM CSS21Results edited by
- (diff)
- 3:23 PM Changeset in webkit [76647] by
-
- 10 edits in tags/Safari-534.16.1/Source
Merge r76638.
- 3:20 PM Changeset in webkit [76646] by
-
- 3 edits in trunk/Tools
2011-01-25 Mansi Mithal <mansi.mithal@nokia.com>
Reviewed by Antonio Gomes.
QtTestBrowser should have a UI Settings to prevent loading images
https://bugs.webkit.org/show_bug.cgi?id=52409
Added a new action item named "DisableAutoLoadImages"
under the "Settings" menu
- QtTestBrowser/launcherwindow.cpp: (LauncherWindow::createChrome): (LauncherWindow::toggleAutoLoadImages):
- QtTestBrowser/launcherwindow.h:
- 3:08 PM Changeset in webkit [76645] by
-
- 2 edits in tags/Safari-534.16.1/Source/JavaScriptCore
Merge r76598.
- 3:07 PM Changeset in webkit [76644] by
-
- 5 edits5 adds in trunk
2011-01-25 James Simonsen <simonjam@chromium.org>
Reviewed by Tony Chang.
[Chromium] Support small caps in complex text on linux
https://bugs.webkit.org/show_bug.cgi?id=53051
- platform/chromium-linux/fast/text/atsui-multiple-renderers-expected.checksum: Added.
- platform/chromium-linux/fast/text/atsui-multiple-renderers-expected.png: Added.
- platform/chromium-linux/fast/text/atsui-multiple-renderers-expected.txt: Added.
- platform/chromium-linux/fast/text/atsui-small-caps-punctuation-size-expected.checksum: Added.
- platform/chromium-linux/fast/text/atsui-small-caps-punctuation-size-expected.png: Added.
- platform/chromium/test_expectations.txt: Re-enable 2 tests on linux.
2011-01-25 James Simonsen <simonjam@chromium.org>
Reviewed by Tony Chang.
[Chromium] Support small caps in complex text on linux
https://bugs.webkit.org/show_bug.cgi?id=53051
- platform/graphics/chromium/ComplexTextControllerLinux.cpp: (WebCore::ComplexTextController::nextScriptRun): Break runs at small caps boundaries. (WebCore::ComplexTextController::setupFontForScriptRun): Setup small caps font data if needed.
- platform/graphics/chromium/ComplexTextControllerLinux.h: Store small caps text in separate string.
- 3:02 PM Changeset in webkit [76643] by
-
- 8 edits in tags/Safari-534.16.1/Source
Merge r76546.
- 2:58 PM Applications using WebKit edited by
- added Kadu (diff)
- 2:52 PM Changeset in webkit [76642] by
-
- 10 edits in trunk/Tools
2011-01-25 Dirk Pranke <dpranke@chromium.org>
Reviewed by Tony Chang.
Minor bug fixes and cleanup for filesystem wrappers, port/* test
classes, test_expectations.py. This change adds "test-win" and
"test-mac" variants to the test port so that we can better test
rebaselining, and adds a MockUser() object for reuse in testing.
- Scripts/webkitpy/common/system/filesystem.py:
- Scripts/webkitpy/common/system/filesystem_mock.py:
- Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
- Scripts/webkitpy/layout_tests/port/factory.py:
- Scripts/webkitpy/layout_tests/port/base.py:
- Scripts/webkitpy/layout_tests/port/test.py:
- Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
- Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
- Scripts/webkitpy/tool/mocktool.py:
- 2:31 PM Changeset in webkit [76641] by
-
- 5 edits in tags/Safari-534.16.1/Source
Versioning.
- 2:23 PM Changeset in webkit [76640] by
-
- 2 edits in trunk/LayoutTests
Unreviewed build fix: add failing test to gtk/Skipped.
- platform/gtk/Skipped:
- 2:05 PM Changeset in webkit [76639] by
-
- 1 copy in tags/Safari-534.16.1
New tag.
- 1:49 PM Changeset in webkit [76638] by
-
- 10 edits in trunk/Source
Windows production build fix.
Use correct environment variable escaping
Rubber-stamped by Adam Roben.
Source/JavaScriptCore:
- JavaScriptCore.vcproj/JavaScriptCore.make:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGenerated.make:
Source/WebCore:
- WebCore.vcproj/WebCore.make:
Source/WebKit/win:
- WebKit.vcproj/WebKit.make:
Source/WebKit2:
- win/WebKit2.make:
- win/WebKit2Generated.make:
- 1:29 PM Changeset in webkit [76637] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Empty URLs are never display isolated
https://bugs.webkit.org/show_bug.cgi?id=53053
This check mirrors the check in the local case. There isn't a good way
to test this with a LayoutTest, but it is tested in Chromium (where
this registry is used).
- platform/SchemeRegistry.cpp: (WebCore::SchemeRegistry::shouldTreatURLSchemeAsDisplayIsolated):
- 1:14 PM Changeset in webkit [76636] by
-
- 5 edits in trunk/Source
2011-01-25 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Pipe a timestamp down into the PlatformWheelEvent for the Mac.
https://bugs.webkit.org/show_bug.cgi?id=53111
- platform/PlatformWheelEvent.h: (WebCore::PlatformWheelEvent::PlatformWheelEvent): (WebCore::PlatformWheelEvent::timestamp): Add timestamp member.
- platform/mac/WheelEventMac.mm: (WebCore::PlatformWheelEvent::PlatformWheelEvent): Initialize the timestamp from the event.
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Don't inform the UI process about compositing changes when using the new drawing area
https://bugs.webkit.org/show_bug.cgi?id=53120
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::changeAcceleratedCompositingMode): Return early if we're using the new drawing area.
(WebKit::WebPage::exitAcceleratedCompositingMode):
Call setRootCompositingLayer(0) so the drawing area knows when we leave accelerated compositing.
- 1:13 PM Changeset in webkit [76635] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-01-25 Oliver Hunt <oliver@apple.com>
Reviewed by Gavin Barraclough.
JSON.stringify processing time exponentially grows with size of object
https://bugs.webkit.org/show_bug.cgi?id=51922
Remove last use of reserveCapacity from JSON stringification, as it results
in appalling append behaviour when there are a large number of property names
and nothing else.
- runtime/JSONObject.cpp: (JSC::Stringifier::appendQuotedString):
- 1:11 PM Changeset in webkit [76634] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Don't inform the UI process about compositing changes when using the new drawing area
https://bugs.webkit.org/show_bug.cgi?id=53120
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::changeAcceleratedCompositingMode): Return early if we're using the new drawing area.
(WebKit::WebPage::exitAcceleratedCompositingMode):
Call setRootCompositingLayer(0) so the drawing area knows when we leave accelerated compositing.
- 1:08 PM Changeset in webkit [76633] by
-
- 5 edits8 deletes in trunk
2011-01-25 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76625.
http://trac.webkit.org/changeset/76625
https://bugs.webkit.org/show_bug.cgi?id=53119
"incorrect pixel test results" (Requested by rniwa on
#webkit).
- rendering/RenderBox.cpp: (WebCore::RenderBox::localCaretRect):
2011-01-25 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76625.
http://trac.webkit.org/changeset/76625
https://bugs.webkit.org/show_bug.cgi?id=53119
"incorrect pixel test results" (Requested by rniwa on
#webkit).
- editing/selection/caret-painting-after-paste-undo-rtl.html: Removed.
- editing/selection/caret-painting-after-paste-undo.html: Removed.
- platform/mac/editing/deleting/5408255-expected.checksum:
- platform/mac/editing/deleting/5408255-expected.png:
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.checksum: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.png: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.txt: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.checksum: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.png: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.txt: Removed.
- 1:05 PM Changeset in webkit [76632] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, debugger-scripts.html is failing on windows too.
- platform/chromium/test_expectations.txt:
- 1:03 PM Changeset in webkit [76631] by
-
- 2 edits2 adds in trunk/LayoutTests
[Chromium] Not reviewed, rebaseline for a test.
The difference is because V8 has different error messages.
- platform/chromium-mac/fast/js/js-continue-break-restrictions-expected.txt: Added.
- platform/chromium-win/fast/js/js-continue-break-restrictions-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 12:55 PM Changeset in webkit [76630] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 James Robinson <jamesr@chromium.org>
Remove = TEXT PASS lines for tests that consistently pass.
- platform/chromium/test_expectations.txt:
- 12:55 PM Changeset in webkit [76629] by
-
- 2 edits in trunk/Source/WebKit/wince
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Adam Roben.
[WINCE] Ensure layouted frame when painting
https://bugs.webkit.org/show_bug.cgi?id=53108
- WebView.cpp: (WebView::paint):
- 12:52 PM Changeset in webkit [76628] by
-
- 4 edits in trunk/LayoutTests
Unreviewed build fix: rollback untintentional changes in media expected results.
- media/video-source-moved-expected.txt:
- media/video-source-none-supported-expected.txt:
- LayoutTests/platform/win/media/audio-data-url-expected.txt:
- 12:48 PM Changeset in webkit [76627] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, mark inspector/debugger-scripts.html as failing on chromium linux.
- platform/chromium/test_expectations.txt:
- 12:41 PM Changeset in webkit [76626] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Unreviewed WinCE build fix for r76614.
- platform/FileSystem.h:
- 12:23 PM CSS21Results edited by
- (diff)
- 12:18 PM CSS21Results edited by
- Added bug link for containing-block-032 (diff)
- 12:17 PM Changeset in webkit [76625] by
-
- 5 edits8 adds in trunk
2011-01-21 Levi Weintraub <leviw@chromium.org>
Reviewed by Darin Adler.
Adding border and padding to the calculation of the local caret rect for RenderBoxes.
Undo moves caret to invalid position
https://bugs.webkit.org/show_bug.cgi?id=49744
Tests: editing/selection/caret-painting-after-paste-undo-rtl.html
editing/selection/caret-painting-after-paste-undo.html
- rendering/RenderBox.cpp: (WebCore::RenderBox::localCaretRect):
2011-01-21 Levi Weintraub <leviw@chromium.org>
Reviewed by Darin Adler.
Updating the expected result for 5408255 and adding tests for caret positioning at the
beginning and end of RenderBoxes.
Undo moves caret to invalid position
https://bugs.webkit.org/show_bug.cgi?id=49744
- editing/selection/caret-painting-after-paste-undo-rtl.html: Added.
- editing/selection/caret-painting-after-paste-undo.html: Added.
- platform/mac/editing/deleting/5408255-expected.checksum:
- platform/mac/editing/deleting/5408255-expected.png:
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.checksum: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.png: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.txt: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.checksum: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.png: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.txt: Added.
- 12:03 PM Changeset in webkit [76624] by
-
- 1 edit4 adds in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, add chromium-mac baselines after r76599.
The platform/mac-leopard results were stale which is why the expected
text results aren't updated as well.
- platform/chromium-mac/svg/custom/junk-data-expected.checksum: Added.
- platform/chromium-mac/svg/custom/junk-data-expected.png: Added.
- platform/chromium-mac/svg/custom/missing-xlink-expected.checksum: Added.
- platform/chromium-mac/svg/custom/missing-xlink-expected.png: Added.
- 12:01 PM Changeset in webkit [76623] by
-
- 11 edits3 copies4 adds in trunk/LayoutTests
2011-01-25 James Robinson <jamesr@chromium.org>
Reviewed by Mihai Parparita.
Convert requestAnimationFrame tests to be script-tests
https://bugs.webkit.org/show_bug.cgi?id=53109
This converts the new requestAnimationFrame tests to be proper script-tests using make-script-test-wrapper.
- fast/animation/request-animation-frame-cancel-expected.txt:
- fast/animation/request-animation-frame-cancel.html:
- fast/animation/request-animation-frame-cancel2-expected.txt:
- fast/animation/request-animation-frame-cancel2.html:
- fast/animation/request-animation-frame-display-expected.txt:
- fast/animation/request-animation-frame-display.html:
- fast/animation/request-animation-frame-expected.txt:
- fast/animation/request-animation-frame-within-callback-expected.txt:
- fast/animation/request-animation-frame-within-callback.html:
- fast/animation/request-animation-frame.html:
- fast/animation/script-tests/TEMPLATE.html: Added.
- fast/animation/script-tests/request-animation-frame-cancel.js: Copied from LayoutTests/fast/animation/request-animation-frame-cancel.html.
- fast/animation/script-tests/request-animation-frame-cancel2.js: Copied from LayoutTests/fast/animation/request-animation-frame-cancel2.html. (secondCallbackId):
- fast/animation/script-tests/request-animation-frame-display.js: Added.
- fast/animation/script-tests/request-animation-frame-within-callback.js: Copied from LayoutTests/fast/animation/request-animation-frame-within-callback.html. (window):
- fast/animation/script-tests/request-animation-frame.js: Added.
- 11:54 AM Changeset in webkit [76622] by
-
- 8 edits in trunk/Source
2011-01-25 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Add hasPreciseScrollingDeltas bit to PlatformWheelEvent on the Mac.
https://bugs.webkit.org/show_bug.cgi?id=53107
- platform/PlatformWheelEvent.h: (WebCore::PlatformWheelEvent::PlatformWheelEvent): (WebCore::PlatformWheelEvent::hasPreciseScrollingDeltas):
- platform/mac/WheelEventMac.mm: (WebCore::PlatformWheelEvent::PlatformWheelEvent):
2011-01-25 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Add hasPreciseScrollingDeltas bit to PlatformWheelEvent on the Mac.
https://bugs.webkit.org/show_bug.cgi?id=53107
- Shared/WebEvent.h: (WebKit::WebWheelEvent::hasPreciseScrollingDeltas):
- Shared/WebEventConversion.cpp: (WebKit::WebKit2PlatformWheelEvent::WebKit2PlatformWheelEvent):
- Shared/WebWheelEvent.cpp: (WebKit::WebWheelEvent::WebWheelEvent):
- Shared/mac/WebEventFactory.mm: (WebKit::WebEventFactory::createWebWheelEvent):
- 11:52 AM Changeset in webkit [76621] by
-
- 12 edits3 adds in trunk
2011-01-20 Jer Noble <jer.noble@apple.com>
Reviewed by Eric Carlson.
REGRESSION (r72119): Audio never plays on Star Wars intro animation
https://bugs.webkit.org/show_bug.cgi?id=52467
Test the ability to read audio/m4a files. Disabled this new test
on the chromium and qt platforms, as they do not support M4A/AAC.
- media/audio-mpeg4-supported-expected.txt: Added.
- media/audio-mpeg4-supported.html: Added.
- media/content/silence.m4a: Added.
- platform/chromium/test_expectations.txt:
- platform/qt/Skipped:
2011-01-20 Jer Noble <jer.noble@apple.com>
Reviewed by Eric Carlson.
REGRESSION (r72119): Audio never plays on Star Wars intro animation
https://bugs.webkit.org/show_bug.cgi?id=52467
QuickTime's eat/m4a movie importer compontent doesn't list audio/m4a as a mime
type which it supports, though it handles .m4a files just fine. Change the way
we build the list of supported MIME Types through a new WebKitSystemInterface
function.
Caused by r72119, which adds system-specific extension->MIME entries to the cache
before global entries, and the system-specific entries include QuickTime's registry
entries which contain the audio/m4a MIME type, while its components do not.
Test: media/audio-mpeg4-supported.html
- WebCore.vcproj/QTMovieWinCommon.vsprops:
- platform/graphics/win/QTMovie.cpp: (getMIMETypeCallBack): (initializeSupportedTypes): (QTMovie::countSupportedTypes): gSupportedTypes is now a CFArrayRef. (QTMovie::getSupportedType): Ditto.
2011-01-24 Jer Noble <jer.noble@apple.com>
Reviewed by Eric Carlson.
REGRESSION (r72119): Audio never plays on Star Wars intro animation
https://bugs.webkit.org/show_bug.cgi?id=52467
Add wkGetQuickTimeMIMETypeList() function.
- win/include/WebKitSystemInterface/WebKitSystemInterface.h:
- win/lib/WebKitSystemInterface.lib:
- 11:39 AM Changeset in webkit [76620] by
-
- 3 edits in trunk/Tools
2011-01-25 Tony Chang <tony@chromium.org>
Reviewed by Dimitri Glazkov.
[chromium] remove unused layoutTestController callback
https://bugs.webkit.org/show_bug.cgi?id=53103
This method is used by a test_shell_test, but not needed by DRT.
- DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::LayoutTestController):
- DumpRenderTree/chromium/LayoutTestController.h:
- 11:39 AM Changeset in webkit [76619] by
-
- 5 edits in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, rebaseline a test on chromium-win. Part of r76586 rebaselines.
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.txt:
- platform/chromium/test_expectations.txt:
- 11:25 AM Changeset in webkit [76618] by
-
- 11 edits in trunk/LayoutTests
2011-01-25 Ryosuke Niwa <rniwa@webkit.org>
Another unreviewed SVG rebaselines for Chromium.
- platform/chromium-linux/svg/text/text-text-05-t-expected.checksum:
- platform/chromium-linux/svg/text/text-text-05-t-expected.png:
- platform/chromium-mac/svg/text/text-text-05-t-expected.checksum:
- platform/chromium-mac/svg/text/text-text-05-t-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
- platform/chromium-win/svg/text/text-text-05-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-05-t-expected.png:
- platform/chromium-win/svg/text/text-text-05-t-expected.txt:
- platform/chromium/test_expectations.txt:
- 11:14 AM Changeset in webkit [76617] by
-
- 9 edits in trunk/Source/WebKit2
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
need a way to request the host CALayer render server port
https://bugs.webkit.org/show_bug.cgi?id=53101
<rdar://problem/8913620>
- PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::compositingRenderServerPort): Get the render server port from the plug-in process.
- PluginProcess/PluginControllerProxy.h:
- WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp: (WebKit::NPN_GetValue): Call NetscapePlugin::compositingRenderServerPort.
- WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm: (WebKit::NetscapePlugin::compositingRenderServerPort): Call PluginController::compositingRenderServerPort.
- WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::compositingRenderServerPort): Get the render server port from the web process.
- WebProcess/Plugins/PluginView.h: Add compositingRenderServerPort.
- 11:07 AM Changeset in webkit [76616] by
-
- 8 edits in trunk/Source
2011-01-25 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Remove PlatformBridge::idbShutdown()
https://bugs.webkit.org/show_bug.cgi?id=53077
Since Chromium r72157, this is not used anymore. The previous use was
to signal to the embedder that IndexedDB was shutting down, but we
agreed it is better if the embedder keeps track of that itself.
No new tests: this does not change any functionality.
- platform/chromium/PlatformBridge.h:
- storage/IDBFactoryBackendInterface.cpp:
- storage/IDBFactoryBackendInterface.h: (WebCore::IDBFactoryBackendInterface::~IDBFactoryBackendInterface):
- storage/chromium/IDBFactoryBackendInterface.cpp:
2011-01-25 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Remove PlatformBridge::idbShutdown()
https://bugs.webkit.org/show_bug.cgi?id=53077
Since Chromium r72157, this is not used anymore. Chromium keeps track
of when it shuts down IndexedDB itself.
- public/WebKitClient.h:
- src/PlatformBridge.cpp:
- 11:06 AM Changeset in webkit [76615] by
-
- 2 edits in trunk/Source/JavaScriptCore
Not reviewed.
Try to fix windows build.
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- 11:03 AM Changeset in webkit [76614] by
-
- 11 edits in trunk/Source
2011-01-25 Darin Adler <Darin Adler>
Reviewed by Anders Carlsson.
WebKit is using CSBackupSetItemExcluded incorrectly
https://bugs.webkit.org/show_bug.cgi?id=53095
rdar://problem/8790540
- Misc/WebIconDatabase.mm: (importToWebCoreFormat): Removed code that was calling CSBackupSetItemExcluded. It was incorrect, and this responsibility has been moved to WebCore.
2011-01-25 Darin Adler <Darin Adler>
Reviewed by Anders Carlsson.
WebKit is using CSBackupSetItemExcluded incorrectly
https://bugs.webkit.org/show_bug.cgi?id=53095
rdar://problem/8790540
- loader/icon/IconDatabase.cpp: (WebCore::IconDatabase::performOpenInitialization): Added code to exclude the database from backup one time, and record inside the database that this has been done. (WebCore::IconDatabase::wasExcludedFromBackup): Added. (WebCore::IconDatabase::setWasExcludedFromBackup): Added.
- loader/icon/IconDatabase.h: Added new functions above.
- platform/FileSystem.cpp: (WebCore::canExcludeFromBackup): Added. (WebCore::excludeFromBackup): Added.
- platform/FileSystem.h: Added canExcludeFromBackup, excludeFromBackup, and pathAsURL functions. Cleaned up ifdefs and comments a bit and sorted things alphabetically, particularly platform-specific sections.
- platform/cf/FileSystemCF.cpp: (WebCore::pathAsURL): Added.
- platform/mac/FileSystemMac.mm: (WebCore::canExcludeFromBackup): Added. (WebCore::excludeFromBackup): Added.
- platform/network/cf/FormDataStreamCFNet.cpp: (WebCore::advanceCurrentStream): Changed to call pathAsURL.
- platform/network/mac/FormDataStreamMac.mm: (WebCore::advanceCurrentStream): Ditto.
- 10:56 AM Changeset in webkit [76613] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin Adler.
Skip another new test that uses eventSender
https://bugs.webkit.org/show_bug.cgi?id=53094
- platform/mac-wk2/Skipped:
- 10:54 AM Changeset in webkit [76612] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Helder Correia <helder@sencha.com>
Reviewed by Dirk Schulze.
REGRESSION(75139): SVG gradients are not applied to texts
https://bugs.webkit.org/show_bug.cgi?id=52531
CGContextConcatCTM should use the CGLayer context, not the
GraphicsContext. Also, the CTM needs to be adjusted (translated).
This fixes SVG text gradient fill.
Test: svg/css/composite-shadow-text.svg
- platform/graphics/cg/GraphicsContextCG.cpp: (WebCore::GraphicsContext::fillRect):
- 10:46 AM CSS21Results edited by
- (diff)
- 10:44 AM Changeset in webkit [76611] by
-
- 10 edits3 adds in trunk/Source/JavaScriptCore
REGRESSION: Leak in JSParser::Scope::copyCapturedVariablesToVector()
https://bugs.webkit.org/show_bug.cgi?id=53061
Reviewed by Oliver Hunt.
Cache did not know about the subclass so failed to fully delete the items.
Got rid of the subclass and moved the classes to separate files.
- CMakeLists.txt:
- GNUmakefile.am:
- JavaScriptCore.exp:
- JavaScriptCore.gypi:
- JavaScriptCore.pro:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
- JavaScriptCore.xcodeproj/project.pbxproj:
- parser/JSParser.cpp:
(JSC::JSParser::Scope::saveFunctionInfo):
(JSC::JSParser::Scope::restoreFunctionInfo):
(JSC::JSParser::findCachedFunctionInfo):
(JSC::JSParser::parseFunctionInfo):
- parser/SourceProvider.h:
- parser/SourceProviderCache.cpp: Added.
(JSC::SourceProviderCache::~SourceProviderCache):
(JSC::SourceProviderCache::byteSize):
- parser/SourceProviderCache.h: Added.
(JSC::SourceProviderCache::SourceProviderCache):
(JSC::SourceProviderCache::add):
(JSC::SourceProviderCache::get):
- parser/SourceProviderCacheItem.h: Added.
(JSC::SourceProviderCacheItem::SourceProviderCacheItem):
(JSC::SourceProviderCacheItem::approximateByteSize):
(JSC::SourceProviderCacheItem::closeBraceToken):
- 10:42 AM Changeset in webkit [76610] by
-
- 3 edits2 adds in trunk
2011-01-25 Benjamin Kalman <kalman@chromium.org>
Reviewed by Ryosuke Niwa.
Cannot extend or modify forward by word over a non-contenteditable region
https://bugs.webkit.org/show_bug.cgi?id=53070
Add regression test.
- editing/selection/extend-forward-by-word-over-non-editable-expected.txt: Added.
- editing/selection/extend-forward-by-word-over-non-editable.html: Added.
2011-01-25 Benjamin Kalman <kalman@chromium.org>
Reviewed by Ryosuke Niwa.
Cannot extend or modify forward by word over a non-contenteditable region
https://bugs.webkit.org/show_bug.cgi?id=53070
Test: editing/selection/extend-forward-by-word-over-non-editable.html
Change all instances of honorEditableBoundaryAtOrAfter to honorEditableBoundaryAtOrBefore and vice versa in the
functions which determine the end/start of words/lines/sentences in visible_units.cpp.
This fixes the bug where moving forwards by a word over a non-contenteditable region would place the cursor
inside that region, and then get moved back to the start of the word due to honorEditableBoundaryAtOrBefore.
The cursor is now moved to the end of the region (which is effectively a noop in this case).
- editing/visible_units.cpp: Change all instances of honorEditableBoundaryAtOrAfter to honorEditableBoundaryAtOrBefore and vice versa. (WebCore::previousWordPosition): (WebCore::nextWordPosition): (WebCore::startOfLine): (WebCore::endOfLine): (WebCore::previousSentencePosition): (WebCore::nextSentencePosition): (WebCore::logicalStartOfLine): (WebCore::logicalEndOfLine):
- 10:28 AM Changeset in webkit [76609] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-01-25 Marcilio Mendonca <mamendonca@rim.com>
Reviewed by Darin Adler.
Bug 53087: Refactoring: replaced a hanging "else" with a "return"
statement
https://bugs.webkit.org/show_bug.cgi?id=53087.
Refactoring work: Replaced a hanging "else" within an #if PLATFORM(M
with a "return" so that the code is more readable and less error pro
(e.g., "else" doesn't use braces so adding extra lines to the else
block won't have any effect; even worse, code still compiles
successfully.
- wtf/Assertions.cpp:
- 10:26 AM Changeset in webkit [76608] by
-
- 2 edits in trunk/Source/WebKit2
Change some floating point constants from 1.0 to 1.
Rubber stamped by Dan Bernstein.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::dispatchDidCommitLoad):
- 10:19 AM Changeset in webkit [76607] by
-
- 36 edits2 adds2 deletes in trunk/LayoutTests
2011-01-25 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed SVG rebaselines for Chromium.
- platform/chromium-linux/svg/batik/text/textEffect-expected.checksum:
- platform/chromium-linux/svg/batik/text/textEffect-expected.png:
- platform/chromium-linux/svg/batik/text/textEffect-expected.txt: Removed.
- platform/chromium-linux/svg/batik/text/textEffect3-expected.checksum:
- platform/chromium-linux/svg/batik/text/textEffect3-expected.png:
- platform/chromium-linux/svg/batik/text/textEffect3-expected.txt: Removed.
- platform/chromium-linux/svg/batik/text/textPosition2-expected.txt:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.txt: Added.
- platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/chromium-linux/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/chromium-linux/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/chromium-linux/svg/text/text-text-06-t-expected.checksum:
- platform/chromium-linux/svg/text/text-text-06-t-expected.png:
- platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-mac/svg/text/text-text-06-t-expected.checksum:
- platform/chromium-mac/svg/text/text-text-06-t-expected.png: Added.
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-06-t-expected.txt:
- platform/chromium-win/svg/batik/text/textEffect-expected.checksum:
- platform/chromium-win/svg/batik/text/textEffect-expected.png:
- platform/chromium-win/svg/batik/text/textEffect-expected.txt:
- platform/chromium-win/svg/batik/text/textEffect3-expected.checksum:
- platform/chromium-win/svg/batik/text/textEffect3-expected.png:
- platform/chromium-win/svg/batik/text/textEffect3-expected.txt:
- platform/chromium-win/svg/batik/text/textPosition2-expected.txt:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/chromium-win/svg/text/text-text-06-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-06-t-expected.png:
- platform/chromium-win/svg/text/text-text-06-t-expected.txt:
- platform/chromium/test_expectations.txt:
- 10:18 AM Changeset in webkit [76606] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed build fix.
After r76466, efsrv.lib is used unconditionally.
Don't guard it with ENABLE_NETSCAPE_PLUGIN_API.
- WebCore.pro:
- 10:09 AM Changeset in webkit [76605] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, remove passing chromium win tests.
- platform/chromium/test_expectations.txt:
- 9:54 AM Changeset in webkit [76604] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-25 Maciej Stachowiak <mjs@apple.com>
Reviewed by Anders Carlsson.
Improve scale factor resetting
https://bugs.webkit.org/show_bug.cgi?id=53093
Two key changes:
- Don't set the scale factor to what it already is, as this causes an uneeded force layout and scroll
- Don't ever set the scale factor based on a non-main frame committing
This fixes two WebKit2 layout tests.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: (WebKit::WebFrameLoaderClient::dispatchDidCommitLoad):
- 9:47 AM Changeset in webkit [76603] by
-
- 12 edits in trunk/Source/WebCore
2011-01-24 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
Style cleanup for WebGLRenderingContext
https://bugs.webkit.org/show_bug.cgi?id=52352
- html/canvas/WebGLBuffer.cpp:
- html/canvas/WebGLBuffer.h:
- html/canvas/WebGLObject.cpp:
- html/canvas/WebGLProgram.cpp:
- html/canvas/WebGLRenderbuffer.cpp:
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::create): (WebCore::WebGLRenderingContext::blendFunc): (WebCore::WebGLRenderingContext::createShader): (WebCore::WebGLRenderingContext::deleteBuffer): (WebCore::WebGLRenderingContext::deleteShader): (WebCore::WebGLRenderingContext::deleteTexture): (WebCore::WebGLRenderingContext::disableVertexAttribArray): (WebCore::WebGLRenderingContext::validateIndexArrayPrecise): (WebCore::WebGLRenderingContext::validateRenderingState): (WebCore::WebGLRenderingContext::enableVertexAttribArray): (WebCore::WebGLRenderingContext::getUniform): (WebCore::WebGLRenderingContext::detachAndRemoveAllObjects):
- html/canvas/WebGLRenderingContext.h:
- html/canvas/WebGLShader.cpp:
- html/canvas/WebGLTexture.cpp:
- html/canvas/WebGLUniformLocation.cpp:
- html/canvas/WebGLUniformLocation.h:
- 9:43 AM Changeset in webkit [76602] by
-
- 5 edits in trunk/Source/WebKit/chromium
2011-01-25 Ilya Sherman <isherman@chromium.org>
Reviewed by Darin Fisher.
Chromium WebKit API: Move dispatchFormControlChangeEvent() from WebInputElement to WebFormControlElement
In service of https://code.google.com/p/chromium/issues/detail?id=42716
https://bugs.webkit.org/show_bug.cgi?id=53069
- public/WebFormControlElement.h:
- public/WebInputElement.h:
- src/WebFormControlElement.cpp: (WebKit::WebFormControlElement::dispatchFormControlChangeEvent): Moved from WebInputElement
- src/WebInputElement.cpp:
- 9:34 AM Changeset in webkit [76601] by
-
- 7 edits in trunk/Source/WebCore
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
- DerivedSources.cpp:
- GNUmakefile.am:
- WebCore.pro:
- bindings/generic/RuntimeEnabledFeatures.h:
- bindings/js/JSArrayBufferCustom.cpp:
- bindings/js/JSCanvasRenderingContextCustom.cpp: (WebCore::toJS):
- bindings/js/JSDOMWindowCustom.cpp:
- bindings/js/JSDataViewCustom.cpp:
- bindings/js/JSDocumentCustom.cpp:
- bindings/js/JSFloat32ArrayCustom.cpp:
- bindings/js/JSHTMLCanvasElementCustom.cpp: (WebCore::JSHTMLCanvasElement::getContext):
- bindings/js/JSInt16ArrayCustom.cpp:
- bindings/js/JSInt32ArrayCustom.cpp:
- bindings/js/JSInt8ArrayCustom.cpp:
- bindings/js/JSUint16ArrayCustom.cpp:
- bindings/js/JSUint32ArrayCustom.cpp:
- bindings/js/JSUint8ArrayCustom.cpp:
- bindings/js/JSWebGLRenderingContextCustom.cpp:
- bindings/js/JSXMLHttpRequestCustom.cpp: (WebCore::JSXMLHttpRequest::markChildren): (WebCore::JSXMLHttpRequest::send): (WebCore::JSXMLHttpRequest::response):
- bindings/v8/custom/V8ArrayBufferCustom.cpp:
- bindings/v8/custom/V8ArrayBufferViewCustom.h:
- bindings/v8/custom/V8DataViewCustom.cpp:
- bindings/v8/custom/V8DocumentCustom.cpp: (WebCore::V8Document::getCSSCanvasContextCallback):
- bindings/v8/custom/V8Float32ArrayCustom.cpp:
- bindings/v8/custom/V8HTMLCanvasElementCustom.cpp: (WebCore::V8HTMLCanvasElement::getContextCallback):
- bindings/v8/custom/V8Int16ArrayCustom.cpp:
- bindings/v8/custom/V8Int32ArrayCustom.cpp:
- bindings/v8/custom/V8Int8ArrayCustom.cpp:
- bindings/v8/custom/V8Uint16ArrayCustom.cpp:
- bindings/v8/custom/V8Uint32ArrayCustom.cpp:
- bindings/v8/custom/V8Uint8ArrayCustom.cpp:
- bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:
- bindings/v8/custom/V8XMLHttpRequestCustom.cpp: (WebCore::V8XMLHttpRequest::responseAccessorGetter): (WebCore::V8XMLHttpRequest::sendCallback):
- features.pri:
- html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::getContext): (WebCore::HTMLCanvasElement::reset):
- html/HTMLCanvasElement.h:
- html/canvas/ArrayBuffer.cpp:
- html/canvas/ArrayBuffer.idl:
- html/canvas/ArrayBufferView.cpp:
- html/canvas/ArrayBufferView.idl:
- html/canvas/DataView.cpp:
- html/canvas/DataView.idl:
- html/canvas/Float32Array.cpp:
- html/canvas/Float32Array.idl:
- html/canvas/Int16Array.cpp:
- html/canvas/Int16Array.idl:
- html/canvas/Int32Array.cpp:
- html/canvas/Int32Array.idl:
- html/canvas/Int8Array.cpp:
- html/canvas/Int8Array.idl:
- html/canvas/OESStandardDerivatives.cpp:
- html/canvas/OESStandardDerivatives.idl:
- html/canvas/OESTextureFloat.cpp:
- html/canvas/OESTextureFloat.idl:
- html/canvas/Uint16Array.cpp:
- html/canvas/Uint16Array.idl:
- html/canvas/Uint32Array.cpp:
- html/canvas/Uint32Array.idl:
- html/canvas/Uint8Array.cpp:
- html/canvas/Uint8Array.idl:
- html/canvas/WebGLActiveInfo.idl:
- html/canvas/WebGLBuffer.cpp:
- html/canvas/WebGLBuffer.idl:
- html/canvas/WebGLContextAttributes.cpp:
- html/canvas/WebGLContextAttributes.idl:
- html/canvas/WebGLContextEvent.idl:
- html/canvas/WebGLExtension.cpp:
- html/canvas/WebGLFramebuffer.cpp:
- html/canvas/WebGLFramebuffer.idl:
- html/canvas/WebGLGetInfo.cpp:
- html/canvas/WebGLObject.cpp:
- html/canvas/WebGLProgram.cpp:
- html/canvas/WebGLProgram.idl:
- html/canvas/WebGLRenderbuffer.cpp:
- html/canvas/WebGLRenderbuffer.idl:
- html/canvas/WebGLRenderingContext.cpp:
- html/canvas/WebGLRenderingContext.idl:
- html/canvas/WebGLShader.cpp:
- html/canvas/WebGLShader.idl:
- html/canvas/WebGLTexture.cpp:
- html/canvas/WebGLTexture.idl:
- html/canvas/WebGLUniformLocation.cpp:
- html/canvas/WebGLUniformLocation.idl:
- html/canvas/WebKitLoseContext.cpp:
- html/canvas/WebKitLoseContext.idl:
- page/DOMWindow.idl:
- platform/graphics/ANGLEWebKitBridge.cpp:
- platform/graphics/GraphicsContext3D.cpp:
- platform/graphics/cg/GraphicsContext3DCG.cpp:
- platform/graphics/gpu/DrawingBuffer.cpp:
- platform/graphics/gpu/mac/DrawingBufferMac.mm:
- platform/graphics/mac/GraphicsContext3DMac.mm:
- platform/graphics/mac/WebGLLayer.mm:
- platform/graphics/opengl/Extensions3DOpenGL.cpp:
- platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
- platform/graphics/qt/Extensions3DQt.cpp:
- platform/graphics/qt/GraphicsContext3DQt.cpp:
- platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::GraphicsLayerQtImpl::GraphicsLayerQtImpl): (WebCore::GraphicsLayerQtImpl::paint): (WebCore::GraphicsLayerQtImpl::flushChanges):
- platform/graphics/qt/GraphicsLayerQt.h:
- platform/graphics/skia/GraphicsContext3DSkia.cpp:
- platform/graphics/texmap/GraphicsLayerTextureMapper.h:
- rendering/RenderLayerBacking.cpp: (WebCore::isAcceleratedCanvas): (WebCore::RenderLayerBacking::updateGraphicsLayerConfiguration): (WebCore::RenderLayerBacking::containsPaintedContent): (WebCore::RenderLayerBacking::contentChanged):
- webaudio/AudioBuffer.cpp:
- webaudio/AudioBuffer.idl:
- webaudio/RealtimeAnalyser.cpp:
- webaudio/RealtimeAnalyser.h:
- webaudio/RealtimeAnalyserNode.h:
- webaudio/RealtimeAnalyserNode.idl:
- xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::setResponseType): (WebCore::XMLHttpRequest::clearResponse): (WebCore::XMLHttpRequest::didReceiveData):
- xml/XMLHttpRequest.h:
- 9:27 AM Changeset in webkit [76600] by
-
- 130 edits in trunk
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- configure.ac:
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- WebKit.gyp:
- features.gypi:
- src/Extensions3DChromium.cpp:
- src/GraphicsContext3DChromium.cpp:
- src/WebRuntimeFeatures.cpp: (WebKit::WebRuntimeFeatures::enableWebGL): (WebKit::WebRuntimeFeatures::isWebGLEnabled):
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Api/qwebsettings.cpp: (QWebSettingsPrivate::apply):
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- WebView.cpp: (WebView::notifyPreferencesChanged):
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
- DerivedSources.cpp:
- GNUmakefile.am:
- WebCore.pro:
- bindings/generic/RuntimeEnabledFeatures.h:
- bindings/js/JSArrayBufferCustom.cpp:
- bindings/js/JSCanvasRenderingContextCustom.cpp: (WebCore::toJS):
- bindings/js/JSDOMWindowCustom.cpp:
- bindings/js/JSDataViewCustom.cpp:
- bindings/js/JSDocumentCustom.cpp:
- bindings/js/JSFloat32ArrayCustom.cpp:
- bindings/js/JSHTMLCanvasElementCustom.cpp: (WebCore::JSHTMLCanvasElement::getContext):
- bindings/js/JSInt16ArrayCustom.cpp:
- bindings/js/JSInt32ArrayCustom.cpp:
- bindings/js/JSInt8ArrayCustom.cpp:
- bindings/js/JSUint16ArrayCustom.cpp:
- bindings/js/JSUint32ArrayCustom.cpp:
- bindings/js/JSUint8ArrayCustom.cpp:
- bindings/js/JSWebGLRenderingContextCustom.cpp:
- bindings/js/JSXMLHttpRequestCustom.cpp: (WebCore::JSXMLHttpRequest::markChildren): (WebCore::JSXMLHttpRequest::send): (WebCore::JSXMLHttpRequest::response):
- bindings/v8/custom/V8ArrayBufferCustom.cpp:
- bindings/v8/custom/V8ArrayBufferViewCustom.h:
- bindings/v8/custom/V8DataViewCustom.cpp:
- bindings/v8/custom/V8DocumentCustom.cpp: (WebCore::V8Document::getCSSCanvasContextCallback):
- bindings/v8/custom/V8Float32ArrayCustom.cpp:
- bindings/v8/custom/V8HTMLCanvasElementCustom.cpp: (WebCore::V8HTMLCanvasElement::getContextCallback):
- bindings/v8/custom/V8Int16ArrayCustom.cpp:
- bindings/v8/custom/V8Int32ArrayCustom.cpp:
- bindings/v8/custom/V8Int8ArrayCustom.cpp:
- bindings/v8/custom/V8Uint16ArrayCustom.cpp:
- bindings/v8/custom/V8Uint32ArrayCustom.cpp:
- bindings/v8/custom/V8Uint8ArrayCustom.cpp:
- bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:
- bindings/v8/custom/V8XMLHttpRequestCustom.cpp: (WebCore::V8XMLHttpRequest::responseAccessorGetter): (WebCore::V8XMLHttpRequest::sendCallback):
- features.pri:
- html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::getContext): (WebCore::HTMLCanvasElement::reset):
- html/HTMLCanvasElement.h:
- html/canvas/ArrayBuffer.cpp:
- html/canvas/ArrayBuffer.idl:
- html/canvas/ArrayBufferView.cpp:
- html/canvas/ArrayBufferView.idl:
- html/canvas/DataView.cpp:
- html/canvas/DataView.idl:
- html/canvas/Float32Array.cpp:
- html/canvas/Float32Array.idl:
- html/canvas/Int16Array.cpp:
- html/canvas/Int16Array.idl:
- html/canvas/Int32Array.cpp:
- html/canvas/Int32Array.idl:
- html/canvas/Int8Array.cpp:
- html/canvas/Int8Array.idl:
- html/canvas/OESStandardDerivatives.cpp:
- html/canvas/OESStandardDerivatives.idl:
- html/canvas/OESTextureFloat.cpp:
- html/canvas/OESTextureFloat.idl:
- html/canvas/Uint16Array.cpp:
- html/canvas/Uint16Array.idl:
- html/canvas/Uint32Array.cpp:
- html/canvas/Uint32Array.idl:
- html/canvas/Uint8Array.cpp:
- html/canvas/Uint8Array.idl:
- html/canvas/WebGLActiveInfo.idl:
- html/canvas/WebGLBuffer.cpp:
- html/canvas/WebGLBuffer.idl:
- html/canvas/WebGLContextAttributes.cpp:
- html/canvas/WebGLContextAttributes.idl:
- html/canvas/WebGLContextEvent.idl:
- html/canvas/WebGLExtension.cpp:
- html/canvas/WebGLFramebuffer.cpp:
- html/canvas/WebGLFramebuffer.idl:
- html/canvas/WebGLGetInfo.cpp:
- html/canvas/WebGLObject.cpp:
- html/canvas/WebGLProgram.cpp:
- html/canvas/WebGLProgram.idl:
- html/canvas/WebGLRenderbuffer.cpp:
- html/canvas/WebGLRenderbuffer.idl:
- html/canvas/WebGLRenderingContext.cpp:
- html/canvas/WebGLRenderingContext.idl:
- html/canvas/WebGLShader.cpp:
- html/canvas/WebGLShader.idl:
- html/canvas/WebGLTexture.cpp:
- html/canvas/WebGLTexture.idl:
- html/canvas/WebGLUniformLocation.cpp:
- html/canvas/WebGLUniformLocation.idl:
- html/canvas/WebKitLoseContext.cpp:
- html/canvas/WebKitLoseContext.idl:
- page/DOMWindow.idl:
- platform/graphics/ANGLEWebKitBridge.cpp:
- platform/graphics/GraphicsContext3D.cpp:
- platform/graphics/cg/GraphicsContext3DCG.cpp:
- platform/graphics/gpu/DrawingBuffer.cpp:
- platform/graphics/gpu/mac/DrawingBufferMac.mm:
- platform/graphics/mac/GraphicsContext3DMac.mm:
- platform/graphics/mac/WebGLLayer.mm:
- platform/graphics/opengl/Extensions3DOpenGL.cpp:
- platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
- platform/graphics/qt/Extensions3DQt.cpp:
- platform/graphics/qt/GraphicsContext3DQt.cpp:
- platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::GraphicsLayerQtImpl::GraphicsLayerQtImpl): (WebCore::GraphicsLayerQtImpl::paint): (WebCore::GraphicsLayerQtImpl::flushChanges):
- platform/graphics/qt/GraphicsLayerQt.h:
- platform/graphics/skia/GraphicsContext3DSkia.cpp:
- platform/graphics/texmap/GraphicsLayerTextureMapper.h:
- rendering/RenderLayerBacking.cpp: (WebCore::isAcceleratedCanvas): (WebCore::RenderLayerBacking::updateGraphicsLayerConfiguration): (WebCore::RenderLayerBacking::containsPaintedContent): (WebCore::RenderLayerBacking::contentChanged):
- webaudio/AudioBuffer.cpp:
- webaudio/AudioBuffer.idl:
- webaudio/RealtimeAnalyser.cpp:
- webaudio/RealtimeAnalyser.h:
- webaudio/RealtimeAnalyserNode.h:
- webaudio/RealtimeAnalyserNode.idl:
- xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::setResponseType): (WebCore::XMLHttpRequest::clearResponse): (WebCore::XMLHttpRequest::didReceiveData):
- xml/XMLHttpRequest.h:
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
- 9:22 AM Changeset in webkit [76599] by
-
- 13 edits12 adds in trunk/LayoutTests
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Update Leopard svg/ pixel test baselines, to make run-webkit-tests -p pass again with --tolerance 0.
Contains only marginal differences, or updates pixel test results that were forgotten to update.
- platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.checksum: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.checksum:
- platform/mac-leopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png:
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-image-07-t-expected.checksum: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-image-07-t-expected.png: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-use-01-t-expected.checksum: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-use-01-t-expected.png: Added.
- platform/mac-leopard/svg/css/text-gradient-shadow-expected.checksum: Added.
- platform/mac-leopard/svg/css/text-gradient-shadow-expected.png: Added.
- platform/mac-leopard/svg/custom/image-rescale-clip-expected.checksum:
- platform/mac-leopard/svg/custom/image-rescale-clip-expected.png:
- platform/mac-leopard/svg/custom/image-rescale-scroll-expected.checksum: Added.
- platform/mac-leopard/svg/custom/image-rescale-scroll-expected.png: Added.
- platform/mac-leopard/svg/custom/junk-data-expected.checksum:
- platform/mac-leopard/svg/custom/junk-data-expected.png:
- platform/mac-leopard/svg/custom/missing-xlink-expected.checksum:
- platform/mac-leopard/svg/custom/missing-xlink-expected.png:
- platform/mac-leopard/svg/filters/feComposite-expected.checksum:
- platform/mac-leopard/svg/filters/feComposite-expected.png:
- platform/mac-leopard/svg/filters/filter-rounding-issues-expected.checksum: Added.
- platform/mac-leopard/svg/filters/filter-rounding-issues-expected.png: Added.
- platform/mac-leopard/svg/repaint/filter-repaint-expected.checksum:
- platform/mac-leopard/svg/repaint/filter-repaint-expected.png:
- 9:14 AM Changeset in webkit [76598] by
-
- 2 edits in trunk/Source/JavaScriptCore
Windows Production build fix
- JavaScriptCore.vcproj/JavaScriptCore.make: Added a missing "set".
- 9:11 AM Changeset in webkit [76597] by
-
- 17 edits2 adds in trunk/Source
2011-01-25 Mikhail Naganov <mnaganov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Chromium] Prepare for landing of detailed heap snapshots.
- Introduce Preferences.detailedHeapProfiles flag for controlling querying of detailed heap snapshots.
- Add boilerplate code for the new view.
- Factor out common code.
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- bindings/js/ScriptProfiler.h: (WebCore::ScriptProfiler::HeapSnapshotControl::~HeapSnapshotControl): (WebCore::ScriptProfiler::takeHeapSnapshot):
- bindings/v8/ScriptProfiler.cpp: (WebCore::ScriptProfiler::takeHeapSnapshot):
- bindings/v8/ScriptProfiler.h: (WebCore::ScriptProfiler::HeapSnapshotControl::~HeapSnapshotControl):
- inspector/Inspector.idl:
- inspector/InspectorProfilerAgent.cpp: (WebCore::InspectorProfilerAgent::takeHeapSnapshot):
- inspector/InspectorProfilerAgent.h:
- inspector/front-end/DetailedHeapshotView.js: Added. (WebInspector.DetailedHeapshotView): (WebInspector.DetailedHeapshotView.prototype.get statusBarItems): (WebInspector.DetailedHeapshotView.prototype.get profile): (WebInspector.DetailedHeapshotView.prototype.set profile): (WebInspector.DetailedHeapshotView.prototype.show): (WebInspector.DetailedHeapshotView.prototype.hide): (WebInspector.DetailedHeapshotProfileType): (WebInspector.DetailedHeapshotProfileType.prototype.get buttonTooltip): (WebInspector.DetailedHeapshotProfileType.prototype.get buttonStyle): (WebInspector.DetailedHeapshotProfileType.prototype.buttonClicked): (WebInspector.DetailedHeapshotProfileType.prototype.get welcomeMessage): (WebInspector.DetailedHeapshotProfileType.prototype.createSidebarTreeElementForProfile): (WebInspector.DetailedHeapshotProfileType.prototype.createView):
- inspector/front-end/HeapSnapshot.js: Added. (WebInspector.HeapSnapshotEdgesIterator): (WebInspector.HeapSnapshotEdgesIterator.prototype.get done): (WebInspector.HeapSnapshotEdgesIterator.prototype.get isElement): (WebInspector.HeapSnapshotEdgesIterator.prototype.get isHidden): (WebInspector.HeapSnapshotEdgesIterator.prototype.get name): (WebInspector.HeapSnapshotEdgesIterator.prototype.next): (WebInspector.HeapSnapshotEdgesIterator.prototype.get node): (WebInspector.HeapSnapshotEdgesIterator.prototype.get nodeIndex): (WebInspector.HeapSnapshotEdgesIterator.prototype._getNameOrIndex): (WebInspector.HeapSnapshotEdgesIterator.prototype._getType): (WebInspector.HeapSnapshotNodeWrapper): (WebInspector.HeapSnapshotNodeWrapper.prototype.get edges): (WebInspector.HeapSnapshotNodeWrapper.prototype.get edgesCount): (WebInspector.HeapSnapshotNodeWrapper.prototype.get instancesCount): (WebInspector.HeapSnapshotNodeWrapper.prototype.get isHidden): (WebInspector.HeapSnapshotNodeWrapper.prototype.get name): (WebInspector.HeapSnapshotNodeWrapper.prototype.get selfSize): (WebInspector.HeapSnapshotNodeWrapper.prototype._getName): (WebInspector.HeapSnapshotNodeWrapper.prototype._getEdges): (WebInspector.HeapSnapshotNodeWrapper.prototype._getType): (WebInspector.HeapSnapshot): (WebInspector.HeapSnapshot.prototype._init): (WebInspector.HeapSnapshot.prototype.get rootEdges):
- inspector/front-end/HeapSnapshotView.js: (WebInspector.HeapSnapshotProfileType.prototype.buttonClicked):
- inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype._setRecordingProfile): (WebInspector.ProfilesPanel.prototype._reportHeapSnapshotProgress): (WebInspector.ProfilerDispatcher.prototype.setRecordingProfile): (WebInspector.ProfilerDispatcher.prototype.reportHeapSnapshotProgress):
- inspector/front-end/Settings.js:
- inspector/front-end/WebKit.qrc:
- inspector/front-end/inspector.html:
- inspector/front-end/inspector.js: (WebInspector._createPanels):
- src/js/DevTools.js: ():
- 9:10 AM Changeset in webkit [76596] by
-
- 67 edits in trunk/LayoutTests
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Update Snow Leopard svg/ pixel test baselines, to make run-webkit-tests -p pass again with --tolerance 0.
Contains only marginal differences, or updates pixel test results that were forgotten to update.
- platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-image-06-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-image-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-image-07-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-image-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-use-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-use-01-t-expected.png:
- platform/mac/svg/batik/text/textEffect-expected.checksum:
- platform/mac/svg/batik/text/textEffect-expected.png:
- platform/mac/svg/batik/text/textEffect3-expected.checksum:
- platform/mac/svg/batik/text/textEffect3-expected.png:
- platform/mac/svg/custom/baseval-animval-equality-expected.checksum:
- platform/mac/svg/custom/baseval-animval-equality-expected.png:
- platform/mac/svg/custom/foreign-object-skew-expected.checksum:
- platform/mac/svg/custom/foreign-object-skew-expected.png:
- platform/mac/svg/custom/image-rescale-expected.checksum:
- platform/mac/svg/custom/image-rescale-expected.png:
- platform/mac/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/mac/svg/custom/svg-fonts-in-html-expected.png:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
- platform/mac/svg/filters/feComposite-expected.checksum:
- platform/mac/svg/filters/feComposite-expected.png:
- platform/mac/svg/filters/filter-rounding-issues-expected.checksum:
- platform/mac/svg/filters/filter-rounding-issues-expected.png:
- platform/mac/svg/filters/filteredImage-expected.checksum:
- platform/mac/svg/filters/filteredImage-expected.png:
- platform/mac/svg/repaint/filter-repaint-expected.checksum:
- platform/mac/svg/repaint/filter-repaint-expected.png:
- platform/mac/svg/text/text-text-05-t-expected.checksum:
- platform/mac/svg/text/text-text-05-t-expected.png:
- platform/mac/svg/text/text-text-06-t-expected.checksum:
- platform/mac/svg/text/text-text-06-t-expected.png:
- 8:48 AM Changeset in webkit [76595] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Eric Seidel.
Add missing defines for COMPILER(RVCT) && CPU(ARM_THUMB2)
https://bugs.webkit.org/show_bug.cgi?id=52949
- jit/JITStubs.cpp:
- 8:09 AM Changeset in webkit [76594] by
-
- 15 edits in trunk/Source
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: remove "attached" state related methods from InspectorAgent
https://bugs.webkit.org/show_bug.cgi?id=53086
- WebCore.exp.in:
- inspector/InspectorAgent.cpp:
- inspector/InspectorAgent.h:
- inspector/InspectorFrontendClientLocal.cpp: (WebCore::InspectorFrontendClientLocal::changeAttachedWindowHeight): (WebCore::InspectorFrontendClientLocal::restoreAttachedWindowHeight):
- inspector/InspectorSettings.cpp: (WebCore::InspectorSettings::InspectorSettings):
- inspector/InspectorSettings.h:
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: remove "attached" state related methods from InspectorAgent
https://bugs.webkit.org/show_bug.cgi?id=53086
- WebCoreSupport/WebInspectorClientCF.cpp: (WebInspectorClient::sendMessageToFrontend): (WebInspectorClient::inspectorStartsAttached): (WebInspectorClient::setInspectorStartsAttached): (WebInspectorClient::releaseFrontendPage):
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: remove "attached" state related methods from InspectorAgent
https://bugs.webkit.org/show_bug.cgi?id=53086
- WebCoreSupport/WebInspectorClient.h:
- WebCoreSupport/WebInspectorClient.mm: (-[WebInspectorWindowController showWindow:]): (-[WebInspectorWindowController attach]): (-[WebInspectorWindowController detach]):
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: remove "attached" state related methods from InspectorAgent
https://bugs.webkit.org/show_bug.cgi?id=53086
- WebCoreSupport/WebInspectorClient.cpp: (WebInspectorFrontendClient::attachWindow): (WebInspectorFrontendClient::detachWindow): (WebInspectorFrontendClient::showWindowWithoutNotifications):
- WebCoreSupport/WebInspectorClient.h:
- 7:46 AM Changeset in webkit [76593] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
Unreviewed, add bug url for failing test on GTK.
[cairo] Fix LayoutTests/fast/canvas/patternfill-repeat.html
https://bugs.webkit.org/show_bug.cgi?id=53085
- platform/gtk/Skipped:
- 7:24 AM Changeset in webkit [76592] by
-
- 6 edits in trunk/Source/WebCore
2011-01-25 Qi Zhang <qi.2.zhang@nokia.com>
Reviewed by Laszlo Gombos.
[Symbian] RVCT fails to compile [U|I]nt[8|16|32]Array.h
https://bugs.webkit.org/show_bug.cgi?id=51873
Replace the using declaration, because it doesn't compile on RVCT, and WINSCW has the same issue.
No new functionality so no new tests.
- html/canvas/Int32Array.h: (WebCore::Int32Array::set):
- html/canvas/Int8Array.h: (WebCore::Int8Array::set):
- html/canvas/Uint16Array.h: (WebCore::Uint16Array::set):
- html/canvas/Uint32Array.h: (WebCore::Uint32Array::set):
- html/canvas/Uint8Array.h: (WebCore::Uint8Array::set):
- 7:15 AM Changeset in webkit [76591] by
-
- 3 edits in trunk/LayoutTests
2011-01-25 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Antonio Gomes.
fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=53073
Make the two steps in the flaky test to be executed sequentially.
- fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html: Fix flaky test by chaining its two steps up.
- platform/gtk/Skipped: Unskip test.
- 7:10 AM Changeset in webkit [76590] by
-
- 14 edits in trunk/Source/WebCore
Repaint SVG elements with filter instead of relayout where possible
https://bugs.webkit.org/show_bug.cgi?id=52200
Reviewed by Dirk Schulze.
This patch allows repainting of filters, when their
attribute changes does not require relayout.
Existing dynamic-update tests cover this feature.
- platform/graphics/filters/FilterEffect.cpp:
(WebCore::FilterEffect::clearResult): Clearing the currently stored image
before repainting.
- platform/graphics/filters/FilterEffect.h:
- rendering/RenderObject.h:
(WebCore::RenderObject::isSVGResourceFilter): Not only the filter primitives,
but filters should also be detected to allow safe testing and casting.
- rendering/svg/RenderSVGResourceFilter.cpp:
(WebCore::RenderSVGResourceFilter::buildPrimitives): Passing the renderer.
(WebCore::RenderSVGResourceFilter::applyResource):
determineFilterPrimitiveSubregion does not require the filter anymore.
(WebCore::RenderSVGResourceFilter::postApplyResource): Repaint
if lastEffect->hasResult() is false.
(WebCore::RenderSVGResourceFilter::primitiveAttributeChanged):
Searching for all FilterEffects, whose created by the current FilterElement,
and clearing all resulting images depending on those FilterEffects.
- rendering/svg/RenderSVGResourceFilter.h:
(WebCore::RenderSVGResourceFilter::isSVGResourceFilter):
- rendering/svg/RenderSVGResourceFilterPrimitive.cpp:
(WebCore::RenderSVGResourceFilterPrimitive::determineFilterPrimitiveSubregion):
The filter argument is unnecessary anymore. But is is still kept as a static
member, since the primitive renderer still does not know about the
FilterEffect objects.
- rendering/svg/RenderSVGResourceFilterPrimitive.h:
(WebCore::RenderSVGResourceFilterPrimitive::RenderSVGResourceFilterPrimitive):
(WebCore::RenderSVGResourceFilterPrimitive::primitiveAttributeChanged):
Calls RenderSVGResourceFilter::primitiveAttributeChanged.
- svg/SVGFEDiffuseLightingElement.cpp:
(WebCore::SVGFEDiffuseLightingElement::setFilterEffectAttribute):
Setting the new attribute value for each FilterEffect.
(WebCore::SVGFEDiffuseLightingElement::svgAttributeChanged):
- svg/SVGFEDiffuseLightingElement.h:
Calling primitiveAttributeChanged.
- svg/SVGFilterPrimitiveStandardAttributes.cpp:
(WebCore::SVGFilterPrimitiveStandardAttributes::setFilterEffectAttribute):
This function will be removed when all FilterElement implements
their setFilterEffectAttribute
- svg/SVGFilterPrimitiveStandardAttributes.h:
(WebCore::SVGFilterPrimitiveStandardAttributes::primitiveAttributeChanged):
- svg/graphics/filters/SVGFilterBuilder.cpp:
(WebCore::SVGFilterBuilder::appendEffectToEffectReferences): The
renderers are assigned to the filter effects.
(WebCore::SVGFilterBuilder::clearEffects):
(WebCore::SVGFilterBuilder::clearResultsRecursive): Recursively
clearing the result images for those filters, whose depend on
the starting filter.
- svg/graphics/filters/SVGFilterBuilder.h:
(WebCore::SVGFilterBuilder::effectReferences): 'get' is unnecessary
(WebCore::SVGFilterBuilder::effectByRenderer): returns the
FilterEffect belongs to this RenderObject.
- 5:46 AM Changeset in webkit [76589] by
-
- 4 edits3 adds in trunk
2011-01-25 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG is missing to-animation support for Path
https://bugs.webkit.org/show_bug.cgi?id=52982
Added an animation test to check 'to' animations in combination with SVG paths.
- svg/animations/animate-path-to-animation-expected.txt: Added.
- svg/animations/animate-path-to-animation.html: Added.
- svg/animations/script-tests/animate-path-to-animation.js: Added. (sample1): (sample2): (sample3): (executeTest):
2011-01-25 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG is missing to-animation support for Path
https://bugs.webkit.org/show_bug.cgi?id=52982
SVG was missing 'to' animation support for SVG paths. Even the fallback to discrete
animation did not work and an assert was thrown, because of the missing m_fromPath.
This also influences a test of the W3C test suite. Subtest 2 of animate-elem-83-t.svg passes now.
Test: svg/animations/animate-path-to-animation.html
- svg/SVGAnimateElement.cpp: (WebCore::SVGAnimateElement::calculateAnimatedValue): Take the value of the last SVGAnimateElement for m_fromPath, since 'to' animations are accumulative. (WebCore::SVGAnimateElement::calculateFromAndToValues): Added support for 'to' animations. (WebCore::SVGAnimateElement::resetToBaseValue): Set m_animatedPath on the first animation element to baseVal.
- svg/SVGPathByteStream.h: (WebCore::SVGPathByteStream::copySVGPathByteStream): Return copy of current byte stream.
- 5:34 AM Changeset in webkit [76588] by
-
- 22 edits in trunk/LayoutTests
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Introduce FontMetrics abstraction
https://bugs.webkit.org/show_bug.cgi?id=51456
Update gtk/qt baseline.
- platform/gtk/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt:
- platform/gtk/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/gtk/svg/text/text-hkern-expected.txt:
- platform/gtk/svg/text/text-hkern-on-vertical-text-expected.txt:
- platform/gtk/svg/text/text-vkern-expected.txt:
- platform/gtk/svg/text/text-vkern-on-horizontal-text-expected.txt:
- platform/qt/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt:
- platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt:
- platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt:
- platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt:
- platform/qt/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
- platform/qt/svg/custom/svg-fonts-with-no-element-reference-expected.txt:
- platform/qt/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/qt/svg/text/text-hkern-expected.txt:
- platform/qt/svg/text/text-hkern-on-vertical-text-expected.txt:
- platform/qt/svg/text/text-vkern-expected.txt:
- platform/qt/svg/text/text-vkern-on-horizontal-text-expected.txt:
- platform/qt/svg/transforms/text-with-mask-with-svg-transform-expected.txt:
- 5:32 AM Changeset in webkit [76587] by
-
- 11 edits in trunk
2011-01-25 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: bind resources to URLs upon adding them into the tree.
https://bugs.webkit.org/show_bug.cgi?id=53013
- inspector/debugger-scripts-expected.txt:
- inspector/debugger-scripts.html:
2011-01-25 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: bind resources to URLs upon adding them into the tree.
https://bugs.webkit.org/show_bug.cgi?id=53013
- inspector/front-end/AuditRules.js: (WebInspector.AuditRules.UnusedCssRule.prototype.doRun.evalCallback.selectorsCallback):
- inspector/front-end/CSSStyleModel.js: (WebInspector.CSSStyleModel.prototype._styleSheetChanged.callback): (WebInspector.CSSStyleModel.prototype._styleSheetChanged):
- inspector/front-end/DebuggerModel.js: (WebInspector.DebuggerModel.prototype._parsedScriptSource):
- inspector/front-end/NetworkManager.js: (WebInspector.NetworkManager.prototype._processCachedResources): (WebInspector.NetworkManager.prototype.inflightResourceForURL): (WebInspector.NetworkDispatcher): (WebInspector.NetworkDispatcher.prototype.willSendRequest): (WebInspector.NetworkDispatcher.prototype.markResourceAsCached): (WebInspector.NetworkDispatcher.prototype.didReceiveResponse): (WebInspector.NetworkDispatcher.prototype.didReceiveContentLength): (WebInspector.NetworkDispatcher.prototype.didFinishLoading): (WebInspector.NetworkDispatcher.prototype.didFailLoading): (WebInspector.NetworkDispatcher.prototype.willSendWebSocketHandshakeRequest): (WebInspector.NetworkDispatcher.prototype.didReceiveWebSocketHandshakeResponse): (WebInspector.NetworkDispatcher.prototype.didCloseWebSocket): (WebInspector.NetworkDispatcher.prototype._appendRedirect): (WebInspector.NetworkDispatcher.prototype._startResource): (WebInspector.NetworkDispatcher.prototype._finishResource): (WebInspector.NetworkDispatcher.prototype._createResource):
- inspector/front-end/ResourceTreeModel.js: (WebInspector.ResourceTreeModel.prototype.addResourceToFrame): (WebInspector.ResourceTreeModel.prototype._bindResourceURL): (WebInspector.ResourceTreeModel.prototype._clearResources): (WebInspector.ResourceTreeModel.prototype._unbindResourceURL):
- inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel.prototype.canShowSourceLine): (WebInspector.ResourcesPanel.prototype.showSourceLine):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._parsedScriptSource): (WebInspector.ScriptsPanel.prototype._addScript):
- 4:47 AM Changeset in webkit [76586] by
-
- 42 edits in trunk
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Introduce FontMetrics abstraction
https://bugs.webkit.org/show_bug.cgi?id=51456
Use accurate floating-point metrics for SVG Font calculations instead of casting float -> integer.
This hopefully fixes differences between 32/64 bit bots.
Needs new layout test results for several platforms, which need to be taken from the bots landing afterwards.
- platform/graphics/SimpleFontData.cpp: (WebCore::SimpleFontData::SimpleFontData): (WebCore::SimpleFontData::initCharWidths):
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Introduce FontMetrics abstraction
https://bugs.webkit.org/show_bug.cgi?id=51456
Update mac/mac-leopard pixel baseline after removing the float -> int truncation in the SVG Fonts ascent/descent calculation code.
- platform/gtk/Skipped: Unskip several tests.
- platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum:
- platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png:
- platform/mac-leopard/svg/batik/text/textEffect-expected.checksum:
- platform/mac-leopard/svg/batik/text/textEffect-expected.png:
- platform/mac-leopard/svg/batik/text/textEffect3-expected.checksum:
- platform/mac-leopard/svg/batik/text/textEffect3-expected.png:
- platform/mac-leopard/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/mac-leopard/svg/custom/svg-fonts-in-html-expected.png:
- platform/mac-leopard/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/mac-leopard/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/mac-leopard/svg/text/text-text-05-t-expected.checksum:
- platform/mac-leopard/svg/text/text-text-05-t-expected.png:
- platform/mac-leopard/svg/text/text-text-06-t-expected.checksum:
- platform/mac-leopard/svg/text/text-text-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/text-text-06-t-expected.txt:
- platform/mac/svg/batik/text/textEffect-expected.txt:
- platform/mac/svg/batik/text/textEffect3-expected.txt:
- platform/mac/svg/batik/text/textPosition2-expected.png:
- platform/mac/svg/batik/text/textPosition2-expected.txt:
- platform/mac/svg/custom/svg-fonts-in-html-expected.txt:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.txt:
- platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/mac/svg/text/text-text-05-t-expected.txt:
- platform/mac/svg/text/text-text-06-t-expected.txt:
- svg/custom/glyph-transformation-with-hkern-expected.txt:
-This line, and those below, will be ignored--
M LayoutTests/platform/mac-leopard/svg/text/text-text-05-t-expected.checksum
M LayoutTests/platform/mac-leopard/svg/text/text-text-06-t-expected.checksum
M LayoutTests/platform/mac-leopard/svg/text/text-text-05-t-expected.png
M LayoutTests/platform/mac-leopard/svg/text/text-text-06-t-expected.png
M LayoutTests/platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png
M LayoutTests/platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum
M LayoutTests/platform/mac-leopard/svg/batik/text/textEffect3-expected.checksum
M LayoutTests/platform/mac-leopard/svg/batik/text/textEffect-expected.checksum
M LayoutTests/platform/mac-leopard/svg/batik/text/textEffect-expected.png
M LayoutTests/platform/mac-leopard/svg/batik/text/textEffect3-expected.png
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.png
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-with-no-element-reference-expected.checksum
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-in-html-expected.checksum
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.checksum
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-with-no-element-reference-expected.png
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-in-html-expected.png
M LayoutTests/platform/mac/svg/text/text-text-06-t-expected.txt
M LayoutTests/platform/mac/svg/text/text-text-05-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-text-06-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.png
M LayoutTests/platform/mac/svg/batik/text/textEffect3-expected.txt
M LayoutTests/platform/mac/svg/batik/text/textPosition2-expected.png
M LayoutTests/platform/mac/svg/batik/text/textEffect-expected.txt
M LayoutTests/platform/mac/svg/batik/text/textPosition2-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt
M LayoutTests/platform/mac/svg/custom/svg-fonts-in-html-expected.txt
M LayoutTests/platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.txt
M LayoutTests/platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.txt
M LayoutTests/platform/gtk/Skipped
M LayoutTests/ChangeLog
M LayoutTests/svg/custom/glyph-transformation-with-hkern-expected.txt
M Source/WebCore/ChangeLog
M Source/WebCore/platform/graphics/SimpleFontData.cpp
- 4:43 AM Changeset in webkit [76585] by
-
- 4 edits in trunk/Source/WebKit2
2011-01-25 Andreas Kling <kling@webkit.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt][WK2] Add QWKPage::processCrashed() signal
https://bugs.webkit.org/show_bug.cgi?id=53076
- UIProcess/API/qt/qwkpage.cpp: (QWKPagePrivate::processDidCrash):
- UIProcess/API/qt/qwkpage.h:
- UIProcess/API/qt/qwkpage_p.h:
- 3:43 AM Changeset in webkit [76584] by
-
- 2 edits in trunk/Tools
2011-01-25 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Reviewed by Andreas Kling.
[GTK] Remove 64 bits release bot from the buildbot master
https://bugs.webkit.org/show_bug.cgi?id=52899
Removes the 64 bits release slave from the buildbot configuration,
so that we can use it as an EWS.
- BuildSlaveSupport/build.webkit.org-config/config.json:
- 3:38 AM Changeset in webkit [76583] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Mario Sanchez Prada <msanchez@igalia.com>
Unreviewed, skipping flaky test on GTK debug bots.
editing/selection/extend-selection-bidi.html test is flaky
https://bugs.webkit.org/show_bug.cgi?id=53074
- platform/gtk/Skipped: Skipped test.
- 3:09 AM Changeset in webkit [76582] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Mario Sanchez Prada <msanchez@igalia.com>
Unreviewed, skipping flaky test on GTK debug bots.
fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=53073
- platform/gtk/Skipped: Skipped test.
- 1:44 AM Changeset in webkit [76581] by
-
- 11 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: debugger and browser debugger agents should manage sticky breakpoints independently.
https://bugs.webkit.org/show_bug.cgi?id=52999
- inspector/Inspector.idl:
- inspector/InspectorAgent.cpp: (WebCore::InspectorAgent::didCommitLoad): (WebCore::InspectorAgent::enableDebugger): (WebCore::InspectorAgent::inspectedURLWithoutFragment):
- inspector/InspectorAgent.h:
- inspector/InspectorBrowserDebuggerAgent.cpp: (WebCore::InspectorBrowserDebuggerAgent::setAllBrowserBreakpoints): (WebCore::InspectorBrowserDebuggerAgent::inspectedURLChanged): (WebCore::InspectorBrowserDebuggerAgent::restoreStickyBreakpoint):
- inspector/InspectorBrowserDebuggerAgent.h:
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::InspectorDebuggerAgent): (WebCore::InspectorDebuggerAgent::setAllJavaScriptBreakpoints): (WebCore::InspectorDebuggerAgent::inspectedURLChanged): (WebCore::InspectorDebuggerAgent::restoreBreakpoints):
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorState.cpp: (WebCore::InspectorState::InspectorState):
- inspector/InspectorState.h:
- inspector/front-end/BreakpointManager.js: (WebInspector.BreakpointManager): (WebInspector.BreakpointManager.prototype._projectChanged): (WebInspector.BreakpointManager.prototype._saveBreakpoints): (WebInspector.BreakpointManager.prototype._pushBreakpointsToBackend):
- 1:19 AM Changeset in webkit [76580] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Nikolas Zimmermann.
Skip some new tests for WebKit2 that use eventSender
https://bugs.webkit.org/show_bug.cgi?id=53068
- platform/mac-wk2/Skipped:
- 1:15 AM Changeset in webkit [76579] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-25 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, trivial debugger test fix.
- src/js/Tests.js:
- 12:43 AM Changeset in webkit [76578] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
[GTK] Crash in some pages containing flash
https://bugs.webkit.org/show_bug.cgi?id=53016
Flash plugin can produce X errors that are handled by the GDK X
error handler, which exits the process. Since we don't want to
crash due to flash bugs, we install a custom error handler to show
a warning when a X error happens without aborting.
- plugins/gtk/PluginPackageGtk.cpp: (WebCore::webkitgtkXError): (WebCore::PluginPackage::load):
- 12:33 AM Changeset in webkit [76577] by
-
- 4 edits in trunk/Source/WebCore
2011-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
[GTK] Implement spin buttons in RenderThemeGtk
https://bugs.webkit.org/show_bug.cgi?id=51454
Paint inner up/down buttons for spin button elements when building
with GTK+ 3.x.
Test results will land with the GTK+ 2.x version of this patch.
- platform/gtk/RenderThemeGtk.h:
- platform/gtk/RenderThemeGtk2.cpp: (WebCore::RenderThemeGtk::adjustInnerSpinButtonStyle): (WebCore::RenderThemeGtk::paintInnerSpinButton):
- platform/gtk/RenderThemeGtk3.cpp: (WebCore::spinButtonArrowSize): (WebCore::RenderThemeGtk::adjustInnerSpinButtonStyle): (WebCore::paintSpinArrowButton): (WebCore::RenderThemeGtk::paintInnerSpinButton):
Jan 24, 2011:
- 10:44 PM Changeset in webkit [76576] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Mihai Parparita <mihaip@chromium.org>
Unreviewed. Missed move of one m_deleted use to be outside NDEBUG block
in r76575.
- loader/cache/CachedResource.cpp: (WebCore::CachedResource::~CachedResource):
- 10:17 PM Changeset in webkit [76575] by
-
- 4 edits in trunk/Source/WebCore
2011-01-24 Mihai Parparita <mihaip@chromium.org>
Reviewed by Tony Chang.
Add runtime checks for invariants in memory cache
https://bugs.webkit.org/show_bug.cgi?id=53059
To help track down bug 53045, add some CRASH calls in addition to
ASSERTs, so that we can track down failures in reliability bots.
Just some checks, no new tests necessary.
- css/CSSImageValue.cpp: (WebCore::CSSImageValue::cachedImage):
- loader/cache/CachedResource.h:
- loader/cache/CachedResource.cpp: (WebCore::CachedResource::~CachedResource):
- 10:15 PM Changeset in webkit [76574] by
-
- 2 edits in trunk/Tools
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Dan Bernstein.
Implement database quota callback to fix storage tests on WebKit2 bot
https://bugs.webkit.org/show_bug.cgi?id=53064
- WebKitTestRunner/TestController.cpp: (WTR::exceededDatabaseQuota): (WTR::TestController::createOtherPage): (WTR::TestController::initialize):
- 10:09 PM Changeset in webkit [76573] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Simon Fraser <Simon Fraser>
Reviewed by Dan Bernstein.
Leaking CSSRuleDataList objects
https://bugs.webkit.org/show_bug.cgi?id=53062
Fix leaked CSSRuleDataLists added to the m_pseudoRules hash.
- css/CSSStyleSelector.cpp: (WebCore::CSSRuleSet::~CSSRuleSet):
- 10:05 PM Changeset in webkit [76572] by
-
- 8 edits in trunk/LayoutTests
2011-01-24 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
Chromium-Linux rebaseline for r76567.
- platform/chromium-linux/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.checksum:
- platform/chromium-linux/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.png:
- platform/chromium-linux/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt:
- platform/chromium-linux/fast/speech/input-appearance-numberandspeech-expected.checksum:
- platform/chromium-linux/fast/speech/input-appearance-numberandspeech-expected.png:
- platform/chromium-linux/fast/speech/input-appearance-numberandspeech-expected.txt:
- platform/chromium/test_expectations.txt:
- 9:52 PM Changeset in webkit [76571] by
-
- 18 edits in trunk/Source/WebCore
2011-01-24 Simon Fraser <Simon Fraser>
Reviewed by Eric Seidel.
Refcount Images used in rendering code
https://bugs.webkit.org/show_bug.cgi?id=52701
Change StyleImage::image(RenderObject*, const IntSize&) and
CSSImageGeneratorValue::image(RenderObject*, const IntSize&) to
return PassRefPtr<Image>, and adjust other code accordingly.
This allows us to return one-time images, for example for CSS gradients
whose appearance may change depending on factors other than the renderer
and the destination size.
- css/CSSCanvasValue.cpp: (WebCore::CSSCanvasValue::image):
- css/CSSCanvasValue.h:
- css/CSSGradientValue.cpp: (WebCore::CSSGradientValue::image):
- css/CSSGradientValue.h:
- css/CSSImageGeneratorValue.h:
- rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::paintFillLayerExtended): (WebCore::RenderBoxModelObject::paintNinePieceImage):
- rendering/RenderImage.cpp: (WebCore::RenderImage::paintReplaced): (WebCore::RenderImage::paintIntoRect):
- rendering/RenderImageResource.h: (WebCore::RenderImageResource::image):
- rendering/RenderImageResourceStyleImage.h: (WebCore::RenderImageResourceStyleImage::image):
- rendering/RenderListMarker.cpp: (WebCore::RenderListMarker::paint):
- rendering/style/StyleCachedImage.cpp: (WebCore::StyleCachedImage::image):
- rendering/style/StyleCachedImage.h:
- rendering/style/StyleGeneratedImage.cpp: (WebCore::StyleGeneratedImage::image):
- rendering/style/StyleGeneratedImage.h:
- rendering/style/StyleImage.h:
- rendering/style/StylePendingImage.h: (WebCore::StylePendingImage::image):
- rendering/svg/RenderSVGImage.cpp: (WebCore::RenderSVGImage::paint):
- 9:38 PM Changeset in webkit [76570] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Skip a slightly different set of tests after r76555. Seems that some of these
failures are cascading.
- platform/gtk/Skipped: Update the skipped list.
- 9:17 PM Changeset in webkit [76569] by
-
- 44 edits7 adds36 deletes in trunk
2011-01-24 Tony Chang <tony@chromium.org>
Unreviewed, reverting 5 changes of baselines that are incorrect for Linux.
Mark win tests as failing for now.
- platform/chromium-linux/fast/css/acid2-expected.txt: Removed.
- platform/chromium-linux/fast/css/acid2-pixel-expected.checksum:
- platform/chromium-linux/fast/css/acid2-pixel-expected.png:
- platform/chromium-linux/fast/css/acid2-pixel-expected.txt: Removed.
- platform/chromium-linux/fast/forms/button-sizes-expected.checksum:
- platform/chromium-linux/fast/forms/button-sizes-expected.png:
- platform/chromium-linux/fast/forms/button-sizes-expected.txt:
- platform/chromium-linux/fast/forms/input-button-sizes-expected.checksum:
- platform/chromium-linux/fast/forms/input-button-sizes-expected.png:
- platform/chromium-linux/fast/forms/input-button-sizes-expected.txt:
- platform/chromium-linux/http/tests/misc/acid2-expected.txt: Removed.
- platform/chromium-linux/http/tests/misc/acid2-pixel-expected.checksum:
- platform/chromium-linux/http/tests/misc/acid2-pixel-expected.png:
- platform/chromium-linux/http/tests/misc/acid2-pixel-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-04-t-expected.txt: Removed.
- platform/chromium-linux/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt: Removed.
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.txt: Removed.
- platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.txt: Removed.
- platform/chromium-linux/svg/hixie/perf/003-expected.txt: Added.
- platform/chromium-linux/svg/hixie/perf/004-expected.txt: Added.
- platform/chromium-linux/svg/hixie/perf/005-expected.txt: Added.
- platform/chromium-linux/svg/hixie/perf/006-expected.txt: Added.
- platform/chromium-linux/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt: Added.
- platform/chromium-linux/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt: Added.
- platform/chromium-linux/svg/text/text-hkern-expected.txt: Removed.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.checksum: Removed.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.png: Removed.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.txt: Removed.
- platform/chromium-linux/svg/text/text-text-01-b-expected.checksum:
- platform/chromium-linux/svg/text/text-text-01-b-expected.png:
- platform/chromium-linux/svg/text/text-text-01-b-expected.txt:
- platform/chromium-linux/svg/text/text-text-04-t-expected.txt: Removed.
- platform/chromium-linux/svg/text/text-vkern-expected.checksum: Removed.
- platform/chromium-linux/svg/text/text-vkern-expected.txt: Removed.
- platform/chromium-linux/svg/text/text-vkern-on-horizontal-text-expected.txt: Removed.
- platform/chromium-win/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: Removed.
- platform/chromium-win/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: Removed.
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-04-t-expected.txt:
- platform/chromium-win/svg/batik/text/xmlSpace-expected.txt:
- platform/chromium-win/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.txt:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.txt: Removed.
- platform/chromium-win/svg/text/text-hkern-expected.txt: Removed.
- platform/chromium-win/svg/text/text-hkern-on-vertical-text-expected.checksum:
- platform/chromium-win/svg/text/text-hkern-on-vertical-text-expected.png:
- platform/chromium-win/svg/text/text-hkern-on-vertical-text-expected.txt: Removed.
- platform/chromium-win/svg/text/text-text-04-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-04-t-expected.png:
- platform/chromium-win/svg/text/text-text-04-t-expected.txt:
- platform/chromium-win/svg/text/text-vkern-expected.checksum:
- platform/chromium-win/svg/text/text-vkern-expected.png:
- platform/chromium-win/svg/text/text-vkern-expected.txt: Removed.
- platform/chromium-win/svg/text/text-vkern-on-horizontal-text-expected.txt: Removed.
- platform/chromium/test_expectations.txt:
2011-01-24 Tony Chang <tony@chromium.org>
Unreviewed, round ascent and descent to match old code.
- platform/graphics/chromium/SimpleFontDataLinux.cpp: (WebCore::SimpleFontData::platformInit):
- 9:15 PM Changeset in webkit [76568] by
-
- 8 edits2 adds in trunk
2011-01-24 Simon Fraser <Simon Fraser>
Reviewed by Chris Marrin.
perspective() transform function should take lengths
https://bugs.webkit.org/show_bug.cgi?id=52683
The argument to the perspective() transform function should
be a Length, rather than a bare number. Bare numbers are still
accepted (and treated as px), but this behavior is deprecated.
Test: animations/3d/transform-perspective.html
transforms/3d/general/3dtransform-values.html
- css/CSSParser.cpp: (WebCore::CSSParser::parseTransform): Check the units for the perspective() function. Allow bare numbers for backwards compatibility.
- css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::createTransformOperations): Convert value to Length.
- platform/graphics/transforms/PerspectiveTransformOperation.cpp: (WebCore::clampToPostiveInteger): Helper. (WebCore::PerspectiveTransformOperation::blend): Blend via Lengths.
- platform/graphics/transforms/PerspectiveTransformOperation.h: (WebCore::PerspectiveTransformOperation::create): double -> Length. (WebCore::PerspectiveTransformOperation::perspective): Ditto. (WebCore::PerspectiveTransformOperation::isIdentity): Ditto. (WebCore::PerspectiveTransformOperation::apply): Ditto. (WebCore::PerspectiveTransformOperation::PerspectiveTransformOperation): Assert that the Length is a fixed type.
- 8:38 PM Changeset in webkit [76567] by
-
- 4 edits2 adds in trunk
2011-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
[Windows] Textfield <input>s have different widths.
https://bugs.webkit.org/show_bug.cgi?id=48405
- fast/forms/input-widths-expected.txt: Added.
- fast/forms/input-widths.html: Added.
2011-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
[Windows] Textfield <input>s have different widths.
https://bugs.webkit.org/show_bug.cgi?id=48405
- Apply the padding override for type=text to other textfield types too.
- Reset margin value of outer spin button, which is not used in Windows.
- Don't add inner spin button width to the preferred text field width. Text fields should have the identical widths regardless of the existence of spin buttons.
Test: fast/forms/input-widths.html
- css/themeWin.css: (input[type="week"]): (input[type="week"]:disabled): (input[type="search"]::-webkit-search-cancel-button): (input::-webkit-outer-spin-button):
- rendering/RenderTextControlSingleLine.cpp: (WebCore::RenderTextControlSingleLine::preferredContentWidth): Don't add inner spin button width to the preferred width.
- 8:36 PM Changeset in webkit [76566] by
-
- 4 edits4 adds in trunk
2011-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Some bugs of search cancel button and spin button about state change in
an event handler.
https://bugs.webkit.org/show_bug.cgi?id=46950
- fast/forms/input-number-change-type-on-focus-expected.txt: Added.
- fast/forms/input-number-change-type-on-focus.html: Added.
- fast/forms/search-hide-cancel-on-cancel-expected.txt: Added.
- fast/forms/search-hide-cancel-on-cancel.html: Added.
2011-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Some bugs of search cancel button and spin button about state change in
an event handler.
https://bugs.webkit.org/show_bug.cgi?id=46950
Fix the following problems:
- Type=search field didn't release event capturing
- Assertion failure when an input field with spin buttons was changed to another type on focus event.
- A input field with spin button didn't release event capturing when it was changed to another type on focus event.
Tests: fast/forms/input-number-change-type-on-focus.html
fast/forms/search-hide-cancel-on-cancel.html
- rendering/TextControlInnerElements.cpp:
(WebCore::SearchFieldCancelButtonElement::defaultEventHandler):
- Make the variable 'input' RefPtr. It makes the code simpler.
- Remove visibility check on mouseup event. We should release capturing anyway because the cancel button may be invisible if JavaScript code called by the focus event removes the input value.
(WebCore::SpinButtonElement::detach):
- Release capturing on detach because it is possible that a spin button node is detached while it is capturing events.
(WebCore::SpinButtonElement::defaultEventHandler):
Take a reference to this and check renderer() after some functions which
may run JavaScript code.
(WebCore::InputFieldSpeechButtonElement::defaultEventHandler):
Make the variable 'input' RefPtr to align other functions in this file.
(WebCore::InputFieldSpeechButtonElement::setRecognitionResult): ditto.
- rendering/TextControlInnerElements.h: Declare SpinButtonElement::detach().
- 7:27 PM Changeset in webkit [76565] by
-
- 7 edits in trunk
2011-01-24 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Ojan Vafai.
Inserting multiple whitespace using text composition (IME) should insert interleaved nbsp and whitespace.
https://bugs.webkit.org/show_bug.cgi?id=52781
The test was rebaselined to have interleaved space and non-breaking space.
- editing/inserting/insert-composition-whitespace-expected.txt:
- editing/inserting/insert-composition-whitespace.html:
2011-01-24 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Ojan Vafai.
Inserting multiple whitespace using text composition (IME) should insert interleaved nbsp and whitespace.
https://bugs.webkit.org/show_bug.cgi?id=52781
The bug was caused by stringWithRebalancedWhitespace's replacing the space at the beginning of a paragraph
and the end of a paragraph by a non-breaking space after it replaced two consecutive spaces by a space and
non-breaking space pattern, thereby replacing more spaces by non-breaking spaces than needed.
Rewrote the function using Vector<UChar> to fix the bug. New function no longer calls String::replace
multiple times but instead it traverses through the string and replaces a space that immediately follows
another space or appears at the beginning of a paragraph or at the end of a paragraph by a non-break space.
- editing/CompositeEditCommand.cpp:
- editing/htmlediting.cpp: (WebCore::stringWithRebalancedWhitespace): Written.
- editing/htmlediting.h: (WebCore::isWhitespace): Removed from CompositeEditCommand.cpp
- 6:56 PM Changeset in webkit [76564] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Skip one more crashing test.
- platform/gtk/Skipped: Skip a test.
- 6:48 PM Changeset in webkit [76563] by
-
- 2 edits in trunk/Source/WebKit2
Fix build.
- WebProcess/mac/WebProcessMac.mm:
(WebKit::initializeSandbox):
- 6:39 PM Changeset in webkit [76562] by
-
- 4 edits2 adds in trunk/Source/WebCore
2011-01-24 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
Web Audio API: port FFTFrame to FFTW
https://bugs.webkit.org/show_bug.cgi?id=52989
Ported FFTFrame class to the open-source FFTW library. Tested with
unit tests from Chris Rogers. Made preliminary changes to GYP
files for conditional compilation of these files; will need to be
adjusted once FFTW is integrated as third-party source.
- WebCore.gyp/WebCore.gyp:
- WebCore.gypi:
- platform/audio/FFTFrame.h:
- platform/audio/fftw: Added.
- platform/audio/fftw/FFTFrameFFTW.cpp: Added. (WebCore::FFTFrame::FFTFrame): (WebCore::FFTFrame::~FFTFrame): (WebCore::FFTFrame::multiply): (WebCore::FFTFrame::doFFT): (WebCore::FFTFrame::doInverseFFT): (WebCore::FFTFrame::cleanup): (WebCore::FFTFrame::realData): (WebCore::FFTFrame::imagData): (WebCore::FFTFrame::fftwPlanForSize):
- 6:38 PM Changeset in webkit [76561] by
-
- 9 edits in trunk/Source
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
Reset the page scale factor on standard frame loads
https://bugs.webkit.org/show_bug.cgi?id=53058
<rdar://problem/8908844>
Add a symbol needed by WebKit2.
- WebCore.exp.in:
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
Reset the page scale factor on standard frame loads
https://bugs.webkit.org/show_bug.cgi?id=53058
<rdar://problem/8908844>
- UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::scaleWebView): Don't set m_viewScaleFactor here. It will be set in viewScaleFactorDidChange.
(WebKit::WebPageProxy::viewScaleFactorDidChange):
Update m_viewScaleFactor.
- UIProcess/WebPageProxy.h: Add viewScaleFactorDidChange.
- UIProcess/WebPageProxy.messages.in: Add ViewScaleFactorDidChange message.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: (WebKit::WebFrameLoaderClient::dispatchDidCommitLoad): Set the scale factor.
(WebKit::WebFrameLoaderClient::restoreViewState):
Inform the UI process about the new view scale factor.
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::scaleWebView): Send a ViewScaleFactorDidChange message.
- 6:21 PM Changeset in webkit [76560] by
-
- 8 edits in trunk/Source/WebCore
2011-01-24 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Eric Seidel.
Stop instantiating legacy editing positions in InsertTextCommand, MoveSelectionCommand,
ReplaceSelectionCommand, SelectionController, SpellChecker, TypingCommand, and markup.cpp
https://bugs.webkit.org/show_bug.cgi?id=52676
Stop instantiating legacy editing positions in the following files.
- editing/InsertTextCommand.cpp: (WebCore::InsertTextCommand::prepareForTextInsertion): (WebCore::InsertTextCommand::performTrivialReplace): (WebCore::InsertTextCommand::input): (WebCore::InsertTextCommand::insertTab):
- editing/MoveSelectionCommand.cpp: (WebCore::MoveSelectionCommand::doApply):
- editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::removeUnrenderedTextNodesAtEnds): (WebCore::ReplaceSelectionCommand::mergeEndIfNeeded): (WebCore::ReplaceSelectionCommand::doApply): (WebCore::ReplaceSelectionCommand::shouldRemoveEndBR): (WebCore::ReplaceSelectionCommand::performTrivialReplace):
- editing/SelectionController.cpp: (WebCore::SelectionController::setSelectionFromNone):
- editing/SpellChecker.cpp: (WebCore::SpellChecker::didCheck):
- editing/TypingCommand.cpp: (WebCore::TypingCommand::makeEditableRootEmpty): (WebCore::TypingCommand::deleteKeyPressed): (WebCore::TypingCommand::forwardDeleteKeyPressed):
- editing/markup.cpp: (WebCore::StyledMarkupAccumulator::appendText): (WebCore::StyledMarkupAccumulator::serializeNodes): (WebCore::highestAncestorToWrapMarkup): (WebCore::createMarkup):
- 6:08 PM Changeset in webkit [76559] by
-
- 25 edits4 deletes in trunk
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Anders Carlsson.
Use designated temp directory for the database for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=53052
Adopt the new WK2 API for this.
- WebKitTestRunner/TestController.cpp: (WTR::TestController::libraryPathForTesting): (WTR::TestController::initialize):
- WebKitTestRunner/TestController.h:
- WebKitTestRunner/mac/TestControllerMac.mm: (WTR::TestController::platformLibraryPathForTesting):
- WebKitTestRunner/qt/TestControllerQt.cpp: (WTR::TestController::platformLibraryPathForTesting):
- WebKitTestRunner/win/TestControllerWin.cpp: (WTR::TestController::platformLibraryPathForTesting):
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Anders Carlsson.
Use designated temp directory for the database for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=53052
Add the API necessary to support this. Database path is now
determined on the UI process side and passed to the Web process.
Reviewed by Anders Carlsson.
- GNUmakefile.am:
- Shared/WebProcessCreationParameters.cpp: (WebKit::WebProcessCreationParameters::encode): (WebKit::WebProcessCreationParameters::decode):
- Shared/WebProcessCreationParameters.h:
- UIProcess/API/C/WKContext.cpp: (WKContextSetDatabaseDirectory):
- UIProcess/API/C/WKContextPrivate.h:
- UIProcess/WebContext.cpp: (WebKit::WebContext::ensureWebProcess): (WebKit::WebContext::databaseDirectory):
- UIProcess/WebContext.h: (WebKit::WebContext::setDatabaseDirectory):
- UIProcess/mac/WebContextMac.mm: (WebKit::WebContext::platformDefaultDatabaseDirectory):
- UIProcess/qt/WebContextQt.cpp: (WebKit::WebContext::platformDefaultDatabaseDirectory):
- UIProcess/win/WebContextWin.cpp: (WebKit::WebContext::platformDefaultDatabaseDirectory):
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
- WebProcess/WebCoreSupport/WebDatabaseManager.cpp: (WebKit::WebDatabaseManager::initialize): (WebKit::WebDatabaseManager::WebDatabaseManager):
- WebProcess/WebCoreSupport/WebDatabaseManager.h:
- WebProcess/WebCoreSupport/gtk/WebDatabaseManagerGtk.cpp: Removed.
- WebProcess/WebCoreSupport/mac/WebDatabaseManagerMac.mm: Removed.
- WebProcess/WebCoreSupport/qt/WebDatabaseManagerQt.cpp: Removed.
- WebProcess/WebCoreSupport/win/WebDatabaseManagerWin.cpp: Removed.
- WebProcess/WebProcess.cpp: (WebKit::WebProcess::WebProcess): (WebKit::WebProcess::initializeWebProcess):
- WebProcess/com.apple.WebProcess.sb:
- WebProcess/mac/WebProcessMac.mm: (WebKit::initializeSandbox):
- win/WebKit2.vcproj:
- 6:05 PM Changeset in webkit [76558] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Skipping failing tests after r76555.
- platform/gtk/Skipped: Skip failing tests.
- 5:36 PM Changeset in webkit [76557] by
-
- 7 edits in trunk
2011-01-24 Peter Kasting <pkasting@google.com>
Reviewed by Darin Adler.
Roll back r67261 ("Don't fire onclick on middle clicks") due to
regressions.
https://bugs.webkit.org/show_bug.cgi?id=46733
- fast/events/mouse-click-events-expected.txt:
- fast/events/script-tests/mouse-click-events.js:
2011-01-24 Peter Kasting <pkasting@google.com>
Reviewed by Darin Adler.
Roll back r67261 ("Don't fire onclick on middle clicks") due to
regressions.
https://bugs.webkit.org/show_bug.cgi?id=46733
- html/HTMLAnchorElement.cpp: (WebCore::isLinkClick):
- html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::preDispatchEventHandler): (WebCore::HTMLInputElement::postDispatchEventHandler): (WebCore::HTMLInputElement::defaultEventHandler):
- page/EventHandler.cpp: (WebCore::EventHandler::handleMouseDoubleClickEvent): (WebCore::EventHandler::handleMouseReleaseEvent):
- 4:58 PM Changeset in webkit [76556] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Xiaomei Ji <xji@chromium.org>
Unreviewed.
Skip cjk-segmentation.html (introduced in r76548) in QT.
QT skipped range-expand.html, skip cjk-segmentation as well.
- platform/qt/Skipped:
- 4:47 PM Changeset in webkit [76555] by
-
- 4 edits in trunk
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Reviewed by Eric Seidel.
[GTK] Many DOM XHTML tests time out
https://bugs.webkit.org/show_bug.cgi?id=52553
- platform/gtk/Skipped: Unskip tests which are no longer timing out.
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Reviewed by Eric Seidel.
[GTK] Many DOM XHTML tests time out
https://bugs.webkit.org/show_bug.cgi?id=52553
Properly handle the situation where a synchronous load fails before the inner
event loop has started. In this case, we simply do not run the inner event loop,
or else it will block indefinitely (since no GIO or libsoup callbacks will fire).
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::ResourceHandle::loadResourceSynchronously): Bail out of a synchronous load if it fails up front.
- 4:46 PM Changeset in webkit [76554] by
-
- 2 edits in trunk/Tools
Add a new Leopard test bot.
Reviewed by Stephanie Lewis.
- BuildSlaveSupport/build.webkit.org-config/config.json:
- 4:35 PM Changeset in webkit [76553] by
-
- 3 edits in trunk/Tools
2011-01-24 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Adam Barth.
Add EFL Builder to core waterfall
https://bugs.webkit.org/show_bug.cgi?id=52704
Add EFL Builder to the core waterfall again.
- Scripts/webkitpy/common/net/buildbot/buildbot.py:
- Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
- 4:09 PM Changeset in webkit [76552] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium test expectation update for r76548.
- platform/chromium/test_expectations.txt:
- 3:40 PM Changeset in webkit [76551] by
-
- 2 edits in trunk/Source/WebKit2
Unreviewed build fix.
- win/WebKit2.vcproj: Don't build the CG Utilities when building
without CG support.
- 3:16 PM Changeset in webkit [76550] by
-
- 3 edits in trunk/Source/WebKit2
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by John Sullivan.
Don't use the timeout checker for non-user-interaction messages
https://bugs.webkit.org/show_bug.cgi?id=53046
- UIProcess/ChunkedUpdateDrawingAreaProxy.cpp: (WebKit::ChunkedUpdateDrawingAreaProxy::didSetSize): (WebKit::ChunkedUpdateDrawingAreaProxy::sendSetSize):
- UIProcess/LayerBackedDrawingAreaProxy.cpp: (WebKit::LayerBackedDrawingAreaProxy::sizeDidChange): (WebKit::LayerBackedDrawingAreaProxy::didSetSize):
- 2:42 PM Changeset in webkit [76549] by
-
- 8 edits in trunk/Source
2011-01-24 Zhenyao Mo <zmo@google.com>
Reviewed by Darin Adler.
Remove sizeInBytes from GraphicsContext3D's various implementations
https://bugs.webkit.org/show_bug.cgi?id=52339
- src/GraphicsContext3DChromium.cpp:
- src/GraphicsContext3DInternal.h:
2011-01-24 Zhenyao Mo <zmo@google.com>
Reviewed by Darin Adler.
Remove sizeInBytes from GraphicsContext3D's various implementations
https://bugs.webkit.org/show_bug.cgi?id=52339
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::sizeInBytes):
- platform/graphics/GraphicsContext3D.h:
- platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
- platform/graphics/qt/GraphicsContext3DQt.cpp:
- 2:25 PM Changeset in webkit [76548] by
-
- 1 edit4 adds in trunk/LayoutTests
2011-01-24 Xiaomei Ji <xji@chromium.org>
Reviewed by Ryosuke Niwa.
Add test for Chinese Segmentation.
https://bugs.webkit.org/show_bug.cgi?id=52926
The CJK segmentation currently does not work in other ports except Chromium.
Please refer to https://bugs.webkit.org/show_bug.cgi?id=53044 for detail.
- fast/text/international/cjk-segmentation-expected.txt: Added.
- fast/text/international/cjk-segmentation.html: Added.
- platform/chromium/fast/text/international: Added.
- platform/chromium/fast/text/international/cjk-segmentation-expected.txt: Added.
- 2:22 PM Changeset in webkit [76547] by
-
- 3 edits in trunk/Tools
2011-01-24 Xianzhu Wang <wangxianzhu@google.com>
Reviewed by Tony Chang.
new-run-webkit-tests fails to start HTTP server if there are proxy settings
https://bugs.webkit.org/show_bug.cgi?id=52872
Force disabling proxy to resolve the problem.
- Scripts/webkitpy/layout_tests/port/http_server_base.py:
- Scripts/webkitpy/layout_tests/port/websocket_server.py:
- 2:17 PM Changeset in webkit [76546] by
-
- 8 edits in trunk/Source
Windows Production build fix
Source/JavaScriptCore:
- JavaScriptCore.vcproj/JavaScriptCore.make: Update for move of JavaScriptCore into Source.
Source/WebCore:
- WebCore.vcproj/WebCore.make: Update for move of WebCore into Source.
Source/WebKit/win:
- WebKit.vcproj/WebKit.make: Update for move of WebKit into Source.
Source/WebKit2:
- win/WebKit2.make: Update for move of WebKit2 into Source.
- 2:01 PM Changeset in webkit [76545] by
-
- 4 edits in trunk/Websites/bugs.webkit.org
2011-01-24 William Siegrist <wsiegrist@apple.com>
Apply fix for https://bugzilla.mozilla.org/show_bug.cgi?id=621591
- 1:33 PM Changeset in webkit [76544] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Eric Seidel.
Skip a newly added test that uses textInputController
https://bugs.webkit.org/show_bug.cgi?id=53027
- platform/mac-wk2/Skipped:
- 1:02 PM Changeset in webkit [76543] by
-
- 2 edits in trunk/Source/WebKit2
WebKit2: LayoutTests: The UNIMPLEMENTED warnings in TextCheckerWin should be disabled
https://bugs.webkit.org/show_bug.cgi?id=53029
Reviewed by Adam Roben.
- UIProcess/win/TextCheckerWin.cpp:
Disable the warnings for this file.
- 12:31 PM Changeset in webkit [76542] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Andrei Popescu <andreip@google.com>
Unreviewed, build fix.
LayoutTest/storage/indexeddb/objectstore-autoincrement.html is failing after r76533
https://bugs.webkit.org/show_bug.cgi?id=53032
Fix the expected output, which still had an error.
- storage/indexeddb/objectstore-autoincrement-expected.txt:
- 12:22 PM Changeset in webkit [76541] by
-
- 5 edits1 add in trunk/Source/WebCore
2011-01-24 Anton Muhin <antonm@chromium.org>
Reviewed by Nate Chapin.
[v8] Refactoring: extract IntrusiveDOMWrapperMap into a seprate class and files.
https://bugs.webkit.org/show_bug.cgi?id=52911
Plain refactoring, covered by the existing tests.
- WebCore.gypi: IntrusiveDOMWrapperMap.h added.
- bindings/v8/DOMDataStore.cpp: IntrusiveDOMWrapperMap is moved out of DOMDataStore class.
- bindings/v8/DOMDataStore.h: IntrusiveDOMWrapperMap is moved out of DOMDataStore class.
- bindings/v8/IntrusiveDOMWrapperMap.h: Added. (WebCore::ChunkedTable::ChunkedTable): (WebCore::ChunkedTable::add): (WebCore::ChunkedTable::remove): (WebCore::ChunkedTable::clear): (WebCore::ChunkedTable::visit): (WebCore::ChunkedTable::Chunk::Chunk): (WebCore::ChunkedTable::clearEntries): (WebCore::ChunkedTable::visitEntries): (WebCore::IntrusiveDOMWrapperMap::IntrusiveDOMWrapperMap): (WebCore::IntrusiveDOMWrapperMap::get): (WebCore::IntrusiveDOMWrapperMap::set): (WebCore::IntrusiveDOMWrapperMap::contains): (WebCore::IntrusiveDOMWrapperMap::visit): (WebCore::IntrusiveDOMWrapperMap::removeIfPresent): (WebCore::IntrusiveDOMWrapperMap::clear): (WebCore::IntrusiveDOMWrapperMap::ChunkedTableTraits::move): (WebCore::IntrusiveDOMWrapperMap::ChunkedTableTraits::clear): (WebCore::IntrusiveDOMWrapperMap::ChunkedTableTraits::visit):
- bindings/v8/StaticDOMDataStore.h: include added.
- 12:11 PM Changeset in webkit [76540] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Kenji Imasaki <imasaki@chromium.org>
Reviewed by Jian Li.
[chromium] Remove non-flaky tests from test expectation file
https://bugs.webkit.org/show_bug.cgi?id=53022
- platform/chromium/test_expectations.txt:
- 12:07 PM Changeset in webkit [76539] by
-
- 3 edits in branches/chromium/648/Source/WebKit/chromium
Merge 76455 - 2011-01-22 John Abd-El-Malek <jam@chromium.org>
Reviewed by Adam Barth.
[chromium]: Fix WebScrollbarImpl not getting scroll events after recent scrollbar refactoring
https://bugs.webkit.org/show_bug.cgi?id=52967
- src/WebScrollbarImpl.cpp: (WebKit::WebScrollbarImpl::horizontalScrollbar): (WebKit::WebScrollbarImpl::verticalScrollbar):
- src/WebScrollbarImpl.h:
TBR=jam@chromium.org
Review URL: http://codereview.chromium.org/6392001
- 11:43 AM Changeset in webkit [76538] by
-
- 3 edits in trunk/LayoutTests
2011-01-24 Andrei Popescu <andreip@google.com>
Reviewed by Jeremy Orlow.
LayoutTest/storage/indexeddb/objectstore-autoincrement.html is failing after r76533
https://bugs.webkit.org/show_bug.cgi?id=53032
This fixes the layout test by modifying the arguments to IDBDatabase::transaction.
- storage/indexeddb/objectstore-autoincrement-expected.txt:
- storage/indexeddb/objectstore-autoincrement.html:
- 11:42 AM Changeset in webkit [76537] by
-
- 14 edits in trunk/Source/WebCore
2011-01-24 Shane Stephens <shanestephens@google.com>
Reviewed by Chris Marrin.
TransformationMatrix multiply operations apply operands in wrong order.
https://bugs.webkit.org/show_bug.cgi?id=52780
Rename TranformationMatrix::multLeft into multiply (the method does a multRight,
not a multLeft).
Remove TransformationMatrix::multiply, which was actually doing a multLeft.
Fix TransformationMatrix::operator* and operator*= such that the operand is
applied to the right-hand side of the matrix that the method is called on.
i.e., previously "a * b" used to compute "b * a", and "a *= b" used to store
"b * a" in "a". This has now been fixed so "a * b" computes "a * b" and
"a *= b" stores "a * b" in "a".
Convert all call sites for these methods to provide operands in the correct order.
No new tests as patch adds no new functionality.
- css/WebKitCSSMatrix.cpp: (WebCore::WebKitCSSMatrix::multiply):
- platform/graphics/transforms/Matrix3DTransformOperation.h: (WebCore::Matrix3DTransformOperation::apply):
- platform/graphics/transforms/MatrixTransformOperation.h: (WebCore::MatrixTransformOperation::apply):
- platform/graphics/transforms/TransformationMatrix.cpp: (WebCore::TransformationMatrix::scaleNonUniform): (WebCore::TransformationMatrix::scale3d): (WebCore::TransformationMatrix::rotate3d): (WebCore::TransformationMatrix::skew): (WebCore::TransformationMatrix::applyPerspective): (WebCore::TransformationMatrix::multiply): (WebCore::TransformationMatrix::recompose):
- platform/graphics/transforms/TransformationMatrix.h: (WebCore::TransformationMatrix::operator*=): (WebCore::TransformationMatrix::operator*):
- rendering/RenderLayer.cpp: (WebCore::transparencyClipBox):
- rendering/RenderObject.cpp: (WebCore::RenderObject::getTransformFromContainer):
- rendering/TransformState.cpp: (WebCore::TransformState::applyTransform): (WebCore::HitTestingTransformState::applyTransform):
- 11:33 AM Changeset in webkit [76536] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Wait for half a second if we're asked to paint when receiving a DidSetSize message
https://bugs.webkit.org/show_bug.cgi?id=53028
- UIProcess/DrawingAreaProxyImpl.cpp: (WebKit::DrawingAreaProxyImpl::paint):
- 11:18 AM Changeset in webkit [76535] by
-
- 3 edits in trunk/Source/WebKit2
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Implement forceRedisplay in the new drawing area
https://bugs.webkit.org/show_bug.cgi?id=53026
- WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::forceRepaint):
- WebProcess/WebPage/DrawingAreaImpl.h:
- 11:16 AM Changeset in webkit [76534] by
-
- 1 add in branches/chromium/648/codereview.settings
Added codereview.settings file.
- 11:11 AM Changeset in webkit [76533] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Fill unpainted rects with the background color.
https://bugs.webkit.org/show_bug.cgi?id=53025
- UIProcess/API/mac/WKView.mm: (drawPageBackground): Add new helper function.
(-[WKView drawRect:]):
Iterate over the unpainted rects and fill them with the background color.
- 11:10 AM Changeset in webkit [76532] by
-
- 1 copy in branches/chromium/648
Branching Chromium 648.
- 11:01 AM Changeset in webkit [76531] by
-
- 33 edits in trunk
2011-01-24 Andrei Popescu <andreip@google.com>
Reviewed by Nate Chapin.
IndexedDatabase methods should not take arguments of type OptionsObject
https://bugs.webkit.org/show_bug.cgi?id=53012
- storage/indexeddb/create-object-store-options-expected.txt:
- storage/indexeddb/create-object-store-options.html:
- storage/indexeddb/cursor-delete-expected.txt:
- storage/indexeddb/cursor-delete.html:
- storage/indexeddb/cursor-index-delete-expected.txt:
- storage/indexeddb/cursor-index-delete.html:
- storage/indexeddb/data-corruption-expected.txt:
- storage/indexeddb/data-corruption.html:
- storage/indexeddb/database-quota-expected.txt:
- storage/indexeddb/database-quota.html:
- storage/indexeddb/index-cursor.html:
- storage/indexeddb/objectstore-basics-expected.txt:
- storage/indexeddb/objectstore-basics.html:
- storage/indexeddb/objectstore-cursor.html:
- storage/indexeddb/open-cursor-expected.txt:
- storage/indexeddb/open-cursor.html:
- storage/indexeddb/transaction-and-objectstore-calls-expected.txt:
- storage/indexeddb/transaction-and-objectstore-calls.html:
- storage/indexeddb/tutorial.html:
2011-01-24 Andrei Popescu <andreip@google.com>
Reviewed by Nate Chapin.
IndexedDatabase methods should not take arguments of type OptionsObject
https://bugs.webkit.org/show_bug.cgi?id=53012
This patch reverts all IDB methods, except IDBDatabase::createObjectStore and
IDBObjectStore::createIndex, to using a plain list of arguments instead of
grouping the various parameters inside a single OptionsObject argument.
This decision was made on public-webapps@w3.org mailing list.
We also add support (v8 only for now) for passing DOMStringList objects as arguments to native
methods. The code for obtaining a DOMStringList object from a JS array of strings existed already
in OptionsObject.cpp, I just copied it to V8Bindings.cpp and taught the v8 code generator how to
use it.
- bindings/scripts/CodeGeneratorV8.pm:
- bindings/v8/V8Binding.cpp: (WebCore::v8ValueToWebCoreDOMStringList):
- bindings/v8/V8Binding.h:
- storage/IDBDatabase.cpp: (WebCore::IDBDatabase::transaction):
- storage/IDBDatabase.h: (WebCore::IDBDatabase::transaction):
- storage/IDBDatabase.idl:
- storage/IDBIndex.cpp: (WebCore::IDBIndex::openCursor): (WebCore::IDBIndex::openKeyCursor):
- storage/IDBIndex.h: (WebCore::IDBIndex::openCursor): (WebCore::IDBIndex::openKeyCursor):
- storage/IDBIndex.idl:
- storage/IDBObjectStore.cpp: (WebCore::IDBObjectStore::openCursor):
- storage/IDBObjectStore.h: (WebCore::IDBObjectStore::openCursor):
- storage/IDBObjectStore.idl:
- 10:33 AM Changeset in webkit [76530] by
-
- 3 edits in trunk/Tools
2011-01-24 Andreas Kling <kling@webkit.org>
Reviewed by Darin Adler.
check-webkit-style: Update exemptions following Source/ move.
https://bugs.webkit.org/show_bug.cgi?id=53017
- Scripts/webkitpy/style/checker.py:
- Scripts/webkitpy/style/checker_unittest.py:
- 9:54 AM Changeset in webkit [76529] by
-
- 2 edits in trunk/Source/WebKit2
WebKit2 version of <rdar://problem/6097826> Mail's cursor does not become a resize cursor when moving mouse from scrolled email to the horizontal splitter
Reviewed by John Sullivan.
- UIProcess/API/mac/PageClientImpl.mm:
(WebKit::PageClientImpl::setCursor): If the current cursor comes from a cursor rect, do not override it.
- 9:40 AM Changeset in webkit [76528] by
-
- 1 edit30 moves in trunk/LayoutTests
2011-01-24 Chang Shu <chang.shu@nokia.com>
Reviewed by Darin Adler.
Move contentEditable related test cases to the right place as they are DOM
related instead of editing related.
https://bugs.webkit.org/show_bug.cgi?id=53010
- editing/editability: Removed.
- editing/editability/attr-empty-string-expected.txt: Removed.
- editing/editability/attr-empty-string.html: Removed.
- editing/editability/attr-false-string-expected.txt: Removed.
- editing/editability/attr-false-string.html: Removed.
- editing/editability/attr-invalid-string-expected.txt: Removed.
- editing/editability/attr-invalid-string.html: Removed.
- editing/editability/attr-missing-ancestor-false-expected.txt: Removed.
- editing/editability/attr-missing-ancestor-false.html: Removed.
- editing/editability/attr-missing-ancestor-true-expected.txt: Removed.
- editing/editability/attr-missing-ancestor-true.html: Removed.
- editing/editability/attr-missing-parent-ancestor-missing-expected.txt: Removed.
- editing/editability/attr-missing-parent-ancestor-missing.html: Removed.
- editing/editability/attr-missing-parent-false-expected.txt: Removed.
- editing/editability/attr-missing-parent-false.html: Removed.
- editing/editability/attr-missing-parent-true-expected.txt: Removed.
- editing/editability/attr-missing-parent-true.html: Removed.
- editing/editability/attr-true-string-expected.txt: Removed.
- editing/editability/attr-true-string.html: Removed.
- editing/editability/set-false-expected.txt: Removed.
- editing/editability/set-false.html: Removed.
- editing/editability/set-inherit-parent-false-expected.txt: Removed.
- editing/editability/set-inherit-parent-false.html: Removed.
- editing/editability/set-inherit-parent-true-expected.txt: Removed.
- editing/editability/set-inherit-parent-true.html: Removed.
- editing/editability/set-invalid-value-expected.txt: Removed.
- editing/editability/set-invalid-value.html: Removed.
- editing/editability/set-true-expected.txt: Removed.
- editing/editability/set-true.html: Removed.
- editing/editability/set-value-caseinsensitive-expected.txt: Removed.
- editing/editability/set-value-caseinsensitive.html: Removed.
- fast/dom/HTMLElement/attr-empty-string-expected.txt: Copied from LayoutTests/editing/editability/attr-empty-string-expected.txt.
- fast/dom/HTMLElement/attr-empty-string.html: Copied from LayoutTests/editing/editability/attr-empty-string.html.
- fast/dom/HTMLElement/attr-false-string-expected.txt: Copied from LayoutTests/editing/editability/attr-false-string-expected.txt.
- fast/dom/HTMLElement/attr-false-string.html: Copied from LayoutTests/editing/editability/attr-false-string.html.
- fast/dom/HTMLElement/attr-invalid-string-expected.txt: Copied from LayoutTests/editing/editability/attr-invalid-string-expected.txt.
- fast/dom/HTMLElement/attr-invalid-string.html: Copied from LayoutTests/editing/editability/attr-invalid-string.html.
- fast/dom/HTMLElement/attr-missing-ancestor-false-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-ancestor-false-expected.txt.
- fast/dom/HTMLElement/attr-missing-ancestor-false.html: Copied from LayoutTests/editing/editability/attr-missing-ancestor-false.html.
- fast/dom/HTMLElement/attr-missing-ancestor-true-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-ancestor-true-expected.txt.
- fast/dom/HTMLElement/attr-missing-ancestor-true.html: Copied from LayoutTests/editing/editability/attr-missing-ancestor-true.html.
- fast/dom/HTMLElement/attr-missing-parent-ancestor-missing-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-parent-ancestor-missing-expected.txt.
- fast/dom/HTMLElement/attr-missing-parent-ancestor-missing.html: Copied from LayoutTests/editing/editability/attr-missing-parent-ancestor-missing.html.
- fast/dom/HTMLElement/attr-missing-parent-false-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-parent-false-expected.txt.
- fast/dom/HTMLElement/attr-missing-parent-false.html: Copied from LayoutTests/editing/editability/attr-missing-parent-false.html.
- fast/dom/HTMLElement/attr-missing-parent-true-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-parent-true-expected.txt.
- fast/dom/HTMLElement/attr-missing-parent-true.html: Copied from LayoutTests/editing/editability/attr-missing-parent-true.html.
- fast/dom/HTMLElement/attr-true-string-expected.txt: Copied from LayoutTests/editing/editability/attr-true-string-expected.txt.
- fast/dom/HTMLElement/attr-true-string.html: Copied from LayoutTests/editing/editability/attr-true-string.html.
- fast/dom/HTMLElement/set-false-expected.txt: Copied from LayoutTests/editing/editability/set-false-expected.txt.
- fast/dom/HTMLElement/set-false.html: Copied from LayoutTests/editing/editability/set-false.html.
- fast/dom/HTMLElement/set-inherit-parent-false-expected.txt: Copied from LayoutTests/editing/editability/set-inherit-parent-false-expected.txt.
- fast/dom/HTMLElement/set-inherit-parent-false.html: Copied from LayoutTests/editing/editability/set-inherit-parent-false.html.
- fast/dom/HTMLElement/set-inherit-parent-true-expected.txt: Copied from LayoutTests/editing/editability/set-inherit-parent-true-expected.txt.
- fast/dom/HTMLElement/set-inherit-parent-true.html: Copied from LayoutTests/editing/editability/set-inherit-parent-true.html.
- fast/dom/HTMLElement/set-invalid-value-expected.txt: Copied from LayoutTests/editing/editability/set-invalid-value-expected.txt.
- fast/dom/HTMLElement/set-invalid-value.html: Copied from LayoutTests/editing/editability/set-invalid-value.html.
- fast/dom/HTMLElement/set-true-expected.txt: Copied from LayoutTests/editing/editability/set-true-expected.txt.
- fast/dom/HTMLElement/set-true.html: Copied from LayoutTests/editing/editability/set-true.html.
- fast/dom/HTMLElement/set-value-caseinsensitive-expected.txt: Copied from LayoutTests/editing/editability/set-value-caseinsensitive-expected.txt.
- fast/dom/HTMLElement/set-value-caseinsensitive.html: Copied from LayoutTests/editing/editability/set-value-caseinsensitive.html.
- 9:37 AM Changeset in webkit [76527] by
-
- 3 edits in trunk/Source/WebKit/chromium
2011-01-24 Tony Chang <tony@chromium.org>
Reviewed by James Robinson.
[chromium] turn off gyp circular dependency checking and roll chromium deps
https://bugs.webkit.org/show_bug.cgi?id=52935
- DEPS:
- gyp_webkit: Turn off gyp circular dependency checking on Linux
and Win since we don't do these checks in gyp_chromium. It's
just making it harder for us to roll DEPS and have something
explode.
- 9:35 AM Changeset in webkit [76526] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-24 Satish Sampath <satish@chromium.org>
Reviewed by Csaba Osztrogonác.
Remove obsolete public/API method in chromium port
https://bugs.webkit.org/show_bug.cgi?id=53015
- public/WebSpeechInputController.h: (WebKit::WebSpeechInputController::startRecognition): Removed obsolete method
- 9:29 AM Changeset in webkit [76525] by
-
- 2 edits in trunk/Tools
2011-01-24 Andras Becsi <abecsi@webkit.org>
Rubber-stamped by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- DumpRenderTree/qt/ImageDiff.pro: Add missing "Source" to WebKit.pri path
- 9:25 AM Changeset in webkit [76524] by
-
- 2 edits in trunk/LayoutTests
Add editing/inserting/insert-composition-whitespace.html to the windows
skipped list.
- platform/win/Skipped:
- 8:56 AM Changeset in webkit [76523] by
-
- 42 edits115 adds in trunk/LayoutTests
Unreviewed.
Add Qt specific expected results for passing editing/selections tests.
Compared to Mac png files and Mac expected files. (part 3)
- platform/qt/editing/selection/ [...]:
- 8:50 AM Changeset in webkit [76522] by
-
- 10 edits72 adds in trunk/LayoutTests
Unreviewed.
Add Qt specific expected results for passing editing/selections tests.
Compared to Mac png files and Mac expected files. (part 2)
- platform/qt/editing/selection/ [...]:
- 8:37 AM Changeset in webkit [76521] by
-
- 55 edits240 adds in trunk/LayoutTests
Unreviewed.
Add Qt specific expected results for passing editing/selections tests.
Compared to Mac png files and Mac expected files. (part 1)
- platform/qt/editing/selection/ [...]:
- 8:20 AM Changeset in webkit [76520] by
-
- 2 edits in trunk/Source/WebKit2
Typo fix.
Rubber-stamped by Csaba Osztrogonác.
- UIProcess/Launcher/qt/ProcessLauncherQt.cpp:
(WebKit::ProcessLauncher::launchProcess): Move the bracket to the right place.
- 7:28 AM Changeset in webkit [76519] by
-
- 5 edits in trunk/Source/WebCore
2011-01-24 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: extract dispatch API from network manager.
https://bugs.webkit.org/show_bug.cgi?id=53009
- WebCore.xcodeproj/project.pbxproj:
- inspector/front-end/NetworkManager.js: (WebInspector.NetworkManager): (WebInspector.NetworkManager.prototype.reset): (WebInspector.NetworkManager.prototype.requestContent): (WebInspector.NetworkManager.prototype._processCachedResources): (WebInspector.NetworkDispatcher): (WebInspector.NetworkDispatcher.prototype._updateResourceWithRequest): (WebInspector.NetworkDispatcher.prototype._updateResourceWithResponse): (WebInspector.NetworkDispatcher.prototype._updateResourceWithCachedResource): (WebInspector.NetworkDispatcher.prototype.identifierForInitialRequest): (WebInspector.NetworkDispatcher.prototype.willSendRequest): (WebInspector.NetworkDispatcher.prototype.didReceiveResponse): (WebInspector.NetworkDispatcher.prototype.didLoadResourceFromMemoryCache): (WebInspector.NetworkDispatcher.prototype.didCommitLoadForFrame): (WebInspector.NetworkDispatcher.prototype.didCreateWebSocket): (WebInspector.NetworkDispatcher.prototype._appendRedirect): (WebInspector.NetworkDispatcher.prototype._startResource): (WebInspector.NetworkDispatcher.prototype._updateResource): (WebInspector.NetworkDispatcher.prototype._finishResource): (WebInspector.NetworkDispatcher.prototype._addFramesRecursively): (WebInspector.NetworkDispatcher.prototype._dispatchEventToListeners): (WebInspector.NetworkDispatcher.prototype._createResource):
- inspector/front-end/Resource.js: (WebInspector.Resource.prototype._innerRequestContent):
- inspector/front-end/ResourceTreeModel.js: (WebInspector.ResourceTreeModel): (WebInspector.ResourceTreeModel.prototype.reset): (WebInspector.ResourceTreeModel.prototype.unbindResourceURL):
- 7:20 AM Changeset in webkit [76518] by
-
- 4 edits in trunk/Source/WebCore
2011-01-24 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [JSC] remove ScriptDebugServer::pageCreated
https://bugs.webkit.org/show_bug.cgi?id=53007
It's impossible to create "provisional" inspector for pages which are
not yet created so there is no need to listen for page creation in ScriptDebugServer.
- bindings/js/ScriptDebugServer.cpp:
- bindings/js/ScriptDebugServer.h:
- page/Page.cpp: (WebCore::Page::Page):
- 7:11 AM Changeset in webkit [76517] by
-
- 3 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [REGRESSION] AppCache view on resources panel is broken.
https://bugs.webkit.org/show_bug.cgi?id=53002
- inspector/front-end/ApplicationCacheItemsView.js: (WebInspector.ApplicationCacheItemsView.prototype._update):
- inspector/front-end/DOMAgent.js: (WebInspector.ApplicationCacheDispatcher.getApplicationCachesAsync):
- 7:01 AM Changeset in webkit [76516] by
-
- 2 edits in trunk/Source/WebKit/qt
[Qt] QWebFramePrivate::renderRelativeCoords() calls QPainter::save/restore more than necessary
https://bugs.webkit.org/show_bug.cgi?id=49915
Reviewed by Andreas Kling.
In the first loop of renderRelativeCoords() the call of QPainter::save/restore is useless, because
the context is saved/stored within the loop.
In the second loop the calls are also avoidable by using inverse translation on context.
- Api/qwebframe.cpp:
(QWebFramePrivate::renderRelativeCoords):
- 6:46 AM Changeset in webkit [76515] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Andreas Kling <kling@webkit.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Fix warnings about unregistering an invalid timer
https://bugs.webkit.org/show_bug.cgi?id=53006
The ShadowBuffer's purge timer ID was initialized with 0 which lead
to us calling QObject::killTimer(0), causing some qWarnings.
- platform/graphics/qt/ContextShadowQt.cpp: (WebCore::ShadowBuffer::ShadowBuffer): (WebCore::ShadowBuffer::schedulePurge):
- 6:39 AM Changeset in webkit [76514] by
-
- 2 edits in trunk/Source/WebCore
2011-01-21 Mikhail Naganov <mnaganov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Chromium] Fix heap snapshot table sorting.
Fix table sorting to avoid qsort instability artefacts.
- inspector/front-end/HeapSnapshotView.js: (WebInspector.HeapSnapshotView.prototype._sortData): (WebInspector.HeapSnapshotDataGridList.propertyComparator.comparator): (WebInspector.HeapSnapshotDataGridList.propertyComparator):
- 6:24 AM Changeset in webkit [76513] by
-
- 2 edits1 delete in trunk/LayoutTests
Unreviewed.
RTL: selection.modify("move", "forward", "line") when cursor is at start of a line does not move down a line
https://bugs.webkit.org/show_bug.cgi?id=51517
- platform/qt-linux/editing: Removed.
- platform/qt-linux/editing/selection: Removed.
- platform/qt-linux/editing/selection/extend-to-line-boundary-expected.txt: Removed.
- platform/qt/Skipped: Add editing/selection/extend-to-line-boundary.html until fix.
- 6:16 AM Changeset in webkit [76512] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, build fix for r76509.
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::setBreakpoint):
- 6:06 AM Changeset in webkit [76511] by
-
- 4 edits in trunk
2011-01-24 Mikhail Naganov <mnaganov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: Find duplicate strings in localizedStrings.js, update it.
- English.lproj/localizedStrings.js:
- Scripts/check-inspector-strings:
- 6:05 AM Changeset in webkit [76510] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, build fix for r76509.
- bindings/js/ScriptDebugServer.h:
- 5:55 AM Changeset in webkit [76509] by
-
- 20 edits1 delete in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: set breakpoints by line:column.
https://bugs.webkit.org/show_bug.cgi?id=52615
- CMakeLists.txt:
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setBreakpoint): (WebCore::ScriptDebugServer::removeBreakpoint): (WebCore::ScriptDebugServer::hasBreakpoint): (WebCore::ScriptDebugServer::clearBreakpoints):
- bindings/js/ScriptDebugServer.h:
- bindings/v8/DebuggerScript.js: ():
- bindings/v8/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setBreakpoint):
- bindings/v8/ScriptDebugServer.h:
- inspector/Inspector.idl:
- inspector/InspectorBrowserDebuggerAgent.cpp: (WebCore::InspectorBrowserDebuggerAgent::restoreStickyBreakpoint):
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::setStickyBreakpoint): (WebCore::InspectorDebuggerAgent::setBreakpoint): (WebCore::InspectorDebuggerAgent::restoreBreakpoint): (WebCore::InspectorDebuggerAgent::didParseSource):
- inspector/InspectorDebuggerAgent.h:
- inspector/ScriptBreakpoint.cpp: Removed.
- inspector/ScriptBreakpoint.h: (WebCore::ScriptBreakpoint::ScriptBreakpoint):
- inspector/front-end/Breakpoint.js: (WebInspector.Breakpoint): (WebInspector.Breakpoint.prototype.get url):
- inspector/front-end/BreakpointManager.js: (WebInspector.JavaScriptBreakpoint.prototype._serializeToJSON):
- inspector/front-end/DebuggerModel.js: (WebInspector.DebuggerModel.prototype.continueToLine): (WebInspector.DebuggerModel.prototype.setBreakpoint): (WebInspector.DebuggerModel.prototype._breakpointSetOnBackend): (WebInspector.DebuggerDispatcher.prototype.breakpointResolved):
- 5:05 AM Changeset in webkit [76508] by
-
- 1 edit1 delete in trunk
- runtime: Removed. It was accidentally created by r76457.
Rubber-stamped by Csaba Osztrogonác.
Patch by Peter Gal <galpater@inf.u-szeged.hu> on 2011-01-24
- 4:58 AM Changeset in webkit [76507] by
-
- 19 edits1 copy2 deletes in trunk/Source/WebKit2
2011-01-24 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Remove CleanupHandler by passing file descriptors.
Deleting files in signal handler of UI process is not a good idea,
because the memory where filenames are stored might not be valid
after a crash.
To avoid the need of using signal handlers for cleanup,
change following:
1) Avoid passing filenames between processes, pass fds
2) When mmap'ing files, delete them immediately after
opening and mmap'ing them.
3) Pass sockets with fds during fork+exec instead of
passing them via the filesystem.
4) Use mmap'ed files for implementation of SharedMemory.
QSharedMemory does not support cleanup correctly.
Consquences:
- Move MappedMemory to SharedMemory, make UpdateChunk use this.
- Implement CoreIPC::Attachment using mmaped files.
- Send messages using datagram socket. This solution works similiarly to Mach ports on Mac.
- Send big messages out-of-line and thus avoid increasing the receive buffer.
- Remove MemoryMappedPool and rely on libc/kernel caching of mmapped areas.
- Unmap memory areas after use.
- When UI process crashes, kill the web process using SIGKILL. This is possible again because cleanup handler is not needed.
[WK2][Qt] Multiple problems with MemoryMappedPool
https://bugs.webkit.org/show_bug.cgi?id=51984
- Platform/CoreIPC/Attachment.cpp: (CoreIPC::Attachment::Attachment):
- Platform/CoreIPC/Attachment.h: (CoreIPC::Attachment::size): (CoreIPC::Attachment::releaseFileDescriptor): (CoreIPC::Attachment::fileDescriptor):
- Platform/CoreIPC/Connection.h:
- Platform/CoreIPC/qt/ConnectionQt.cpp: (CoreIPC::MessageInfo::MessageInfo): (CoreIPC::MessageInfo::setMessageBodyOOL): (CoreIPC::MessageInfo::isMessageBodyOOL): (CoreIPC::MessageInfo::bodySize): (CoreIPC::MessageInfo::messageID): (CoreIPC::MessageInfo::attachmentCount): (CoreIPC::Connection::platformInitialize): (CoreIPC::Connection::platformInvalidate): (CoreIPC::SocketNotifierDisableGuard::SocketNotifierDisableGuard): (CoreIPC::SocketNotifierDisableGuard::~SocketNotifierDisableGuard): (CoreIPC::Connection::readyReadHandler): (CoreIPC::Connection::open): (CoreIPC::Connection::platformCanSendOutgoingMessages): (CoreIPC::Connection::sendOutgoingMessage):
- Platform/SharedMemory.h:
- Platform/WorkQueue.h:
- Platform/qt/MappedMemoryPool.cpp: Removed.
- Platform/qt/MappedMemoryPool.h: Removed.
- Platform/qt/SharedMemoryQt.cpp: (WebKit::SharedMemory::Handle::Handle): (WebKit::SharedMemory::Handle::~Handle): (WebKit::SharedMemory::Handle::isNull): (WebKit::SharedMemory::Handle::encode): (WebKit::SharedMemory::Handle::decode): (WebKit::SharedMemory::Handle::releaseToAttachment): (WebKit::SharedMemory::Handle::adoptFromAttachment): (WebKit::SharedMemory::create): (WebKit::accessModeMMap): (WebKit::SharedMemory::~SharedMemory): (WebKit::accessModeFile): (WebKit::SharedMemory::createHandle):
- Platform/qt/WorkQueueQt.cpp: (WorkQueue::registerSocketEventHandler):
- Shared/qt/UpdateChunk.cpp: (WebKit::UpdateChunk::UpdateChunk): (WebKit::UpdateChunk::~UpdateChunk): (WebKit::UpdateChunk::encode): (WebKit::UpdateChunk::decode): (WebKit::UpdateChunk::createImage):
- Shared/qt/UpdateChunk.h:
- UIProcess/Launcher/ProcessLauncher.h:
- UIProcess/Launcher/qt/ProcessLauncherQt.cpp: (WebKit::QtWebProcess::QtWebProcess): (WebKit::QtWebProcess::setupChildProcess): (WebKit::ProcessLauncher::launchProcess): (WebKit::ProcessLauncher::platformInvalidate):
- UIProcess/Launcher/qt/ThreadLauncherQt.cpp: (WebKit::webThreadBody): (WebKit::ThreadLauncher::createWebThread):
- WebKit2.pro:
- WebProcess/qt/WebProcessMainQt.cpp: (WebKit::WebProcessMainQt):
- 4:56 AM Changeset in webkit [76506] by
-
- 5 edits in trunk/LayoutTests
2011-01-24 Yury Semikhatsky <yurys@chromium.org>
Unreviewed. Update Chromium test expectations.
- platform/chromium-mac/http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write-expected.txt:
- platform/chromium-mac/http/tests/security/aboutBlank/xss-DENIED-navigate-opener-javascript-url-expected.txt:
- platform/chromium-mac/http/tests/security/xss-DENIED-frame-name-expected.txt:
- platform/chromium/test_expectations.txt:
- 4:46 AM Changeset in webkit [76505] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Peter Beverloo <peter@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: recognize application/x-font-woff as a valid mime-type.
https://bugs.webkit.org/show_bug.cgi?id=52977
No new tests.
- inspector/front-end/inspector.js:
- 3:55 AM Changeset in webkit [76504] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, fix for r76497.
- inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel.prototype.show):
- 3:53 AM Changeset in webkit [76503] by
-
- 3 edits in trunk/Tools
[Qt] Regroup MiniBrowser's menubar and add open file action
https://bugs.webkit.org/show_bug.cgi?id=53000
Reviewed by Andreas Kling.
Add File and Develop menu to MiniBrowser's menubar and add open file action to File menu.
- MiniBrowser/qt/BrowserWindow.cpp:
(BrowserWindow::BrowserWindow):
(BrowserWindow::openFile):
(BrowserWindow::~BrowserWindow):
- MiniBrowser/qt/BrowserWindow.h:
- 3:52 AM Changeset in webkit [76502] by
-
- 5 edits in trunk
2011-01-24 Peter Varga <pvarga@inf.u-szeged.hu>
Reviewed by Oliver Hunt.
Optimize regex patterns which contain empty alternatives
https://bugs.webkit.org/show_bug.cgi?id=51395
Eliminate the empty alternatives from the regex pattern and convert it to do
the matching in an easier way.
- fast/regex/script-tests/slow.js:
- fast/regex/slow-expected.txt:
2011-01-24 Peter Varga <pvarga@webkit.org>
Reviewed by Oliver Hunt.
Optimize regex patterns which contain empty alternatives
https://bugs.webkit.org/show_bug.cgi?id=51395
Eliminate the empty alternatives from the regex pattern and convert it to do
the matching in an easier way.
- yarr/YarrPattern.cpp: (JSC::Yarr::YarrPatternConstructor::atomParenthesesEnd):
- 3:51 AM Changeset in webkit [76501] by
-
- 3 edits in trunk/Source/WebCore
2011-01-24 Andreas Kling <kling@webkit.org>
Reviewed by Tor Arne Vestbø.
[Qt] Use rad2deg() from WTF instead of rolling our own.
https://bugs.webkit.org/show_bug.cgi?id=52993
- platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::rotate):
- platform/graphics/qt/PathQt.cpp: (WebCore::Path::addArc):
- 3:35 AM Changeset in webkit [76500] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, test fix for r76497.
- http/tests/inspector/debugger-test2.js: (initialize_DebuggerTest.InspectorTest.setBreakpointInVisibleView): (initialize_DebuggerTest.InspectorTest._showScriptSource):
- 3:22 AM Changeset in webkit [76499] by
-
- 4 edits in trunk/Tools
Unreviewed fix after r76496
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- BuildSlaveSupport/build.webkit.org-config/master.cfg: Remove unnecessary "Source" from the path.
- BuildSlaveSupport/built-product-archive: Remove unnecessary "Source" from the path.
- Scripts/webkitdirs.pm: Add the accidentally removed slash to the path.
- 2:57 AM Changeset in webkit [76498] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[Gtk] ResourceHandleSoup: do not wait for streams to close to issue didFinishLoading
https://bugs.webkit.org/show_bug.cgi?id=52885
No new tests as it does not change functionality. We will not wait for
the the input stream to close to issue didFinishLoading to
WebCore. We expect a subtle performance improvement with this
patch when loading complex web pages, as we wouldn't have to wait
for the stream to close (which involves creating a thread among
other things).
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::closeCallback): (WebCore::readCallback):
- 2:38 AM Changeset in webkit [76497] by
-
- 10 edits2 deletes in trunk/Source/WebCore
2011-01-21 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: eliminate SourceView and ScriptView classes.
https://bugs.webkit.org/show_bug.cgi?id=52896
SourceView and ScriptView delegate everything to SourceFrame and should be eliminated.
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- inspector/front-end/GoToLineDialog.js: (WebInspector.GoToLineDialog.prototype._highlightSelectedLine):
- inspector/front-end/ResourceView.js: (WebInspector.ResourceView.createResourceView): (WebInspector.ResourceView.resourceViewTypeMatchesResource): (WebInspector.SourceFrameContentProviderForResource): Moved from SourceView.
- inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel.prototype.show): (WebInspector.ResourcesPanel.prototype._applyDiffMarkup): (WebInspector.FrameResourceTreeElement.prototype._errorsWarningsUpdated):
- inspector/front-end/ScriptView.js: Removed.
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._scriptSourceChanged): (WebInspector.ScriptsPanel.prototype._sourceFrameForScriptOrResource): (WebInspector.ScriptsPanel.prototype._showScriptOrResource): (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions): (WebInspector.ScriptsPanel.prototype._formatScript): (WebInspector.SourceFrameContentProviderForScript): Moved from ScriptView.
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame): (WebInspector.SourceFrame.prototype.show): (WebInspector.SourceFrame.prototype.hide): (WebInspector.SourceFrame.prototype.hasContent): (WebInspector.SourceFrame.prototype._createTextViewer): (WebInspector.SourceFrame.prototype.performSearch.doFindSearchMatches): (WebInspector.SourceFrame.prototype.performSearch):
- inspector/front-end/SourceView.js: Removed.
- inspector/front-end/WebKit.qrc:
- inspector/front-end/inspector.html:
- 2:36 AM Changeset in webkit [76496] by
-
- 26 edits1 copy3 moves2 adds1 delete in trunk
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- Source/DerivedSources.pro: Copied from DerivedSources.pro.
- Source/WebKit.pri: Renamed from WebKit.pri.
- Source/WebKit.pro: Added.
- Source/common.pri: Renamed from common.pri.
- WebKit.pro: Removed.
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- JavaScriptCore.pri:
- JavaScriptCore.pro:
- jsc.pro:
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
No new tests needed.
- WebCore.pri:
- WebCore.pro:
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- declarative/declarative.pro:
- docs/docs.pri:
- tests/tests.pri:
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- DerivedSources.pro:
- WebKit2.pro:
- WebProcess.pro:
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- DerivedSources.pro: Renamed from DerivedSources.pro.
- DumpRenderTree/qt/DumpRenderTree.pro:
- DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
- MiniBrowser/DerivedSources.pro:
- MiniBrowser/qt/MiniBrowser.pro:
- QtTestBrowser/QtTestBrowser.pro:
- Scripts/webkitdirs.pm:
- Tools.pro: Added.
- WebKitTestRunner/DerivedSources.pro:
- WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
- WebKitTestRunner/qt/WebKitTestRunner.pro:
- 2:32 AM Changeset in webkit [76495] by
-
- 3 edits in trunk/Source/WebCore
Unreviewed, trivial fix.
Fix a Chromium-only assertion failure by r76491.
https://bugs.webkit.org/show_bug.cgi?id=38982
Separate icon loading from the FileChooser constructor in order to avoid
ref() before adoptRef().
- platform/FileChooser.cpp:
(WebCore::FileChooser::FileChooser):
(WebCore::FileChooser::initialize):
(WebCore::FileChooser::create):
- platform/FileChooser.h:
- 2:27 AM Changeset in webkit [76494] by
-
- 3 edits in trunk/Source/WebCore
2011-01-24 MORITA Hajime <morrita@google.com>
Reviewed by Kent Tamura.
TextControlInnerElement::m_shadowParent should be removed.
https://bugs.webkit.org/show_bug.cgi?id=52998
No new tests. No behavioral change.
- rendering/TextControlInnerElements.cpp: (WebCore::TextControlInnerElement::TextControlInnerElement):
- rendering/TextControlInnerElements.h:
- 2:20 AM Changeset in webkit [76493] by
-
- 10 edits2 adds in trunk/Source/WebCore
2011-01-24 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
REGRESSION (r72895): console.trace crashes
https://bugs.webkit.org/show_bug.cgi?id=52981
- Use local RefPtr variable for accessing PassRefPtr arguments to make sure the PassRefPtr has non-null value.
- Use PassRefPtr for objects whos ownership is passed to the inspector.
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- inspector/InspectorConsoleInstrumentation.h: Added. Extract inline methods called from the console into their own header to reduce compilation time of other classes that depend on the inspector instrumentation. (WebCore::InspectorInstrumentation::addMessageToConsole): (WebCore::InspectorInstrumentation::consoleCount): (WebCore::InspectorInstrumentation::startConsoleTiming): (WebCore::InspectorInstrumentation::stopConsoleTiming): (WebCore::InspectorInstrumentation::consoleMarkTimeline): (WebCore::InspectorInstrumentation::addStartProfilingMessageToConsole): (WebCore::InspectorInstrumentation::addProfile): (WebCore::InspectorInstrumentation::profilerEnabled): (WebCore::InspectorInstrumentation::getCurrentUserInitiatedProfileName):
- inspector/InspectorDatabaseInstrumentation.h: Added. Extract inline methods called from the datanase code into their own header to reduce compilation time of other classes that depend on the inspector instrumentation. (WebCore::InspectorInstrumentation::didOpenDatabase):
- inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::addMessageToConsoleImpl): (WebCore::InspectorInstrumentation::consoleCountImpl): (WebCore::InspectorInstrumentation::stopConsoleTimingImpl): (WebCore::InspectorInstrumentation::consoleMarkTimelineImpl): (WebCore::InspectorInstrumentation::addProfileImpl): (WebCore::InspectorInstrumentation::didOpenDatabaseImpl):
- inspector/InspectorInstrumentation.h:
- page/Console.cpp: use RefPtr local variable instead of accessing PassRefPtr argument directly. (WebCore::Console::addMessage): (WebCore::Console::trace): (WebCore::Console::count): (WebCore::Console::markTimeline): (WebCore::Console::profileEnd): (WebCore::Console::timeEnd): (WebCore::Console::group): (WebCore::Console::groupCollapsed):
- storage/Database.cpp: (WebCore::Database::openDatabase):
- 1:16 AM Changeset in webkit [76492] by
-
- 1 edit10 adds in trunk/LayoutTests
2011-01-24 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
Update Chromim test expectations (LINUX/SVG) in response to r76442, again.
- platform/chromium-linux/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt: Added.
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.txt: Added.
- platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.txt: Added.
- platform/chromium-linux/svg/text/text-hkern-expected.txt: Added.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.checksum: Added.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.png: Added.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.txt: Added.
- platform/chromium-linux/svg/text/text-text-04-t-expected.txt: Added.
- platform/chromium-linux/svg/text/text-vkern-expected.checksum: Added.
- platform/chromium-linux/svg/text/text-vkern-expected.txt: Added.
- 1:15 AM Changeset in webkit [76491] by
-
- 8 edits1 copy3 moves in trunk/Source
2010-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Fisher.
[Chromium] Support icon loading for <input type=file>
https://bugs.webkit.org/show_bug.cgi?id=38982
An icon data in Chromium port is represented as WebCore::Image. We
don't need OS-specific code anymore.
- WebCore.gypi:
- platform/graphics/Icon.h: (WebCore::Icon::create): Add Chromium-specific factory.
- platform/graphics/chromium/IconChromium.cpp: Added.
- platform/graphics/chromium/IconChromiumLinux.cpp: Removed.
- platform/graphics/chromium/IconChromiumMac.cpp: Removed.
- platform/graphics/chromium/IconChromiumWin.cpp: Removed.
- platform/graphics/chromium/PlatformIcon.h:
2010-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Fisher.
[Chromium] Support icon loading for <input type=file>
https://bugs.webkit.org/show_bug.cgi?id=38982
Implement ChromeClientImpl::chooseIconForFiles(). It delegates loading
to WebViewClient::queryIconForFiles(), and an implementation of
WebViewClient::queryIconForFiles() loads an icon and passes it to a
FileChooser through WebIconLoadingCompletion.
- WebKit.gyp:
- public/WebIconLoadingCompletion.h: Added. (WebKit::WebIconLoadingCompletion::~WebIconLoadingCompletion):
- public/WebViewClient.h: (WebKit::WebViewClient::queryIconForFiles):
- src/ChromeClientImpl.cpp: (WebKit::ChromeClientImpl::chooseIconForFiles):
- src/WebIconLoadingCompletionImpl.cpp: Added. (WebKit::WebIconLoadingCompletionImpl::WebIconLoadingCompletionImpl): (WebKit::WebIconLoadingCompletionImpl::~WebIconLoadingCompletionImpl): (WebKit::WebIconLoadingCompletionImpl::didLoadIcon):
- src/WebIconLoadingCompletionImpl.h: Added.
- 1:10 AM Changeset in webkit [76490] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Alejandro G. Castro <alex@igalia.com>
Unreviewed, GTK still does not have TestInputController support. Opened
a bug to follow the issue:
https://bugs.webkit.org/show_bug.cgi?id=52997
- platform/gtk/Skipped:
- 1:05 AM Changeset in webkit [76489] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 MORITA Hajime <morrita@google.com>
Unreviewed, skipped insert-composition-whitespace.html due to missing DRT feature.
- platform/gtk/Skipped:
- 12:44 AM Changeset in webkit [76488] by
-
- 3 edits in trunk/Source/WebCore
2011-01-21 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: move search functions from SourceView to SourceFrame.
https://bugs.webkit.org/show_bug.cgi?id=52895
This is the last step before eliminating SourceView and ScriptView since
this classes just delegate everything to SourceFrame.
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype.set visible): (WebInspector.SourceFrame.prototype._clearLineHighlight): (WebInspector.SourceFrame.prototype._createTextViewer): (WebInspector.SourceFrame.prototype.performSearch.doFindSearchMatches): (WebInspector.SourceFrame.prototype.performSearch): (WebInspector.SourceFrame.prototype.searchCanceled): (WebInspector.SourceFrame.prototype.jumpToFirstSearchResult): (WebInspector.SourceFrame.prototype.jumpToLastSearchResult): (WebInspector.SourceFrame.prototype.jumpToNextSearchResult): (WebInspector.SourceFrame.prototype.jumpToPreviousSearchResult): (WebInspector.SourceFrame.prototype.showingFirstSearchResult): (WebInspector.SourceFrame.prototype.showingLastSearchResult): (WebInspector.SourceFrame.prototype._jumpToSearchResult):
- inspector/front-end/SourceView.js: (WebInspector.SourceView.prototype.hide): (WebInspector.SourceView.prototype.searchCanceled): (WebInspector.SourceView.prototype.performSearch): (WebInspector.SourceView.prototype.jumpToFirstSearchResult): (WebInspector.SourceView.prototype.jumpToLastSearchResult): (WebInspector.SourceView.prototype.jumpToNextSearchResult): (WebInspector.SourceView.prototype.jumpToPreviousSearchResult): (WebInspector.SourceView.prototype.showingFirstSearchResult): (WebInspector.SourceView.prototype.showingLastSearchResult): (WebInspector.SourceView.prototype.clearMessages):
- 12:33 AM Changeset in webkit [76487] by
-
- 3 edits in trunk/Source/WebCore
2011-01-24 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76463.
http://trac.webkit.org/changeset/76463
https://bugs.webkit.org/show_bug.cgi?id=52993
It broke canvas/philip/tests/2d.path.stroke.skew.html
(Requested by Ossy on #webkit).
- platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::rotate):
- platform/graphics/qt/PathQt.cpp: (WebCore::Path::addArc):
- 12:33 AM Changeset in webkit [76486] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Alejandro G. Castro <alex@igalia.com>
Unreviewed, skipped tests failing the 64bits bot and passing in the
32bits bots. Bug following the issue:
https://bugs.webkit.org/show_bug.cgi?id=52996
- platform/gtk/Skipped: