Timeline
May 8, 2007:
- 11:04 PM Changeset in webkit [21326] by
-
- 2 edits in branches/Safari-522/WebKit
Merge r21322 and 21323.
- 10:59 PM Changeset in webkit [21325] by
-
- 3 edits in branches/Safari-522/WebKit
Merge r20668.
- 10:28 PM Changeset in webkit [21324] by
-
- 9 edits2 adds in trunk
LayoutTests:
Reviewed by Darin Adler.
Added test to verify that you get back the same JS/ObjC wrapper when
you access the same object twice.
- fast/dom/wrapper-identity-expected.txt: Added.
- fast/dom/wrapper-identity.html: Added.
WebCore:
Reviewed by Darin Adler.
More fix-ups to the WebScriptObject/WebScripting APIs, related to
<rdar://problem/5140447> API for fetching JSGlobalContextRef from WebView
or WebFrame
- Added -scriptObjectForJSObject: SPI so you can bridge back from JavaScriptCore to WebScriptObject.
- Fixed WebScriptObject bridging so that you always get the same WebScriptObject for a JSObject (like in the DOM). This makes -scriptObjectForJSObject: a lot more coherent as an API.
- bindings/objc/DOMInternal.mm: Renamed wrapperCache to DOMWrapperCache to distinguish from the JSWrapperCache. Added typedef for readability. (WebCore::getDOMWrapper): (WebCore::addDOMWrapper): (WebCore::removeDOMWrapper):
- bindings/objc/WebScriptObject.mm: Added JSWrapperCache, which works just like the DOMWrapperCache. (WebCore::getJSWrapper): (WebCore::addJSWrapper): (WebCore::removeJSWrapper): (WebCore::createJSWrapper): (+[WebScriptObject scriptObjectForJSObject:]): This is the new API. It attempts to return a specific DOM wrapper object, or, barring that, it returns a generic WebScriptObject. (+[WebScriptObject scriptObjectForJSObject:originRootObject:rootObject:]): Added this method to support our old WebScriptObject security and leak checking model, even though it doesn't work very well. (-[WebScriptObject _setImp:originRootObject:rootObject:]): (-[WebScriptObject dealloc]): (-[WebScriptObject finalize]): (+[WebScriptObject _convertValueToObjcValue:originRootObject:rootObject:]):
- bindings/objc/WebScriptObjectPendingPublic.h:
- bindings/objc/WebScriptObjectPrivate.h:
- page/mac/FrameMac.mm: (WebCore::Frame::windowScriptObject): Changed to use the new API. This fixes a bug where the object sent to -windowScriptObjectAvailable: and returned from -windowScriptObject could not be round-tripped.
WebKitTools:
Reviewed by Darin Adler.
Added support for testing ObjC object identity.
Added ASSERT to verify that you can round-trip the object passed to you
in -didClearWindowObject:forFrame:.
- DumpRenderTree/DumpRenderTree.m: (-[WaitUntilDoneDelegate webView:didClearWindowObject:forFrame:]): (+[LayoutTestController isSelectorExcludedFromWebScript:]): (+[LayoutTestController webScriptNameForSelector:]): (-[LayoutTestController accessStoredWebScriptObject]): (-[LayoutTestController objCIdentityIsEqual::]):
- 10:15 PM Changeset in webkit [21323] by
-
- 2 edits in trunk/WebKit
2007-05-09 Mark Rowe <mrowe@apple.com>
Build fix to keep the buildbot happy.
- Plugins/WebBaseNetscapePluginView.mm: (-[WebBaseNetscapePluginView saveAndSetNewPortStateForUpdate:]):
- 9:09 PM Changeset in webkit [21322] by
-
- 2 edits in trunk/WebKit
2007-05-08 Bruce Q Hammond <bruceq@apple.com>
Reviewed by Darin.
http://bugs.webkit.org/show_bug.cgi?id=13578
Bug 13578: When QD plugins draw to an offscreen bitmap the origin is not correct
Now we have correct handling of the origin when QD plugins draw to
offscreen bitmaps.
Also the clipping code for this path was doing unnecessary work which
caused incorrect results; it has been removed.
This change should not affect Safari and in general will only affect
plugins (e.g. Flash) drawing to a CGBitmapContext.
- Plugins/WebBaseNetscapePluginView.mm: (-[WebBaseNetscapePluginView saveAndSetNewPortStateForUpdate:]):
- 9:07 PM Changeset in webkit [21321] by
-
- 2 edits in trunk/WebCore
2007-05-09 Mark Rowe <mrowe@apple.com>
Build fix.
- editing/Editor.cpp: (WebCore::findFirstGrammarDetailInRange): Use unsigned rather than int. (WebCore::findFirstBadGrammarInRange): Cast to unsigned in assertion. (WebCore::isRangeUngrammatical): Remove unused variables.
- 8:11 PM Changeset in webkit [21320] by
-
- 3 edits3 adds in trunk
2007-05-08 Kimmo Kinnunen <Kimmo Kinnunen>
Reviewed by darin. Landed by eseidel.
- http://bugs.webkit.org/show_bug.cgi?id=10880 (Do..while loop gains a semicolon each time it is toStringed) Grammar in Ecma-66262, 12.6: "do Statement while ( Expression );" EmptyStatement was created after every do..while(expr) which had semicolon at the end.
- kjs/grammar.y: Require semicolon at the end of do..while
- 6:45 PM Changeset in webkit [21319] by
-
- 10 edits in branches/wx-port-alpha/trunk
Get WEBKITOUTPUTDIR working for the wx port and use it to store build files. Also add a way to specify custom args to make, and have the build script point users to the demo and JSCore tests upon completion.
- 6:14 PM Changeset in webkit [23350] by
-
- 2 edits in branches/WindowsMerge/WebCore
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Rubber-stamped by Geoff.
Moved shared EditorWin code to Editor.cpp in open source.
- platform/win/EditorWin.cpp: Deleted (moved) most of this file.
- 6:02 PM Changeset in webkit [21318] by
-
- 6 edits in trunk
Reviewed by Darin.
Implemented spelling/grammar related WebEditorClient methods.
- WebCoreSupport/WebEditorClient.h:
- WebCoreSupport/WebEditorClient.mm: (WebEditorClient::ignoreWordInSpellDocument): Added. Call through to NSSpellChecker. (WebEditorClient::learnWord): Added. Call through to NSSpellChecker. (WebEditorClient::checkSpellingOfString): Added. Call through to NSSpellChecker. (WebEditorClient::checkGrammarOfString): Added. Call through to NSSpellChecker. (WebEditorClient::updateSpellingUIWithGrammarString): Added. Call through to NSSpellChecker. (WebEditorClient::updateSpellingUIWithMisspelledWord): Added. Call through to NSSpellChecker. (WebEditorClient::showSpellingUI): Added. Call through to NSSpellChecker. (WebEditorClient::spellingUIIsShowing): Added. Call through to NSSpellChecker. (WebEditorClient::getGuessesForWord): Added. Call through to NSSpellChecker.
Reviewed by Darin.
Moved most spelling/grammar logic to C++. Now calls through to
WebKit to actually invoke NSSpellChecker.
- editing/Editor.cpp: (WebCore::Editor::ignoreSpelling): Added (ported from EditorMac). (WebCore::Editor::learnSpelling): Added (ported from EditorMac). (WebCore::findFirstMisspellingInRange): Added (ported from EditorMac). (WebCore::paragraphAlignedRangeForRange): Added (ported from EditorMac). (WebCore::findFirstGrammarDetailInRange): Added (ported from EditorMac). (WebCore::findFirstBadGrammarInRange): Added (ported from EditorMac). (WebCore::Editor::advanceToNextMisspelling): Added (ported from EditorMac). (WebCore::Editor::isSelectionMisspelled): Added (ported from EditorMac). (WebCore::isRangeUngrammatical): Added (ported from EditorMac). (WebCore::Editor::isSelectionUngrammatical): Added (ported from EditorMac). (WebCore::Editor::guessesForUngrammaticalSelection): Added (ported from EditorMac). (WebCore::Editor::guessesForMisspelledSelection): Added (ported from EditorMac). (WebCore::Editor::showSpellingGuessPanel): Added (ported from EditorMac). (WebCore::Editor::spellingPanelIsShowing): Added (ported from EditorMac). (WebCore::Editor::markMisspellingsAfterTypingToPosition): Added (ported from EditorMac). (WebCore::markAllMisspellingsInRange): Added (ported from EditorMac). (WebCore::markAllBadGrammarInRange): Added (ported from EditorMac). (WebCore::markMisspellingsOrBadGrammar): Added (ported from EditorMac). (WebCore::Editor::markMisspellings): Added (ported from EditorMac). (WebCore::Editor::markBadGrammar): Added (ported from EditorMac).
- editing/mac/EditorMac.mm: Removed Objective C version of spelling/grammar calls.
- 5:44 PM Changeset in webkit [21317] by
-
- 2 edits in branches/wx-port-alpha/trunk/WebKit/wx
Update code to work with WebKit changes in the last update.
- 5:42 PM Changeset in webkit [23349] by
-
- 6 edits1 add in branches/WindowsMerge
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Reviewed by Darin, Oliver.
Added UI_STRING versions of localized WebCore strings.
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Reviewed by Darin, Oliver.
Removed localized string stubs.
- platform/win/TemporaryLinkStubs.cpp:
- 4:14 PM Changeset in webkit [21316] by
-
- 3 edits2 adds in trunk
LayoutTests:
Reviewed by darin.
Test for <rdar://problem/5188938> arc method on
Canvas causes hang or crash work around.
- fast/canvas/arc-crash-expected.txt: Added.
- fast/canvas/arc-crash.html: Added.
WebCore:
Reviewed by Darin.
Fix <rdar://problem/5188938> arc method on Canvas causes hang or crash
Workaround bad behaviour of CGPathAddArc when passed inf as start or
end angles.
- platform/graphics/cg/PathCG.cpp: (WebCore::Path::addArc):
- 3:51 PM Changeset in webkit [21315] by
-
- 2 edits in trunk/WebCore
Reviewed by Hyatt and Hatcher.
- fix auto-activation code path so Tiger and Leopard aren't different
- platform/mac/WebFontCache.mm: (+[WebFontCache fontWithFamily:traits:size:]): Do the auto-activation dance first before doing anything else, and ignore the font that it returns.
- 3:43 PM Changeset in webkit [21314] by
-
- 2 edits in S60/trunk/WebKit
bradley, reviewed by nobody
DESC: fix bustage by wrapping EAknEditorFlagDeliverVirtualKeyEv
- BrowserCore/Formcontrols/src/FControlInputWidget.cpp
- 2:58 PM Changeset in webkit [21313] by
-
- 3 edits in S60/trunk/WebKit
2007-05-08 ligman <joseph.ligman@nokia.com>
Reviewed by Sachin.
DESC: recogniser enhancement.
http://bugs.webkit.org/show_bug.cgi?id=13628
- BrowserRecognizers/inc/BrowserRec.h:
- BrowserRecognizers/src/BrowserRec.cpp: (:CApaDataRecognizerType): (CBrowserRecognizer::PreferredBufSize): (CBrowserRecognizer::SupportedDataTypeL): (CBrowserRecognizer::DoRecognizeL): (CBrowserRecognizer::CheckForOPML): (CBrowserRecognizer::CreateRecognizerL):
- 1:11 PM Changeset in webkit [21312] by
-
- 3 edits in S60/branches/3.1m/JavaScriptCore
2007-05-08 rathnasa <sornalatha.rathnasamy@nokia.com>
Reviewed by yongjun.
DESC: TSW ID : EWGO-6YVB4L: Web application jams and closed when browsing.
- pcre/pcre-config.h:
- pcre/pcre.c: (compile_branch): (pcre_compile):
- 12:41 PM Changeset in webkit [23348] by
-
- 8 edits in branches/WindowsMerge
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Reviewed by Ada.
Update editing delegate
- Interfaces/IWebEditingDelegate.idl:
- WebEditorClient.cpp: (WebEditorClient::updateSpellingUIWithGrammarString):
- WebEditorClient.h:
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Reviewed by Ada.
Updated for new editor interface.
- platform/win/EditorWin.cpp: (WebCore::Editor::advanceToNextMisspelling): (WebCore::isRangeUngrammatical):
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Reviewed by Ada.
Update to new editing delegate interface.
- DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/EditingDelegate.h: (EditingDelegate::updateSpellingUIWithGrammarString):
- 12:27 PM Changeset in webkit [21311] by
-
- 10 edits in trunk
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Reviewed by Ada.
Slight modification to last editor method fix.
- WebCoreSupport/WebEditorClient.h: (WebEditorClient::updateSpellingUIWithGrammarString):
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Reviewed by Ada.
Slight modification to last editor method fix.
- bridge/EditorClient.h:
- platform/gdk/EditorClientGdk.cpp: (WebCore::EditorClientGdk::updateSpellingUIWithGrammarString):
- platform/gdk/EditorClientGdk.h:
- platform/graphics/svg/SVGImageEmptyClients.h: (WebCore::SVGEmptyEditorClient::updateSpellingUIWithGrammarString):
2007-05-08 Steve Falkenburg <sfalken@apple.com>
Reviewed by Ada.
Slight modification to last editor method fix.
- WebCoreSupport/EditorClientQt.cpp: (WebCore::EditorClientQt::updateSpellingUIWithGrammarString):
- WebCoreSupport/EditorClientQt.h:
- 11:31 AM Changeset in webkit [21310] by
-
- 2 edits in trunk/JavaScriptCore
Build fix -- this time for sure.
APICast.h, being private, ends up in a different folder than JSValueRef.h,
so we can't include one from the other using "". Instead, just forward
declare the relevant data types.
- API/APICast.h:
- 10:54 AM Changeset in webkit [21309] by
-
- 2 edits in trunk/JavaScriptCore
Build fix: export APICast.h for WebCore and WebKit.
- JavaScriptCore.xcodeproj/project.pbxproj:
- 10:41 AM Changeset in webkit [21308] by
-
- 15 edits2 adds in trunk
Reviewed by Hyatt.
http://bugs.webkit.org/show_bug.cgi?id=13480
window.Attr is undefined
Test: fast/dom/Window/attr-constructor.html
- dom/Attr.idl:
- dom/CDATASection.idl:
- dom/CharacterData.idl:
- dom/Comment.idl:
- dom/DOMImplementation.idl:
- dom/DocumentType.idl:
- dom/Entity.idl:
- dom/EntityReference.idl:
- dom/Notation.idl:
- dom/ProcessingInstruction.idl:
- dom/Text.idl: Added GenerateConstructor.
- page/DOMWindow.idl: Added constructor properties for DOM interfaces.
- 10:34 AM Changeset in webkit [21307] by
-
- 13 edits1 add in trunk
WebCore:
Reviewed by Maciej Stachowiak.
Fixed <rdar://problem/5140447> API for fetching JSGlobalContextRef from
WebView or WebFrame
Added support for new -[WebScriptObject JSObject] and -[WebFrame globalContext]
APIs.
Also fixed some more cases of <rdar://problem/4395622> API:
WebScriptObject.h incorrectly reports that -isSelectorExcludedFromWebScript
returns NO by default, and generally cleaned up that documentation.
- WebCore.exp: A lot of the diff here is from sorting.
- WebCore.xcodeproj/project.pbxproj:
- bindings/objc/WebScriptObject.h:
- bindings/objc/WebScriptObject.mm: (-[WebScriptObject JSObject]):
- bindings/objc/WebScriptObjectPendingPublic.h: Added.
WebKit:
Reviewed by Maciej Stachowiak.
Fixed <rdar://problem/5140447> API for fetching JSGlobalContextRef from
WebView or WebFrame
Added -[WebFrame windowObject] and -[WebFrame globalContext], along with
a new frame load delegate method, - (void)webView:(WebView *)webView
didClearWindowObject:(WebScriptObject *)windowObject forFrame:(WebFrame *)frame.
This is all to support briding between the WebScriptObject and JavaScriptCore
APIs.
Also fixed more of <rdar://problem/4395622> API: WebScriptObject.h incorrectly
reports that -isSelectorExcludedFromWebScript returns NO by default, and
generally cleaned up the WebScriptObject headerdoc.
- WebCoreSupport/WebFrameBridge.mm: (-[WebFrameBridge windowObjectCleared]):
- WebView/WebFrame.mm: (-[WebFrame windowObject]): (-[WebFrame globalContext]):
- WebView/WebFramePrivate.h:
- WebView/WebViewPrivate.h:
WebKitTools:
Reviewed by Maciej Stachowiak.
Added tests for new APIs: -[WebFrame windowObject], -[WebFrame globalContext],
and - (void)webView:(WebView *)webView didClearWindowObject:(WebScriptObject *)windowObject
forFrame:(WebFrame *)frame, in the form of ASSERTs.
- DumpRenderTree/DumpRenderTree.m: (runJavaScriptThread): Fixed quote mismatch that prepare-changelog likes to complain about.
(-[WaitUntilDoneDelegate webView:windowScriptObjectAvailable:]):
(-[WaitUntilDoneDelegate webView:didClearWindowObject:forFrame:]):
- DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
- 9:40 AM Changeset in webkit [21306] by
-
- 4 edits in trunk/WebKit
Reviewed by Darin.
<rdar://problem/5180384> webView:validateUserInterfaceItem:defaultValidation: does not get called on WebUIDelegates
Call the delegate when the one of our views gets a validateUserInterfaceItem: call.
- WebView/WebHTMLView.mm: (-[WebHTMLView validateUserInterfaceItemWithoutDelegate:]): Validate without the delegate. (-[WebHTMLView validateUserInterfaceItem:]): Call the delegate with the result of validateUserInterfaceItemWithoutDelegate:.
- WebView/WebPDFView.mm: (-[WebPDFView validateUserInterfaceItemWithoutDelegate:]): Validate without the delegate. (-[WebPDFView validateUserInterfaceItem:]): Call the delegate with the result of validateUserInterfaceItemWithoutDelegate:.
- WebView/WebView.mm: (-[WebView _responderValidateUserInterfaceItem:]): Call validateUserInterfaceItemWithoutDelegate: to prevent asking the delegate twice. (-[WebView validateUserInterfaceItemWithoutDelegate:]): Validate without the delegate. (-[WebView validateUserInterfaceItem:]): Call the delegate with the result of validateUserInterfaceItemWithoutDelegate:.
- 7:47 AM Changeset in webkit [21305] by
-
- 2 edits in S60/branches/3.1m/WebCore
2007-05-07 yadavall <sriram.yadavalli@nokia.com>
Reviewed by Zalan Bujtas (zbujtas@gmail.com).
DESC: Web Browser crashes when trying to browse to Hertz.com
http://bugs.webkit.org/show_bug.cgi?id=13616
WARNING: NO TEST CASES ADDED OR CHANGED
- bridge/WebCoreBridge.cpp: (CWebCoreBridge::NodeTypeB):
- 7:35 AM Changeset in webkit [21304] by
-
- 2 edits in S60/trunk/WebKit
winship, reviewed by <reviewer>
DESC: KPOY-72NW5X - Memory Testing: Phone resets while running
browser memory testing. Return from foreground event
without processing if in performance mode
- BrowserView/src/WebKitControl.cpp: (CWebKitControl::ForegroundEvent):
- 7:31 AM Changeset in webkit [21303] by
-
- 10 edits2 adds in S60/trunk/WebKit
yaharon, reviewed by <reviewer>
DESC: S60 3.2 Touch: Scrolling initial implementatoin
http://bugs.webkit.org/show_bug.cgi?id=13561
- BrowserCore/Formcontrols/src/FControlInputWidget.cpp: (CControlInputWidget::ConstructTextEditorL):
- BrowserView/inc/PointerEventHandler.h:
- BrowserView/inc/ScrollingIndicatorDrawer.h: Added.
- BrowserView/inc/WebKitView.h:
- BrowserView/src/PointerEventHandler.cpp: (ContentScrollCallback): (CPointerEventHandler::~CPointerEventHandler): (CPointerEventHandler::HandlePointerEventL): (CPointerEventHandler::CheckSmartTextEntry): (CPointerEventHandler::GetFrameAt): (CPointerEventHandler::HandleScrollingPointerEventL): (CPointerEventHandler::HandleShouldStartScrollingL): (CPointerEventHandler::HandleDragL): (CPointerEventHandler::HandleContentScroll): (CPointerEventHandler::UpdateCursor):
- BrowserView/src/ScrollingIndicatorDrawer.cpp: Added. (CScrollingIndicatorDrawer::NewL): (CScrollingIndicatorDrawer::CScrollingIndicatorDrawer): (CScrollingIndicatorDrawer::~CScrollingIndicatorDrawer): (CScrollingIndicatorDrawer::ConstructSprite): (CScrollingIndicatorDrawerEdge::CScrollingIndicatorDrawerEdge): (CScrollingIndicatorDrawerEdge::ConstructL): (CScrollingIndicatorDrawerEdge::~CScrollingIndicatorDrawerEdge): (CScrollingIndicatorDrawerEdge::UpdateBitmapPositionL): (CScrollingIndicatorDrawerEdge::CreateBitmapAndContextL): (CScrollingIndicatorDrawerEdge::UpdateMaskL): (CScrollingIndicatorDrawerAccelerated::CScrollingIndicatorDrawerAccelerated): (CScrollingIndicatorDrawerAccelerated::ConstructL): (CScrollingIndicatorDrawerAccelerated::~CScrollingIndicatorDrawerAccelerated): (CScrollingIndicatorDrawerAccelerated::UpdateBitmapPositionL): (CScrollingIndicatorDrawerAccelerated::CheckNeedRefrech): (CScrollingIndicatorDrawerAccelerated::CreateBitmapAndContextL): (CScrollingIndicatorDrawerAccelerated::UpdateMaskL): (CScrollingIndicatorDrawerAccelerated::UpdateMaskExL):
- BrowserView/src/WebKitCursor.cpp: (CWebKitCursor::CursorUpdate):
- BrowserView/src/WebKitView.cpp: (CWebKitView::ContentIsScrolling):
- ChangeLog:
- Plugin/inc/PluginWin.h:
- Plugin/src/PluginWin.cpp: (CPluginWin::PluginConstructedL): (CPluginWin::ForceRedraw): (CPluginWin::HitRegionContains):
- group/BrowserView.mmp:
- 7:05 AM Changeset in webkit [21302] by
-
- 14 edits in trunk
Reviewed by Zack.
Adjust tests that have console output, now that it's added by
DumpRenderTree.
Dump JavaScript console messages as well. Also requires a slight
change in run-webkit-tests, so we still correctly differentiate
between text only and rendertree tests.
- 4:40 AM Changeset in webkit [21301] by
-
- 15 edits5 adds in trunk/LayoutTestResults
Update the baseline for traversal/ and add a few missing results in
tables/
- 3:57 AM Applications using WebKit edited by
- Added listing to FunkeeStory (diff)
- 3:26 AM Changeset in webkit [21300] by
-
- 3 edits in trunk/WebKitTools
Reviewed by Zack
Specify what the serif, sans-serif and monospace aliases
should map to and explicitly select the Gui style of
DRT to be plastique.
Fixes most of the test failures still seen on the build bot.
- 1:29 AM Changeset in webkit [21299] by
-
- 2 edits in trunk/WebCore
Reviewed by Hyatt.
Fix valgrind reported uninitialized memory read.
- 1:22 AM Changeset in webkit [21298] by
-
- 3 edits12 adds in trunk
LayoutTests:
Reviewed by oliver
<rdar://problem/4895428> Can't drag selected ToDo
This tests to see that the focus of a focusable node
inside an already focused node is delayed until mouse up:
- editing/selection/4895428-2-expected.checksum: Added.
- editing/selection/4895428-2-expected.png: Added.
- editing/selection/4895428-2-expected.txt: Added.
- editing/selection/4895428-2.html: Added.
We delay focus until mouse up, but only if that node is
inside an already focused node:
- editing/selection/4895428-3-expected.checksum: Added.
- editing/selection/4895428-3-expected.png: Added.
- editing/selection/4895428-3-expected.txt: Added.
- editing/selection/4895428-3.html: Added.
This demonstrates the bug:
- editing/selection/4895428-4-expected.checksum: Added.
- editing/selection/4895428-4-expected.png: Added.
- editing/selection/4895428-4-expected.txt: Added.
- editing/selection/4895428-4.html: Added.
WebCore:
Reviewed by oliver
<rdar://problem/4895428> Can't drag selected ToDo
The user tries to drag a selection by mousing down
on the editable part of a ToDo, which is focusable,
since it is an editable node within non-editable
content. But we focus focusable elements on mouse
down, and focusing the editable piece blows away
the selection and prevents the drag. This is how
IE behaves, but content seems generally difficult
to drag in IE, so this doesn't make it any worse.
Since focus doesn't appear to be cancelable, either
with a DOM event or an editing delegate, I fixed this
by delaying the focus of focusable nodes that are
selected and inside an already focused node. The
node will be focused if the user mouses up without
doing any dragging because the mouse up sets a
selection, which calls setFocusNodeIfNeeded.
- page/EventHandler.cpp: (WebCore::EventHandler::dispatchMouseEvent):
- 1:07 AM Changeset in webkit [21297] by
-
- 4 edits in trunk
Versioning.
- 1:03 AM Changeset in webkit [21296] by
-
- 1 copy in tags/Safari-5522.7
New tag.
May 7, 2007:
- 10:41 PM Changeset in webkit [21295] by
-
- 2 edits in trunk/WebCore
2007-05-07 Atul Mehrotra <atul.mehrotra@celunite.com>
Reviewed by Maciej.
GDK Build fix
- platform/gdk/TemporaryLinkStubs.cpp:
- 9:59 PM Changeset in webkit [21294] by
-
- 3 edits2 adds in trunk
LayoutTests:
Reviewed by Maciej.
Test the behaviour of canvas methods called with inf/nan parameters
- fast/canvas/canvas-with-incorrect-args-expected.txt: Added.
- fast/canvas/canvas-with-incorrect-args.html: Added.
WebCore:
Reviewed by Maciej.
Correcting comparisons to handle NaN in the same manner
as other Canvas methods.
- html/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::arcTo): (WebCore::CanvasRenderingContext2D::arc): Correcting arc/arcTo to match the WHAT WG draft. (WebCore::CanvasRenderingContext2D::rect): (WebCore::CanvasRenderingContext2D::clearRect): (WebCore::CanvasRenderingContext2D::fillRect): (WebCore::CanvasRenderingContext2D::strokeRect):
- 5:57 PM Changeset in webkit [21293] by
-
- 4 edits in trunk/WebCore
Add some comments to the glyph/font code (patch from MarvinD, tweaked by
me to correct a few bits and to make it forward-compatible with the work
going on in 3315.
Reviewed by me
- ChangeLog:
- platform/Font.cpp: (WebCore::Font::glyphDataForCharacter):
- platform/GlyphPageTreeNode.cpp: (WebCore::GlyphPageTreeNode::initializePage):
- platform/GlyphPageTreeNode.h:
- 4:55 PM Changeset in webkit [21292] by
-
- 2 edits in trunk/WebCore
Fix layout test failures.
- editing/SelectionController.cpp: (WebCore::SelectionController::contains): Use comparePositions instead of Range::comparePoint, because comparePositions can handle positions inside shadow trees.
- 4:37 PM Changeset in webkit [23347] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
2007-05-07 Steve Falkenburg <sfalken@apple.com>
Reviewed by Darin.
Fix typo in prefs code.
- WebPreferences.cpp: (WebPreferences::preferencesPath): Fix typo in error handling.
- 4:01 PM Changeset in webkit [23346] by
-
- 5 edits2 adds in branches/WindowsMerge/WebCore
Reviewed by Oliver.
Fixed <rdar://5087119> Paste fidelity isn't as good as it is on the mac
and <rdar://5087118> Plain text copy/paste yields bad line endings on Boomer
and re-organized standalone functions in DragDataWin.cpp and PasteboardWin.cpp
into ClipboardUtilitiesWin.h/cpp.
- WebCore.vcproj/WebCore.vcproj:
- platform/win/ClipboardUtilitiesWin.cpp: Added. (WebCore::cfHDropFormat): (WebCore::getWebLocData): (WebCore::extractURL): (WebCore::texthtmlFormat): (WebCore::createGlobalData): (WebCore::markupToCF_HTML): (WebCore::urlToMarkup): (WebCore::replaceNewlinesWithWindowsStyleNewlines): (WebCore::replaceNBSPWithSpace): (WebCore::urlWFormat): (WebCore::urlFormat): (WebCore::plainTextFormat): (WebCore::plainTextWFormat): (WebCore::filenameWFormat): (WebCore::filenameFormat): (WebCore::htmlFormat): (WebCore::getURL): (WebCore::getPlainText): (WebCore::fragmentFromFilenames): (WebCore::containsFilenames): (WebCore::fragmentFromCF_HTML): (WebCore::fragmentFromHTML): (WebCore::containsHTML):
- platform/win/ClipboardUtilitiesWin.h: Added.
- platform/win/ClipboardWin.cpp: (WebCore::ClipboardWin::writeRange):
- platform/win/DragDataWin.cpp:
- platform/win/PasteboardWin.cpp: (WebCore::Pasteboard::writeSelection): (WebCore::Pasteboard::documentFragment):
- 3:15 PM Changeset in webkit [21291] by
-
- 3 edits4 adds in trunk
LayoutTests:
Reviewed by darin
<rdar://problem/4895428> Can't drag selected To Do if it is not showing a due date
- editing/selection/4895428-1-expected.checksum: Added.
- editing/selection/4895428-1-expected.png: Added.
- editing/selection/4895428-1-expected.txt: Added.
- editing/selection/4895428-1.html: Added.
WebCore:
Reviewed by darin
<rdar://problem/4895428> Can't drag selected To Do if it is not showing a due date
The code in SelectionController::contains returned false
incorrectly if the selection end just after a table
and the position was inside that table.
- editing/SelectionController.cpp: (WebCore::SelectionController::contains): Compare the position with the ends of the selection and then use Range::comparePoint.
- 3:09 PM Changeset in webkit [21290] by
-
- 2 edits in trunk/WebKit
Actually finish the code move from my last checkin
- History/WebHistoryItem.mm: (-[WebHistoryItem _transientPropertyForKey:]): (-[WebHistoryItem _setTransientProperty:forKey:]):
- 2:57 PM Changeset in webkit [21289] by
-
- 4 edits in trunk/WebKit
Rubberstamped by Kevin (Sarge)
Make _transientPropertyForKey: and _setTransientProperty:forKey: SPI
- History/WebHistoryItemInternal.h:
- History/WebHistoryItemPrivate.h:
- 1:23 PM Changeset in webkit [23345] by
-
- 1 add in branches/WindowsMerge/WebCore/platform/win/TextBreakIteratorInternalICUWin.cpp
Forgot to check in this file.
- 10:25 AM Changeset in webkit [21288] by
-
- 2 deletes in trunk/LayoutTests/fast/dom/HTMLElement
Removed files. Not sure why they didn't get removed before.
- 9:25 AM Changeset in webkit [21287] by
-
- 4 edits in trunk
LayoutTests:
- rolling out setInnerHTML optimization until I can figure out why tests are failing
WebCore:
- rolling out setInnerHTML optimization until I can figure out why tests are failing
- 8:34 AM Changeset in webkit [21286] by
-
- 1 edit1 delete in S60/trunk/LayoutTests
brmorris, reviewed by nobody
DESC: This is actually a resource file, not a test case.
- fast/js/new-location.html: Removed.
- 8:04 AM Changeset in webkit [21285] by
-
- 912 edits in trunk/LayoutTestResults
Reviewed by Zack.
New baseline for the table tests.
Skip the fast tests for now.
- 7:45 AM Changeset in webkit [21284] by
-
- 4 edits2 adds in trunk
LayoutTests:
Reviewed by Hyatt.
- test for http://bugs.webkit.org/show_bug.cgi?id=13602 Amazon product pages keep repainting over and over again
- fast/dom/HTMLElement/set-inner-outer-optimization-expected.txt: Added.
- fast/dom/HTMLElement/set-inner-outer-optimization.html: Added.
WebCore:
Reviewed by Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=13602 Amazon product pages keep repainting over and over again
Optimize setInnerHTML, setOuterHTML, and setInnerText so they don't change the DOM at all
if they don't need to.
Test: fast/dom/HTMLElement/set-inner-outer-optimization.html
- html/HTMLElement.cpp: (WebCore::equal): Added. Helper function that compares two Text nodes or two NamedAttrMap attribute maps. (WebCore::shallowEqual): Added. Helper function that compares two Element nodes or two arbitrary nodes. (WebCore::replaceChildrenWithFragment): Added. Helper function used by setInnerHTML and setInnerText. Optimizes the cases where all the nodes are the same, where both the current and the new content are single text nodes, and where the current content is a single node that can be replaced with replaceChild. (WebCore::replaceChildrenWithText): Added. Helper function used by setInnerText. Optimizes the case where the current content is a single text node or a single node that can be replaced with replaceChild. (WebCore::HTMLElement::setInnerHTML): Changed to call replaceChildrenWithFragment. (WebCore::HTMLElement::setOuterHTML): Added special case to optimize when the new content exactly matches the current node. (WebCore::HTMLElement::setInnerText): Changed to call replaceChildrenWithText in a few cases instead of doing removeChildren/appendChild. Changed code that was using DeprecatedString to instead use String. Changed general case to use a document fragment and replaceChildrenWithFragment.
- dom/CharacterData.cpp: (WebCore::CharacterData::dispatchModifiedEvent): Fixed bug where we would not dispatch the DOMSubtreeModified event unless someone was registered for the DOMCharacterDataModified event. Caused trouble in the test.
- 6:56 AM Changeset in webkit [21283] by
-
- 8 edits6 adds in trunk
Change 5 results in css2.1 that were wrong due to a Qt bug.
Add css3 baseline.
Fix the default font in DRT to 9pt Sans Serif.
- 12:07 AM Changeset in webkit [21282] by
-
- 486 edits in trunk/LayoutTestResults
New baseline for the css2.1 tests.
May 6, 2007:
- 8:07 PM Changeset in webkit [21281] by
-
- 2 edits in trunk/WebCore
- blind try at fixing the Qt build
- platform/qt/TextBreakIteratorQt.cpp: (WebCore::sentenceBreakIterator): Added a placeholder.
- 8:03 PM Changeset in webkit [21280] by
-
- 5 edits2 deletes in trunk
LayoutTests:
Reviewed by Hyatt.
- fast/canvas/drawImage-with-invalid-args.html: Changed to a dumpAsText test. Added logging and a negative-size test.
- fast/canvas/drawImage-with-invalid-args-expected.txt: Updated.
- fast/canvas/drawImage-with-invalid-args-expected.checksum: Removed.
- fast/canvas/drawImage-with-invalid-args-expected.png: Removed.
WebCore:
Reviewed by Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=13537 Canvex example starts rendering strangely after a while
- html/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::drawImage): Don't raise an exception if the source or destination rectangle is empty.
- 7:57 PM Changeset in webkit [21279] by
-
- 2 edits in trunk/WebCore
Reviewed by Hyatt.
- fix <rdar://problem/4585593> REGRESSION: Some 2-byte characters in printed page header are drawn with too-large font and clipped
Doesn't affect text within web pages, so no layout test.
- platform/mac/FontCacheMac.mm: (WebCore::FontCache::getFontDataForCharacters): Base the substitute font on the FontPlatformData rather than the FontDescription. Before, it was a mix of both. This works properly for fonts where we have no FontDescription and is also more internally consistent.
- 7:56 PM Changeset in webkit [21278] by
-
- 12 edits in trunk/WebCore
Reviewed by Hyatt.
- http://bugs.webkit.org/show_bug.cgi?id=13606 some functions are virtual that don't need to be
- dom/Node.h: Made first/lastChild be inline functions that call virtual functions. This lets us hide the functions with another inline function in a derived class, yet still override the behavior here in the base class by overriding the virtual functions too.
- dom/Node.cpp: (WebCore::Node::virtualFirstChild): Renamed virtual functions. There are now non-virtual inline functions that call these virtual functions. (WebCore::Node::virtualLastChild): Ditto.
- dom/ContainerNode.h: Added non-virtual first/lastChild functions that hide the ones inherited from the Node class; these also replace the fastFirst/LastChild functions, and transparently give callers the faster form if they have a pointer of the right type. But still override the virtual functions named virtualFirst/LastChild, because those can still be called through a Node*. Removed the "fast" from the names of fastSetFirst/LastChild.
- dom/ContainerNode.cpp: (WebCore::ContainerNode::virtualFirstChild): Renamed virtual functions. There are now also non-virtual inline versions. (WebCore::ContainerNode::virtualLastChild): Ditto.
- dom/CharacterData.cpp: Removed implementations of data and length functons.
- dom/CharacterData.h: Made data, setData, length, substringData, appendData, insertData, deleteData, and replaceData all non-virtual, and made data and length both be inline.
- dom/NamedAttrMap.h: (WebCore::NamedAttrMap::attributeItem): Removed a null check from this function. If the length of the map is known to be greater than 0, then the null check isn't needed. But if the length of the map hasn't been checked at all, then it's unsafe to call this function since it doesn't range check the array index. Thus the null check is never needed. I also looked at all callers.
- dom/Attr.cpp: (WebCore::Attr::createTextChild):
- dom/Document.cpp: (WebCore::Document::recalcStyle):
- dom/Element.cpp: (WebCore::Element::recalcStyle):
- ksvg2/svg/SVGElement.cpp: (WebCore::SVGElement::haveLoadedRequiredResources): Removed "fast" prefix from calls to fastFirst/LastChild and fastSetFirst/LastChlld. It's not needed any more -- you still get fast behavior if the pointer has a type that's ContainerNode or derived from it.
- 7:36 PM Changeset in webkit [21277] by
-
- 3 edits in trunk
2007-05-06 Erik Bunce <kde@bunce.us>
Reviewed by Mark Rowe.
- WebKit.pri: Removed unnecessary dependency on MacPorts (/opt/local)
2007-05-06 Erik Bunce <kde@bunce.us>
Reviewed by Mark Rowe.
- WebCore.pro: Removed unnecessary dependency on MacPorts (/opt/local)
- 9:42 AM Changeset in webkit [21276] by
-
- 4 edits4 adds in trunk
2007-05-06 Mitz Pettel <mitz@webkit.org>
Reviewed by Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=13557 Crash when dragging selection over absolutely positioned generated content on block element
Test: fast/css-generated-content/positioned-background-hit-test-crash.html
- rendering/RenderLayer.cpp: (WebCore::RenderLayer::enclosingElement): Added. Factored out of hitTestLayer(). (WebCore::RenderLayer::hitTestLayer): Implemented the fix for <rdar://problem/3552346> from r6106 to the self hit test as well, namely: return the enclosing element for generated positioned content.
- rendering/RenderLayer.h:
- 9:05 AM Changeset in webkit [21275] by
-
- 3 edits2 adds in trunk
Reviewed by Darin.
http://bugs.webkit.org/show_bug.cgi?id=13584
<script> code wrongly assumes requests can't fail
Test: fast/loader/unloadable-script.html
- html/HTMLScriptElement.cpp: (WebCore::HTMLScriptElement::parseMappedAttribute): (WebCore::HTMLScriptElement::insertedIntoDocument): Check the return value of requestScript().
May 5, 2007:
- 10:17 PM Changeset in webkit [21274] by
-
- 5 edits in trunk/WebCore
Reviewed by Darin.
http://bugs.webkit.org/show_bug.cgi?id=13304
REGRESSION(14784): WebKit doesn't dynamically reflect changes to the highlight color in System Preferences
Implemented a notification observer that invalidates cached system colors.
No automated test possible.
- rendering/RenderTheme.cpp: (WebCore::RenderTheme::activeSelectionBackgroundColor): (WebCore::RenderTheme::inactiveSelectionBackgroundColor): (WebCore::RenderTheme::platformColorsDidChange):
- rendering/RenderTheme.h:
- rendering/RenderThemeMac.h:
- rendering/RenderThemeMac.mm: (-[WebCoreRenderThemeNotificationObserver initWithTheme:WebCore::]): (-[WebCoreRenderThemeNotificationObserver systemColorsDidChange:]): (WebCore::theme): (WebCore::RenderThemeMac::RenderThemeMac): (WebCore::RenderThemeMac::~RenderThemeMac): (WebCore::RenderThemeMac::checkbox): (WebCore::RenderThemeMac::radio): (WebCore::RenderThemeMac::button): (WebCore::RenderThemeMac::popupButton): (WebCore::RenderThemeMac::search): (WebCore::RenderThemeMac::sliderThumbHorizontal): (WebCore::RenderThemeMac::sliderThumbVertical):
- 4:23 PM Changeset in webkit [21273] by
-
- 1 edit in branches/wx-port-alpha/trunk/Bakefiles/presets.bkl
Run *-config scripts when running make, not when generating the makefiles.
- 3:53 AM Changeset in webkit [21272] by
-
- 28 edits in trunk/WebCore
Reviewed by Oliver.
http://bugs.webkit.org/show_bug.cgi?id=13592
parseMappedAttribute inconsistency
Do not use local vars in parseMappedAttribute for attr name and value.
- 12:10 AM Changeset in webkit [21271] by
-
- 2 edits in trunk/WebCore
Reviewed by Hyatt.
Initialise default fill with Color::black rather than parsing
the string "black"
- ksvg2/svg/SVGPaint.cpp: (WebCore::SVGPaint::defaultFill):
May 4, 2007:
- 9:19 PM Changeset in webkit [23344] by
-
- 5 edits in branches/WindowsMerge
2007-05-04 Steve Falkenburg <sfalken@apple.com>
Reviewed by Darin.
Fix crash when using "check spelling while typing".
- WebCore.vcproj/WebCore.vcproj: Added TextBreakIteratorInternalICUWin.cpp
- platform/win/TemporaryLinkStubs.cpp: Removed findSentenceBoundary, findNextSentenceFromIndex.
2007-05-04 Steve Falkenburg <sfalken@apple.com>
Reviewed by Darin.
Fix crash when using "check spelling while typing".
- WebView.cpp: (WebView::preflightSpellChecker): Set delegate static global for use in spell checker init.
- 9:08 PM Changeset in webkit [21270] by
-
- 9 edits2 adds in trunk/WebCore
Reviewed by Oliver.
Use TextBreakIterator for sentence breaking instead of TextBoundaries.
- WebCore.xcodeproj/project.pbxproj: Added TextBreakIeratorInternalICUMac.mm
- editing/visible_units.cpp: (WebCore::startSentenceBoundary): Call TextBreakIterator instead of TextBoundaries. (WebCore::endSentenceBoundary): Call TextBreakIterator instead of TextBoundaries. (WebCore::previousSentencePositionBoundary): Call TextBreakIterator instead of TextBoundaries. (WebCore::nextSentencePositionBoundary): Call TextBreakIterator instead of TextBoundaries.
- platform/TextBoundaries.h: Removed findSentenceBoundary, findNextSentenceFromIndex.
- platform/TextBreakIterator.h: Added sentenceBreakIterator.
- platform/TextBreakIteratorICU.cpp: (WebCore::setUpIterator): Add locale parameter (needed to maintain functionality that TextBoundaries code had). (WebCore::characterBreakIterator): Pass en_us for locale (same as old code). (WebCore::wordBreakIterator): Pass en_us for locale (same as old code). (WebCore::lineBreakIterator): Pass en_us for locale (same as old code). (WebCore::sentenceBreakIterator): Added.
- platform/TextBreakIteratorInternalICU.h: Added.
- platform/gdk/TemporaryLinkStubs.cpp: Removed findNextSentenceFromIndex, findSentenceBoundary. (WebCore::currentTextBreakLocaleID): Added stub.
- platform/mac/TextBoundaries.mm: Removed currentTextBreakLocaleID, findSentenceBoundary, findNextSentenceFromIndex.
- platform/mac/TextBreakIteratorInternalICUMac.mm: Added. (WebCore::currentTextBreakLocaleID): Moved from TextBoundaries.mm
- platform/qt/TextBoundaries.cpp: Removed findNextSentenceFromIndex, findSentenceBoundary.
- 5:17 PM Changeset in webkit [21269] by
-
- 2 edits in trunk/WebCore
Reviewed by Hyatt.
Fix for <rdar://problem/5116871> REGRESSION: Can't select options in widget's listbox
Don't use user-select to determine whether or not options can be selected in listboxes.
This will match Firefox behavior for -moz-user-select.
- html/HTMLSelectElement.cpp: (WebCore::HTMLSelectElement::canSelectAll): (WebCore::HTMLSelectElement::listBoxDefaultEventHandler):
- 4:50 PM Changeset in webkit [21268] by
-
- 1 edit in tags/JavaScriptCore-418.5/JavaScriptCore/Info.plist
Versioning
- 4:49 PM Changeset in webkit [21267] by
-
- 1 copy in tags/JavaScriptCore-418.5
New tag.
- 4:47 PM Changeset in webkit [21266] by
-
- 1 edit in branches/Safari-2-0-branch/JavaScriptCore/kjs/collector.cpp
Build fix.
- 4:46 PM Changeset in webkit [21265] by
-
- 2 edits in tags/JavaScriptCore-418.3/JavaScriptCore
Reverting commit to the wrong tag.
- 4:43 PM Changeset in webkit [21264] by
-
- 1 delete in tags/JavaScriptCore-418.4/JavaScriptCore-418.3
Removing bad tag.
- 4:40 PM Changeset in webkit [21263] by
-
- 1 edit in tags/JavaScriptCore-418.4/JavaScriptCore/kjs/collector.cpp
Build fix.
- 4:39 PM Changeset in webkit [21262] by
-
- 2 edits in tags/JavaScriptCore-418.3/JavaScriptCore
Versioning
- 4:39 PM Changeset in webkit [21261] by
-
- 8 edits in trunk
WebCore:
Reviewed by Tim Hatcher.
First step in fixing <rdar://problem/5055182> The back cache has no global cap
Stop giving SnapBack infinite cache-ability. Instead, make SnapBack rely
on the underlying back cache.
- WebCore.exp:
- history/HistoryItem.cpp: (WebCore::HistoryItem::HistoryItem):
- history/HistoryItem.h:
- loader/FrameLoader.cpp: (WebCore::FrameLoader::purgePageCache):
WebKit:
Reviewed by Tim Hatcher.
First step in fixing <rdar://problem/5055182> The back cache has no global cap
Stop giving SnapBack infinite cache-ability. Instead, make SnapBack rely
on the underlying back cache.
I left -setAlwaysAttemptToUsePageCache: as an empty stub because we don't
want to break Safari 2.0, but I removed its header declaration so nobody
else starts using it.
- History/WebHistoryItem.mm: (-[WebHistoryItem setAlwaysAttemptToUsePageCache:]):
- History/WebHistoryItemPrivate.h:
- 4:38 PM Changeset in webkit [21260] by
-
- 1 copy in tags/JavaScriptCore-418.4/JavaScriptCore-418.3
New tag.
- 4:38 PM Changeset in webkit [21259] by
-
- 2 edits in tags/JavaScriptCore-418.3/JavaScriptCore
Merge fix from r16614 (with build fix).
- 2:15 PM Changeset in webkit [21258] by
-
- 10 edits in trunk
WebCore:
Reviewed by Brady Eidson.
Removed export of clearPageCache(), since it was unused externally. I plan
to remove its use from WebCore eventually, too.
Removed usesPageCache(), since it was unused and it duplicated pageCacheSize().
- WebCore.exp:
- history/BackForwardList.cpp:
- history/BackForwardList.h: Moved statics to the top of the class definition.
- loader/FrameLoader.cpp: (WebCore::FrameLoader::canCachePage):
WebKit:
Reviewed by Brady Eidson.
Some cleanup in preparation for fixing <rdar://problem/5055182> The
back/forward cache has no global cap
Unified naming of WebKit/WebCore b/f lists -- instead of the potpourri
of webBackForwardList, backForwardList, list, kitList, coreList, listWrapper,
and webCoreBackForwardList, we use webBackForwardList for WebKit and
backForwardList for WebCore, matching their respective class names.
Removed "private" versions of kit() and core() -- kit() and core() are
canonically used for converting between WebKit API objects and WebCore
API objects. I think it's clearer to have only one way to do this.
Removed COMPUTE_DEFAULT_PAGE_CACHE_SIZE, since it was unused.
Removed _clearPageCache, since it was unused and it duplicated -setPageCacheSize:0.
Removed _usesPageCache, since it was unused and it duplicated -pageCacheSize.
- 11:19 AM Changeset in webkit [23343] by
-
- 3 edits in branches/WindowsMerge/WebCore
Reviewed by Darin.
changed use of DeprecatedString::fromUTF8 to UTF8Encoding().decode()
- platform/win/DragDataWin.cpp: (WebCore::fragmentFromHTML):
- platform/win/PasteboardWin.cpp: (WebCore::Pasteboard::documentFragment):
- 10:38 AM Changeset in webkit [21257] by
-
- 2 edits in trunk
Added bugs.webkit.org URL.
- 10:14 AM Changeset in webkit [21256] by
-
- 5 edits in trunk
Reviewed by Adele.
- fix <rdar://problem/5007921> Number.toExponential doesn't work for negative numbers
- kjs/number_object.cpp: (NumberProtoFunc::callAsFunction): Added a call to fabs before calling log10.
LayoutTests:
Reviewed by Adele.
- test for <rdar://problem/5007921> Number.toExponential doesn't work for negative numbers
- fast/js/kde/resources/Number.js: Added negative number versions of some tests of toFixed, toExponential, toPrecision, etc.
- fast/js/kde/Number-expected.txt: Updated, new tests all passing.
- 10:13 AM Changeset in webkit [21255] by
-
- 2 edits in trunk/WebKit
Reviewed by Mark Rowe
Added main thread assertion to WebHTMLView to help make sure 3rd party clients aren't trying
to draw on secondary threads
- WebView/WebHTMLView.mm: (-[WebHTMLView drawRect:]): Added ASSERT_MAIN_THREAD()
- 9:42 AM Changeset in webkit [21254] by
-
- 7 edits in trunk
2007-05-04 Anders Carlsson <andersca@apple.com>
Reviewed by Antti.
<rdar://problem/5179977> Use the correct URLs when dispatching delegate methods for data loads.
Restore behavior to matching release WebKit by adding a response URL to SubstituteData. If a nil base URL is
passed, set the _request_ URL to "about:blank", but the response URL to a generated "applewebdata" URL.
- loader/FrameLoader.cpp: (WebCore::FrameLoader::commitProvisionalLoad): First, check for the SubstituteData's response URL.
(WebCore::FrameLoader::continueAfterNavigationPolicy):
No need to special case applewebdata URLs here, they're only used in the response.
- loader/MainResourceLoader.cpp: (WebCore::MainResourceLoader::handleDataLoadNow): If the substitute data has a response URL, use it.
(WebCore::MainResourceLoader::loadNow):
Only load "about:blank" as an empty document if there's no substitute data.
- loader/SubstituteData.h: (WebCore::SubstituteData::SubstituteData): (WebCore::SubstituteData::responseURL): Add responseURL member to SubstituteData.
2007-05-04 Anders Carlsson <andersca@apple.com>
Reviewed by Antti.
<rdar://problem/5179977> Use the correct URLs when dispatching delegate methods for data loads.
- WebView/WebFrame.mm: (-[WebFrame _loadData:MIMEType:textEncodingName:baseURL:unreachableURL:]): If the base URL is nil, set it to "about:blank", and set the response URL to a generated applewebdata URL.
- WebView/WebView.mm: (+[WebView _canHandleRequest:]): No need to special-case applewebdata URLs here anymore, they're only used in responses.
- 5:25 AM Changeset in webkit [21253] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Zack
Revert on line of the last commit. We still want to keep the RPATH
support in the pro file.
- 4:41 AM Changeset in webkit [21252] by
-
- 112 edits1 add15 deletes in trunk
Reviewed by Zack
Remove the old bitmap fonts I tried using to get reliable results from
DumpRenderTree on X11. Instead we now use the URW Type1 fonts from
ghostscript. I've added a mirror to simply check them out at
svn://labs.trolltech.com/svn/webkit/testfonts.
Fixed DumpRenderTree to make sure these fonts are the only ones we use
on X11 and added a fonts.conf file to get a well defined fontconfig
configuration.
Made sure run-webkit-tests forwards the WEBKIT_TESTFONTS environment variable
I use to find the fonts to DumpRenderTree.
Updated results for css1 to work with the new set of fonts.
Will update the other results once I see this works on all
machines we have.
- 1:07 AM Changeset in webkit [21251] by
-
- 2 edits in tags/JavaScriptCore-418.4/JavaScriptCore
Versioning.
- 1:05 AM Changeset in webkit [21250] by
-
- 2 edits in tags/JavaScriptCore-418.4/JavaScriptCore
Merge r16614.
- 12:56 AM Changeset in webkit [21249] by
-
- 1 copy in tags/JavaScriptCore-418.4
New tag.
- 12:52 AM Changeset in webkit [21248] by
-
- 2 edits in branches/Safari-2-0-branch/JavaScriptCore
Merge r16614.
- 12:43 AM Changeset in webkit [21247] by
-
- 3 edits in branches/Safari-2-0-branch/WebKit
Merge r20042 and follow-ups from r20050, r20058, r20064, r20077 and r20668.