Timeline
Jul 20, 2008:
- 8:39 PM Changeset in webkit [35260] by
-
- 2 edits in trunk/WebCore
Touch file to force rebuild for vsprops change.
- WebCorePrefix.h:
- 8:38 PM Changeset in webkit [35259] by
-
- 2 edits in trunk/WebKitLibraries
Build fix.
- win/tools/vsprops/common.vsprops:
- 6:37 PM Changeset in webkit [35258] by
-
- 1 edit1 add in trunk/LayoutTests
Whoops, forgot to commit expected output for this test.
RS=Dan Bernstein
- 4:39 PM Changeset in webkit [35257] by
-
- 2 edits in trunk/WebCore
2008-07-20 Sam Weinig <sam@webkit.org>
Remove extra space Oliver Hunt left in.
- page/Console.cpp: (WebCore::Console::reportException): (WebCore::Console::reportCurrentException):
- 2:31 PM Changeset in webkit [35256] by
-
- 2 edits in trunk/WebCore
Bug 19757: Crash when an ondragstart handler hides the element
<https://bugs.webkit.org/show_bug.cgi?id=19757>
Reviewed by Dan Bernstein.
The solution to this is problem is just to null check the renderer
immediately before launching the system drag, and terminate the
drag if the renderer is gone.
- 1:48 PM Changeset in webkit [35255] by
-
- 6 edits4 adds in trunk
Reviewed by Oliver.
Fixes: https://bugs.webkit.org/show_bug.cgi?id=12171
Remove manual SVG property <-> XML attribute synchronization in SVGPolyElement.
Added svg/custom/poly-points-attribute-changes.svg (testcase from Rob)
- 1:40 PM Changeset in webkit [35254] by
-
- 6 edits in trunk/WebCore
Reviewed by Oliver.
Cleanup JSSVGPODTypeWrapper code.
- 5:43 AM Changeset in webkit [35253] by
-
- 28 edits2 adds in trunk
Bug 15979: Console logs in a database callback lose line number information
<https://bugs.webkit.org/show_bug.cgi?id=15979>
Reviewed by Mark Rowe
The problem was that there were multiple versions of the logic to
log an exception to the console, many of which were incorrect. We
resolve this by making one single shared reportException method,
which handles the exceptions correctly.
This improves fidelity of callback errors, and ensures that
exceptions thrown in timer callbacks correctly report line numbers,
etc.
Test: fast/js/exceptions-thrown-in-callbacks.html
- 4:46 AM Changeset in webkit [35252] by
-
- 2 edits in trunk/WebCore
Rubber stamped by Oliver.
Another attempt to fix the win build.
- 2:24 AM Changeset in webkit [35251] by
-
- 2 edits in trunk/WebCore
Reviewed by David Kilzer.
Fix high CPU usage on testmyiphone.com.
- Made the logic for determining when to stop looking for meta charset more strainghtforward. Previously, this happened if a tag that's disallowed in HEAD was seen past the first 512 bytes. Now, the algorithm bails out at the boundary if we are lo longer in HEAD (i.e, an offending tag was seen at any point before).
- The above change made one of our regression tests fail, because it had its <meta> declaration past the 512 byte boundary. Fixed it by raising the boundary to 1024 bytes.
- Made the algorithm bail out quickly if a comment that's not in HEAD crosses the boundary.
- Moved a check for XML content type out of the loop.
- loader/TextResourceDecoder.cpp: (WebCore::TextResourceDecoder::checkForHeadCharset):
- 12:05 AM FAQ edited by
- (diff)
Jul 19, 2008:
- 10:29 PM Changeset in webkit [35250] by
-
- 8 edits in trunk
Bug 20104: Exception in tables/mozilla_expected_failures/bugs/bug92868_1.html includes the equals operator in the quoted expression
<https://bugs.webkit.org/show_bug.cgi?id=20104>
Reviewed by Cameron Zwarich
To make this correct we make the dot and bracket assign nodes emit the information to indicate
the failure range is the dot/bracket accessor.
- 3:05 PM Changeset in webkit [35249] by
-
- 2 edits in trunk/WebCore
Attempt to fix windows build.
- 8:46 AM Changeset in webkit [35248] by
-
- 116 edits1 add in trunk/WebCore
Reviewed by Oliver & parts by Eric.
Fixes: https://bugs.webkit.org/show_bug.cgi?id=20051
Rewrite animated property concept without heavy macro usage, replace by a templatified solution.
Fewer virtual function calls, no more usage of the tear-off's within internal code (synchronization needed it before.)