kocienda [Thu, 11 Nov 2004 17:49:56 +0000 (17:49 +0000)]
Reviewed by John
Fix for these bugs:
<rdar://problem/3875618> REGRESSION (Mail): Hitting down arrow with full line selected skips line (br case)
<rdar://problem/3875641> REGRESSION (Mail): Hitting down arrow with full line selected skips line (div case)
* khtml/editing/selection.cpp:
(khtml::Selection::modifyMovingRightForward): Fixed by juggling the position as the starting point for
the next line position when necessary.
* layout-tests/editing/selection/move-3875618-fix-expected.txt: Added.
* layout-tests/editing/selection/move-3875618-fix.html: Added.
* layout-tests/editing/selection/move-3875641-fix-expected.txt: Added.
* layout-tests/editing/selection/move-3875641-fix.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7975
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Thu, 11 Nov 2004 15:35:56 +0000 (15:35 +0000)]
Reviewed by John
Improved some function names, at John's urging. No changes to the
functions themselves.
canPerformSpecialCaseAllContentDelete() --> handleSpecialCaseAllContentDelete()
canPerformSpecialCaseBRDelete() --> handleSpecialCaseBRDelete()
performGeneralDelete() --> handleGeneralDelete()
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::handleSpecialCaseAllContentDelete)
(khtml::DeleteSelectionCommand::handleSpecialCaseBRDelete)
(khtml::DeleteSelectionCommand::handleGeneralDelete)
(khtml::DeleteSelectionCommand::doApply)
* khtml/editing/htmlediting.h
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7974
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Thu, 11 Nov 2004 15:28:56 +0000 (15:28 +0000)]
Reviewed by John
Updated some layout test results that changed as a result of my last checking.
Added a new test that has been in my tree for a few days.
* layout-tests/editing/deleting/delete-3775172-fix-expected.txt:
* layout-tests/editing/deleting/delete-3800834-fix-expected.txt:
* layout-tests/editing/inserting/insert-3851164-fix-expected.txt: Added.
* layout-tests/editing/inserting/insert-3851164-fix.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7973
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Thu, 11 Nov 2004 15:26:01 +0000 (15:26 +0000)]
Reviewed by John
* khtml/editing/htmlediting.cpp:
(khtml::debugNode): New debugging helper.
(khtml::DeleteSelectionCommand::initializePositionData): No longer call obsoleted
startPositionForDelete() and endPositionForDelete() functions. Just use the
m_selectionToDelete object to determine start and end positions for the delete.
(khtml::DeleteSelectionCommand::canPerformSpecialCaseAllContentDelete): New
function that creates a special case for deleting all the content in a root
editable element.
(khtml::DeleteSelectionCommand::doApply): Call canPerformSpecialCaseAllContentDelete()
function before BR special case and the general case delete functions.
* khtml/editing/htmlediting.h: Updated for changed functions.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7972
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kdecker [Thu, 11 Nov 2004 02:08:31 +0000 (02:08 +0000)]
Reviewed by mjs.
Fixed <rdar://problem/3875011> DOMNodeList::tryGet() performs unnecessary (and expensive) dom tree traversals. Improved a loop from 2-n-squared to just n-squared.
* khtml/ecma/kjs_dom.cpp:
(DOMNodeList::tryGet): Got rid of an unnecessary node traversal.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7971
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Wed, 10 Nov 2004 22:39:20 +0000 (22:39 +0000)]
Fixed: <rdar://problem/3396872> ICONS: icon DB inconsistencies can cause slowness during startup, idle and quit
Reviewed by john.
* Misc.subproj/WebFileDatabase.m:
(-[WebFileDatabase objectForKey:]): added logging code
* Misc.subproj/WebIconDatabase.m:
(-[WebIconDatabase init]): use alloc, init rather than autorelease, retain
(-[WebIconDatabase _loadIconDictionaries]): use 1 object for mapping icon URLs to site URLs and vice versa rather than 3. This avoids inconsistencies and is faster.
(-[WebIconDatabase _updateFileDatabase]): write 1 object out
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7970
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Wed, 10 Nov 2004 22:03:04 +0000 (22:03 +0000)]
Reviewed by Chris
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::initializePositionData): Move position adjustments for
smart delete from the two functions below to here. There was an unnecessary double
calculation of the leading and trailing whitespace positions. Also refined the trailing
case so it only acts when the leading position is null (which seems to match TextEdit in
my tests). Also removed some unnecessary copying of Position objects.
(khtml::DeleteSelectionCommand::startPositionForDelete): Move out smart delete adjustment
from here.
(khtml::DeleteSelectionCommand::endPositionForDelete): Ditto.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7969
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Wed, 10 Nov 2004 19:04:35 +0000 (19:04 +0000)]
Reviewed by Harrison
(khtml::DeleteSelectionCommand::performGeneralDelete): Add some more comments to
make things more clear.
* khtml/editing/selection.cpp:
(khtml::Selection::toRange): Fixed the upstream and downstream calls so that the
resulting positions do not cross block boundaries. This was a bug and caused some
delete problems when whole blocks were selected. I will be addressing that issue
more fully in upcoming changes.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7968
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Wed, 10 Nov 2004 16:58:30 +0000 (16:58 +0000)]
Reviewed by Harrison
Some cleanups and fixes in upstream and downstream functions.
Removed redundant checks for isBlockFlow() when calling enclosingBlockFlowElement().
Blocks do not need to skip the call to enclosingBlockFlowElement() for fear that the
block's enclosing block will be returned.
Remove code from upstream that confined the serach to block boundaries outside of
the code which runs in the StayInBlock case. This code was redundant, and caused
incorrect results to be returned in the DoNotStayInBlock case.
In downstream, the check for crossing into a new block should use the equivalentDeepPosition()
node, not the the this pointer's node.
* khtml/xml/dom_position.cpp:
(DOM::Position::upstream)
(DOM::Position::downstream)
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7967
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Wed, 10 Nov 2004 03:47:56 +0000 (03:47 +0000)]
Fix for 3873234, Safari UI is unresponsive when parsing multiple HTML docs and 3873233, Safari hangs when
loading large local files.
Reviewed by mjs
* khtml/html/htmltokenizer.cpp:
(khtml::HTMLTokenizer::HTMLTokenizer):
(khtml::HTMLTokenizer::reset):
(khtml::HTMLTokenizer::write):
(khtml::HTMLTokenizer::stopped):
(khtml::HTMLTokenizer::processingData):
(khtml::HTMLTokenizer::continueProcessing):
(khtml::HTMLTokenizer::timerEvent):
(khtml::HTMLTokenizer::allDataProcessed):
(khtml::HTMLTokenizer::end):
(khtml::HTMLTokenizer::finish):
(khtml::HTMLTokenizer::notifyFinished):
* khtml/html/htmltokenizer.h:
* khtml/khtml_part.cpp:
(KHTMLPart::slotFinished):
(KHTMLPart::end):
(KHTMLPart::stop):
* khtml/khtml_part.h:
(KHTMLPart::tokenizerProcessedData):
* khtml/khtmlview.cpp:
* khtml/xml/dom_docimpl.cpp:
* khtml/xml/xml_tokenizer.h:
(khtml::Tokenizer::stopped):
(khtml::Tokenizer::processingData):
* kwq/KWQDateTime.h:
* kwq/KWQDateTime.mm:
(QDateTime::secsTo):
(KWQUIEventTime::uiEventPending):
* kwq/KWQKHTMLPart.h:
* kwq/KWQKHTMLPart.mm:
(KWQKHTMLPart::tokenizerProcessedData):
* kwq/WebCoreBridge.h:
* kwq/WebCoreBridge.mm:
(-[WebCoreBridge stop]):
(-[WebCoreBridge numPendingOrLoadingRequests]):
(-[WebCoreBridge doneProcessingData]):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7966
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Wed, 10 Nov 2004 03:46:05 +0000 (03:46 +0000)]
Fix for 3873234, Safari UI is unresponsive when parsing multiple HTML docs and 3873233, Safari hangs when
loading large local files.
Reviewed by mjs
* WebCoreSupport.subproj/WebBridge.m:
(-[WebBridge tokenizerProcessedData]):
* WebView.subproj/WebDataSource.m:
(-[WebDataSource _receivedMainResourceError:complete:]):
(-[WebDataSource isLoading]):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7965
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
harrison [Wed, 10 Nov 2004 01:04:41 +0000 (01:04 +0000)]
Reviewed by Ken Kocienda.
<rdar://problem/3865837> Wrong text style after delete to start of document
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::saveTypingStyleState):
Sample computedStyle of m_selectionToDelete.start instead of m_downstreamStart.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7964
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Wed, 10 Nov 2004 00:28:07 +0000 (00:28 +0000)]
Fixed: <rdar://problem/3872724> soft link against JavaVM to save ~2MB RSHRD
Reviewed by rjw.
* ChangeLog:
* JavaScriptCore.pbproj/project.pbxproj: don't link against JavaVM
* bindings/softlinking.c: Added.
(loadFramework): new
(getFunctionPointer): new
(JNI_GetCreatedJavaVMs): load JavaVM if not already loaded, get _JNI_GetCreatedJavaVMs symbol if we don't already have it, call JNI_GetCreatedJavaVMs
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7963
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
rjw [Tue, 9 Nov 2004 21:52:20 +0000 (21:52 +0000)]
Fixed <rdar://problem/3872440> NSTimer prematurely released.
Reviewed by Darin.
* kwq/KWQTimer.mm:
(QTimer::fire):
* kwq/KWQWidget.mm:
(QWidget::paint):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7962
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
rjw [Tue, 9 Nov 2004 20:57:09 +0000 (20:57 +0000)]
Fixed <rdar://problem/3870964> 8A300: Safari not recognizing a PDF link (it displays raw data)
Add "text/pdf" as an acceptable PDF MIME type.
Reviewed by Chris.
* WebView.subproj/WebDataSource.m:
(+[WebDataSource _repTypesAllowImageTypeOmission:]):
* WebView.subproj/WebFrameView.m:
(+[WebFrameView _viewTypesAllowImageTypeOmission:]):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7961
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Tue, 9 Nov 2004 20:52:46 +0000 (20:52 +0000)]
Reviewed by vicki.
* WebCore.pbproj/project.pbxproj: explicitly link against libxml2.2.6.14.dylib since the version number has been bumped
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7960
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
harrison [Tue, 9 Nov 2004 03:46:04 +0000 (03:46 +0000)]
Reviewed by Ken Kocienda.
<rdar://problem/3865854> Deleting first line deletes all lines
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::performGeneralDelete):
Problem was that the code that deletes fully selected m_downstreamEnd.node() by deleting one
of its ancestors, failed to end the loop that deletes all fully selected nodes. Also,
fixed this code to clear m_trailingWhitespaceValid. Also removed dead m_endingPosition
update because it is handled in calculateEndingPosition now.
* layout-tests/editing/deleting/delete-3865854-fix-expected.txt: Added.
* layout-tests/editing/deleting/delete-3865854-fix.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7959
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Tue, 9 Nov 2004 00:32:21 +0000 (00:32 +0000)]
Reviewed by Hyatt
* khtml/html/html_elementimpl.cpp:
(HTMLElementImpl::createContextualFragment): Now takes flag to control whether comments
are added to the DOM.
* khtml/html/html_elementimpl.h: Ditto.
* khtml/html/htmlparser.cpp:
(KHTMLParser::KHTMLParser): Ditto.
(KHTMLParser::getElement): Remove ifdef for comment processing. Replace with flag check.
* khtml/html/htmlparser.h: Add flag to constructor so callers can request comment nodes.
* khtml/html/htmltokenizer.cpp:
(khtml::HTMLTokenizer::HTMLTokenizer): Add flag to constructor so callers can request comment nodes.
(khtml::HTMLTokenizer::parseComment): Fix code to handle parsing out comment text correctly.
There were a couple of indexing errors that resulted in the comment text containing part of the
comment markers.
(khtml::HTMLTokenizer::processToken): Don't let token id be reset to ID_TEXT if token is a comment.
* khtml/html/htmltokenizer.h: Add flag to constructor so callers can request comment nodes.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7958
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Tue, 9 Nov 2004 00:22:02 +0000 (00:22 +0000)]
Fixed: <rdar://problem/3870907> WebCore unnecessary links against JavaVM and Security
Reviewed by darin.
* WebCore.pbproj/project.pbxproj: stop unnecessary linking
* khtml/html/html_objectimpl.h: don't unnecessarily include JavaVM header
* kwq/KWQKHTMLPart.h: ditto
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7957
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Tue, 9 Nov 2004 00:02:11 +0000 (00:02 +0000)]
Reviewed by John.
- fixed <rdar://problem/3825966> 8A274 Safari crashes closing window: QTimer::fire() with MallocStackLogging and MallocScribble enabled
* kwq/KWQTimer.mm: (QTimer::fire): Rearrange so we don't access the QTimer object after calling code
that possibly deletes the QTimer.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7956
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Mon, 8 Nov 2004 19:11:49 +0000 (19:11 +0000)]
WebCore:
Fixed: <rdar://problem/3783904> Return key behavior is confusingly different between popup menus and autofill menus
Reviewed by john.
* kwq/KWQTextField.mm:
(-[KWQTextFieldController textView:shouldHandleEvent:]): let the bridge have a crack at the event so that it can swallow the newline if it wants to
* kwq/WebCoreBridge.h:
WebKit:
Fixed: <rdar://problem/3783904> Return key behavior is confusingly different between popup menus and autofill menus
Reviewed by john.
* WebCoreSupport.subproj/WebBridge.m:
(-[WebBridge control:textView:shouldHandleEvent:]): new
* WebView.subproj/WebFormDelegate.h:
* WebView.subproj/WebFormDelegate.m:
(-[WebFormDelegate control:textView:shouldHandleEvent:inFrame:]): new
WebBrowser:
Fixed: <rdar://problem/3783904> Return key behavior is confusingly different between popup menus and autofill menus
Reviewed by john.
* BrowserWebController.m:
(-[FormDelegate control:textView:shouldHandleEvent:inFrame:]): new
* CompletionController.h:
* CompletionController.m:
(-[CompletionController handleInsertNewline]): new, factored out from next method
(-[CompletionController control:textView:doCommandBySelector:]): call handleInsertNewline
* FormCompletionController.h:
* FormCompletionController.m:
(-[FormCompletionController control:textView:shouldHandleEvent:]): new, call handleInsertNewline so that WebCore does not submit the form when a newline is entered
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7955
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
harrison [Mon, 8 Nov 2004 18:31:03 +0000 (18:31 +0000)]
Reviewed by Darin.
Renamed NodeImpl::enclosingNonBlockFlowElement to NodeImpl::enclosingInlineElement, per Hyatt.
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::moveNodesAfterNode):
* khtml/xml/dom_nodeimpl.cpp:
(NodeImpl::enclosingInlineElement):
* khtml/xml/dom_nodeimpl.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7954
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Sat, 6 Nov 2004 00:45:14 +0000 (00:45 +0000)]
Fixed: <rdar://problem/3854218> Safari is sometimes really slow because of increased null events to plug-ins
* Plugins.subproj/WebBaseNetscapePluginView.m: reverted null event interval to 0.02
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7953
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Sat, 6 Nov 2004 00:36:52 +0000 (00:36 +0000)]
Fixed: <rdar://problem/3838413> REGRESSION (Mail): "Smart" word paste adds spaces before/after special characters
Reviewed by rjw.
* khtml/editing/htmlediting.cpp:
(khtml::ReplaceSelectionCommand::doApply): call isCharacterSmartReplaceExempt on the part to see if a space should be inserted
* khtml/editing/visible_position.cpp:
(khtml::VisiblePosition::character): new, returns the character for the position
* khtml/editing/visible_position.h:
* kwq/KWQKHTMLPart.h:
* kwq/KWQKHTMLPart.mm:
(KWQKHTMLPart::isCharacterSmartReplaceExempt): new, calls the bridge
* kwq/WebCoreBridge.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7952
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Sat, 6 Nov 2004 00:36:12 +0000 (00:36 +0000)]
Fixed: <rdar://problem/3838413> REGRESSION (Mail): "Smart" word paste adds spaces before/after special characters
Reviewed by rjw.
* WebCoreSupport.subproj/WebBridge.m:
(_getPreSmartSet): copied from AppKit
(_getPostSmartSet): ditto
(-[WebBridge isCharacterSmartReplaceExempt:isPreviousCharacter:]): new
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7951
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
rjw [Fri, 5 Nov 2004 23:31:45 +0000 (23:31 +0000)]
Fixed <rdar://problem/3810702> _checkNavigationPolicyForRequest:dataSource:formState:andCall:withSelector: ASSERTS when reentered from Xcode's man page viewer
Reviewed by Maciej (a long time ago).
* WebView.subproj/WebFrame.m:
(-[WebFrame _loadDataSource:withLoadType:formState:]):
Fixed <rdar://problem/3845307> WebKit needs to export _HIWebViewRegisterClass so HIWebViews can work in Carbon nib files
As suggested in the bug, the fix is to actually call
HIWebViewRegisterClass in WebKitInitForCarbon, rather than
exporting the symbol.
Reviewed by Chris.
* Carbon.subproj/CarbonUtils.m:
(WebInitForCarbon):
* Carbon.subproj/HIWebView.m:
* WebKit.pbproj/project.pbxproj:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7950
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
vicki [Fri, 5 Nov 2004 22:11:11 +0000 (22:11 +0000)]
versioning for TOT, Safari 2.0 (170+)
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7949
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
vicki [Fri, 5 Nov 2004 21:59:13 +0000 (21:59 +0000)]
Safari-170 stamp
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7947
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
rjw [Fri, 5 Nov 2004 21:14:21 +0000 (21:14 +0000)]
Backing out change because tree is closed.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7946
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
rjw [Fri, 5 Nov 2004 20:38:41 +0000 (20:38 +0000)]
Fixed <rdar://problem/3845307> WebKit needs to export _HIWebViewRegisterClass so HIWebViews can work in Carbon nib files
Reviewed by Chris.
* Carbon.subproj/CarbonUtils.m:
(WebInitForCarbon):
* Carbon.subproj/HIWebView.m:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7945
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
adele [Fri, 5 Nov 2004 18:45:31 +0000 (18:45 +0000)]
Reviewed by Darin
Fix for <rdar://problem/3854383> REGRESSION(166-168) input fields show black background when background color is set to transparent
and a workaround for displaying transparent backgrounds for textareas.
* kwq/KWQLineEdit.mm: (QLineEdit::setPalette): If the background color is transparent (we check the alpha value) then we set the background to white
* kwq/KWQTextEdit.mm: (QTextEdit::setPalette): If the background color is transparent then we don't draw the background
* kwq/KWQTextArea.mm: (-[KWQTextArea setDrawsBackground:]): added setDrawsBackground function which calls setDrawsBackground on the super class,
on the contentView, and on the textView.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7944
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Fri, 5 Nov 2004 18:00:25 +0000 (18:00 +0000)]
Reviewed by Chris.
- fixed <rdar://problem/3857151> Assertion failure in "trackingRectOwner" while moving mouse over Slashdot.org page
* WebView.subproj/WebHTMLView.m:
(-[WebHTMLView _addTrackingRect:owner:userData:assumeInside:useTrackingNum:]): Changed to no longer call
addTrackingRect to do the work for consistency with the new method below. Not too much copied and pasted code.
(-[WebHTMLView _addTrackingRects:owner:userDataList:assumeInsideList:trackingNums:count:]): Added an override
for this new method in Tiger. No harm in implementing it on Panther, although it won't be called.
(-[WebHTMLView _removeTrackingRects:count:]): Ditto.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7943
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Fri, 5 Nov 2004 03:09:18 +0000 (03:09 +0000)]
land updated layout tests for the relpositioned change, the ex unit change, and the text-top vertical-align change
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7942
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Fri, 5 Nov 2004 02:59:48 +0000 (02:59 +0000)]
Fix for relpositioned inlines. This was reviewed a long time ago, but I can't recall who reviewed it (either
darin or ken).
Reviewed by darin or ken
* khtml/rendering/bidi.cpp:
(khtml::appendRunsForObject):
(khtml::RenderBlock::skipWhitespace):
(khtml::RenderBlock::findNextLineBreak):
* khtml/rendering/render_block.cpp:
(khtml::RenderBlock::lowestPosition):
(khtml::RenderBlock::rightmostPosition):
(khtml::RenderBlock::leftmostPosition):
* khtml/rendering/render_box.cpp:
(RenderBox::position):
* khtml/rendering/render_box.h:
(khtml::RenderBox::staticX):
(khtml::RenderBox::staticY):
* khtml/rendering/render_layer.cpp:
(RenderLayer::updateLayerPosition):
(RenderLayer::convertToLayerCoords):
* khtml/rendering/render_line.cpp:
(khtml::InlineFlowBox::placeBoxesHorizontally):
* khtml/rendering/render_object.h:
(khtml::RenderObject::staticX):
(khtml::RenderObject::staticY):
Finish turning on XSLT. Make sure child stylesheets can load.
* khtml/xsl/xslt_processorimpl.cpp:
(DOM::stylesheetLoadFunc):
(DOM::XSLTProcessorImpl::transformDocument):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7941
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Fri, 5 Nov 2004 01:19:35 +0000 (01:19 +0000)]
Make sure the dominant line direction is properly set for RTL runs so that spaces will reverse.
Change xHeight to measure the ascent of the x glyph, since the xHeight metrics appear to be
totally bogus in both CG and AppKit.
Reviewed by darin
* WebCoreSupport.subproj/WebTextRenderer.m:
(-[WebTextRenderer xHeight]):
(-[WebTextRenderer _createATSUTextLayoutForRun:style:]):
(-[WebTextRenderer _trapezoidForRun:style:atPoint:]):
(-[WebTextRenderer _ATSU_drawHighlightForRun:style:geometry:]):
(-[WebTextRenderer _ATSU_drawRun:style:geometry:]):
(-[WebTextRenderer _ATSU_pointToOffset:style:position:reversed:includePartialGlyphs:]):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7940
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Fri, 5 Nov 2004 01:18:23 +0000 (01:18 +0000)]
Implement CSS3 support for multiple backgrounds. Also fix a bug with background propagation so that it only
happens (from the <body> to the root) for HTML documents. Fixed background-position to handle a mixture of
keyword and length values.
Reviewed by darin
* khtml/css/cssparser.cpp:
(CSSParser::parseValue):
(CSSParser::addBackgroundValue):
(CSSParser::parseBackgroundShorthand):
(CSSParser::parseBackgroundColor):
(CSSParser::parseBackgroundImage):
(CSSParser::parseBackgroundPositionXY):
(CSSParser::parseBackgroundPosition):
(CSSParser::parseBackgroundProperty):
(CSSParser::parseColorFromValue):
* khtml/css/cssparser.h:
* khtml/css/cssstyleselector.cpp:
(khtml::CSSStyleSelector::adjustRenderStyle):
(khtml::CSSStyleSelector::applyProperty):
(khtml::CSSStyleSelector::mapBackgroundAttachment):
(khtml::CSSStyleSelector::mapBackgroundImage):
(khtml::CSSStyleSelector::mapBackgroundRepeat):
(khtml::CSSStyleSelector::mapBackgroundXPosition):
(khtml::CSSStyleSelector::mapBackgroundYPosition):
* khtml/css/cssstyleselector.h:
* khtml/rendering/render_box.cpp:
(RenderBox::paintRootBoxDecorations):
(RenderBox::paintBoxDecorations):
(RenderBox::paintBackgrounds):
(RenderBox::paintBackground):
(RenderBox::paintBackgroundExtended):
* khtml/rendering/render_box.h:
* khtml/rendering/render_form.cpp:
(RenderFieldset::paintBoxDecorations):
* khtml/rendering/render_line.cpp:
(khtml::InlineFlowBox::paintBackgrounds):
(khtml::InlineFlowBox::paintBackground):
(khtml::InlineFlowBox::paintBackgroundAndBorder):
* khtml/rendering/render_line.h:
* khtml/rendering/render_object.cpp:
(RenderObject::setStyle):
(RenderObject::updateBackgroundImages):
(RenderObject::getVerticalPosition):
* khtml/rendering/render_object.h:
(khtml::RenderObject::paintBackgroundExtended):
* khtml/rendering/render_style.cpp:
(m_next):
(BackgroundLayer::BackgroundLayer):
(BackgroundLayer::~BackgroundLayer):
(BackgroundLayer::operator=):
(BackgroundLayer::operator==):
(BackgroundLayer::fillUnsetProperties):
(BackgroundLayer::cullEmptyLayers):
(StyleBackgroundData::StyleBackgroundData):
(StyleBackgroundData::operator==):
(RenderStyle::diff):
(RenderStyle::adjustBackgroundLayers):
* khtml/rendering/render_style.h:
(khtml::OutlineValue::operator==):
(khtml::OutlineValue::operator!=):
(khtml::BackgroundLayer::backgroundImage):
(khtml::BackgroundLayer::backgroundXPosition):
(khtml::BackgroundLayer::backgroundYPosition):
(khtml::BackgroundLayer::backgroundAttachment):
(khtml::BackgroundLayer::backgroundRepeat):
(khtml::BackgroundLayer::next):
(khtml::BackgroundLayer::isBackgroundImageSet):
(khtml::BackgroundLayer::isBackgroundXPositionSet):
(khtml::BackgroundLayer::isBackgroundYPositionSet):
(khtml::BackgroundLayer::isBackgroundAttachmentSet):
(khtml::BackgroundLayer::isBackgroundRepeatSet):
(khtml::BackgroundLayer::setBackgroundImage):
(khtml::BackgroundLayer::setBackgroundXPosition):
(khtml::BackgroundLayer::setBackgroundYPosition):
(khtml::BackgroundLayer::setBackgroundAttachment):
(khtml::BackgroundLayer::setBackgroundRepeat):
(khtml::BackgroundLayer::clearBackgroundImage):
(khtml::BackgroundLayer::clearBackgroundXPosition):
(khtml::BackgroundLayer::clearBackgroundYPosition):
(khtml::BackgroundLayer::clearBackgroundAttachment):
(khtml::BackgroundLayer::clearBackgroundRepeat):
(khtml::BackgroundLayer::setNext):
(khtml::BackgroundLayer::operator!=):
(khtml::BackgroundLayer::containsImage):
(khtml::BackgroundLayer::hasImage):
(khtml::BackgroundLayer::hasFixedImage):
(khtml::RenderStyle::setBitDefaults):
(khtml::RenderStyle::hasBackground):
(khtml::RenderStyle::hasFixedBackgroundImage):
(khtml::RenderStyle::outlineWidth):
(khtml::RenderStyle::outlineStyle):
(khtml::RenderStyle::outlineStyleIsAuto):
(khtml::RenderStyle::outlineColor):
(khtml::RenderStyle::backgroundColor):
(khtml::RenderStyle::backgroundImage):
(khtml::RenderStyle::backgroundRepeat):
(khtml::RenderStyle::backgroundAttachment):
(khtml::RenderStyle::backgroundXPosition):
(khtml::RenderStyle::backgroundYPosition):
(khtml::RenderStyle::accessBackgroundLayers):
(khtml::RenderStyle::backgroundLayers):
(khtml::RenderStyle::outlineOffset):
(khtml::RenderStyle::resetOutline):
(khtml::RenderStyle::setBackgroundColor):
(khtml::RenderStyle::setOutlineWidth):
(khtml::RenderStyle::setOutlineStyle):
(khtml::RenderStyle::setOutlineColor):
(khtml::RenderStyle::clearBackgroundLayers):
(khtml::RenderStyle::inheritBackgroundLayers):
(khtml::RenderStyle::setOutlineOffset):
* khtml/rendering/render_table.cpp:
(RenderTable::paintBoxDecorations):
(RenderTableCell::paintBoxDecorations):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7939
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Fri, 5 Nov 2004 00:32:01 +0000 (00:32 +0000)]
Make sure the text decoder returns empty strings rather than null strings when the utf8 char ptr is non-null.
Ensures that <a href=""> works with libxml (which returns data in utf-8 buffers).
Reviewed by darin
* kwq/KWQTextCodec.mm:
(KWQTextDecoder::convertLatin1):
(KWQTextDecoder::convertUTF16):
(KWQTextDecoder::convertUsingTEC):
(KWQTextDecoder::toUnicode):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7938
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Fri, 5 Nov 2004 00:30:34 +0000 (00:30 +0000)]
Make sure line-height returns the correct value for normal.
Reviewed by darin
* khtml/css/css_computedstyle.cpp:
(DOM::CSSComputedStyleDeclarationImpl::getPropertyCSSValue):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7937
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Thu, 4 Nov 2004 21:07:27 +0000 (21:07 +0000)]
Don't ignore results file since it's not here any more.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7936
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
harrison [Thu, 4 Nov 2004 18:29:23 +0000 (18:29 +0000)]
Reviewed by Ken Kocienda.
<rdar://problem/3857753> REGRESSION (Mail): Delete incorrectly causes text to take on new style
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::moveNodesAfterNode): Fixed to move entire source subtree (up
to, but not including, the enclosingBlockFlowElement) rather than just the source element.
Fixed to insert after the destination subtree, rather than the destination element. Handles
edge case of deleting back to the top of the tree, where there is nothing left to insert after.
* khtml/xml/dom_nodeimpl.cpp:
(NodeImpl::enclosingNonBlockFlowElement): New method to support moveNodesAfterNode changes.
* khtml/xml/dom_nodeimpl.h: Declare NodeImpl::enclosingNonBlockFlowElement
* layout-tests/editing/deleting/delete-3857753-fix-expected.txt: Added.
* layout-tests/editing/deleting/delete-3857753-fix.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7935
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Thu, 4 Nov 2004 17:16:03 +0000 (17:16 +0000)]
Reviewed by Ken.
- fixed <rdar://problem/3865365> since -[WebScriptObject dealloc] does not call [super dealloc], the build will fail due to a warning
- fixed behavior so that [[WebScriptObject alloc] initWithCoder:] doesn't leak WebUndefined instances
and incidentally so that [[WebScriptObject alloc] init] returns the single shared instance rather
than allocating a new one
* bindings/objc/WebScriptObject.mm: Removed some stray semicolons.
(+[WebUndefined allocWithZone:]): Made this the common bottleneck that returns the single instance
of WebUndefined, since it's the single method that normally allocates new instances. Calls super to
actually allocate only the very first time it's called.
(-[WebUndefined initWithCoder:]): Simplified to just return self (no reason to re-lookup the single
shared instance since there can be only one).
(-[WebUndefined copyWithZone:]): Ditto.
(-[WebUndefined retain]): Ditto.
(-[WebUndefined retainCount]): Use UINT_MAX constant here (matches usage in NSObject.m for retain count
of class).
(-[WebUndefined autorelease]): Simplified to just return self (see above).
(-[WebUndefined copy]): No need to override this since it just turns around and calls copyWithZone:.
(-[WebUndefined dealloc]): Added an assertion since this method should never be called. Also added
a call to [super dealloc] after return; to make the new -Wdealloc-check compiler happy (fixing the
bug mentioned above).
(+[WebUndefined undefined]): Reimplemented; calls allocWithZone:NULL to get to the shared instance.
No need to call init, since that's a no-op for this class.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7934
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
harrison [Thu, 4 Nov 2004 00:40:31 +0000 (00:40 +0000)]
Reviewed by Darin.
Eliminate the use of a marker file to determine how to build.
* .cvsignore:
* Makefile.am:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7933
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Wed, 3 Nov 2004 15:58:45 +0000 (15:58 +0000)]
Reviewed by me
More layout tests.
* layout-tests/editing/deleting/delete-br-008-expected.txt: Added.
* layout-tests/editing/deleting/delete-br-008.html: Added.
* layout-tests/editing/deleting/delete-br-009-expected.txt: Added.
* layout-tests/editing/deleting/delete-br-009.html: Added.
* layout-tests/editing/deleting/delete-br-010-expected.txt: Added.
* layout-tests/editing/deleting/delete-br-010.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7932
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
mjs [Wed, 3 Nov 2004 11:52:26 +0000 (11:52 +0000)]
Fix by Yasuo Kida, reviewed by me.
<rdar://problem/3819004> REGRESSION (Mail): Can't move cursor / delete character after deleting the active input area
* kwq/KWQKHTMLPart.mm:
(KWQKHTMLPart::setMarkedTextRange): Treat a collapsed range the
same as a nil range - setting an empty marked range should clear
the marked range entirely.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7931
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
mjs [Wed, 3 Nov 2004 11:19:25 +0000 (11:19 +0000)]
WebCore:
Reviewed by Dave Hyatt (when I originally coded it).
WebCore part of fix for:
<rdar://problem/3759187> REGRESSION (Mail): implement firstRectForCharacterRange:
* kwq/WebCoreBridge.h:
* kwq/WebCoreBridge.mm:
(-[WebCoreBridge firstRectForDOMRange:]): New method to compute the rect for a
DOMRange, or if the range is split into multiple lines, the rect for the part on
the first line only.
* khtml/rendering/render_object.cpp:
(RenderObject::caretRect): Added extraWidthToEndOfLine parameter and ditto
for the overrides below.
* khtml/rendering/render_object.h:
* khtml/rendering/render_box.cpp:
(RenderBox::caretRect):
* khtml/rendering/render_box.h:
* khtml/rendering/render_br.cpp:
(RenderBR::caretRect):
* khtml/rendering/render_br.h:
* khtml/rendering/render_flow.cpp:
(RenderFlow::caretRect):
* khtml/rendering/render_flow.h:
* khtml/rendering/render_text.cpp:
(RenderText::caretRect):
WebKit:
Reviewed by Dave Hyatt (when I originally coded it).
Redid WebKit part of fix for:
<rdar://problem/3759187> REGRESSION (Mail): implement firstRectForCharacterRange:
* WebView.subproj/WebHTMLView.m:
(-[WebHTMLView firstRectForCharacterRange:]): Call the appropriate new bridge method,
and translate to screen coordinates.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7930
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
sullivan [Wed, 3 Nov 2004 01:07:17 +0000 (01:07 +0000)]
Reviewed by Hyatt.
- [NSFont menuFontOfSize:], called from WebStringTruncator, was taking > 9% of the time creating a
very large bookmarks menu, so I cached this one NSFont object.
* Misc.subproj/WebStringTruncator.m:
(defaultMenuFont):
new function, caches the font used when no font is specified
(+[WebStringTruncator centerTruncateString:toWidth:]):
call new function
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7929
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Tue, 2 Nov 2004 23:22:45 +0000 (23:22 +0000)]
WebCore:
Reviewed by Hyatt
Implemented command to insert a block in response to typing a return key (even though
I am not turning that on by default with this patch....that will come later).
This new command is called InsertParagraphSeparatorCommand.
Reworked the command and function names associated with inserting content into a
document. Before this patch, there were inputXXX and insertXXX variants, with the
former used for more high-level actions and the latter used for lower-level stuff.
However, this was confusing as the AppKit uses insertXXX for everything. This resulted
in an insertXXX command going through an inputXXX WebCore step and then finally to an
insertXXX WebCore step. To make this less confusing, I have changes all the names to
be insertXXX, and modified the lower-level operations so that it is clear what they do.
* khtml/editing/htmlediting.cpp:
(khtml::EditCommandPtr::isInsertTextCommand): Name change.
(khtml::EditCommand::isInsertTextCommand): Ditto.
(khtml::CompositeEditCommand::inputText): Ditto.
(khtml::CompositeEditCommand::insertTextIntoNode): Ditto.
(khtml::CompositeEditCommand::deleteTextFromNode): Ditto.
(khtml::CompositeEditCommand::replaceTextInNode): Ditto.
(khtml::CompositeEditCommand::deleteInsignificantText): Name changes in implementation.
(khtml::CompositeEditCommand::isLastVisiblePositionInNode): Ditto.
(khtml::DeleteFromTextNodeCommand::DeleteFromTextNodeCommand): Class name change, was DeleteTextCommand.
(khtml::DeleteFromTextNodeCommand::~DeleteFromTextNodeCommand): Ditto.
(khtml::DeleteFromTextNodeCommand::doApply): Ditto.
(khtml::DeleteFromTextNodeCommand::doUnapply): Ditto.
(khtml::DeleteSelectionCommand::performGeneralDelete): Ditto.
(khtml::DeleteSelectionCommand::fixupWhitespace): Ditto.
(khtml::DeleteSelectionCommand::moveNodesAfterNode): Ditto.
(khtml::InsertIntoTextNode::InsertIntoTextNode): Class name change.
(khtml::InsertIntoTextNode::~InsertIntoTextNode): Ditto.
(khtml::InsertIntoTextNode::doApply): Ditto.
(khtml::InsertIntoTextNode::doUnapply): Ditto.
(khtml::InsertLineBreakCommand::InsertLineBreakCommand): Class name change, was InsertNewlineCommand.
(khtml::InsertLineBreakCommand::insertNodeAfterPosition):
(khtml::InsertLineBreakCommand::insertNodeBeforePosition):
(khtml::InsertLineBreakCommand::doApply):
(khtml::InsertNodeBeforeCommand::InsertNodeBeforeCommand): Code moved. No changes.
(khtml::InsertNodeBeforeCommand::~InsertNodeBeforeCommand): Ditto.
(khtml::InsertNodeBeforeCommand::doApply): Ditto.
(khtml::InsertNodeBeforeCommand::doUnapply): Ditto.
(khtml::InsertParagraphSeparatorCommand::InsertParagraphSeparatorCommand): New command.
(khtml::InsertParagraphSeparatorCommand::doApply):
(khtml::InsertParagraphSeparatorInQuotedContentCommand::InsertParagraphSeparatorInQuotedContentCommand):
Class name change, was InsertNewlineCommandInQuotedContentCommand.
(khtml::InsertParagraphSeparatorInQuotedContentCommand::~InsertParagraphSeparatorInQuotedContentCommand): Ditto.
(khtml::InsertParagraphSeparatorInQuotedContentCommand::isMailBlockquote): Ditto.
(khtml::InsertParagraphSeparatorInQuotedContentCommand::doApply): Ditto.
(khtml::InsertTextCommand::InsertTextCommand): Class name change, was InputTextCommand.
(khtml::InsertTextCommand::doApply): Ditto.
(khtml::InsertTextCommand::deleteCharacter): Ditto.
(khtml::InsertTextCommand::prepareForTextInsertion): Ditto.
(khtml::InsertTextCommand::input): Ditto.
(khtml::InsertTextCommand::insertSpace): Ditto.
(khtml::InsertTextCommand::isInsertTextCommand): Ditto.
(khtml::TypingCommand::insertLineBreak): Name change, was insertNewline.
(khtml::TypingCommand::insertParagraphSeparatorInQuotedContent): Name change, was insertNewlineInQuotedContent.
(khtml::TypingCommand::insertParagraphSeparator): New function.
(khtml::TypingCommand::doApply): Name changes, as above.
(khtml::TypingCommand::insertText): Ditto.
(khtml::TypingCommand::deleteKeyPressed): Ditto.
(khtml::TypingCommand::preservesTypingStyle): Ditto.
* khtml/editing/htmlediting.h:
(khtml::DeleteFromTextNodeCommand::node): Name change.
(khtml::DeleteFromTextNodeCommand::offset): Ditto.
(khtml::DeleteFromTextNodeCommand::count): Ditto.
(khtml::InsertIntoTextNode::text): Ditto.
(khtml::InsertNodeBeforeCommand::insertChild): Ditto.
(khtml::InsertNodeBeforeCommand::refChild): Ditto.
(khtml::TypingCommand::): Ditto.
* khtml/editing/jsediting.cpp: Name changes, as above.
* kwq/WebCoreBridge.h:
* kwq/WebCoreBridge.mm:
(-[WebCoreBridge insertLineBreak]): Name change, was insertNewline.
(-[WebCoreBridge insertParagraphSeparator]): New function.
(-[WebCoreBridge insertParagraphSeparatorInQuotedContent]): Name change, was insertNewlineInQuotedContent.
WebKit:
Reviewed by Hyatt
WebCore now implements a command to insert a block in response to typing a return key, and
some names were improved in the course of this work.
* WebView.subproj/WebHTMLView.m:
(-[WebHTMLView insertNewline:]): Now calls insertLineBreak on bridge object.
(-[WebHTMLView insertLineBreak:]): New method.
(-[WebHTMLView insertParagraphSeparator:]): Now implemented.
* WebView.subproj/WebView.m:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7928
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
rjw [Mon, 1 Nov 2004 23:46:31 +0000 (23:46 +0000)]
Fixed <rdar://problem/3861469> Latest Real player crashes Safari on some sites.
Reviewed by Ken.
* bindings/c/c_instance.cpp:
(CInstance::invokeMethod):
(CInstance::invokeDefaultMethod):
Initialize out parameters to void type.
* bindings/c/c_runtime.cpp:
(CField::valueFromInstance):
(CField::setValueToInstance):
Initialize out parameters to void type.
Also added additional checks to protect against classes that
don't implement all functions.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7927
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
rjw [Mon, 1 Nov 2004 22:33:14 +0000 (22:33 +0000)]
Fixed <rdar://problem/3861257> WebUndefined should be returned for undefined values
Reviewed by John.
* ChangeLog:
* bindings/objc/WebScriptObject.mm:
(+[WebScriptObject _convertValueToObjcValue:KJS::root:Bindings::]):
Added additional conversion Undefined -> WebUndefined.
* bindings/objc/objc_utility.mm:
(KJS::Bindings::convertObjcValueToValue):
Added additional conversion WebUndefined -> Undefined.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7926
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kdecker [Mon, 1 Nov 2004 22:20:58 +0000 (22:20 +0000)]
Reviewed by rjw.
fixed <rdar://problem/3681094> Crash in KJS::WindowFunc::tryCall with application/xhtml+xml Content-Type
once and for all.
* khtml/ecma/kjs_window.cpp:
(WindowFunc::tryCall): Added a nil check in the case of an empty document lacking a baseURL().
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7924
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Mon, 1 Nov 2004 21:23:14 +0000 (21:23 +0000)]
- fixed <rdar://problem/3855573> Remove reference to "WebScriptMethods" from WebScriptObject.h comments
* bindings/objc/WebScriptObject.h: Removed unneeded #ifdef protection for multiple includes (since
this is an Objective-C header and we use #import for those). Fixed comments as requested in the bug
report to match the contents of the file.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7923
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Mon, 1 Nov 2004 19:21:24 +0000 (19:21 +0000)]
Reviewed by Hyatt.
- fixed <rdar://problem/3859381> REGRESSION (167-168): text in form fields should not use body's text color
* khtml/css/html4.css: Use color: initial for textarea and related ones.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7922
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Mon, 1 Nov 2004 17:56:33 +0000 (17:56 +0000)]
Reviewed by John
Fix for this bug:
<rdar://problem/3775920> REGRESSION (Mail): Centering doesn't work in HTML mail
* khtml/css/css_computedstyle.cpp:
(DOM::CSSComputedStyleDeclarationImpl::copyInheritableProperties): Factor out the
implementation here into new copyPropertiesInSet helper. This now calls the
generalized copyPropertiesInSet function with the arguments needed to make copying
inheritable work.
* khtml/css/css_computedstyle.h:
* khtml/css/css_valueimpl.cpp:
(CSSStyleDeclarationImpl::diff): Move this function here from css_computedstyle.cpp.
In order to do apply block properties, "regular" style declarations need to do style
diffs as well.
(CSSStyleDeclarationImpl::copyBlockProperties): New helper. Just like copyInheritableProperties
except that it uses a different set of properties that apply only to blocks.
(CSSStyleDeclarationImpl::copyPropertiesInSet): New helper that looks at a style declaration
and copies out those properties listed in a pre-defined set.
* khtml/css/css_valueimpl.h:
* khtml/editing/htmlediting.cpp:
(khtml::StyleChange::StyleChange): Modified to work with style changes that apply to a whole
block, factoring out some of the special case code that should now only run in the inline case.
(khtml::StyleChange::init): Factored out the code that now is in checkForLegacyHTMLStyleChange.
(khtml::StyleChange::checkForLegacyHTMLStyleChange): New helper for case where we want
special handling for "legacy" HTML styles like <B> and <I>.
(khtml::ApplyStyleCommand::doApply): Much refactoring in this class to divide up the work of
style changes into different kinds. CSS specifies certain properties only apply to certain
element types. This set of changes now recognizes two such separate cases: styles that apply
to blocks, and styles that apply to inlines.
(khtml::ApplyStyleCommand::applyBlockStyle): New function to handle apply styles to whole blocks.
(khtml::ApplyStyleCommand::applyInlineStyle): New function to handle apply styles to inlines.
(khtml::ApplyStyleCommand::isHTMLStyleNode): Is now passed a CSSStyleDeclarationImpl to work
with rather than working on the CSSStyleDeclarationImpl member variable of the class. This is
done so that the function can be passed a portion of the styles being applied so that block styles
and inline styles can be handled separately.
(khtml::ApplyStyleCommand::removeCSSStyle): Ditto.
(khtml::ApplyStyleCommand::removeBlockStyle): New function to handle removing styles from whole blocks.
(khtml::ApplyStyleCommand::removeInlineStyle): New function to removing styles from inlines.
(khtml::ApplyStyleCommand::addBlockStyleIfNeeded): New function to handle applying style to whole blocks.
(khtml::ApplyStyleCommand::addInlineStyleIfNeeded): New function to handle applying style to inlines.
* khtml/editing/htmlediting.h:
(khtml::StyleChange::): Changed as described above.
(khtml::StyleChange::usesLegacyStyles):
(khtml::EditCommand::setEndingSelectionNeedsLayout): New function to that tells the ending selection
it needs to layout, even though it has not changed position in the DOM. For instance, this is needed
when text align changes.
* khtml/khtml_part.cpp:
(KHTMLPart::setTypingStyle): Put in an early bail-out in the case where the current style matches
the passed-in argument.
(KHTMLPart::applyStyle): Modify this function so that block styles are applied when the selection
is a caret. Formerly, this just set typing style and made no visible changes to the document.
New tests.
* layout-tests/editing/editing.js: Added some glue to change text align.
* layout-tests/editing/style/block-style-001-expected.txt: Added.
* layout-tests/editing/style/block-style-001.html: Added.
* layout-tests/editing/style/block-style-002-expected.txt: Added.
* layout-tests/editing/style/block-style-002.html: Added.
* layout-tests/editing/style/block-style-003-expected.txt: Added.
* layout-tests/editing/style/block-style-003.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7921
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
vicki [Fri, 29 Oct 2004 23:51:55 +0000 (23:51 +0000)]
versioning for TOT, Safari 2.0 (170u)
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7920
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
vicki [Fri, 29 Oct 2004 23:42:16 +0000 (23:42 +0000)]
Safari-169 stamp
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7918
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Fri, 29 Oct 2004 21:53:52 +0000 (21:53 +0000)]
Reviewed by NOBODY (OOPS!).
- fixed <rdar://problem/3751619> Safari crash in khtml::CircularSearchBuffer::append(QChar const&)
* khtml/editing/visible_text.cpp: (khtml::findPlainText): Fix exit condition to check for break
before advancing one character; before it did it backwards.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7917
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Fri, 29 Oct 2004 21:48:55 +0000 (21:48 +0000)]
Fixed: <rdar://problem/3853262> REGRESSION(166-168) gmail gets blank page when loading
Reviewed by kocienda, adele.
* khtml/rendering/render_frames.cpp:
(RenderPartObject::updateWidget): remove infinite frame recursion check for iframes
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7916
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Fri, 29 Oct 2004 20:16:58 +0000 (20:16 +0000)]
* WebKit.exp: added _WebPlugInModeKey, forgot to add it earlier
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7915
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Fri, 29 Oct 2004 18:59:39 +0000 (18:59 +0000)]
Reviewed by Chris.
- fixed <rdar://problem/3857395> clicking on calendar in Apple Travel site crashes Safari in invalidateClick (getthere.net)
* khtml/khtmlview.cpp:
(KHTMLView::viewportMousePressEvent): Use a SharedPtr<KHTMLView> to make sure the KHTMLView is not
deleted before this function finishes running.
(KHTMLView::viewportMouseDoubleClickEvent): Ditto.
(KHTMLView::viewportMouseReleaseEvent): Ditto.
(KHTMLView::dispatchMouseEvent): Removed ref/deref pairs that aren't needed since dispatchEvent
is guaranteed to do ref/deref as needed.
* kwq/KWQObject.mm: (QObject::startTimer): Fixed a comment.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7914
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Fri, 29 Oct 2004 18:11:20 +0000 (18:11 +0000)]
- fixed <rdar://problem/3855573> Remove reference to "WebScriptMethods" from WebScriptObject.h comments
* Plugins.subproj/WebScriptObject.h: Removed unneeded #ifdef protection for multiple includes (since
this is an Objective-C header and we use #import for those). Fixed comments as requested in the bug
report to match the contents of the file.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7913
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Thu, 28 Oct 2004 23:14:40 +0000 (23:14 +0000)]
Enabled XSLT on Panther. See intrigue mail for compiling instructions.
Reviewed by darin.
* WebCore.pbproj/project.pbxproj: link against xslt unconditionally, link against specific version of libxml on Panther
* WebCorePrefix.h: always use XSLT
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7912
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Thu, 28 Oct 2004 22:35:00 +0000 (22:35 +0000)]
Reviewed by Chris
Fix for these bugs:
<rdar://problem/3854848> Tiger Mail Crash in WebCore - khtml::CompositeEditCommand::insertNodeAfter
<rdar://problem/3803832> REGRESSION (Mail): incorrect behavior after Return + Delete in quoted text
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::DeleteSelectionCommand): Added node pointer class members
to initialization list, zeroing them out.
(khtml::DeleteSelectionCommand::canPerformSpecialCaseBRDelete): New special-case helper to
handle a delete of content in special cases where the only thing selected is a BR. This
code path is much simpler than the newly-named performGeneralDelete, and detects when no
content merging should be done between blocks. This aspect of the change fixes 3854848.
One of the special cases added fixes 3803832.
(khtml::DeleteSelectionCommand::performGeneralDelete): Renamed, from performDelete.
(khtml::DeleteSelectionCommand::moveNodesAfterNode): Made this helper be a no-arg function, just
like the other helpers in this class.
(khtml::DeleteSelectionCommand::clearTransientState): Fix cut and paste error in deref code.
(khtml::DeleteSelectionCommand::doApply): Updated for changed helpers.
* khtml/editing/htmlediting.h: Added new helper and changed an old one.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7911
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Thu, 28 Oct 2004 22:05:35 +0000 (22:05 +0000)]
Fixed: <rdar://problem/3856913> Panther-only crash in QString code copying front page of store.apple.com
Reviewed by darin.
* kwq/KWQKHTMLPart.mm:
(KWQKHTMLPart::attributedString): check that the renderer is a list item before making list item calls on it
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7910
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Thu, 28 Oct 2004 20:07:47 +0000 (20:07 +0000)]
Reviewed by Harrison
Reorganization of delete command functionality so that doApply is not
several hundred lines long. This is not a squeaky-clean cleanup, but
it is a step in the right direction. No functionality changes.
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::DeleteSelectionCommand):
(khtml::DeleteSelectionCommand::initializePositionData): New helper.
(khtml::DeleteSelectionCommand::saveTypingStyleState): Ditto.
(khtml::DeleteSelectionCommand::performDelete): Ditto.
(khtml::DeleteSelectionCommand::fixupWhitespace): Ditto.
(khtml::DeleteSelectionCommand::moveNodesAfterNode): Ditto.
(khtml::DeleteSelectionCommand::calculateEndingPosition): Ditto.
(khtml::DeleteSelectionCommand::calculateTypingStyleAfterDelete): Ditto.
(khtml::DeleteSelectionCommand::clearTransientState): Ditto.
(khtml::DeleteSelectionCommand::doApply): Factor out code into new helpers.
* khtml/editing/htmlediting.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7909
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Thu, 28 Oct 2004 16:38:52 +0000 (16:38 +0000)]
Reviewed by me
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::DeleteSelectionCommand): Typo in initializer caused
new mergeBlocksAfterDelete flag to be set improperly, causing layout regressions.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7908
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Wed, 27 Oct 2004 22:41:14 +0000 (22:41 +0000)]
WebCore:
Reviewed by Chris
* khtml/editing/htmlediting.cpp:
(khtml::CompositeEditCommand::deleteSelection): Added new mergeBlocksAfterDelete flag to control
whether content not in the block containing the start of the selection is moved to that block
after the selection is deleted.
(khtml::DeleteSelectionCommand::DeleteSelectionCommand): Ditto.
(khtml::DeleteSelectionCommand::doApply): Ditto.
(khtml::InputNewlineInQuotedContentCommand::InputNewlineInQuotedContentCommand): New command
to handle the case of inserting a newline when in quoted content in Mail.
(khtml::InputNewlineInQuotedContentCommand::~InputNewlineInQuotedContentCommand): Ditto.
(khtml::InputNewlineInQuotedContentCommand::isMailBlockquote): Ditto.
(khtml::InputNewlineInQuotedContentCommand::isLastVisiblePositionInBlockquote): Ditto.
(khtml::InputNewlineInQuotedContentCommand::doApply): Ditto.
(khtml::TypingCommand::insertNewlineInQuotedContent): Support for new newline command.
(khtml::TypingCommand::doApply): Ditto.
(khtml::TypingCommand::preservesTypingStyle): Ditto.
* khtml/editing/htmlediting.h: Add new delclarations.
(khtml::TypingCommand::): Ditto.
* kwq/WebCoreBridge.h: Added new bridge method called from WebKit.
* kwq/WebCoreBridge.mm:
(-[WebCoreBridge insertNewlineInQuotedContent]): Ditto.
WebKit:
Reviewed by Chris
Added new SPI for Mail so it can get the behavior it needs when the user hits
the return key with the selection in quoted content.
* WebView.subproj/WebView.m
* WebView.subproj/WebViewPrivate.h
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7907
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Tue, 26 Oct 2004 22:13:02 +0000 (22:13 +0000)]
Fixed: <rdar://problem/3774243> page up/down, arrow up/down, etc in Safari RSS should scroll main content
Reviewed by dave.
* khtml/ecma/kjs_dom.cpp:
(DOMElementProtoFunc::tryCall): added scrollByLines and scrollByPages to HTML element for Safari RSS
* khtml/ecma/kjs_dom.h:
(KJS::DOMElement::):
* khtml/ecma/kjs_dom.lut.h:
(KJS::):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7901
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Tue, 26 Oct 2004 21:08:41 +0000 (21:08 +0000)]
Fix for 3848214, deleting a partial word left a repaint artifact if the partial word was pulled back onto
the previous line.
Reviewed by kocienda
* khtml/rendering/bidi.cpp:
(khtml::RenderBlock::layoutInlineChildren):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7900
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Tue, 26 Oct 2004 20:15:08 +0000 (20:15 +0000)]
Convert selectionRect() from using a list to a dict and patch it to be like setSelection. It was still trying
to use the old dirty bit optimization (which had been removed), and so it was pathologically slow on large documents.
Reviewed by kocienda
* khtml/rendering/render_canvas.cpp:
(RenderCanvas::selectionRect):
* khtml/rendering/render_object.h:
(khtml::RenderObject::hasSelectedChildren):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7899
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Tue, 26 Oct 2004 19:57:55 +0000 (19:57 +0000)]
Reviewed by Hyatt
Fix for this bug::
<rdar://problem/3851164> mail crashed when I pasted a large amount of text into a reply
* khtml/editing/htmlediting.cpp:
(khtml::CompositeEditCommand::removeBlockPlaceholderIfNeeded): This now returns bool to
let the caller know if a placeholder was removed.
(khtml::ReplaceSelectionCommand::doApply): Use the bool return value from the call to
removeBlockPlaceholderIfNeeded. If true, shift the selection to the now-empty block. In
some cases, the selection was still set on the removed BR, and this was the cause of the
crash.
* khtml/editing/htmlediting.h: Change removeBlockPlaceholderIfNeeded return type.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7898
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Tue, 26 Oct 2004 18:26:50 +0000 (18:26 +0000)]
Reviewed by Chris.
- fixed <rdar://problem/3851301> leak of one NSCFDictionary for each XMLHttpRequest issued
* kwq/KWQLoader.mm: (KWQServeSynchronousRequest): Add a release.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7897
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Tue, 26 Oct 2004 17:40:12 +0000 (17:40 +0000)]
Fixed exception that Darin encountered in Mail.
Reviewed by darin.
* Plugins.subproj/WebPluginController.m:
(+[WebPluginController plugInViewWithArguments:fromPluginPackage:]): if the plug-in returns a nil view, return nil
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7896
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Tue, 26 Oct 2004 17:08:42 +0000 (17:08 +0000)]
Reviewed by John
* khtml/editing/htmlediting.cpp:
(khtml::CompositeEditCommand::deleteInsignificantText): Do not call replaceText
with a zero-length string. That triggers an assert. Call deleteText instead,
using the same indices that are passed to replaceText.
Cleaned up the asserts in these three functions below, making them
more consistent. This is not needed for the fix, but I tripped over
these in the course of debugging.
(khtml::InsertTextCommand::InsertTextCommand):
(khtml::InsertTextCommand::doApply):
(khtml::InsertTextCommand::doUnapply):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7895
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
adele [Tue, 26 Oct 2004 00:46:58 +0000 (00:46 +0000)]
* khtml/xml/dom_docimpl.cpp: (DocumentImpl::inDesignMode): made inDesignMode const
* khtml/xml/dom_docimpl.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7894
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Mon, 25 Oct 2004 23:42:06 +0000 (23:42 +0000)]
Darin made an internal notification have the Web prefix.
Reviewed by me.
* Plugins.subproj/WebBaseNetscapePluginView.m:
(-[WebBaseNetscapePluginView addWindowObservers]):
(-[WebBaseNetscapePluginView removeWindowObservers]):
(ConsoleConnectionChangeNotifyProc):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7893
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
adele [Mon, 25 Oct 2004 23:02:01 +0000 (23:02 +0000)]
Reviewed by me, code change by Darin.
* khtml/xml/dom_docimpl.cpp: Moved design mode code outside the XSLT ifdef.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7892
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Mon, 25 Oct 2004 22:05:19 +0000 (22:05 +0000)]
Reviewed by me
Oops. These two test results changed with my last checkin, for the better.
* layout-tests/editing/deleting/delete-3800834-fix-expected.txt
* layout-tests/editing/inserting/insert-3775316-fix-expected.txt
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7891
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Mon, 25 Oct 2004 21:52:20 +0000 (21:52 +0000)]
Reviewed by Chris
Fix for this bug:
<rdar://problem/3820349> REGRESSION (Mail): select all, delete does not always delete everything
* khtml/editing/htmlediting.cpp:
(khtml::DeleteSelectionCommand::startPositionForDelete): New helper that determines when to
expand the selection outwards when the selection is on the visible boundary of a root
editable element. This fixes the bug. Note that this function also contains a little code
I factored out of doApply: it also takes care of adjusting the selection in the smart delete case.
(khtml::DeleteSelectionCommand::endPositionForDelete): Ditto.
(khtml::DeleteSelectionCommand::doApply): Call new helpers. Refactored out the code as described.
* khtml/editing/htmlediting.h: Declare new helpers.
* layout-tests/editing/deleting/delete-select-all-001-expected.txt: Added.
* layout-tests/editing/deleting/delete-select-all-001.html: Added.
* layout-tests/editing/deleting/delete-select-all-002-expected.txt: Added.
* layout-tests/editing/deleting/delete-select-all-002.html: Added.
* layout-tests/editing/deleting/delete-select-all-003-expected.txt: Added.
* layout-tests/editing/deleting/delete-select-all-003.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7890
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Mon, 25 Oct 2004 18:49:50 +0000 (18:49 +0000)]
Reviewed by me
Added some more editing layout tests.
* layout-tests/editing/deleting/delete-ws-fixup-001-expected.txt: Added.
* layout-tests/editing/deleting/delete-ws-fixup-001.html: Added.
* layout-tests/editing/deleting/delete-ws-fixup-002-expected.txt: Added.
* layout-tests/editing/deleting/delete-ws-fixup-002.html: Added.
* layout-tests/editing/deleting/delete-ws-fixup-003-expected.txt: Added.
* layout-tests/editing/deleting/delete-ws-fixup-003.html: Added.
* layout-tests/editing/deleting/delete-ws-fixup-004-expected.txt: Added.
* layout-tests/editing/deleting/delete-ws-fixup-004.html: Added.
* layout-tests/editing/inserting/typing-003-expected.txt: Added.
* layout-tests/editing/inserting/typing-003.html: Added.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7889
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Mon, 25 Oct 2004 18:48:44 +0000 (18:48 +0000)]
Reviewed by John
* khtml/rendering/bidi.cpp:
(khtml::RenderBlock::findNextLineBreak): I did not get my fix for 3848343 and 3848224
yesterday quite right: words that should have been placed on the next line were instead
appearing on the line before, beyond the right margin. This was a one-word only error
based on moving the line break object when it should have stayed put. Here is the rule:
The line break object only moves to after the whitespace on the end of a line if that
whitespace caused line overflow when its width is added in.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7888
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
adele [Mon, 25 Oct 2004 18:26:01 +0000 (18:26 +0000)]
Reviewed by Darin.
Fix for <rdar://problem/3619890> Feature request: designMode
This change implements the designMode property of a document. This is an IE property that is also supported by Mozilla.
This will enable more JS editing compatibility.
* khtml/ecma/kjs_html.cpp:
(KJS::HTMLDocument::tryGet): added case for designMode
(KJS::HTMLDocument::putValue): added case for designMode
* khtml/ecma/kjs_html.lut.h: (KJS::): regenerated
* khtml/khtml_part.cpp: (KHTMLPart::isContentEditable): Now returns designMode value
* khtml/xml/dom_docimpl.cpp:
(DocumentImpl::DocumentImpl): initialize m_designMode member variable
(DocumentImpl::setDesignMode): added function to assign m_designMode value
(DocumentImpl::getDesignMode): return m_designMode value
(DocumentImpl::inDesignMode): if designMode is inherited, this will find the appropriate parent document designMode and return that value.
Otherwise, it will just return the m_designMode value.
(DocumentImpl::parentDocument):
* khtml/xml/dom_docimpl.h: (DOM::DocumentImpl::): added InheritedBool enum, prototypes, and m_designMode member variable.
* kwq/KWQKHTMLPart.mm: (KWQKHTMLPart::isContentEditable): added check for isContentEditable function in KHTMLPart
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7887
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
sullivan [Mon, 25 Oct 2004 17:52:07 +0000 (17:52 +0000)]
WebKit:
Reviewed by Chris.
- Cleanup from fix for <rdar://problem/3851676> bookmarks should not hold onto a WebHistoryItem object;
eliminated notificationsSuppressed mechanism, which was used only by WebBookmark
* History.subproj/WebHistoryItem.m:
removed notificationsSuppressed ivar from private data object
(-[WebHistoryItem setAlternateTitle:]):
remove notificationsSuppressed guard
(-[WebHistoryItem setURLString:]):
ditto
(-[WebHistoryItem setOriginalURLString:]):
ditto
(-[WebHistoryItem setTitle:]):
ditto
(-[WebHistoryItem _setLastVisitedTimeInterval:]):
ditto
(-[WebHistoryItem setNotificationsSuppressed:]):
removed this method
(-[WebHistoryItem notificationsSuppressed]):
ditto
* History.subproj/WebHistoryItemPrivate.h:
removed notificationsSuppressed and setNotificationsSuppressed
WebBrowser:
Reviewed by Chris.
- fixed these bugs:
<rdar://problem/3851676> bookmarks should not hold onto a WebHistoryItem object
<rdar://problem/3852373> Could eliminate -[WebBookmark lastVisitedTimeInterval] for performance
This reduced RPRVT after launch with the standard set of built-in bookmarks on my machine from
4.12M to 4.09M, and sped up reading bookmarks a little also.
* BrowserWebBookmarkExtras.m:
(-[WebBookmark _goToWithWindowPolicy:]):
Don't set lastVisitedTimeInterval here
* URLCompletionController.m:
(-[URLCompletionController _addStatsForURL:]):
Added comment to this #defined-away method explaining that it wouldn't work as-is anymore
since it calls the obsolete setLastVisitedTimeInterval
* WebBookmark.h:
remove lastVisitedTimeInterval and setLastVisitedTimeInterval
* WebBookmark.m:
removed _URL, setLastVisitedTimeInterval, and lastVisitedTimeInterval
* WebBookmarkExporter.m:
(-[WebBookmarkExporter stringForBookmarkLeaf:withIndentLevel:]):
Don't export last visited time anymore
* WebBookmarkGroup.m:
(-[WebBookmarkGroup _addBookmarkToURLStringDictionary:]):
use [bookmark URLString] instead of [bookmark _URL]. The latter was getting the URL from its
WebHistoryItem, which no longer exists.
* WebBookmarkLeaf.h:
remove _entry ivar, add _title ivar
* WebBookmarkLeaf.m:
(-[WebBookmarkLeaf init]):
removed this method, which set up _entry
(-[WebBookmarkLeaf initWithURLString:title:group:]):
weaned from _entry, also calls setURLString instead of setting the ivar directly to
ensure that the WebIconDatabase is updated properly
(-[WebBookmarkLeaf initFromDictionaryRepresentation:topLevelOnly:withGroup:]):
ditto
(-[WebBookmarkLeaf dictionaryRepresentation]):
weaned from _entry
(-[WebBookmarkLeaf dealloc]):
calls setURLString instead of setting the ivar directly to ensure that the WebIconDatabase
is updated properly
(-[WebBookmarkLeaf copyWithZone:]):
ditto
(-[WebBookmarkLeaf title]):
weaned from _entry
(-[WebBookmarkLeaf setTitle:]):
ditto
(-[WebBookmarkLeaf icon]):
ditto
(-[WebBookmarkLeaf URLString]):
ditto
(-[WebBookmarkLeaf setURLString:]):
ditto, also updates WebIconDatabase
(-[WebBookmarkLeaf setLastVisitedTimeInterval:]):
removed this method
(-[WebBookmarkLeaf lastVisitedTimeInterval]):
ditto
(-[WebBookmarkLeaf _computeIsRSSBookmark]):
use isSyndicationURLString on a string instead of isSyndicationURL on a URL
* WebBookmarkPrivate.h:
removed _URL method
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7886
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Sat, 23 Oct 2004 00:19:49 +0000 (00:19 +0000)]
Fixed: <rdar://problem/3851491> installedPlugins being called for a page without plugins
Reviewed by mjs.
* WebView.subproj/WebFrameView.m:
(+[WebFrameView _canShowMIMETypeAsHTML:]): call _viewTypesAllowImageTypeOmission instead of using ivar since the ivar is nil until _viewTypesAllowImageTypeOmission is called, this was causing [WebView canShowMIMEType:] to check plug-ins
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7885
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Fri, 22 Oct 2004 22:26:12 +0000 (22:26 +0000)]
Reviewed by Hyatt
Fix for this bug:
<rdar://problem/3844662> REGRESSION (Mail): Style changes can affect adjacent, unselected text
* khtml/editing/htmlediting.cpp:
(khtml::ApplyStyleCommand::doApply): Move end position downstream to be sure we remove style from
everything that could be affected.
(khtml::ApplyStyleCommand::removeCSSStyle): Comma in intended function call was outside the
braces, making it act as a comma operator, with a zero value as the right value!!! This made
an important check always fail!!! It turns out that we do not want the constant at all, since
that constant is only needed when checking a computed style, not an inline style as is being
done here.
(khtml::ApplyStyleCommand::removeStyle): Call nodeFullySelected with new interface.
(khtml::ApplyStyleCommand::nodeFullySelected): Change interface and implementation to rely on
RangeImpl::compareBoundaryPoints to perform the required check.
* khtml/editing/htmlediting.h: Changed nodeFullySelected function interface.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7884
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Fri, 22 Oct 2004 20:07:05 +0000 (20:07 +0000)]
Reviewed by Hyatt
Fix for this bugs:
<rdar://problem/3848343> REGRESSION (Mail, 166-168u): Typed text after space at end of line before block quote does not appear
<rdar://problem/3848224> REGRESSION (Mail): space typed at end of line vanishes after typing next character
* khtml/rendering/bidi.cpp:
(khtml::RenderBlock::findNextLineBreak): When the khtmlLineBreak is in AFTER_WHITE_SPACE mode, as
it is when we are editing, add in the space of the current character when calculating the width
of committed plus uncommitted characters. If this value exceeds the width of the line, move up
the line break object and call skipWhitespace to move past the end of the whitespace.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7883
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
vicki [Fri, 22 Oct 2004 19:14:15 +0000 (19:14 +0000)]
versioning for TOT. the tree is open!
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7882
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
vicki [Fri, 22 Oct 2004 19:04:54 +0000 (19:04 +0000)]
Safari-168 stamp
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7880
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Fri, 22 Oct 2004 16:20:36 +0000 (16:20 +0000)]
JavaScriptCore:
Reviewed by me
* JavaScriptCore.pbproj/project.pbxproj:
Add GCC_ENABLE_OBJC_GC and GCC_FAST_OBJC_DISPATCH flags.
WebCore:
Reviewed by me
* WebCore.pbproj/project.pbxproj:
Add GCC_ENABLE_OBJC_GC and GCC_FAST_OBJC_DISPATCH flags.
WebKit:
Reviewed by me
* WebKit.pbproj/project.pbxproj: Add GCC_ENABLE_OBJC_GC and GCC_FAST_OBJC_DISPATCH flags.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7879
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Fri, 22 Oct 2004 01:08:56 +0000 (01:08 +0000)]
Reviewed by darin
Clean up the inline run function so that it doesn't return incorrect answers when making children non-inline.
<rdar://problem/3848724> REGRESSION (166-168u): RenderText::layout called, firing assertion that kills Mail
<rdar://problem/3848357> RenderText::layout called, firing assertion that kills Safari (www.apple.com/downloads/macosx)
* khtml/rendering/render_block.cpp:
(khtml::getInlineRun):
(khtml::RenderBlock::makeChildrenNonInline):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7878
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Fri, 22 Oct 2004 00:00:29 +0000 (00:00 +0000)]
Add layout test for dynamic block/inline crash.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7877
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Thu, 21 Oct 2004 23:45:58 +0000 (23:45 +0000)]
Fix for 3810389, crash because of continuation() craziness. Revert back to the old behavior of
making sure that all line boxes get deleted and recreated when inlines are split because of a block.
Reviewed darin
* khtml/rendering/render_inline.cpp:
(RenderInline::splitFlow):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7876
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
kocienda [Thu, 21 Oct 2004 21:19:35 +0000 (21:19 +0000)]
Reviewed by Darin
Significant improvement to the way that whitespace is handled during editing.
* khtml/editing/htmlediting.cpp:
(khtml::CompositeEditCommand::deleteInsignificantText): New functions (there are actually
two being added with this name) that delete "insignificant" unrendered text.
(khtml::CompositeEditCommand::deleteInsignificantTextDownstream): Takes a position,
calculates the downstream position to use as the endpoint for the deletion, and
then calls deleteInsignificantText with this start and end.
(khtml::DeleteSelectionCommand::doApply): Call new deleteInsignificantTextDownstream function.
(khtml::InputNewlineCommand::doApply): Ditto.
(khtml::InputTextCommand::input): Ditto.
* khtml/editing/htmlediting.h: Add new declarations.
Modified layout test results:
* layout-tests/editing/deleting/delete-block-merge-contents-016-expected.txt:
* layout-tests/editing/deleting/delete-block-merge-contents-017-expected.txt:
* layout-tests/editing/deleting/delete-contiguous-ws-001-expected.txt:
* layout-tests/editing/deleting/delete-selection-001-expected.txt:
* layout-tests/editing/deleting/delete-tab-001-expected.txt:
* layout-tests/editing/deleting/delete-tab-004-expected.txt:
* layout-tests/editing/deleting/delete-trailing-ws-001-expected.txt:
* layout-tests/editing/inserting/insert-3659587-fix-expected.txt:
* layout-tests/editing/inserting/insert-3775316-fix-expected.txt:
* layout-tests/editing/inserting/insert-3778059-fix-expected.txt:
* layout-tests/editing/inserting/insert-br-001-expected.txt:
* layout-tests/editing/inserting/insert-br-004-expected.txt:
* layout-tests/editing/inserting/insert-br-005-expected.txt:
* layout-tests/editing/inserting/insert-br-006-expected.txt:
* layout-tests/editing/inserting/insert-tab-001-expected.txt:
* layout-tests/editing/inserting/insert-tab-002-expected.txt:
* layout-tests/editing/inserting/insert-tab-004-expected.txt:
* layout-tests/editing/inserting/insert-text-with-newlines-expected.txt:
* layout-tests/editing/inserting/typing-001-expected.txt:
* layout-tests/editing/inserting/typing-around-br-001-expected.txt:
* layout-tests/editing/inserting/typing-around-image-001-expected.txt:
* layout-tests/editing/style/typing-style-003-expected.txt:
* layout-tests/editing/undo/redo-typing-001-expected.txt:
* layout-tests/editing/undo/undo-typing-001-expected.txt:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7875
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Thu, 21 Oct 2004 21:12:06 +0000 (21:12 +0000)]
Fix for 3847054, assertion failure in RenderText::layout() on news.com page. Fix getInlineRun so that
it no longer breaks early (thus causing some children not to get properly wrapped by anonymous blocks).
Reviewed by darin
* khtml/rendering/render_block.cpp:
(khtml::getInlineRun):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7874
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Thu, 21 Oct 2004 17:04:37 +0000 (17:04 +0000)]
Reviewed by John.
- fixed <rdar://problem/3847994> REGRESSION: reproducible exception in WebImageRenderer releasePatternColor; afterwards get crash or no more browsing
* WebCoreSupport.subproj/WebImageRenderer.m:
(-[WebInternalImage createRendererIfNeeded]): Replaced retainOrCopyIfNeeded with this.
This returns nil if a copied renderer isn't needed, and returns a new renderer if a copy is.
The old version was sometimes returning a WebInternalImage and other times a WebImageRenderer.
(-[WebImageRenderer retainOrCopyIfNeeded]): Returns the result of createRendererIfNeeded
or retains self and returns self.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7873
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Thu, 21 Oct 2004 00:23:33 +0000 (00:23 +0000)]
Land updated layout tests with scroll info.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7872
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
darin [Thu, 21 Oct 2004 00:20:59 +0000 (00:20 +0000)]
Reviewed by Dave.
- fixed <rdar://problem/3470715> Pattern cache can get huge with use of css background-image in Safari
* WebCoreSupport.subproj/WebImageRenderer.h: Change WebImageRenderer to be a subclass of NSObject
rather than NSImage and contain a pointer to a WebInternalImage.
* WebCoreSupport.subproj/WebImageRenderer.m:
(-[WebInternalImage releasePatternColor]): Added. Releases patternColor.
(-[WebImageRenderer initWithMIMEType:]): Added. Makes WebInternalImage and then self.
(-[WebImageRenderer initWithData:MIMEType:]): Ditto.
(-[WebImageRenderer initWithContentsOfFile:]): Ditto.
(-[WebImageRenderer dealloc]): Added. Calls releasePatternColor and then releases WebInternalImage.
(-[WebImageRenderer image]): Added. Returns pointer to image.
(-[WebImageRenderer MIMEType]): Added. Calls through to image.
(-[WebImageRenderer TIFFRepresentation]): Ditto.
(-[WebImageRenderer frameCount]): Ditto.
(-[WebImageRenderer setOriginalData:]): Added. Sets image data pointer.
(+[WebImageRenderer stopAnimationsInView:]): Added. Calls through to image.
(-[WebImageRenderer incrementalLoadWithBytes:length:complete:]): Ditto.
(-[WebImageRenderer size]): Ditto.
(-[WebImageRenderer resize:]): Ditto.
(-[WebImageRenderer drawImageInRect:fromRect:]): Ditto.
(-[WebImageRenderer drawImageInRect:fromRect:compositeOperator:context:]): Ditto.
(-[WebImageRenderer stopAnimation]): Ditto.
(-[WebImageRenderer tileInRect:fromPoint:context:]): Ditto.
(-[WebImageRenderer isNull]): Ditto.
(-[WebImageRenderer retainOrCopyIfNeeded]): Ditto.
(-[WebImageRenderer increaseUseCount]): Ditto.
(-[WebImageRenderer decreaseUseCount]): Ditto.
(-[WebImageRenderer flushRasterCache]): Ditto.
(-[WebImageRenderer imageRef]): Ditto.
(-[WebImageRenderer copyWithZone:]): Ditto.
* Misc.subproj/WebNSViewExtras.m: (-[NSView _web_dragImage:rect:event:pasteboard:source:offset:]):
Update for slight changes to WebImageRenderer API.
* WebCoreSupport.subproj/WebImageRendererFactory.m:
(-[WebImageRendererFactory imageRendererWithMIMEType:]): Ditto.
(-[WebImageRendererFactory imageRendererWithData:MIMEType:]): Ditto.
(-[WebImageRendererFactory imageRendererWithSize:]): Ditto.
(-[WebImageRendererFactory imageRendererWithName:]): Ditto.
* WebView.subproj/WebImageView.m: (-[WebImageView image]): Ditto.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7871
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Thu, 21 Oct 2004 00:20:29 +0000 (00:20 +0000)]
Add better dumping of overflow information for scrolling regions.
Fix for 3726524, crash in updateLayerPosition. Make sure anonymous elements properly remove themselves
from the render tree so that layers and so forth are cleaned up.
Reviewed by darin
* khtml/rendering/render_container.cpp:
(RenderContainer::detach):
* khtml/rendering/render_layer.h:
(khtml::RenderLayer::scrollXOffset):
(khtml::RenderLayer::scrollYOffset):
* kwq/KWQRenderTreeDebug.cpp:
(write):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7870
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Wed, 20 Oct 2004 21:34:01 +0000 (21:34 +0000)]
Fix for 3791146, make sure all lines are checked when computing overflow.
Reviewed by kocienda
* khtml/rendering/bidi.cpp:
(khtml::RenderBlock::computeHorizontalPositionsForLine):
(khtml::RenderBlock::layoutInlineChildren):
(khtml::RenderBlock::findNextLineBreak):
(khtml::RenderBlock::checkLinesForOverflow):
* khtml/rendering/render_block.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7869
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
cblu [Wed, 20 Oct 2004 21:31:53 +0000 (21:31 +0000)]
Fixed: <rdar://problem/3846943> REGRESSION: JNLP files are rendered instead of downloaded
Reviewed by john.
* Plugins.subproj/WebBasePluginPackage.h:
* Plugins.subproj/WebBasePluginPackage.m:
(-[WebBasePluginPackage isJavaPlugIn]): new
* Plugins.subproj/WebPluginDatabase.m:
(-[WebPluginDatabase refresh]): don't register the Java plug-in for a document view since Java file should be downloaded when not embedded.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7868
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
hyatt [Wed, 20 Oct 2004 20:58:12 +0000 (20:58 +0000)]
Fix for 3790936, make the unicode-breaking on the layout tests match Panther.
Reviewed by kocienda
* khtml/rendering/break_lines.cpp:
(khtml::isBreakable):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7867
268f45cc-cd09-0410-ab3c-
d52691b4dbfc