Timeline
Jul 4, 2007:
- 11:56 PM Changeset in webkit [24008] by
-
- 2 edits in trunk/WebKitTools
Add --skipped-only option to run-webkit-tests
When this option is specified, only those tests listed in the Skipped
file are run.
Reviewed by Mark.
- Scripts/run-webkit-tests:
- 11:42 PM Changeset in webkit [24007] by
-
- 2 edits in trunk/WebKitTools
Clean up/alphabetize the run-webkit-tests help message
- Scripts/run-webkit-tests:
- 11:24 PM Changeset in webkit [24006] by
-
- 3 edits in trunk/WebKitTools
Enable a Leopard-specific Skipped list.
Reviewed by Mark.
- Scripts/run-webkit-tests: Check for Leopard.
- Scripts/webkitdirs.pm: Added isTiger/isLeopard.
- 11:12 PM Changeset in webkit [24005] by
-
- 2 edits in trunk
... and it was reviewed by Adam.
- 11:08 PM Changeset in webkit [24004] by
-
- 3 edits9 adds in trunk
2007-07-04 Matt Perry <mpComplete@gmail.com>
Fix for http://bugs.webkit.org/show_bug.cgi?id=13400
Bug 13400: REGRESSION (r20809-20814): No back entry created for navigations created by assigning to document.location
<rdar://problem/5153025>
Treat userGesture as always true for setLocation, forcing a back/forward
entry to be created.
- bindings/js/JSHTMLDocumentCustom.cpp: (WebCore::JSHTMLDocument::setLocation):
2007-07-04 Matt Perry <mpComplete@gmail.com>
Test for http://bugs.webkit.org/show_bug.cgi?id=13400
Bug 13400: REGRESSION (r20809-20814): No back entry created for navigations created by assigning to document.location
<rdar://problem/5153025>
Test that assigning to document.location in various ways adds an
item to the back/forward list.
- http/tests/navigation/document-location-click-expected.txt: Added.
- http/tests/navigation/document-location-click-timeout-expected.txt: Added.
- http/tests/navigation/document-location-click-timeout.html: Added.
- http/tests/navigation/document-location-click.html: Added.
- http/tests/navigation/document-location-mouseover-expected.txt: Added.
- http/tests/navigation/document-location-mouseover.html: Added.
- http/tests/navigation/document-location-onload-expected.txt: Added.
- http/tests/navigation/document-location-onload.html: Added.
- http/tests/navigation/resources/document-location.js: Added.
- 11:04 PM Changeset in webkit [24003] by
-
- 2 edits in trunk/WebCore
Restore MouseEventWithHitTestResults::targetNode's old behavior
Reviewed by Mark.
Fixes fast/images/imagemap-case and fast/replace/image-map.
- page/MouseEventWithHitTestResults.cpp:
(WebCore::MouseEventWithHitTestResults::targetNode): Use the inner
node, not the inner non-shared node.
- 10:21 PM Changeset in webkit [24002] by
-
- 5 edits in trunk/WebCore
Mac, Qt, and Gdk build fixes.
- page/EventHandler.h:
- page/gdk/EventHandlerGdk.cpp:
- page/mac/EventHandlerMac.mm:
(WebCore::EventHandler::passSubframeEventToSubframe):
- page/qt/EventHandlerQt.cpp:
- 8:23 PM Changeset in webkit [24001] by
-
- 3 edits in trunk/WebCore
Fix the Qt/Gdk builds.
- page/gdk/EventHandlerGdk.cpp:
- page/qt/EventHandlerQt.cpp:
- 8:00 PM Changeset in webkit [24000] by
-
- 20 edits in trunk
Move tooltip logic down into WebCore so that it can be shared cross-platform
WebCore:
Move tooltip logic down into WebCore so that it can be shared cross-platform
Reviewed by Sam.
- page/Chrome.cpp: (WebCore::Chrome::setToolTip): Added.
- page/Chrome.h:
- page/ChromeClient.h:
- page/EventHandler.cpp: (WebCore::EventHandler::mouseMoved): Call Chrome::setToolTip.
- platform/graphics/svg/SVGImageEmptyClients.h:
Added stubs for Gdk:
- platform/gdk/ChromeClientGdk.h:
- platform/gdk/TemporaryLinkStubs.cpp: (ChromeClientGdk::setToolTip):
WebKit:
Move tooltip logic down into WebCore so that it can be shared cross-platform
Reviewed by Sam.
- WebCoreSupport/WebChromeClient.h:
- WebCoreSupport/WebChromeClient.mm: (WebChromeClient::setToolTip): Added.
- WebView/WebHTMLView.mm: Removed _resetCachedWebPreferences. (-[WebHTMLView _updateMouseoverWithEvent:]): Removed tooltip code. (-[WebHTMLView initWithFrame:]): Removed call to _resetCachedWebPreferences. (-[WebHTMLView setDataSource:]): Ditto.
- WebView/WebHTMLViewInternal.h: Removed showsURLsInToolTips ivar.
- WebView/WebHTMLViewPrivate.h: Added declaration for _setTooltip so that WebChromeClient can call it.
WebKit/win:
Added a stub for WebChromeClient::setToolTip
Reviewed by Sam.
- WebChromeClient.cpp:
- WebChromeClient.h:
WebKitQt:
Added a stub for ChromeClientQt::setToolTip
Reviewed by Sam.
- WebCoreSupport/ChromeClientQt.cpp: (WebCore::ChromeClientQt::setToolTip):
- WebCoreSupport/ChromeClientQt.h:
- 8:00 PM Changeset in webkit [23999] by
-
- 8 edits in trunk
Add/initialize Settings::showsURLsInToolTips
WebCore:
Add Settings::showsURLsInToolTips
Reviewed by Sam.
- WebCore.exp:
- page/Settings.cpp: (WebCore::Settings::Settings):
- page/Settings.h:
WebKit:
Initialize Settings::showsURLsInToolTips
Reviewed by Sam.
- WebView/WebView.mm: (-[WebView _updateWebCoreSettingsFromPreferences:]):
WebKit/win:
Initialize Settings::showsURLsInToolTips
Reviewed by Sam.
- WebView.cpp: (WebView::updateWebCoreSettingsFromPreferences):
- 8:00 PM Changeset in webkit [23998] by
-
- 9 edits in trunk
Move logic for calling mouseDidMoveOverElement into WebCore
WebCore:
Move logic for calling mouseDidMoveOverElement into WebCore
Reviewed by Sam.
- page/EventHandler.cpp: (WebCore::EventHandler::mouseMoved): Added. Calls Chrome::mouseDidMoveOverElement. (WebCore::EventHandler::handleMouseMoveEvent): Now takes an optional HitTestResult* parameter which is used to communicate to the caller the node the mouse is over.
- page/EventHandler.h:
- page/mac/EventHandlerMac.mm: (WebCore::EventHandler::mouseMoved): Changed to call the overloaded mouseMoved(). (WebCore::EventHandler::passMouseMoveEventToSubframe): Pass hoveredNode through to the subframe so we can get the deepest node hovered, not just the node's parent frame.
- page/win/EventHandlerWin.cpp: (WebCore::EventHandler::passMouseMoveEventToSubframe): Ditto.
WebKit:
Removed call to mouseDidMoveOverElement now that WebCore handles it
Reviewed by Sam.
- WebView/WebHTMLView.mm: (-[WebHTMLView _updateMouseoverWithEvent:]):
WebKit/win:
Removed call to mouseDidMoveOverElement now that WebCore handles it
Reviewed by Sam.
- WebView.cpp: (WebView::handleMouseEvent):
- 8:00 PM Changeset in webkit [23997] by
-
- 16 edits in trunk
Add Chrome::mouseDidMoveOverElement
WebCore:
Add Chrome::mouseDidMoveOverElement
This does the work of calling up to the ChromeClient (which will call
the UI delegate).
Reviewed by Sam.
- page/Chrome.cpp: (WebCore::Chrome::mouseDidMoveOverElement): Added.
- page/Chrome.h:
- page/ChromeClient.h:
- platform/graphics/svg/SVGImageEmptyClients.h: Updated for change to ChromeClient.
- platform/gdk/ChromeClientGdk.h:
- platform/gdk/TemporaryLinkStubs.cpp: (ChromeClientGdk::mouseDidMoveOverElement):
WebKit:
Add WebChromeClient::mouseDidMoveOverElement
This is not called yet.
Reviewed by Sam.
- WebCoreSupport/WebChromeClient.h:
- WebCoreSupport/WebChromeClient.mm:
WebKit/win:
Add WebChromeClient::mouseDidMoveOverElement
This is not called yet.
Reviewed by Sam.
- WebChromeClient.cpp: (WebChromeClient::mouseDidMoveOverElement):
- WebChromeClient.h:
WebKitQt:
Added a stub for ChromeClientQt::mouseDidMoveOverElement
Reviewed by Sam.
- WebCoreSupport/ChromeClientQt.cpp: (WebCore::ChromeClientQt::mouseDidMoveOverElement):
- WebCoreSupport/ChromeClientQt.h:
- 8:00 PM Changeset in webkit [23996] by
-
- 4 edits in trunk/WebCore
Changed PlatformMouseEvent to store the modifier flags of the event
Reviewed by Sam.
- platform/PlatformMouseEvent.h:
(WebCore::PlatformMouseEvent::PlatformMouseEvent):
- platform/mac/PlatformMouseEventMac.mm:
(WebCore::PlatformMouseEvent::PlatformMouseEvent):
- platform/win/PlatformMouseEventWin.cpp:
(WebCore::PlatformMouseEvent::PlatformMouseEvent):
- 7:59 PM Changeset in webkit [23995] by
-
- 4 edits in trunk/WebCore
Add HitTestResult::setToNonShadowAncestor
Reviewed by Sam.
- page/EventHandler.cpp:
(WebCore::EventHandler::hitTestResultAtPoint): Moved logic into
HitTestResult::setToNonShadowAncestor.
- rendering/HitTestResult.cpp:
(WebCore::HitTestResult::setToNonShadowAncestor):
- rendering/HitTestResult.h:
- 7:59 PM Changeset in webkit [23994] by
-
- 4 edits in trunk/WebCore
Change MouseEventWithHitTestResults to hold onto a HitTestResult
Reviewed by Sam.
- dom/Document.cpp:
(WebCore::Document::prepareMouseEvent):
- page/MouseEventWithHitTestResults.cpp:
(WebCore::MouseEventWithHitTestResults::MouseEventWithHitTestResults):
(WebCore::MouseEventWithHitTestResults::targetNode):
(WebCore::MouseEventWithHitTestResults::localPoint):
(WebCore::MouseEventWithHitTestResults::scrollbar):
- page/MouseEventWithHitTestResults.h:
(WebCore::MouseEventWithHitTestResults::event):
(WebCore::MouseEventWithHitTestResults::hitTestResult):
- 7:52 PM Changeset in webkit [23993] by
-
- 3 edits in trunk/LayoutTests
- take out infinity tests from the test for bug 5292262 (see below) for now since they give different results on PowerPC and Intel and are not an important part of the intent of this test anyway; the bug was about normal numbers, not edge cases like infinity
If we want to test the infinity behavior, we should make a separate test later.
- fast/objc/longlongTest-expected.txt: Removed results from infinity tests.
- fast/objc/longlongTest.html: Removed infinity tests.
- 6:16 PM Changeset in webkit [23992] by
-
- 2 edits in trunk/WebCore
Not reviewed, gdk build fix.
- platform/gdk/FrameGdk.cpp:
- 3:54 PM Changeset in webkit [23991] by
-
- 3 edits2 adds in trunk
LayoutTests:
Reviewed by John.
Test for Repro crash due to infinite recursion in HTMLParser::handleError @ youos.com
<rdar://problem/5237811>
- fast/table/incomplete-table-in-fragment-hang-expected.txt: Added.
- fast/table/incomplete-table-in-fragment-hang.html: Added.
WebCore:
Reviewed by John.
Fix Repro crash due to infinite recursion in HTMLParser::handleError @ youos.com
<rdar://problem/5237811>
It is possible to add table parts (thead etc) without table ancestor to a document fragment. If a new table element
was added to such a part, as in
div.innerHTML = '<tbody><table>';
the parser error handling code would try to pop the previous table as normal. However since
the table does not actually exist nothing would happen and parser would go to infinite recursion.
Solution here is to pop table parts one by one when handling the error inside a fragment instead of trying to pop
the table straight away (as it might not exist).
- html/HTMLParser.cpp: (WebCore::HTMLParser::handleError):
- 2:57 PM Changeset in webkit [23990] by
-
- 2 edits in branches/wx-port-alpha/trunk/WebCore/platform/graphics/wx
Fix transparent image support on Windows, and likely GTK too.
- 2:33 PM Changeset in webkit [23989] by
-
- 2 edits in trunk/WebCore
Patch from Qing Zhao to fix combobox rendering
- 2:23 PM Changeset in webkit [23988] by
-
- 3 edits in trunk/WebCore
Compile
- 1:04 PM Changeset in webkit [23987] by
-
- 6 edits2 adds in trunk
LayoutTests:
Reviewed by Mitz.
Test for http://bugs.webkit.org/show_bug.cgi?id=14504
REGRESSION (r23573): Amazon Book Excerpt can not be viewed in recent nightly
- fast/dom/Window/window-property-shadowing-expected.txt: Added.
- fast/dom/Window/window-property-shadowing.html: Added.
WebCore:
Reviewed by Mitz.
Patch for http://bugs.webkit.org/show_bug.cgi?id=14504
REGRESSION (r23573): Amazon Book Excerpt can not be viewed in recent nightly
- Made it possible (again) to shadow window properties with local variable names.
Test: fast/dom/Window/window-property-shadowing.html
- bindings/js/JSDOMWindowCustom.cpp: (WebCore::JSDOMWindow::customPut):
- bindings/js/kjs_window.cpp: (KJS::Window::put):
- bindings/scripts/CodeGeneratorJS.pm:
- page/DOMWindow.idl:
- 11:37 AM Changeset in webkit [23986] by
-
- 10 edits3 adds in trunk/WebCore
Reviewed by Adam.
Fixed <rdar://problem/5225119> support smart pasting on Windows
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
Added new files
- editing/SmartReplace.cpp: Added. (WebCore::isCharacterSmartReplaceExempt):
Added non-CF implementation placeholder
- editing/SmartReplace.h: Added.
- editing/SmartReplaceCF.cpp: Added. (WebCore::getSmartSet): (WebCore::isCharacterSmartReplaceExempt):
Added new implementation
- bridge/win/FrameWin.cpp:
- page/Frame.h:
- page/mac/FrameMac.mm:
Removed old declaration and implementation
- editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::doApply):
Changed to call the new function instead of old
- page/mac/WebCoreFrameBridge.h:
- page/mac/WebCoreFrameBridge.mm:
Removed old declaration and implementation
(-[WebCoreFrameBridge smartInsertForString:replacingRange:beforeString:afterString:]):
Changed to call the new function instead of old
- platform/win/PasteboardWin.cpp: (WebCore::Pasteboard::Pasteboard):
Register new clipboard format
(WebCore::Pasteboard::writeSelection):
Set data for smartpaste format on clipboard
(WebCore::Pasteboard::canSmartReplace):
Added non-stub implementation
- 11:33 AM Changeset in webkit [23985] by
-
- 2 edits in trunk
Reenable some code for 64-bit now that <rdar://problem/5311640> and <rdar://problem/5311690> are resolved.
- 8:15 AM Changeset in webkit [23984] by
-
- 2 edits in trunk/WebCore
Patch from Qing Zhao: Similar to the PlatformScrollbar fixes, adjust the
painter to make the styler draw all subcontrols, and in this case the focus
rect, in the proper location
- 3:56 AM Changeset in webkit [23983] by
-
- 3 edits in trunk/WebCore
2007-07-04 Mitz Pettel <mitz@webkit.org>
Reviewed by Maciej.
- fix http://bugs.webkit.org/show_bug.cgi?id=14495 REGRESSION: Wrong cursor is displayed during drag and drop when text is selected <rdar://problem/5312384>
No test possible because DumpRenderTree cannot query the current cursor.
- page/EventHandler.cpp: (WebCore::EventHandler::selectCursor): Changed into a member function and added that if the last mouse down event could not have started a selection, then the cursor should not change to an I-beam unconditionally. (WebCore::EventHandler::handleMouseMoveEvent):
- page/EventHandler.h:
- 3:52 AM Changeset in webkit [23982] by
-
- 2 edits in trunk/WebCore
2007-07-04 Holger Hans Peter Freyther <zecke@selfish.org>
Reviewed by Rob Buis.
A little progress in tracking dependencies.
- WebCore.pro: Add DEPENDPATH for the Gdk port.
- 12:13 AM Changeset in webkit [23981] by
-
- 1 edit in tags/Safari-5522.10.1/WebCore/Configurations/Version.xcconfig
Versioning.
- 12:13 AM Changeset in webkit [23980] by
-
- 1 delete in tags/Safari-5522.10.1/WebCore/ForwardingHeaders/JavaScriptCore
Build fix.
- 12:10 AM Changeset in webkit [23979] by
-
- 1 copy in tags/Safari-5522.10.1
New tag.
Jul 3, 2007:
- 8:02 PM Changeset in webkit [23978] by
-
- 2 edits in trunk/WebKit
- StringsNotToBeLocalized.txt: Updated for recent changes.
- 6:07 PM Changeset in webkit [23977] by
-
- 10 edits1 copy in trunk/WebKit
Reviewed by Darin.
Remove HIWebView in 64-bit.
Also disable a few calls that are now gone in 64-bit and filed these bugs:
<rdar://problem/5311653> WebKit needs to adopt HIGetMousePosition where we used GetGlobalMouse before
<rdar://problem/5311648> WebKit needs to move off of CopyEvent in WebBaseNetscapePluginView
<rdar://problem/5311640> WebKit needs a new solution for HISearchWindowShow on 64-bit
- Carbon/CarbonUtils.m:
- Carbon/CarbonWindowAdapter.m:
- Carbon/CarbonWindowContentView.m:
- Carbon/CarbonWindowFrame.m:
- Carbon/HIViewAdapter.m: (SetViewNeedsDisplay):
- Carbon/HIWebView.m: (Draw): (SyncFrame):
- Configurations/WebKit.xcconfig:
- Plugins/WebBaseNetscapePluginView.mm: (+[WebBaseNetscapePluginView getCarbonEvent:]): (TSMEventHandler):
- WebKit.LP64.exp: Added.
- WebView/WebView.mm: (-[WebView _searchWithSpotlightFromMenu:]):
- 6:04 PM Changeset in webkit [23976] by
-
- 2 edits in trunk
Disable the strict aliasing warning until <rdar://problem/5311093> is fixed.
- 6:02 PM Changeset in webkit [23975] by
-
- 1 edit in trunk/WebCore/page/mac/FrameMac.mm
64-bit build fix.
- 5:58 PM Changeset in webkit [23974] by
-
- 2 edits1 delete in trunk/WebKitTools
Fixed update-webkit-localizable-strings to work with new extract-localizable-strings
Got rid of extract-webkit-localizable-strings because it was trying to
do update-webkit-localizable-strings' job.
Rubberstamped by Darin.
- Scripts/extract-webkit-localizable-strings: Removed.
- Scripts/update-webkit-localizable-strings: Renamed from
extract-localizable-strings.
- 5:56 PM Changeset in webkit [23973] by
-
- 10 edits1 copy in tags/Safari-5522.10/WebKit
Reviewed by Darin.
Remove HIWebView in 64-bit.
Also disable a few calls that are now gone in 64-bit and filed these bugs:
<rdar://problem/5311653> WebKit needs to adopt HIGetMousePosition where we used GetGlobalMouse before
<rdar://problem/5311648> WebKit needs to move off of CopyEvent in WebBaseNetscapePluginView
<rdar://problem/5311640> WebKit needs a new solution for HISearchWindowShow on 64-bit
- Carbon/CarbonUtils.m:
- Carbon/CarbonWindowAdapter.m:
- Carbon/CarbonWindowContentView.m:
- Carbon/CarbonWindowFrame.m:
- Carbon/HIViewAdapter.m: (SetViewNeedsDisplay):
- Carbon/HIWebView.m: (Draw): (SyncFrame):
- Configurations/WebKit.xcconfig:
- Plugins/WebBaseNetscapePluginView.mm: (+[WebBaseNetscapePluginView getCarbonEvent:]): (TSMEventHandler):
- WebKit.LP64.exp: Added.
- WebView/WebView.mm: (-[WebView _searchWithSpotlightFromMenu:]):
- 5:40 PM Changeset in webkit [23972] by
-
- 6 edits1 move1 add1 delete in trunk
Merge the Windows and Mac localized strings and exceptions files
WebKit:
Merge the Windows and Mac localized strings and exceptions files
Reviewed by Darin and Anders.
- English.lproj/Localizable.strings: Added Windows strings.
- StringsNotToBeLocalized.txt: Renamed from WebKit/English.lproj/StringsNotToBeLocalized.txt.
WebKit/win:
Merge the Windows and Mac localized strings and exceptions files
Reviewed by Darin and Anders.
- English.lproj/Localizable.strings: Added Mac strings.
- English.lproj/StringsNotToBeLocalized.txt: Removed.
WebKitTools:
Modify scripts to keep Mac/Windows localized strings in sync
extract-webkit-localizable-strings now handles extracting strings from
both the Mac and Windows WebKit ports and updating their respective
Localizable.strings files. extract-localizable-strings is now really a
piece of plumbing rather than a top-level tool.
Reviewed by Darin and Anders.
- Scripts/extract-localizable-strings: Changed to handle multiple directories.
- Scripts/extract-webkit-localizable-strings: Added.
- 5:29 PM Changeset in webkit [23971] by
-
- 2 edits in trunk/WebKit
Removed printf I accidently left in.
- Misc/WebNSURLExtras.m: (mapHostNames):
- 5:06 PM Changeset in webkit [23970] by
-
- 4 edits in tags/Safari-5522.10/WebKit
Merge r23946 to fix 64-bit build.
- 5:04 PM Changeset in webkit [23969] by
-
- 5 edits2 adds in trunk
LayoutTests:
Reviewed by Tim Hatcher.
- tests for <rdar://problem/5221297> Font family name in the cssText for a DOMCSSStyleDeclaration needs quotes
- editing/style/font-family-with-space-expected.txt: Added.
- editing/style/font-family-with-space.html: Added.
- fast/inspector/style-expected.txt: Updated expected results to expect "Lucida Grande" in quote marks.
WebCore:
Reviewed by Tim Hatcher.
- fix <rdar://problem/5221297> Font family name in the cssText for a DOMCSSStyleDeclaration needs quotes
Test: editing/style/font-family-with-space.html
- css/FontFamilyValue.cpp: (WebCore::isValidCSSIdentifier): Added. Implements the same rule that the CSS lexer does. (WebCore::quoteStringIfNeeded): Changed to call isValidCSSIdentifier instead of just checking for a leading "#" character.
- editing/markup.cpp: (WebCore::escapeTextForMarkup): Changed to take a String parameter for better efficiency. (WebCore::renderedText): Changed to return a String for better efficiency. (WebCore::addNamespace): Updated to pass String to escapeTextForMarkup. (WebCore::startMarkup): Updated to pass String to escapeTextForMarkup. Added missing call to escapeTextForMarkup in the special case for the style property. (WebCore::createMarkup): Changed from single quotes to double quotes and also added missing call to escapeTextForMarkup in two special cases for the style property.
- 4:56 PM Changeset in webkit [23968] by
-
- 1 edit in tags/Safari-5522.10/WebCore/page/mac/FrameMac.mm
64-bit build fix.
- 4:54 PM Changeset in webkit [23967] by
-
- 1 edit in trunk/WebKit/Misc/WebNSURLExtras.m
Updating comment
- 4:46 PM Changeset in webkit [23966] by
-
- 2 edits in tags/Safari-5522.10
Disable the strict aliasing warning, not strict aliasing.
- 4:21 PM Changeset in webkit [23965] by
-
- 2 edits in tags/Safari-5522.10
Turn off strict aliasing until <rdar://problem/5311093> is fixed.
- 4:19 PM Changeset in webkit [23964] by
-
- 6 edits in trunk/WebCore
Reviewed by Darin.
Twelfth round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- Add casts and accompanying FIXMEs to avoid remaining compiler errors.
- WebCore.xcodeproj/project.pbxproj:
- loader/FrameLoader.cpp: (WebCore::FrameLoader::opened): (WebCore::FrameLoader::sendRemainingDelegateMessages):
- loader/FrameLoader.h:
- loader/ResourceLoader.cpp: (WebCore::ResourceLoader::didReceiveData):
- platform/network/mac/ResourceHandleMac.mm: (-[WebCoreResourceHandleAsDelegate connection:didReceiveData:lengthReceived:]): (-[WebCoreResourceHandleAsDelegate connection:willStopBufferingData:]):
- platform/network/mac/ResourceResponseMac.mm: (WebCore::ResourceResponse::nsURLResponse):
- 4:16 PM Changeset in webkit [23963] by
-
- 6 edits2 adds in trunk
LayoutTests:
Reviewed by Darin.
Test for: <rdar://problem/5292988> domain names shouldn't contain ignorable characters
- fast/encoding/idn-security-expected.txt: Added.
- fast/encoding/idn-security.html: Added.
- win/Skipped: Blocked by <rdar://problem/5301954>.
WebKit:
Reviewed by Darin.
Fix for: <rdar://problem/5292988> domain names shouldn't contain ignorable characters
- Misc/WebNSURLExtras.m: (isLookalikeCharacter): Renamed. Also excludes any non-printable character, any character considered as whitespace that isn't already converted to a space by ICU, any ignorable character, and any character excluded in Mozilla's blacklist: http://kb.mozillazine.org/Network.IDN.blacklist_chars (allCharactersInIDNScriptWhiteList):
WebKitTools:
Reviewed by Darin.
Extended DumpRenderTree to test encoding and decoding host names.
- DumpRenderTree/DumpRenderTree.m: (+[LayoutTestController isSelectorExcludedFromWebScript:]): Added cases for encodeHostName and decodeHostName. (+[LayoutTestController webScriptNameForSelector:]): ditto. (-[LayoutTestController decodeHostName:]): Added. (-[LayoutTestController encodeHostName:]): Added.
- 4:03 PM Changeset in webkit [23962] by
-
- 1 edit in branches/wx-port-alpha/trunk/WebKit/wx/bindings/python/samples/simple.py
Add some more functionality to the basic sample.
- 3:51 PM Changeset in webkit [23961] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Darin.
Eleventh round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
Add functions to test long long and unsigned long long.
- DumpRenderTree/DumpRenderTree.m: (+[LayoutTestController isSelectorExcludedFromWebScript:]): (+[LayoutTestController webScriptNameForSelector:]): (-[LayoutTestController objCLongLongRoundTrip:]): (-[LayoutTestController objCUnsignedLongLongRoundTrip:]):
- 3:37 PM Changeset in webkit [23960] by
-
- 3 edits3 adds in trunk
Reviewed by Darin.
Eleventh round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- Fixes a real bug where where we were setting long long and unsigned long long values to a long field.
- bindings/objc/objc_utility.mm: (KJS::Bindings::convertValueToObjcValue):
LayoutTests:
Reviewed by Darin.
Eleventh round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- fast/objc: Added.
- fast/objc/longlongTest-expected.txt: Added.
- fast/objc/longlongTest.html: Added.
- 3:11 PM Changeset in webkit [23959] by
-
- 2 edits in tags/Safari-5522.10/WebCore
Merge r23894.
- 3:04 PM Changeset in webkit [23958] by
-
- 3 edits in tags/Safari-5522.10
Turn off -Wshorten-64-to-32 until <rdar://problems/5292100&5292113&5292262> are fixed.
- 3:02 PM Changeset in webkit [23957] by
-
- 4 edits in trunk/WebKit
Reviewed by Maciej.
- fix <rdar://problem/5310848> WebDataSource lifetime problem -- may be cause of the leaks seen on the buildbot
- WebView/WebDataSource.mm: (-[WebDataSourcePrivate dealloc]): Added a call to the new detachDataSource function. (-[WebDataSourcePrivate finalize]): Ditto.
- WebView/WebDocumentLoaderMac.h: Added detachDataSource function to be used when the WebDataSource is deallocated. Added retain/releaseDataSource helper functions to be used to retain and release the data source object. Replaced the m_hasEverBeenDetached boolean with a more primitive and hence easier to understand m_isDataSourceRetained boolean.
- WebView/WebDocumentLoaderMac.mm: (WebDocumentLoaderMac::WebDocumentLoaderMac): Initialize m_isDataSourceRetained to false. (WebDocumentLoaderMac::setDataSource): Call retainDataSource instead of calling HardRetain on the dataSource parameter. Also updated a comment. (WebDocumentLoaderMac::attachToFrame): Call retainDataSource unconditionally rather than trying to use m_hasEverBeenDetached to decide if a retain is needed. Also got rid of an assertion that m_loadingResources is empty -- not important any more. (WebDocumentLoaderMac::detachFromFrame): Call releaseDataSource instead of using HardRelease, but only if m_loadingResources is empty. If it's non-empty, then we'll do the releaseDataSource later in decreaseLoadCount. (WebDocumentLoaderMac::increaseLoadCount): Call retainDataSource unconditionally rather than calling HardRetain only if the old set of resources was empty. (WebDocumentLoaderMac::decreaseLoadCount): Call releaseDataSource if m_loadingResources is empty and we're not attached to a frame. If we are attached to a frame, then we'll do the releaseDataSource later in detachFromFrame. (WebDocumentLoaderMac::retainDataSource): Added. Calls CFRetain, but only if the data source is not already retained (according to the boolean). (WebDocumentLoaderMac::releaseDataSource): Added. Calls CFRelease, but only if the data source is currently retained (according to the boolean). (WebDocumentLoaderMac::detachDataSource): Added. Sets m_dataSource to nil. Since this is only called from WebDataSource's dealloc and finalize methods, it won't ever be called when the m_isDataSourceRetained boolean is true.
- 3:01 PM Changeset in webkit [23956] by
-
- 2 edits in trunk/WebCore
Reviewed by Adam.
<rdar://problem/5093862>
Nothing shown in plugin area when trying to play content using the DivX plugin
Defer calling SetWindow for the DivX plugin, just like we do with the WMP plugin.
- plugins/win/PluginViewWin.cpp: (WebCore::PluginViewWin::determineQuirks):
- 2:35 PM Changeset in webkit [23955] by
-
- 2 edits in trunk/JavaScriptCore
Reviewed by Brady Eidson.
Tenth round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- Add explicit casts.
- kjs/dtoa.cpp: (Bigint::):
- 2:21 PM Changeset in webkit [23954] by
-
- 2 edits in trunk/WebKit
- forgot to check in one file in the fix for <rdar://problem/5307880> some classes need finalize methods because of non-trivial work done in dealloc methods
- WebView/WebView.mm: (-[WebViewPrivate finalize]): Delete identifierMap so it doesn't leak.
- 2:17 PM Changeset in webkit [23953] by
-
- 3 edits in trunk/WebCore
Reviewed by Brady Eidson.
Ninth round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- Fix function signature to use unsigned long instead of unsigned long long.
- loader/ProgressTracker.cpp: (WebCore::ProgressTracker::completeProgress):
- loader/ProgressTracker.h:
- 2:11 PM Changeset in webkit [23952] by
-
- 1 copy in tags/Safari-5522.10
New tag.
- 1:46 PM Changeset in webkit [23951] by
-
- 44 edits in trunk/WebCore
Reviewed by Oliver.
Eighth round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- Convert SVG implementation files to use floats instead of doubles to match the spec/IDLs.
- bindings/scripts/CodeGeneratorJS.pm:
- ksvg2/svg/SVGAngle.cpp:
- ksvg2/svg/SVGAnimatedTemplate.h:
- ksvg2/svg/SVGAnimationElement.cpp: (WebCore::SVGAnimationElement::getEndTime): (WebCore::SVGAnimationElement::getStartTime): (WebCore::SVGAnimationElement::getCurrentTime): (WebCore::SVGAnimationElement::getSimpleDuration):
- ksvg2/svg/SVGAnimationElement.h:
- ksvg2/svg/SVGFitToViewBox.cpp: (WebCore::SVGFitToViewBox::parseViewBox):
- ksvg2/svg/SVGLength.cpp: (WebCore::SVGLength::setValueAsString):
- ksvg2/svg/SVGLinearGradientElement.cpp: (WebCore::SVGLinearGradientElement::buildGradient):
- ksvg2/svg/SVGMatrix.idl:
- ksvg2/svg/SVGNumber.idl:
- ksvg2/svg/SVGParserUtilities.cpp: (WebCore::SVGPathParser::parseSVG): (WebCore::SVGPathParser::calculateArc): (WebCore::SVGPathParser::svgLineToHorizontal): (WebCore::SVGPathParser::svgLineToVertical): (WebCore::SVGPathParser::svgCurveToCubicSmooth): (WebCore::SVGPathParser::svgCurveToQuadratic): (WebCore::SVGPathParser::svgCurveToQuadraticSmooth): (WebCore::SVGPathParser::svgArcTo):
- ksvg2/svg/SVGParserUtilities.h:
- ksvg2/svg/SVGPathElement.cpp: (WebCore::SVGPathElement::SVGPathElement): (WebCore::SVGPathElement::getTotalLength): (WebCore::SVGPathElement::getPointAtLength): (WebCore::SVGPathElement::getPathSegAtLength): (WebCore::SVGPathElement::createSVGPathSegMovetoAbs): (WebCore::SVGPathElement::createSVGPathSegMovetoRel): (WebCore::SVGPathElement::createSVGPathSegLinetoAbs): (WebCore::SVGPathElement::createSVGPathSegLinetoRel): (WebCore::SVGPathElement::createSVGPathSegCurvetoCubicAbs): (WebCore::SVGPathElement::createSVGPathSegCurvetoCubicRel): (WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticAbs): (WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticRel): (WebCore::SVGPathElement::createSVGPathSegArcAbs): (WebCore::SVGPathElement::createSVGPathSegArcRel): (WebCore::SVGPathElement::createSVGPathSegLinetoHorizontalAbs): (WebCore::SVGPathElement::createSVGPathSegLinetoHorizontalRel): (WebCore::SVGPathElement::createSVGPathSegLinetoVerticalAbs): (WebCore::SVGPathElement::createSVGPathSegLinetoVerticalRel): (WebCore::SVGPathElement::createSVGPathSegCurvetoCubicSmoothAbs): (WebCore::SVGPathElement::createSVGPathSegCurvetoCubicSmoothRel): (WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticSmoothAbs): (WebCore::SVGPathElement::createSVGPathSegCurvetoQuadraticSmoothRel): (WebCore::SVGPathElement::svgMoveTo): (WebCore::SVGPathElement::svgLineTo): (WebCore::SVGPathElement::svgLineToHorizontal): (WebCore::SVGPathElement::svgLineToVertical): (WebCore::SVGPathElement::svgCurveToCubic): (WebCore::SVGPathElement::svgCurveToCubicSmooth): (WebCore::SVGPathElement::svgCurveToQuadratic): (WebCore::SVGPathElement::svgCurveToQuadraticSmooth): (WebCore::SVGPathElement::svgArcTo): (WebCore::SVGPathElement::parseMappedAttribute):
- ksvg2/svg/SVGPathElement.h:
- ksvg2/svg/SVGPathSegArc.cpp: (WebCore::SVGPathSegArcAbs::SVGPathSegArcAbs): (WebCore::SVGPathSegArcAbs::setX): (WebCore::SVGPathSegArcAbs::x): (WebCore::SVGPathSegArcAbs::setY): (WebCore::SVGPathSegArcAbs::y): (WebCore::SVGPathSegArcAbs::setR1): (WebCore::SVGPathSegArcAbs::r1): (WebCore::SVGPathSegArcAbs::setR2): (WebCore::SVGPathSegArcAbs::r2): (WebCore::SVGPathSegArcAbs::setAngle): (WebCore::SVGPathSegArcAbs::angle): (WebCore::SVGPathSegArcRel::SVGPathSegArcRel): (WebCore::SVGPathSegArcRel::setX): (WebCore::SVGPathSegArcRel::x): (WebCore::SVGPathSegArcRel::setY): (WebCore::SVGPathSegArcRel::y): (WebCore::SVGPathSegArcRel::setR1): (WebCore::SVGPathSegArcRel::r1): (WebCore::SVGPathSegArcRel::setR2): (WebCore::SVGPathSegArcRel::r2): (WebCore::SVGPathSegArcRel::setAngle): (WebCore::SVGPathSegArcRel::angle):
- ksvg2/svg/SVGPathSegArc.h:
- ksvg2/svg/SVGPathSegCurvetoCubic.cpp: (WebCore::SVGPathSegCurvetoCubicAbs::SVGPathSegCurvetoCubicAbs): (WebCore::SVGPathSegCurvetoCubicAbs::setX): (WebCore::SVGPathSegCurvetoCubicAbs::x): (WebCore::SVGPathSegCurvetoCubicAbs::setY): (WebCore::SVGPathSegCurvetoCubicAbs::y): (WebCore::SVGPathSegCurvetoCubicAbs::setX1): (WebCore::SVGPathSegCurvetoCubicAbs::x1): (WebCore::SVGPathSegCurvetoCubicAbs::setY1): (WebCore::SVGPathSegCurvetoCubicAbs::y1): (WebCore::SVGPathSegCurvetoCubicAbs::setX2): (WebCore::SVGPathSegCurvetoCubicAbs::x2): (WebCore::SVGPathSegCurvetoCubicAbs::setY2): (WebCore::SVGPathSegCurvetoCubicAbs::y2): (WebCore::SVGPathSegCurvetoCubicRel::SVGPathSegCurvetoCubicRel): (WebCore::SVGPathSegCurvetoCubicRel::setX): (WebCore::SVGPathSegCurvetoCubicRel::x): (WebCore::SVGPathSegCurvetoCubicRel::setY): (WebCore::SVGPathSegCurvetoCubicRel::y): (WebCore::SVGPathSegCurvetoCubicRel::setX1): (WebCore::SVGPathSegCurvetoCubicRel::x1): (WebCore::SVGPathSegCurvetoCubicRel::setY1): (WebCore::SVGPathSegCurvetoCubicRel::y1): (WebCore::SVGPathSegCurvetoCubicRel::setX2): (WebCore::SVGPathSegCurvetoCubicRel::x2): (WebCore::SVGPathSegCurvetoCubicRel::setY2): (WebCore::SVGPathSegCurvetoCubicRel::y2):
- ksvg2/svg/SVGPathSegCurvetoCubic.h:
- ksvg2/svg/SVGPathSegCurvetoCubicSmooth.cpp: (WebCore::SVGPathSegCurvetoCubicSmoothAbs::SVGPathSegCurvetoCubicSmoothAbs): (WebCore::SVGPathSegCurvetoCubicSmoothAbs::setX): (WebCore::SVGPathSegCurvetoCubicSmoothAbs::x): (WebCore::SVGPathSegCurvetoCubicSmoothAbs::setY): (WebCore::SVGPathSegCurvetoCubicSmoothAbs::y): (WebCore::SVGPathSegCurvetoCubicSmoothAbs::setX2): (WebCore::SVGPathSegCurvetoCubicSmoothAbs::x2): (WebCore::SVGPathSegCurvetoCubicSmoothAbs::setY2): (WebCore::SVGPathSegCurvetoCubicSmoothAbs::y2): (WebCore::SVGPathSegCurvetoCubicSmoothRel::SVGPathSegCurvetoCubicSmoothRel): (WebCore::SVGPathSegCurvetoCubicSmoothRel::setX): (WebCore::SVGPathSegCurvetoCubicSmoothRel::x): (WebCore::SVGPathSegCurvetoCubicSmoothRel::setY): (WebCore::SVGPathSegCurvetoCubicSmoothRel::y): (WebCore::SVGPathSegCurvetoCubicSmoothRel::setX2): (WebCore::SVGPathSegCurvetoCubicSmoothRel::x2): (WebCore::SVGPathSegCurvetoCubicSmoothRel::setY2): (WebCore::SVGPathSegCurvetoCubicSmoothRel::y2):
- ksvg2/svg/SVGPathSegCurvetoCubicSmooth.h:
- ksvg2/svg/SVGPathSegCurvetoQuadratic.cpp: (WebCore::SVGPathSegCurvetoQuadraticAbs::SVGPathSegCurvetoQuadraticAbs): (WebCore::SVGPathSegCurvetoQuadraticAbs::setX): (WebCore::SVGPathSegCurvetoQuadraticAbs::x): (WebCore::SVGPathSegCurvetoQuadraticAbs::setY): (WebCore::SVGPathSegCurvetoQuadraticAbs::y): (WebCore::SVGPathSegCurvetoQuadraticAbs::setX1): (WebCore::SVGPathSegCurvetoQuadraticAbs::x1): (WebCore::SVGPathSegCurvetoQuadraticAbs::setY1): (WebCore::SVGPathSegCurvetoQuadraticAbs::y1): (WebCore::SVGPathSegCurvetoQuadraticRel::SVGPathSegCurvetoQuadraticRel): (WebCore::SVGPathSegCurvetoQuadraticRel::setX): (WebCore::SVGPathSegCurvetoQuadraticRel::x): (WebCore::SVGPathSegCurvetoQuadraticRel::setY): (WebCore::SVGPathSegCurvetoQuadraticRel::y): (WebCore::SVGPathSegCurvetoQuadraticRel::setX1): (WebCore::SVGPathSegCurvetoQuadraticRel::x1): (WebCore::SVGPathSegCurvetoQuadraticRel::setY1): (WebCore::SVGPathSegCurvetoQuadraticRel::y1):
- ksvg2/svg/SVGPathSegCurvetoQuadratic.h: (WebCore::SVGPathSegCurvetoQuadraticRel::toString):
- ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.cpp: (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::SVGPathSegCurvetoQuadraticSmoothAbs): (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::setX): (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::x): (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::setY): (WebCore::SVGPathSegCurvetoQuadraticSmoothAbs::y): (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::SVGPathSegCurvetoQuadraticSmoothRel): (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::setX): (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::x): (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::setY): (WebCore::SVGPathSegCurvetoQuadraticSmoothRel::y):
- ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.h:
- ksvg2/svg/SVGPathSegLineto.cpp: (WebCore::SVGPathSegLinetoAbs::SVGPathSegLinetoAbs): (WebCore::SVGPathSegLinetoAbs::setX): (WebCore::SVGPathSegLinetoAbs::x): (WebCore::SVGPathSegLinetoAbs::setY): (WebCore::SVGPathSegLinetoAbs::y): (WebCore::SVGPathSegLinetoRel::SVGPathSegLinetoRel): (WebCore::SVGPathSegLinetoRel::setX): (WebCore::SVGPathSegLinetoRel::x): (WebCore::SVGPathSegLinetoRel::setY): (WebCore::SVGPathSegLinetoRel::y):
- ksvg2/svg/SVGPathSegLineto.h:
- ksvg2/svg/SVGPathSegLinetoHorizontal.cpp: (WebCore::SVGPathSegLinetoHorizontalAbs::SVGPathSegLinetoHorizontalAbs): (WebCore::SVGPathSegLinetoHorizontalAbs::setX): (WebCore::SVGPathSegLinetoHorizontalAbs::x): (WebCore::SVGPathSegLinetoHorizontalRel::SVGPathSegLinetoHorizontalRel): (WebCore::SVGPathSegLinetoHorizontalRel::setX): (WebCore::SVGPathSegLinetoHorizontalRel::x):
- ksvg2/svg/SVGPathSegLinetoHorizontal.h:
- ksvg2/svg/SVGPathSegLinetoVertical.cpp: (WebCore::SVGPathSegLinetoVerticalAbs::SVGPathSegLinetoVerticalAbs): (WebCore::SVGPathSegLinetoVerticalAbs::setY): (WebCore::SVGPathSegLinetoVerticalAbs::y): (WebCore::SVGPathSegLinetoVerticalRel::SVGPathSegLinetoVerticalRel): (WebCore::SVGPathSegLinetoVerticalRel::setY): (WebCore::SVGPathSegLinetoVerticalRel::y):
- ksvg2/svg/SVGPathSegLinetoVertical.h:
- ksvg2/svg/SVGPathSegList.cpp: (WebCore::SVGPathSegList::getPathSegAtLength):
- ksvg2/svg/SVGPathSegList.h:
- ksvg2/svg/SVGPathSegMoveto.cpp: (WebCore::SVGPathSegMovetoAbs::SVGPathSegMovetoAbs): (WebCore::SVGPathSegMovetoAbs::setX): (WebCore::SVGPathSegMovetoAbs::x): (WebCore::SVGPathSegMovetoAbs::setY): (WebCore::SVGPathSegMovetoAbs::y): (WebCore::SVGPathSegMovetoRel::SVGPathSegMovetoRel): (WebCore::SVGPathSegMovetoRel::setX): (WebCore::SVGPathSegMovetoRel::x): (WebCore::SVGPathSegMovetoRel::setY): (WebCore::SVGPathSegMovetoRel::y):
- ksvg2/svg/SVGPathSegMoveto.h:
- ksvg2/svg/SVGPolyElement.cpp: (WebCore::SVGPolyElement::svgPolyTo):
- ksvg2/svg/SVGRadialGradientElement.cpp: (WebCore::SVGRadialGradientElement::buildGradient):
- ksvg2/svg/SVGSVGElement.cpp: (WebCore::SVGSVGElement::viewport): (WebCore::SVGSVGElement::getCurrentTime):
- ksvg2/svg/SVGStopElement.cpp: (WebCore::SVGStopElement::SVGStopElement): (WebCore::SVGStopElement::parseMappedAttribute):
- ksvg2/svg/SVGStopElement.h:
- ksvg2/svg/SVGTransform.cpp: (SVGTransform::translate): (SVGTransform::scale):
- ksvg2/svg/SVGTransformDistance.cpp: (WebCore::SVGTransformDistance::addToSVGTransform): (WebCore::SVGTransformDistance::distance):
- ksvg2/svg/SVGTransformable.cpp: (WebCore::SVGTransformable::parseTransformAttribute):
- 1:15 PM Changeset in webkit [23950] by
-
- 5 edits2 adds in trunk
LayoutTests:
Reviewed by Darin.
<rdar://problem/5289718>
http://bugs.webkit.org/show_bug.cgi?id=14437
CrashTracer: [REGRESSION] 76 crashes in Safari at com.apple.WebCore: WebCore::Frame::settings const + 6 (14437)
Add test from Alexey Proskuryakov.
- plugins/plugin-remove-subframe-expected.txt: Added.
- plugins/plugin-remove-subframe.html: Added.
WebCore:
Reviewed by Darin.
<rdar://problem/5289718>
http://bugs.webkit.org/show_bug.cgi?id=14437
CrashTracer: [REGRESSION] 76 crashes in Safari at com.apple.WebCore: WebCore::Frame::settings const + 6 (14437)
Based on a patch from Maxime Britto.
- page/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge stringByEvaluatingJavaScriptFromString:forceUserGesture:]): If the script caused the frame to go away, return nil. This can only happen if a plugin in a subframe destroys its frame.
(-[WebCoreFrameBridge aeDescByEvaluatingJavaScriptFromString:]):
ASSERT that this is only called on the main frame.
WebKit:
Reviewed by Darin.
- WebView/WebView.mm: (-[WebView stringByEvaluatingJavaScriptFromString:]): ASSERT that the value returned isn't nil. It can't be nil when invoked on the main frame.
- 12:22 PM Changeset in webkit [23949] by
-
- 2 edits in trunk/WebCore
Written by Darin, reviewed by me
- fixed <rdar://problem/5249730> REGRESSION (Leopard, around 9A464): Safari opens the same local documents more than once due to canonicalization change
- loader/mac/LoaderNSURLExtras.m: (canonicalURL): pass URL through KURL so we get KURL's version of canonicalization as well as NSURLProtocol's version of canonicalization
- 12:14 PM Changeset in webkit [23948] by
-
- 38 edits in trunk
LayoutTests:
Reviewed by Darin.
Seventh round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- Change from double -> float caused some slight changes.
- svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-37-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-80-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-82-t-expected.txt:
- svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt:
- svg/W3C-SVG-1.1/coords-units-02-b-expected.txt:
- svg/W3C-SVG-1.1/painting-render-01-b-expected.txt:
- svg/W3C-SVG-1.1/script-handle-02-b-expected.txt:
- svg/W3C-SVG-1.1/script-handle-03-b-expected.txt:
- svg/W3C-SVG-1.1/script-handle-04-b-expected.txt:
- svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt:
- svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt:
- svg/W3C-SVG-1.1/text-align-01-b-expected.txt:
- svg/W3C-SVG-1.1/text-align-05-b-expected.txt:
- svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt:
WebCore:
Reviewed by Darin.
Seventh round of fixes for implicit 64-32 bit conversion errors.
<rdar://problem/5292262>
- Adds more narrowPrecision functions to FloatPoint, FloatSize and FloatRect.
- Changes over more implicit conversions to use new functions.
- bindings/js/kjs_window.cpp: (KJS::WindowFunc::callAsFunction):
- platform/graphics/FloatPoint.cpp: (WebCore::FloatPoint::matrixTransform): (WebCore::FloatPoint::narrowPrecision):
- platform/graphics/FloatPoint.h:
- platform/graphics/FloatRect.cpp: (WebCore::FloatRect::narrowPrecision):
- platform/graphics/FloatRect.h:
- platform/graphics/FloatSize.cpp: (WebCore::FloatSize::narrowPrecision):
- platform/graphics/FloatSize.h:
- platform/graphics/Path.cpp: (WebCore::Path::createRoundedRectangle): (WebCore::Path::createRectangle): (WebCore::Path::createEllipse):
- platform/graphics/mac/ColorMac.mm: (WebCore::nsColor):
- platform/graphics/mac/IconMac.mm: (WebCore::Icon::paint):
- platform/graphics/svg/cg/CgSupport.cpp: (WebCore::applyStrokeStyleToContext):
- platform/graphics/svg/cg/SVGPaintServerGradientCg.cpp: (WebCore::CGShadingRefForRadialGradient): (WebCore::SVGPaintServerGradient::updateQuartzGradientStopsCache): (WebCore::SVGPaintServerGradient::handleBoundingBoxModeAndGradientTransformation):
- platform/graphics/svg/cg/SVGResourceMaskerCg.mm: (WebCore::applyLuminanceToAlphaFilter): (WebCore::applyExpandAlphatoGrayscaleFilter): (WebCore::transformImageIntoGrayscaleMask):
- platform/mac/WebCoreTextRenderer.mm: (WebCoreDrawTextAtPoint):
- rendering/RenderPath.cpp: (WebCore::RenderPath::mapAbsolutePointToLocal):
- rendering/RenderSVGContainer.cpp: (WebCore::RenderSVGContainer::calcViewport):
- rendering/RenderSVGImage.cpp: (WebCore::RenderSVGImage::nodeAtPoint):
- rendering/RenderSVGText.cpp: (WebCore::RenderSVGText::relativeBBox):
- 10:55 AM Changeset in webkit [23947] by
-
- 3 edits in trunk/WebCore
Reviewed by Adam.
<rdar://problem/5261523>
Crash playing MP11 on cnbc.com
The WMP Netscape plugin still creates a window even when windowless mode is turned on. Work around this by
always removing the "windowlessvideo" parameter before passing it to the plugin.
According to http://msdn2.microsoft.com/en-us/library/bb249373.aspx, "The windowlessVideo property is not
supported for Netscape Navigator. Setting a value for this property in Navigator may yield unexpected results."
- plugins/win/PluginViewWin.cpp: (WebCore::PluginViewWndProc): (WebCore::PluginViewWin::paint): (WebCore::PluginViewWin::invalidateRect): (WebCore::PluginViewWin::determineQuirks): (WebCore::PluginViewWin::setParameters): (WebCore::PluginViewWin::PluginViewWin): (WebCore::PluginViewWin::init):
- plugins/win/PluginViewWin.h: (WebCore::):
- 9:21 AM Changeset in webkit [23946] by
-
- 4 edits in trunk/WebKit
2007-07-04 Mark Rowe <mrowe@apple.com>
Unreviewed 64-bit build fixes.
- WebCoreSupport/WebInspectorClient.mm: Let the compiler know that WebFrameView is a subclass of NSView.
- WebView/WebDocumentInternal.h: Remove our preprocessor macro once we're done with it.
- WebView/WebHTMLView.mm: (-[WebHTMLView markAllMatchesForText:caseSensitive:limit:]): Fix argument types.
- 8:29 AM Changeset in webkit [23945] by
-
- 2 edits in trunk/WebCore
Patch from Qing Zhao to fix sunken state improperly set.
- 6:42 AM Changeset in webkit [23944] by
-
- 4 edits4 adds in trunk
LayoutTests:
Reviewed by Maciej.
Test for REGRESSION: misplaced selection ring remains after link is no longer focused.
<rdar://problem/5205580>
- fast/repaint/focus-layers-expected.checksum: Added.
- fast/repaint/focus-layers-expected.png: Added.
- fast/repaint/focus-layers-expected.txt: Added.
- fast/repaint/focus-layers.html: Added.
WebCore:
Reviewed by Maciej.
REGRESSION: misplaced selection ring remains after link is no longer focused.
<rdar://problem/5205580>
Fix placement of selection ring when part of the ring is in a different layer.
- rendering/RenderFlow.cpp: (WebCore::RenderFlow::addFocusRingRects): Get coordinates right when moving to a different layer.
- rendering/RenderObject.cpp: (WebCore::RenderObject::setStyle): Don't reset state variables when not necessary. When repaint() was called at the end of setSyle() it would get repaint rects wrong in some cases.
- 6:31 AM Changeset in webkit [23943] by
-
- 2 edits in trunk/WebCore
Reviewed by Maciej.
Blind fix for CrashTracer: [USER] 25 crashes in Safari at com.apple.WebCore: WebCore::Frame::document const + 6
<rdar://problem/5263939>
No one has managed to reproduce this but it looks like null check is needed here. There are plausible ways
m_frame could be null for a live FrameView object.
- page/FrameView.cpp: (WebCore::FrameView::needsLayout):
- 5:58 AM Changeset in webkit [23942] by
-
- 2 edits in branches/feature-branch/LayoutTests
Correcting the pixel test result that was supposed to go in during r23849.