Timeline
Dec 3, 2006:
- 4:16 PM Changeset in webkit [17994] by
-
- 2 edits in trunk/WebCore
2006-12-03 Mark Rowe <bdash@webkit.org>
Reviewed by Alexey.
http://bugs.webkit.org/show_bug.cgi?id=11730
Bug 11730: Meta HTTP Refresh that contains a fraction / decimal get ignored.
- dom/Document.cpp: (WebCore::Document::processHttpEquiv): Parse the refresh interval as a double rather than an integer.
- 8:29 AM Changeset in webkit [22607] by
-
- 2 edits in branches/WindowsMerge/WebKitWin
2006-12-02 Steve Falkenburg <sfalken@apple.com>
Reviewed by Ada.
<rdar://4853816> CFNetwork crash on Vista loading any SSL page
Change link order so secur32.dll is initialized prior to its
indirect use in code called by CoreGraphics DllMain.
To help avoid similar problems in the future, I reordered the
imported DLLs by level/dependency so things like CoreFoundation
is listed prior to CFNetwork and CoreGraphics.
- WebKit.vcproj/WebKit.vcproj:
- 5:36 AM Changeset in webkit [17993] by
-
- 13 edits16 adds in trunk
Reviewed by Oliver.
Fix following bugs:
http://bugs.webkit.org/show_bug.cgi?id=11734
http://bugs.webkit.org/show_bug.cgi?id=11685
SVGPoint/SVGRect/SVGNumber were missing put() support.
SVGPoint.matrixTransform() was missing.
- 4:19 AM Changeset in webkit [17992] by
-
- 2 edits1 move in trunk/WebCore
Reviewed by Dave.
Another missing piece in the platform/graphics move.
- 4:02 AM Changeset in webkit [17991] by
-
- 10 edits4 adds in trunk
Reviewed by Oliver.
http://bugs.webkit.org/show_bug.cgi?id=11667
SVG: method .getTransformToElement(elt) in SVGLocatable not implemented
Implement getTransformToElement functionality. Introduce virtual
baseclass SVGLocatable to allow one implementation of the functionality.
Finally cleanup some code.
- 3:55 AM Changeset in webkit [17990] by
-
- 3 edits2 moves in trunk/WebCore
Reviewed by Rob.
Move some files around, which have been forgotton in the platform/graphics move.
- 3:39 AM Changeset in webkit [17989] by
-
- 3 edits in trunk/WebCore
Reviewed by Mitz.
Fix non-svg build. (At least hope BuildBot doesn't moan anymore :-)
- 1:07 AM Changeset in webkit [17988] by
-
- 4 edits in trunk/LayoutTests
Reviewed by Mitz.
This test used to be a pixel one, but without pixel results provided - converted to text.
- http/tests/xmlhttprequest/frame-load-cancelled-abort-expected.txt:
- http/tests/xmlhttprequest/frame-load-cancelled-abort.html:
- http/tests/xmlhttprequest/resources/frame-load-to-cancel.html: Added a parameter to send() to make the test work in Firefox.
Dec 2, 2006:
- 6:48 AM Changeset in webkit [17987] by
-
- 2 edits in trunk/WebCore
Reviewed by Tim Omernick
Removed a couple of big chunks of duplicated code from the spelling and grammar stuff by merging
the find-next-instance functions with the mark-all-instances functions.
- bridge/mac/FrameMac.mm: (WebCore::findFirstMisspellingInRange): added markAll parameter, and reworked loop so that if markAll parameter is true, this function loops through the entire range and marks each misspelling (WebCore::findFirstGrammarDetailInRange): extracted from findFirstBadGrammarInRange; loops through the potentially-multiple details in a given ungrammatical phrase (e.g., multiple grammar errors in one sentence). Has a markAll parameter akin to the one in findFirstMisspellingInRange. (WebCore::findFirstBadGrammarInRange): added markAll parameter like the one in findFirstMisspellingInRange, and extracted findFirstGrammarDetailInRange (WebCore::FrameMac::advanceToNextMisspelling): pass "false" for new markAll parameters (WebCore::markAllMisspellingsInRange): now just calls findFirstMisspellingInRange with markAll = true, thus removing a big hunk of duplicated code (WebCore::markAllBadGrammarInRange): now just calls findFirstBadGrammarInRange with markAll = true, thus removing a big hunk of duplicated code
- 6:02 AM Changeset in webkit [17986] by
-
- 3 edits4 adds in trunk
2006-12-02 Mitz Pettel <mitz@webkit.org>
Reviewed by Hyatt.
- fix http://bugs.webkit.org/show_bug.cgi?id=11672 REGRESSION (r17068): Repro crash due to painting without layout
Test: fast/dynamic/containing-block-change.html
- rendering/RenderObject.cpp: (WebCore::RenderObject::setStyle): Changed the logic used to find absolutely positioned descendant's current containing block to match the changes made to containingBlock() in the fix for bug 9347.
- 5:41 AM Changeset in webkit [17985] by
-
- 3 edits in trunk/WebCore
2006-12-02 MorganL <morganl.webkit@yahoo.com>
Reviewed by Darin.
http://bugs.webkit.org/show_bug.cgi?id=11709
DeprecatedString::format is broken on Windows
Use _vscprintf on Windows to compute the length of the buffer that
vsnprintf would need.
- platform/DeprecatedString.cpp: (WebCore::DeprecatedString::format):
- platform/String.cpp: (WebCore::String::format):