Timeline
Sep 13, 2009:
- 10:47 PM Changeset in webkit [48352] by
-
- 1 edit1 add in trunk/WebCore
wx build fix, file was missed during TLS.cpp removal.
- 7:29 PM Changeset in webkit [48351] by
-
- 2 edits in trunk/WebCore
Web Inspector: Add "New Style Rule" to the localizedStrings
https://bugs.webkit.org/show_bug.cgi?id=29237
Patch by Anthony Ricaud <rik@webkit.org> on 2009-09-13
Reviewed by Oliver Hunt.
- English.lproj/localizedStrings.js:
- 7:03 PM Changeset in webkit [48350] by
-
- 2 edits in trunk/WebKitTools
Fix typo accidently landed in last commit.
- 6:52 PM Changeset in webkit [48349] by
-
- 2 edits in trunk/WebKitTools
wx build fix, error out if using the wrong Python.
- 6:32 PM Changeset in webkit [48348] by
-
- 3 edits in trunk/WebKit/wx
Reviewed by Kevin Ollivier.
Allow a way to set the cache policy via wx API.
https://bugs.webkit.org/show_bug.cgi?id=29200
- 6:20 PM Changeset in webkit [48347] by
-
- 5 edits in trunk/WebKit/wx
Reviewed by Kevin Ollivier.
Allow the user to query Frame::shouldClose via wx API.
https://bugs.webkit.org/show_bug.cgi?id=29199
- 6:12 PM Changeset in webkit [48346] by
-
- 2 edits in trunk/WebKit/wx
Reviewed by Kevin Ollivier.
Fix mouse handling when the mouse leaves the window during mouse down.
https://bugs.webkit.org/show_bug.cgi?id=29198
- 6:04 PM Changeset in webkit [48345] by
-
- 3 edits in trunk/WebKit/wx
Reviewed by Kevin Ollivier.
Add support for console MessageLevel at wx API level.
https://bugs.webkit.org/show_bug.cgi?id=29197
- 5:34 PM Changeset in webkit [48344] by
-
- 2 edits in trunk/WebCore
Reviewed by Kevin Ollivier.
[wx] Implement filesystem functions.
- 3:45 AM Changeset in webkit [48343] by
-
- 2 edits in trunk/WebKitTools
2009-09-13 Xan Lopez <xlopez@igalia.com>
Build fix for GTK+ < 2.14.
Do not use gtk_widget_get_window, access the window directly
through the struct.
- DumpRenderTree/gtk/EventSender.cpp: (contextClickCallback): (mouseDownCallback): (mouseUpCallback): (mouseMoveToCallback): (keyDownCallback):
- 3:23 AM Changeset in webkit [48342] by
-
- 2 edits in trunk/WebKitTools
2009-09-13 Martin Robinson <martin.james.robinson@gmail.com>
Reviewed by Xan Lopez and Jan Alonzo.
[GTK] EventSender does not set 'window' property on synthesized GDK events
https://bugs.webkit.org/show_bug.cgi?id=29169
Set the window property on synthesized GDK events in the GTK+ EventSender.
- DumpRenderTree/gtk/EventSender.cpp: (contextClickCallback): (mouseDownCallback): (mouseUpCallback): (mouseMoveToCallback): (keyDownCallback):
- 12:14 AM Changeset in webkit [48341] by
-
- 3 edits in trunk/WebCore
wx build fixes for wx 2.9.
Sep 12, 2009:
- 8:24 PM Changeset in webkit [48340] by
-
- 3 edits in trunk/JavaScriptCore
Build fix for windows exports (again).
- 8:10 PM Changeset in webkit [48339] by
-
- 3 edits in trunk/JavaScriptCore
Build fix for windows exports
- 8:03 PM Changeset in webkit [48338] by
-
- 2 edits in trunk/JavaScriptCore
Correct fix for non-allinonefile builds
- 8:00 PM Changeset in webkit [48337] by
-
- 2 edits in trunk/JavaScriptCore
Fix non-allinonefile builds
- 7:44 PM Changeset in webkit [48336] by
-
- 41 edits3 adds in trunk
[ES5] Implement Object.keys
https://bugs.webkit.org/show_bug.cgi?id=29170
Reviewed by Maciej Stachowiak.
This patch basically requires two separate steps, the first is to split getPropertyNames
into two functions -- getOwnPropertyNames and getPropertyNames, basically making them behave
in the same way as getOwnPropertySlot and getPropertySlot. In essence getOwnPropertyNames
produces the list of properties on an object excluding its prototype chain and getPropertyNames
just iterates the the object and its prototype chain calling getOwnPropertyNames at each level.
- 6:17 PM Changeset in webkit [48335] by
-
- 2 edits in trunk/WebKitTools
run-webkit-tests has a timeout value that is too low
https://bugs.webkit.org/show_bug.cgi?id=29223
Reviewed by Mark Rowe.
- Scripts/run-webkit-tests:
Changed timeout value to 20 seconds to avoid timing out too early.
- 12:11 PM Changeset in webkit [48334] by
-
- 6 edits2 adds in trunk
WebCore: Fix for https://bugs.webkit.org/show_bug.cgi?id=29219
Document.elementFromPoint() should take page scroll into consideration
Reviewed by Anders Carlsson.
Test: fast/dom/elementFromPoint-relative-to-viewport.html
- dom/Document.cpp:
(WebCore::Document::elementFromPoint):
(WebCore::Document::caretRangeFromPoint):
LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=29219
Document.elementFromPoint() should take page scroll into consideration
Reviewed by Anders Carlsson.
- fast/dom/elementFromPoint-relative-to-viewport-expected.txt: Added.
- fast/dom/elementFromPoint-relative-to-viewport.html: Added.
- fast/events/offsetX-offsetY.html: Change to use clientX/Y instead of pageX/Y.
- fast/forms/slider-transformed.html: Ditto.
- fast/forms/slider-zoomed.html: Ditto.
- 1:14 AM Changeset in webkit [48333] by
-
- 3 edits2 adds in trunk
WebCore: Fix for https://bugs.webkit.org/show_bug.cgi?id=29217
Document.caretRangeFromPoint should take the scroll offset into account before hit testing
Reviewed by Maciej Stachowiak.
In accordance with the CSSOM View Module spec, Document.caretRangeFromPoint should interpret
the point passed to it as relative to the viewport, not the document.
Test: fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport.html
- dom/Document.cpp:
(WebCore::Document::caretRangeFromPoint):
LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=29217
Document.caretRangeFromPoint should take the scroll offset into account before hit testing
Reviewed by Maciej Stachowiak.
- fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport-expected.txt: Added.
- fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport.html: Added.