blob: 6d0f7f9c05a1c8e51601b4dee07208538744b1af [file] [log] [blame]
simon.fraser@apple.com71b2cc02008-11-12 20:22:28 +000012008-11-12 Simon Fraser <simon.fraser@apple.com>
2
3 Reviewed by Dave Hyatt
4
5 https://bugs.webkit.org/show_bug.cgi?id=17840
simon.fraser@apple.coma9261be2008-11-12 20:28:44 +00006 Patch 2
7
8 Code cleanup in RenderBox::computeAbsoluteRepaintRect().
9
10 * rendering/RenderBox.cpp:
11 (WebCore::RenderBox::computeAbsoluteRepaintRect):
12
132008-11-12 Simon Fraser <simon.fraser@apple.com>
14
15 Reviewed by Dave Hyatt
16
17 https://bugs.webkit.org/show_bug.cgi?id=17840
simon.fraser@apple.com71b2cc02008-11-12 20:22:28 +000018
19 Fix repainting when the transform on a positioned element changes.
20 In computeAbsoluteRepaintRect(), add the offsets due to relative positioning,
21 and being in a positioned container after applying the transform to the local
22 rect.
23
24 Tests: fast/repaint/transform-absolute-in-positioned-container.html
25 fast/repaint/transform-relative-position.html
26
27 * rendering/RenderBox.cpp:
28 (WebCore::RenderBox::computeAbsoluteRepaintRect):
29
justin.garcia@apple.com7e95c7b2008-11-12 20:08:06 +0000302008-11-12 Justin Garcia <justin.garcia@apple.com>
31
32 Reviewed by Beth Dakin.
33
34 <rdar://problem/5495723> Selecting and deleting quoted text quotes other text
35 <rdar://problem/4775313> Deleting lines from the bottom of a messages leaves the last blank line quoted
36
37 We don't want to merge into a block if it will mean changing the quote level of content after deleting
38 selections that contain a whole number paragraphs plus a line break, since it is unclear to most users
39 that such a selection actually ends at the start of the next paragraph. Instead we want to completely
40 remove the selected paragraph(s) and all evidence of the first one's quote level. This matches TextEdit behavior
41 for indented paragraphs.
42
43 * editing/DeleteSelectionCommand.cpp:
44 (WebCore::DeleteSelectionCommand::initializePositionData): For the selections described above, do not
45 try to merge after the deletion. Instead try and prune the start block or blocks if they've been emptied
46 so that we remove evidence of the deleted paragraphs' quote level.
47 (WebCore::DeleteSelectionCommand::mergeParagraphs): Try and prune the start block(s) if necessary. Also
48 make sure that the caret is placed correctly so that it ends up on the same line that the deleted selection
49 started on, instead of one higher.
50 * editing/DeleteSelectionCommand.h:
51 * editing/htmlediting.cpp:
52 (WebCore::numEnclosingMailBlockquotes): Added.
53 * editing/htmlediting.h:
54
vestbo@webkit.org5c7d1b42008-11-12 10:44:55 +0000552008-11-10 Tor Arne Vestbø <tavestbo@trolltech.com>
56
57 Reviewed by Simon Hausmann.
58
vestbo@webkit.orgb3e75172008-11-12 10:51:27 +000059 Move _web_encodingForResource from WebKit into WebCore and change return type
60
61 This change is needed to implement NSAPI in WebCore for Mac, see:
62
63 https://bugs.webkit.org/show_bug.cgi?id=21427
64
65 * WebCore.base.exp:
66 * platform/mac/WebCoreNSStringExtras.h:
67 * platform/mac/WebCoreNSStringExtras.mm:
68 (stringEncodingForResource):
69
702008-11-10 Tor Arne Vestbø <tavestbo@trolltech.com>
71
72 Reviewed by Simon Hausmann.
73
vestbo@webkit.org5c7d1b42008-11-12 10:44:55 +000074 Moved the implementation of _webkit_isCaseInsensitiveEqualToString to
75 WebCore's WebCoreNSStringExtras as _stringIsCaseInsensitiveEqualToString.
76
77 This change is needed to implement NSAPI in WebCore for Mac, see:
78
79 https://bugs.webkit.org/show_bug.cgi?id=21427
80
81 * WebCore.base.exp:
82 * platform/mac/WebCoreNSStringExtras.h:
83 * platform/mac/WebCoreNSStringExtras.mm:
84 (stringIsCaseInsensitiveEqualToString):
85
slewis@apple.com417d6872008-11-12 03:30:12 +0000862008-11-11 Stephanie <slewis@apple.com>
87
88 Reviewed by Dan Bernstein.
89
90 Null check image data before setting it as image source.
91
92 Test: fast/images/image-empty-data.html
93
94 * platform/graphics/BitmapImage.cpp:
95 (WebCore::BitmapImage::destroyDecodedData):
96
adele@apple.com0deea562008-11-12 03:09:38 +0000972008-11-11 Adele Peterson <adele@apple.com>
98
99 Reviewed by Tim Hatcher.
100
101 Remove ifdef so future OS versions can use the new delegate method.
102
103 * platform/network/mac/ResourceHandleMac.mm: (WebCore::ResourceHandle::didSendBodyDataDelegateExists):
104
eric@webkit.org683713f2008-11-12 01:53:37 +00001052008-11-11 Eric Seidel <eric@webkit.org>
106
107 Reviewed by Antti Koivisto and Sam Weinig.
108
109 Clean up HTMLTokenizer a litle
110 https://bugs.webkit.org/show_bug.cgi?id=22188
111
112 Rename pendingScripts to m_pendingScripts
113 Rename scriptNode to m_scriptNode make the type specific
114 Rename pendingSrc to m_pendingSrc
115 Rename currentPrependingSrc to m_currentPrependingSrc
116 Rename noMoreData to m_noMoreData and cBuffer to m_cBuffer
117 Remove long-since-dead kdDebug and qDebug calls
118 Rename brokenComments to m_brokenComments
119 Remove HTMLTokenizer includes and document the rest
120 Rename src to m_src
121 Rename parser to m_parser and make it an OwnPtr
122 Rename inWrite to m_inWrite and jsProxy to scriptController
123 Rename brokenServer to m_brokenServer
124 Rename buffer to m_buffer and dest to m_dest
125 Rename size to m_bufferSize
126 Rename attrName to m_attrName
127 Rename searchStopper to m_searchStopper and searchStopperLen to m_searchStopperLen
128 Rename scriptCode* to m_scriptCode* and change scriptCodeMax to m_scriptCodeCapacity
129 Rename scriptStartLineno to m_currentScriptTagStartLineNumber and tagStartLineno to m_currentTagStartLineNumber
130 Rename scriptSrc to m_scriptTagSrcAttrValue and scriptSrcCharset to m_scriptTagCharsetAttrValue -- a bit unwieldy, but more precise
131 Rename flat to selfClosingTag
132 Rename currToken to m_currentToken
133
134 * css/CSSParser.cpp:
135 * dom/XMLTokenizer.cpp:
136 * dom/XMLTokenizerLibxml2.cpp:
137 * html/HTMLDocument.cpp:
138 * html/HTMLElement.cpp:
139 * html/HTMLFormControlElement.cpp:
140 * html/HTMLParser.h:
141 * html/HTMLTokenizer.cpp:
142 (WebCore::Token::addAttribute):
143 (WebCore::HTMLTokenizer::HTMLTokenizer):
144 (WebCore::HTMLTokenizer::reset):
145 (WebCore::HTMLTokenizer::begin):
146 (WebCore::HTMLTokenizer::processListing):
147 (WebCore::HTMLTokenizer::parseSpecial):
148 (WebCore::HTMLTokenizer::scriptHandler):
149 (WebCore::HTMLTokenizer::scriptExecution):
150 (WebCore::HTMLTokenizer::parseComment):
151 (WebCore::HTMLTokenizer::parseServer):
152 (WebCore::HTMLTokenizer::parseProcessingInstruction):
153 (WebCore::HTMLTokenizer::parseText):
154 (WebCore::HTMLTokenizer::parseEntity):
155 (WebCore::HTMLTokenizer::parseTag):
156 (WebCore::HTMLTokenizer::write):
157 (WebCore::HTMLTokenizer::processingData):
158 (WebCore::HTMLTokenizer::end):
159 (WebCore::HTMLTokenizer::finish):
160 (WebCore::HTMLTokenizer::processToken):
161 (WebCore::HTMLTokenizer::processDoctypeToken):
162 (WebCore::HTMLTokenizer::~HTMLTokenizer):
163 (WebCore::HTMLTokenizer::enlargeBuffer):
164 (WebCore::HTMLTokenizer::enlargeScriptBuffer):
165 (WebCore::HTMLTokenizer::notifyFinished):
166 (WebCore::HTMLTokenizer::setSrc):
167 * html/HTMLTokenizer.h:
168 (WebCore::Token::Token):
169 (WebCore::Token::reset):
170 (WebCore::HTMLTokenizer::processingContentWrittenByScript):
171 (WebCore::HTMLTokenizer::htmlParser):
172 (WebCore::HTMLTokenizer::checkBuffer):
173 (WebCore::HTMLTokenizer::checkScriptBuffer):
174 * html/HTMLViewSourceDocument.h:
175 * rendering/RenderBlock.cpp:
176 (WebCore::RenderBlock::leftRelOffset):
177 (WebCore::RenderBlock::rightRelOffset):
178 (WebCore::RenderBlock::lineWidth):
179 * xml/XSLTProcessor.cpp:
180
weinig@apple.comc60b5af2008-11-12 00:28:57 +00001812008-11-11 Sam Weinig <sam@webkit.org>
182
183 Reviewed by Dan Bernstein.
184
185 Fix for https://bugs.webkit.org/show_bug.cgi?id=22189
186 Track CachedScript decoded data
187
188 We now track the decoded size of CachedScripts in the Cache allowing
189 them to accounted for when deciding when to evict data. The decoded
190 data itself can be evicted when Cache pressure gets high enough through
191 CachedScript::destroyDecodedData.
192
193 * loader/CachedResource.h:
194 (WebCore::CachedResource::allClientsRemoved):
195 (WebCore::CachedResource::destroyDecodedData):
196 * loader/CachedScript.cpp:
197 (WebCore::CachedScript::script):
198 (WebCore::CachedScript::data):
199 (WebCore::CachedScript::destroyDecodedData):
200 * loader/CachedScript.h:
201
cwzwarich@webkit.org74fd1332008-11-11 23:39:15 +00002022008-11-11 Cameron Zwarich <zwarich@apple.com>
203
204 Reviewed by Geoff Garen.
205
206 Remove pointless dependencies on the now-deleted kjs directory and
207 mentions of it in comments that are no longer relevant.
208
209 * WebCore.pro:
210 * webcore-base.bkl:
211
mitz@apple.com44d57d42008-11-11 22:45:16 +00002122008-11-11 Dan Bernstein <mitz@apple.com>
213
214 Reviewed by Adam Roben.
215
216 WebCore part of adding a master volume control for media elements in a WebView
217
218 * WebCore.base.exp: Exported WebCore::Page::setMediaVolume().
219 * dom/Document.cpp:
220 (WebCore::Document::mediaVolumeDidChange): Added. Called by the Page
221 when the media volume is changed.
222 (WebCore::Document::registerForMediaVolumeCallbacks): Added. Allows
223 elements to register for a callback when the media volume is changed.
224 (WebCore::Document::unregisterForMediaVolumeCallbacks): Added. Allows
225 elements to unregister for the callback.
226 * dom/Document.h:
227 * dom/Element.h:
228 (WebCore::Element::mediaVolumeDidChange): Added an empty implementation.
229 * html/HTMLMediaElement.cpp:
230 (WebCore::HTMLMediaElement::HTMLMediaElement): Added a call to
231 registerForMediaVolumeCallbacks().
232 (WebCore::HTMLMediaElement::~HTMLMediaElement): Added a call to
233 unregisterForMediaVolumeCallbacks().
234 (WebCore::HTMLMediaElement::updateVolume): Changed to multiply the
235 element's intrinsic volume by the master volume from the page.
236 (WebCore::HTMLMediaElement::mediaVolumeDidChange): Added. Calls
237 updateVolume().
238 * html/HTMLMediaElement.h:
239 * page/Page.cpp:
240 (WebCore::Page::Page): Initialize m_mediaVolume to 1.
241 (WebCore::Page::setMediaVolume): Added. Calls mediaVolumeDidChange() on
242 every document in the page when the master volume changes.
243 * page/Page.h:
244 (WebCore::Page::mediaVolume): Added this getter.
245
hyatt@apple.com312f7072008-11-11 20:43:57 +00002462008-11-11 David Hyatt <hyatt@apple.com>
247
248 https://bugs.webkit.org/show_bug.cgi?id=22182
249
250 Fix problems with scrollbars when the OS setting for clicks in the track jumping the thumb to that location
251 is turned on. Make sure to only jump the thumb if the click happens in the track. Also fix some math
252 errors when jumping the thumb that cause dragging after the jump to incorrectly jump the thumb again.
253
254 Reviewed by Adele
255
256 * platform/Scrollbar.cpp:
257 (WebCore::Scrollbar::mouseDown):
258
bdakin@apple.comc636ec32008-11-11 19:58:31 +00002592008-11-11 Beth Dakin <bdakin@apple.com>
260
261 Reviewed by Darin Adler.
262
263 Fix for <rdar://problem/5089327> Too much indentation when pasting
264 quoted paragraphs
265
266 This patch re-addresses pasting blockquotes into blockquotes. It
267 backs out most of revision 38273. 38273 fixed the bug by inserting
268 the pasted content as a sibling blockquote node to the pre-existing
269 blockquote node. The problem with that is that by default,
270 blockquotes have a giant margin, so visually, this can be weird.
271 This patch instead inserts the pasted content as siblings of the
272 the content already inside the outer blockquote, and then removes
273 the blockquote node from the pasted content itself, so that it
274 doesn't nest itself into the outer blockquote.
275 * editing/ReplaceSelectionCommand.cpp:
276 (WebCore::ReplaceSelectionCommand::doApply):
277
278 Move contains() from Element to Node since there is nothing
279 Element-specific about it.
280 * dom/Element.cpp:
281 * dom/Element.h:
282 * dom/Node.cpp:
283 (WebCore::Node::contains):
284 * dom/Node.h:
285
hyatt@apple.com4d742b72008-11-11 19:50:18 +00002862008-11-11 David Hyatt <hyatt@apple.com>
287
288 https://bugs.webkit.org/show_bug.cgi?id=17997
289
290 Stop using the new Leopard API tiling call for scaled tiles when drawing background images. The method
291 is buggy. Fall back to using the slower (and more correct) pattern tiling that Tiger still uses. This
292 is a Leopard-only workaround, since the API has been fixed on Snow Leopard.
293
294 Reviewed by John Sullivan
295
296 * platform/graphics/cg/ImageCG.cpp:
297 (WebCore::Image::drawPattern):
298
hyatt@apple.com16a00b92008-11-11 19:18:26 +00002992008-11-10 David Hyatt <hyatt@apple.com>
300
301 Disable the Aqua look for menu lists when full page zoom is turned on. Because the control is buggy
302 when scaling and because it's impossible to paint into an offscreen bitmap without completely rewriting
303 how we draw the control on Mac, our only real option for now is to just switch to our styled look when zoomed.
304
305 Reviewed by Adam Roben
306
307 * rendering/RenderThemeMac.mm:
308 (WebCore::RenderThemeMac::isControlStyled):
309
darin@apple.com160b6112008-11-11 17:59:01 +00003102008-11-11 Darin Adler <darin@apple.com>
311
312 Reviewed by Dan Bernstein.
313
314 - https://bugs.webkit.org/show_bug.cgi?id=22160
315 speculative fix for <rdar://problem/5995450> Nil deref because nextLinePosition
316 (previousLinePosition, too) uses a nil node
317
318 * editing/visible_units.cpp:
319 (WebCore::nextLinePosition): Use RenderObject::node instead of RenderObject::element
320 to check editingIgnoresContent. It makes sense to use the associated DOM node for
321 this, even in cases of anonymous content, and it avoids the case where element() can
322 be 0.
323 (WebCore::previousLinePosition): Ditto.
324
krit@webkit.org02511ad2008-11-11 17:40:54 +00003252008-11-11 Dirk Schulze <vbs85@gmx.de>
326
327 Reviewed by Darin Adler.
328
329 Removed default: in applySpreadMethod. This causes the problems
330 in radial gradients. We don't need CAIRO_EXTEND_NONE in SVG, Canvas
331 or CSS.
332
333 * platform/graphics/cairo/GraphicsContextCairo.cpp:
334 (WebCore::applySpreadMethod):
335
vestbo@webkit.orgc0e688b2008-11-11 13:32:01 +00003362008-11-11 Ariya Hidayat <ariya.hidayat@trolltech.com>
337
338 Reviewed by Tor Arne Vestbø.
339
340 Fix crash when rendering the file chooser.
341 Also proper implementation for multi-selected files.
342
343 * platform/qt/FileChooserQt.cpp:
344 (WebCore::FileChooser::basenameForWidth):
345
krit@webkit.orgbf7eb1c2008-11-11 11:05:49 +00003462008-11-11 Dirk Schulze <vbs85@gmx.de>
347
348 Reviewed by Oliver Hunt.
349
350 PatternCairo needs to invert the pattern matrix because
351 of transformation from user space to pattern space.
352 Give a identity matrix to pattern for Qt and Cairo. Because the
353 context is transformed already.
354
355 [CAIRO][QT] Canvas transformations applied twice to Patterns
356 https://bugs.webkit.org/show_bug.cgi?id=21555
357
358 * platform/graphics/cairo/GraphicsContextCairo.cpp:
359 (WebCore::GraphicsContext::fillPath):
360 (WebCore::GraphicsContext::strokePath):
361 * platform/graphics/cairo/PatternCairo.cpp:
362 (WebCore::Pattern::createPlatformPattern):
363 * platform/graphics/qt/GraphicsContextQt.cpp:
364 (WebCore::GraphicsContext::strokePath):
365 (WebCore::GraphicsContext::fillRect):
366
slewis@apple.com2583a3f2008-11-11 07:06:41 +00003672008-11-10 Stephanie Lewis <slewis@apple.com>
368
369 Reviewed by Dan Bernstein.
370
371 Clear the image source cache even if we haven't decoded any of the image data.
372 We use the image source cache when calculating layout.
373
374 * loader/Cache.cpp:
375 (WebCore::Cache::pruneDeadResources):
376 * platform/graphics/BitmapImage.cpp:
377 (WebCore::BitmapImage::destroyDecodedData):
378
aroben@apple.com4488a6a2008-11-10 22:12:57 +00003792008-11-10 Adam Roben <aroben@apple.com>
380
381 Fix Bug 22161: Assertion failure in RenderThemeWin::systemColor when
382 loading microsoftpdc.com
383
384 <https://bugs.webkit.org/show_bug.cgi?id=22161>
385
386 Reviewed by Dan Bernstein.
387
388 Test: fast/css/outline-invert-assertion.html
389
390 * rendering/RenderThemeWin.cpp:
391 (WebCore::RenderThemeWin::systemColor): If we can't determine a good
392 Win32 system color to use, defer to RenderTheme instead of asserting.
393 This matches what RenderThemeMac does.
394
bdakin@apple.com6eb86992008-11-10 21:51:22 +00003952008-11-10 Justin Garcia <justin.garcia@apple.com>
396
397 Reviewed by Beth Dakin.
398
399 <rdar://problem/4037481> REGRESSION (Mail): pasting quoted text
400 into quoted text yields double-quoting
401
402 Don't nest inserted content in Mail blockquotes. Perform a
403 BreakBlockquoteCommand if we're in
404 one and insert the incoming fragment between the split blockquotes.
405
406 * editing/ReplaceSelectionCommand.cpp:
407 (WebCore::ReplaceSelectionCommand::shouldMerge): Renamed from ->
408 source and to -> destination.
409 (WebCore::ReplaceSelectionCommand::doApply):
410
aroben@apple.com1c0d03e2008-11-10 18:38:56 +00004112008-11-10 Adam Roben <aroben@apple.com>
412
413 Fix Bug 22158: Would like to turn on WebCore logging channels via an
414 environment variable
415
416 <https://bugs.webkit.org/show_bug.cgi?id=22158>
417
418 Logging channels can now be enabled by setting the WebCoreLogLevel
419 environment variable to a hexadecimal number.
420
421 Reviewed by Anders Carlsson.
422
423 * WebCore.vcproj/WebCore.vcproj: Added LoggingWin.cpp.
424 * platform/win/LoggingWin.cpp: Copied from WebCore/platform/mac/LoggingMac.mm.
425 (WebCore::initializeWithUserDefault): Read in the WebCoreLogLevel
426 environment variable, parse its value as a hexadecimal number, and
427 turn the channel on/off based on whether the mask bit is set.
428 (WebCore::InitializeLoggingChannelsIfNecessary): Initialize each
429 logging channel in turn.
430
darin@apple.comd46ba6d2008-11-10 17:03:36 +00004312008-11-10 Darin Adler <darin@apple.com>
432
433 Reviewed by Adam Roben.
434
darin@apple.com8bf1fe02008-11-10 17:06:04 +0000435 - fix https://bugs.webkit.org/show_bug.cgi?id=22103
436 Changing fonts in preferences does not immediately update WebViews
437
438 This broke when the meaning of FrameView::invalidate changed.
439 I changed setNeedsReapplyStyles to no longer depend on invalidate.
440
441 * dom/Document.cpp: (WebCore::Document::shouldScheduleLayout):
442 Removed the part of this function that duplicated what's already in
443 FrameView::needsLayout, since the copy here left out a few key things.
444 For example, it didn't handle the fact that "needs reapply styles"
445 counts as needing layout.
446
447 * page/Frame.cpp: (WebCore::Frame::setNeedsReapplyStyles): This called
448 FrameView::invalidate before. There were two things wrong with that.
449 1) It requested that the entire view repaint even if the style change
450 didn't necessitate that. 2) FrameView::invalidate no longer causes any
451 repainting at all in certain cases, because of Hyatt's changes to how
452 widgets and the host window are involved in the repainting process.
453 So call FrameView::scheduleRelayout instead, which is more precisely
454 what we want and need here.
455
456 * page/FrameView.cpp:
457 (WebCore::FrameView::scheduleRelayout): Add a call to needsLayout here
458 so that Document::shouldScheduleLayout doesn't have to replicate the
459 logic that's in needsLayout and can instead rely on the fact that it
460 was already called.
461 (WebCore::FrameView::needsLayout): Tweaked the comments and formatting
462 in this function.
463
4642008-11-10 Darin Adler <darin@apple.com>
465
466 Reviewed by Adam Roben.
467
darin@apple.comd46ba6d2008-11-10 17:03:36 +0000468 - speculative fix for <rdar://problem/5557243> crashes in Safari at
469 WebCore::HTMLSelectElement::updateListBoxSelection + 280
470
471 * html/HTMLSelectElement.cpp:
472 (WebCore::HTMLSelectElement::updateListBoxSelection):
473 Check index against size of vector before indexing into the vector.
474
hausmann@webkit.org55cf27a32008-11-10 11:45:48 +00004752008-11-10 Tom Cooksey <thomas.cooksey@trolltech.com>
476
477 Reviewed by Tor Arne Vestbø.
478
479 Fix QtWebkit build failure on arm.
480
481 pen.widthF() is a qreal, which means it's a float on arm.
482
483 * platform/graphics/qt/GraphicsContextQt.cpp:
484 (WebCore::GraphicsContext::setLineDash):
485
hausmann@webkit.orge6d9d172008-11-10 11:45:21 +00004862008-11-10 Morten Sørvig <msorvig@trolltech.com>
487
488 Reviewed by Simon Hausmann.
489
490 Improve mouse wheel scolling on Qt/Cocoa.
491 Cocoa differs from Carbon (and other platforms I think) in that the
492 mouse wheel events we get have a much higher acceleration factor.
493
494 This submit switches over to scroll-per-pixel from scroll-per-line
495 for most of our scrolling views. This matches the native views
496 and works well with the increased acceleration.
497
498 * platform/qt/WheelEventQt.cpp:
499
cwzwarich@webkit.org40b4b842008-11-10 01:19:13 +00005002008-11-09 Cameron Zwarich <zwarich@apple.com>
501
502 Reviewed by Darin Adler.
503
504 Bug 19541: Null pointer in showModalDialog()
505 <https://bugs.webkit.org/show_bug.cgi?id=19541>
506
507 Add null frame->page() checks to JSDOMWindowBase::canShowModalDialog()
508 and JSDOMWindowBase::canShowModalDialogNow()C
509
510 * bindings/js/JSDOMWindowBase.cpp:
511 (WebCore::canShowModalDialog):
512 (WebCore::canShowModalDialogNow):
513
darin@apple.com4086a5b2008-11-10 00:22:18 +00005142008-11-09 Darin Adler <darin@apple.com>
515
516 - try to fix Windows build
517
518 * platform/graphics/Color.cpp: For some reason MSVC doesn't follow the rules
519 about needed a separate definition for static const integer data members.
520 Until I get to the bottom of this, put the definitions inside an ifdef.
521
ddkilzer@apple.com8d878632008-11-09 19:50:37 +00005222008-11-09 David Kilzer <ddkilzer@apple.com>
523
524 BUILD FIX: Qt build broke after r38235.
525
526 Added HAVE(ACCESSIBILITY) header guards to platform implementation
527 source files.
528
529 * page/gtk/AccessibilityObjectAtk.cpp: Added HAVE(ACCESSIBILITY)
530 guards.
531 * page/gtk/AccessibilityObjectWrapperAtk.cpp: Ditto.
532 * page/qt/AccessibilityObjectQt.cpp: Ditto.
533 * page/win/AccessibilityObjectWin.cpp: Ditto.
534 * page/wx/AccessibilityObjectWx.cpp: Ditto.
535
ap@webkit.org4f28dd52008-11-09 19:08:07 +00005362008-11-09 Alexey Proskuryakov <ap@webkit.org>
537
538 Reviewed by Darin Adler.
539
540 https://bugs.webkit.org/show_bug.cgi?id=22104
541 Javascript URL percent encoding/decoding broken by some characters
542
543 Test: fast/loader/javascript-url-encoding-2.html
544
545 * platform/KURL.cpp: (WebCore::encodeRelativeString): Don't try to break down javascript URLs.
546
darin@apple.comaa0c0fd2008-11-09 18:20:53 +00005472008-11-09 Holger Hans Peter Freyther <zecke@selfish.org>
548
549 Reviewed and tweaked by Darin Adler.
550
551 * platform/graphics/Color.cpp: Added definitions for the static data members
552 in this class. Static data members need a definition, even when they are the
553 simple integer constant kind that can be initialized in the header.
554
antti@apple.com58f7c692008-11-09 04:11:26 +00005552008-11-08 Antti Koivisto <antti@apple.com>
556
557 Reviewed by Sam Weinig.
558
559 Fix https://bugs.webkit.org/show_bug.cgi?id=22141
560 REGRESSION: Safari error page is not fully styled when loaded from cache
561
562 Reset text decoder on flush so it does not pass through the BOM when it is reused.
563
564 Test: fast/encoding/css-cached-bom.html
565
566 * loader/TextResourceDecoder.cpp:
567 (WebCore::TextResourceDecoder::flush):
568
kevino@webkit.orgdbcd4ad2008-11-09 02:35:45 +00005692008-11-08 Kevin Ollivier <kevino@theolliviers.com>
kevino@webkit.org2cba33b2008-11-09 03:14:07 +0000570
571 Reviewed by Mark Rowe.
572
573 Send URL errors to stderr rather than stdout. While debugging wx DumpRenderTree,
574 it was causing these errors to end up in the page's text representation.
575
576 * platform/network/curl/ResourceHandleManager.cpp:
577 (WebCore::ResourceHandleManager::downloadTimerCallback):
578
5792008-11-08 Kevin Ollivier <kevino@theolliviers.com>
kevino@webkit.orgdbcd4ad2008-11-09 02:35:45 +0000580
581 wx build fixes after addition of JSCore parser and bycompiler dirs.
582
583 * webcore-base.bkl:
584 * webcore-wx.bkl:
585
simon.fraser@apple.com1839efc2008-11-09 01:09:14 +00005862008-11-08 Simon Fraser <simon.fraser@apple.com>
587
588 Reviewed by Dan Bernstein
589
590 https://bugs.webkit.org/show_bug.cgi?id=21906
591
592 Override addFocusRingRects() in RenderTextControl to avoid
593 the RenderFlow behavior of recursing on descendent renderers.
594 RenderTextControl should only ever need a simple focus rect.
595
596 This fixes focus ring issues with transforms on text controls.
597
598 Test: fast/transforms/transformed-focused-text-input.html
599
600 * rendering/RenderTextControl.cpp:
601 (WebCore::RenderTextControl::addFocusRingRects):
602 * rendering/RenderTextControl.h:
603
timothy@apple.comcded56b2008-11-09 00:33:06 +00006042008-11-08 Dimitri Dupuis-Latour <dupuislatour@apple.com>
605
606 Make sure the icon thumbnail width/height is at least 1px in
607 the Web Inspector's resource panel.
608
609 <rdar://problem/5988888>
610
611 Reviewed by Tim Hatcher.
612
613 * inspector/front-end/inspector.css:
614
ddkilzer@apple.come17e0dc2008-11-08 19:42:33 +00006152008-11-08 David Kilzer <ddkilzer@apple.com>
616
617 Bug 22137: PLATFORM(MAC) build broken with HAVE(ACCESSIBILITY) disabled
618
619 <https://bugs.webkit.org/show_bug.cgi?id=22137>
620
621 Reviewed by Darin Adler.
622
623 * page/AccessibilityObject.h:
624 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
625 Provide a default implementation when HAVE(ACCESSIBILITY) is false.
626 * page/mac/AXObjectCacheMac.mm: Added HAVE(ACCESSIBILITY) guard.
627 * page/mac/AccessibilityObjectMac.mm: Ditto.
628 * page/mac/AccessibilityObjectWrapper.mm: Ditto.
629
mitz@apple.comc278ea22008-11-08 19:12:23 +00006302008-11-08 Dan Bernstein <mitz@apple.com>
631
632 Reviewed by Darin Adler.
633
634 - WebCore part of adding WebPreferences for controlling databases and local storage
635
636 * WebCore.base.exp: Exported Settings::setDatabasesEnabled() and
637 Settings::setLocalStorageEnabled().
638 * page/DOMWindow.cpp:
639 (WebCore::DOMWindow::localStorage): Changed to return 0 if local storage
640 is disabled in settings.
641 (WebCore::DOMWindow::openDatabase): Changed to return 0 if databases
642 are disabled in settings.
643 * page/Settings.cpp:
644 (WebCore::Settings::Settings): Initialize m_databasesEnabled and
645 m_localStorageEnabled.
646 (WebCore::Settings::setDatabasesEnabled): Added.
647 (WebCore::Settings::setLocalStorageEnabled): Added.
648 * page/Settings.h:
649 (WebCore::Settings::databasesEnabled): Added.
650 (WebCore::Settings::localStorageEnabled): Added.
651
alp@webkit.org27e52902008-11-07 22:29:56 +00006522008-11-07 Alp Toker <alp@nuanti.com>
653
654 Fix build with bleeding edge GTK+ versions. GTK+ and other libraries
655 now require that only their top-level header file is included.
656
657 Patch tested and still builds fine with older GTK+ versions (back to
658 2.8).
659
660 Future WebKit GTK+ contributions are required to adhere to this
661 policy.
662
663 * platform/gtk/FileSystemGtk.cpp:
664 * platform/gtk/KeyEventGtk.cpp:
665 * platform/gtk/MouseEventGtk.cpp:
666 * platform/gtk/WheelEventGtk.cpp:
667 * platform/gtk/gtkdrawing.h:
668 * plugins/gtk/gtk2xtbin.c:
669 * plugins/gtk/gtk2xtbin.h:
670
andersca@apple.comafcd77f2008-11-07 21:34:02 +00006712008-11-07 Anders Carlsson <andersca@apple.com>
672
673 Reviewed by Kevin Decker
674
675 Explicitly initialize the NPDrawingModelCoreAnimation.
676
677 * bridge/npapi.h:
678
alp@webkit.org96f2d622008-11-07 19:35:47 +00006792008-11-07 Alp Toker <alp@nuanti.com>
680
681 autotools fix. Always use the configured perl binary (which may be
682 different to the one in $PATH) when generating sources.
683
684 * GNUmakefile.am:
685
simon.fraser@apple.comfeaef2e2008-11-07 19:17:08 +00006862008-11-07 Simon Fraser <simon.fraser@apple.com>
687
688 Reviewed by Dan Bernstein
689
690 https://bugs.webkit.org/show_bug.cgi?id=22122
691
692 Use a stack-based object to simplify the pushLayoutState/popLayoutState
693 code. LayoutStateMaintainer either pushes in the constructor, or allows
694 an explicit push() later. Both cases require an explicit pop().
695
696 * rendering/RenderBlock.cpp:
697 (WebCore::RenderBlock::layoutBlock):
698 (WebCore::RenderBlock::layoutOnlyPositionedObjects):
699 * rendering/RenderContainer.cpp:
700 (WebCore::RenderContainer::layout):
701 * rendering/RenderFlexibleBox.cpp:
702 (WebCore::RenderFlexibleBox::layoutBlock):
703 * rendering/RenderTable.cpp:
704 (WebCore::RenderTable::layout):
705 * rendering/RenderTableRow.cpp:
706 (WebCore::RenderTableRow::layout):
707 * rendering/RenderTableSection.cpp:
708 (WebCore::RenderTableSection::setCellWidths):
709 (WebCore::RenderTableSection::calcRowHeight):
710 (WebCore::RenderTableSection::layoutRows):
711 * rendering/RenderView.h:
712 (WebCore::LayoutStateMaintainer::LayoutStateMaintainer):
713 (WebCore::LayoutStateMaintainer::~LayoutStateMaintainer):
714 (WebCore::LayoutStateMaintainer::pop):
715 (WebCore::LayoutStateMaintainer::push):
716 (WebCore::LayoutStateMaintainer::didPush):
717
vestbo@webkit.orgf579de02008-11-07 15:01:55 +00007182008-11-07 Tor Arne Vestbø <tavestbo@trolltech.com>
719
vestbo@webkit.org58027742008-11-07 15:39:56 +0000720 Fix the QtWebKit build on Mac
721
722 * platform/qt/TemporaryLinkStubs.cpp:
723 (PluginView::invalidateRect):
724
7252008-11-07 Tor Arne Vestbø <tavestbo@trolltech.com>
726
vestbo@webkit.orgf579de02008-11-07 15:01:55 +0000727 Rubber-stamped by Simon Hausmann.
728
729 Don't allow Phonon's invisible video widget to keep the app running
730
731 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
732 (WebCore::MediaPlayerPrivate::MediaPlayerPrivate):
733
hausmann@webkit.org58f04f52008-11-07 11:32:04 +00007342008-11-07 Henrik Hartz <henrik.hartz@nokia.com>
735
736 Reviewed by Simon Hausmann.
737
738 Fix valgrind warning about uninitialized lastStop variable.
739
740 * platform/graphics/qt/GradientQt.cpp:
741 (WebCore::Gradient::platformGradient):
742
ap@webkit.org1faed012008-11-07 09:22:36 +00007432008-11-07 Alexey Proskuryakov <ap@webkit.org>
744
745 Reviewed by Maciej Stachowiak.
746
747 Fix layout test brokenness following r38211.
748
749 * page/EventHandler.cpp: (WebCore::EventHandler::handleAccessKey):
750 Restore old Shift key behavior. We ignore Shift key state when matching access keys (which
751 matches neither IE nor Firefox), and this patch made WebKit behave like Firefox
752 inadvertently. This may or may not be a good thing, but it's certainly not something that
753 should change by accident.
754
antti@apple.comda9077d2008-11-07 07:22:43 +00007552008-11-06 Antti Koivisto <antti@apple.com>
756
antti@apple.comafa13dc2008-11-07 07:26:09 +0000757 Eh, this trivial last minute change was wrong.
758
759 * loader/CachedCSSStyleSheet.cpp:
760 (WebCore::CachedCSSStyleSheet::sheetText):
761
7622008-11-06 Antti Koivisto <antti@apple.com>
763
antti@apple.comda9077d2008-11-07 07:22:43 +0000764 Reviewed by Dan Bernstein.
765
766 https://bugs.webkit.org/show_bug.cgi?id=22093
767
768 Delaying the text decoding caused regression since the decoding
769 also determines the encoding in case of @charset rule.
770
771 Decode immediately in data() and keep the decoded string around
772 during the checkNotify().
773
774 * loader/CachedCSSStyleSheet.cpp:
775 (WebCore::CachedCSSStyleSheet::sheetText):
776 (WebCore::CachedCSSStyleSheet::data):
777 * loader/CachedCSSStyleSheet.h:
778
ap@webkit.orgd9634612008-11-07 05:52:46 +00007792008-11-06 Alexey Proskuryakov <ap@webkit.org>
780
781 Reviewed by Darin Adler.
782
ap@webkit.org6169aa22008-11-07 05:54:49 +0000783 https://bugs.webkit.org/show_bug.cgi?id=22097
784 Expose MessageEvent constructor on WorkerContext
785
786 * bindings/js/JSWorkerContext.cpp:
787 (WebCore::jsWorkerContextMessageEvent):
788 (WebCore::setJSWorkerContextMessageEvent):
789
7902008-11-06 Alexey Proskuryakov <ap@webkit.org>
791
792 Reviewed by Darin Adler.
793
ap@webkit.orgd9634612008-11-07 05:52:46 +0000794 https://bugs.webkit.org/show_bug.cgi?id=21107
795 <rdar://problem/6264219> New access key combination conflicts with VoiceOver
796
797 * page/EventHandler.h:
798 * page/gtk/EventHandlerGtk.cpp:
799 (WebCore::EventHandler::accessKeyModifiers):
800 * page/qt/EventHandlerQt.cpp:
801 (WebCore::EventHandler::accessKeyModifiers):
802 * page/win/EventHandlerWin.cpp:
803 (WebCore::EventHandler::accessKeyModifiers):
804 * page/wx/EventHandlerWx.cpp:
805 (WebCore::EventHandler::accessKeyModifiers):
806 Access access key modifiers via a function, not a static variable.
807
808 * page/mac/EventHandlerMac.mm: (WebCore::EventHandler::accessKeyModifiers):
809 Use Ctrl when VoiceOver is enabled, because a conflict with Emacs-style key bindings is
810 less troublesome than one with VO keys.
811
812 * page/EventHandler.cpp: (WebCore::EventHandler::handleAccessKey):
813 Also fix an access key matching bug introduced in r32424 - Any superset of specified
814 modifier set invoked access keys. We can use simple equality comparison instead because
815 CapsLock is not part of modifiers(), so it doesn't need to be ignored explicitly.
816
andersca@apple.com1f7f4ee2008-11-07 04:04:52 +00008172008-11-06 Anders Carlsson <andersca@apple.com>
818
819 Reviewed by Kevin Decker.
820
821 https://bugs.webkit.org/show_bug.cgi?id=22115
822 NPN_HasPropertyUPP and NPN_HasMethodUPP entries in NPNetscapeFuncs are NULL
823
824 Export _NPN_HasMethod and _NPN_HasProperty.
825
826 * WebCore.NPAPI.exp:
827
simon.fraser@apple.coma80e3172008-11-07 01:11:13 +00008282008-11-06 Simon Fraser <simon.fraser@apple.com>
829
830 Reviewed by Antti Koivisto
831
832 https://bugs.webkit.org/show_bug.cgi?id=15678
833
834 Fix transformed menu selects to show the popup in the correct
835 location.
836
837 * rendering/RenderMenuList.cpp:
838 (WebCore::RenderMenuList::showPopup):
839
ddkilzer@apple.com58912bd2008-11-07 00:55:52 +00008402008-11-06 David Kilzer <ddkilzer@apple.com>
841
842 BUILD FIX: Backed out r38189 (and r38203) for Xcode 3.0.
843
844 Apparently older versions of gcc have issues with this patch.
845 Backing out a second time until the issues are resolved.
846
jchaffraix@webkit.org95833722008-11-07 00:47:12 +00008472008-11-06 Julien Chaffraix <jchaffraix@pleyo.com>
848
849 Reviewed by Maciej Stachowiak.
850
851 Bug 21106: .in format discussed changes
852 https://bugs.webkit.org/show_bug.cgi?id=21106
853
854 Include the namespace into the interfaceName.
855
856 * dom/make_names.pl: Do not append the namespace when
857 using the interfaceName.
858 * html/HTMLTagNames.in: Added namespace prefix for custom
859 interfaceName.
860 * svg/svgtags.in: Ditto.
861
cwzwarich@webkit.org3ff0e6a2008-11-07 00:18:07 +00008622008-11-06 Cameron Zwarich <zwarich@apple.com>
863
864 Reviewed by Geoff Garen.
865
866 Move the remaining files in the kjs subdirectory of JavaScriptCore to
867 a new parser subdirectory, and remove the kjs subdirectory entirely.
868
869 * ForwardingHeaders/kjs: Removed.
870 * ForwardingHeaders/kjs/Parser.h: Removed.
871 * ForwardingHeaders/kjs/SavedBuiltins.h: Removed.
872 * ForwardingHeaders/kjs/SourceCode.h: Removed.
873 * ForwardingHeaders/kjs/SourceProvider.h: Removed.
874 * ForwardingHeaders/parser: Added.
875 * ForwardingHeaders/parser/Parser.h: Copied from ForwardingHeaders/kjs/Parser.h.
876 * ForwardingHeaders/parser/SourceCode.h: Copied from ForwardingHeaders/kjs/SourceCode.h.
877 * ForwardingHeaders/parser/SourceProvider.h: Copied from ForwardingHeaders/kjs/SourceProvider.h.
878 * WebCore.pro:
879 * WebCore.vcproj/WebCore.vcproj:
880 * bindings/js/StringSourceProvider.h:
881 * bindings/js/WorkerScriptController.cpp:
882 * bridge/NP_jsobject.cpp:
883 * bridge/jni/jni_jsobject.mm:
884 * bridge/testbindings.pro:
885 * inspector/JavaScriptDebugServer.cpp:
886
ddkilzer@apple.com3df06c52008-11-06 23:10:10 +00008872008-11-06 David Kilzer <ddkilzer@apple.com>
888
ddkilzer@apple.coma8062f52008-11-06 23:46:40 +0000889 BUILD WAS NOT BROKEN: Rolling r38189 back in.
890
891 Please perform a clean build if you see crashes.
892
8932008-11-06 David Kilzer <ddkilzer@apple.com>
894
ddkilzer@apple.com3df06c52008-11-06 23:10:10 +0000895 BUILD FIX: Backed out r38189 since it apparently broke the world.
896
cfleizach@apple.com5b7e9982008-11-06 22:16:27 +00008972008-11-06 Chris Fleizach <cfleizach@apple.com>
898
899 Reviewed by Beth Dakin.
900
901 Bug 22112: if a <body> has contenteditable=true, it should report a writable AXValue
902 https://bugs.webkit.org/show_bug.cgi?id=22112
903
904 Test: accessibility/content-editable.html
905
906 * page/AccessibilityRenderObject.cpp:
907 (WebCore::AccessibilityRenderObject::isReadOnly):
908
weinig@apple.com5955ba22008-11-06 21:55:29 +00009092008-11-06 Sam Weinig <sam@webkit.org>
910
911 Reviewed by Alice Liu.
912
913 Fix failed assert at launch caused by unintialized data member on the mac.
914
915 * platform/network/mac/NetworkStateNotifierMac.cpp:
916 (WebCore::NetworkStateNotifier::NetworkStateNotifier):
917
sfalken@apple.com2c786e02008-11-06 21:47:58 +00009182008-11-06 Steve Falkenburg <sfalken@apple.com>
919
920 Fix failed assert at launch caused by unintialized data member.
921
922 Reviewed by Maciej Stachowiak.
923
924 * platform/network/win/NetworkStateNotifierWin.cpp:
925 (WebCore::NetworkStateNotifier::NetworkStateNotifier):
926
simon.fraser@apple.com52b2c502008-11-06 20:55:31 +00009272008-11-06 Simon Fraser <simon.fraser@apple.com>
928
929 Reviewed by Antti Koivisto
930
931 https://bugs.webkit.org/show_bug.cgi?id=22109
932 Make <input type="range"> work correctly with transforms
933
934 Test: fast/forms/slider-transformed.html
935
936 * html/HTMLInputElement.cpp:
937 (WebCore::HTMLInputElement::defaultEventHandler):
938 Compute a correct local point when the event is retargeted
939 * rendering/RenderSlider.cpp:
940 (WebCore::HTMLSliderThumbElement::defaultEventHandler):
941 Compute m_initialClickPoint in slider-local coords, so that
942 deltas are computed correctly with transforms
943 (WebCore::RenderSlider::mouseEventIsInThumb):
944 Rather than computing an absolute bounds for the thumb,
945 convert the point to local coords and compare it with the border box.
946
ddkilzer@apple.com6f3816c2008-11-06 19:28:45 +00009472008-11-06 Greg Bolsinga <bolsinga@apple.com>
948
949 Reviewed by Darin Adler.
950
951 Bug 21810: Remove use of static C++ objects that are destroyed at exit time (destructors)
952 https://bugs.webkit.org/show_bug.cgi?id=21810
953
954 * bindings/js/GCController.cpp:
955 (WebCore::gcController): Changed to leak an object to avoid an exit-time destructor.
956 * bindings/js/JSDOMBinding.cpp:
957 (WebCore::wrapperSet): Ditto
958 * bindings/js/JSInspectedObjectWrapper.cpp:
959 (WebCore::wrappers): Ditto
960 * bindings/js/JSInspectorCallbackWrapper.cpp:
961 (WebCore::wrappers): Ditto
962 * bridge/runtime_root.cpp:
963 (JSC::Bindings::rootObjectSet): Ditto
964 * css/CSSMutableStyleDeclaration.cpp:
965 (WebCore::CSSMutableStyleDeclaration::removeProperty): Ditto
966 * css/CSSPrimitiveValue.cpp:
967 (WebCore::CSSPrimitiveValue::cssText): Ditto
968 * css/CSSSelector.cpp:
969 (WebCore::CSSSelector::extractPseudoType): Ditto
970 * css/CSSStyleSelector.cpp:
971 (WebCore::screenEval): Ditto
972 (WebCore::printEval): Ditto
973 * dom/DOMImplementation.cpp:
974 (WebCore::isSVG10Feature): Ditto
975 (WebCore::isSVG11Feature): Ditto
976 (WebCore::DOMImplementation::isXMLMIMEType): Ditto
977 * dom/Document.cpp:
978 (WebCore::Document::hasPrefixNamespaceMismatch): Ditto
979 * dom/ScriptElement.cpp:
980 (WebCore::isSupportedJavaScriptLanguage): Ditto
981 * editing/ApplyStyleCommand.cpp:
982 (WebCore::styleSpanClassString): Ditto
983 * editing/HTMLInterchange.cpp:
984 (WebCore::): Ditto
985 * editing/IndentOutdentCommand.cpp:
986 (WebCore::indentBlockquoteString): Ditto
987 * editing/ReplaceSelectionCommand.cpp:
988 (WebCore::isInterchangeNewlineNode): Ditto
989 (WebCore::isInterchangeConvertedSpaceSpan): Ditto
990 * editing/htmlediting.cpp:
991 (WebCore::stringWithRebalancedWhitespace): Ditto
992 (WebCore::nonBreakingSpaceString): Ditto
993 * editing/markup.cpp:
994 (WebCore::appendAttributeValue): Ditto
995 (WebCore::appendEscapedContent): Ditto
996 (WebCore::shouldAddNamespaceAttr): Ditto
997 (WebCore::appendNamespace): Ditto
998 (WebCore::appendStartMarkup): Ditto
999 (WebCore::createMarkup): Ditto
1000 * html/HTMLButtonElement.cpp:
1001 (WebCore::HTMLButtonElement::type): Ditto
1002 * html/HTMLElement.cpp:
1003 (WebCore::HTMLElement::isRecognizedTagName): Ditto
1004 (WebCore::inlineTagList): Ditto
1005 (WebCore::blockTagList): Ditto
1006 * html/HTMLFieldSetElement.cpp:
1007 (WebCore::HTMLFieldSetElement::type): Ditto
1008 * html/HTMLInputElement.cpp:
1009 (WebCore::HTMLInputElement::type): Ditto
1010 * html/HTMLKeygenElement.cpp:
1011 (WebCore::HTMLKeygenElement::type): Ditto
1012 * html/HTMLLegendElement.cpp:
1013 (WebCore::HTMLLegendElement::type): Ditto
1014 * html/HTMLOptGroupElement.cpp:
1015 (WebCore::HTMLOptGroupElement::type): Ditto
1016 * html/HTMLOptionElement.cpp:
1017 (WebCore::HTMLOptionElement::type): Ditto
1018 * html/HTMLParser.cpp:
1019 (WebCore::HTMLParser::getNode): Ditto
1020 (WebCore::HTMLParser::isHeaderTag): Ditto
1021 (WebCore::HTMLParser::isResidualStyleTag): Ditto
1022 (WebCore::HTMLParser::isAffectedByResidualStyle): Ditto
1023 * html/HTMLSelectElement.cpp:
1024 (WebCore::HTMLSelectElement::type): Ditto
1025 * html/HTMLTextAreaElement.cpp:
1026 (WebCore::HTMLTextAreaElement::type): Ditto
1027 * inspector/InspectorController.cpp:
1028 (WebCore::platform): Ditto
1029 * inspector/JavaScriptDebugServer.cpp:
1030 (WebCore::JavaScriptDebugServer::shared): Ditto
1031 * inspector/JavaScriptProfile.cpp:
1032 (WebCore::profileCache): Ditto
1033 * inspector/JavaScriptProfileNode.cpp:
1034 (WebCore::profileNodeCache): Ditto
1035 * loader/FrameLoader.cpp:
1036 (WebCore::localSchemes): Ditto
1037 * loader/appcache/ApplicationCacheStorage.cpp:
1038 (WebCore::cacheStorage): Ditto
1039 * loader/archive/ArchiveFactory.cpp:
1040 (WebCore::archiveMIMETypes): Ditto
1041 * loader/icon/IconDatabase.cpp:
1042 (WebCore::IconDatabase::defaultDatabaseFilename): Ditto
1043 * page/EventHandler.cpp:
1044 (WebCore::EventHandler::dragState): Ditto
1045 * page/Frame.cpp:
1046 (WebCore::createRegExpForLabels): Ditto
1047 (WebCore::keepAliveSet): Ditto
1048 * page/Page.cpp:
1049 (WebCore::Page::groupName): Ditto
1050 * page/SecurityOrigin.cpp:
1051 (WebCore::isDefaultPortForProtocol): Ditto
1052 (WebCore::SecurityOrigin::databaseIdentifier): Ditto
1053 * page/mac/FrameMac.mm:
1054 (WebCore::regExpForLabels): Ditto
1055 * platform/KURL.cpp:
1056 (WebCore::blankURL): Ditto
1057 * platform/graphics/FontCache.cpp:
1058 (WebCore::alternateFamilyName): Ditto
1059 * platform/graphics/mac/FontCacheMac.mm:
1060 (WebCore::FontCache::getSimilarFontPlatformData): Ditto
1061 (WebCore::FontCache::getLastResortFallbackFont): Ditto
1062 * platform/mac/ScrollbarThemeMac.mm:
1063 (WebCore::ScrollbarTheme::nativeTheme): Ditto
1064 * platform/mac/ThemeMac.mm:
1065 (WebCore::platformTheme): Ditto
1066 * platform/mac/ThreadCheck.mm:
1067 (WebCoreReportThreadViolation): Ditto
1068 * platform/network/NetworkStateNotifier.cpp:
1069 (WebCore::networkStateNotifier): Ditto
1070 * platform/network/mac/FormDataStreamMac.mm:
1071 (WebCore::getStreamFormDataMap): Ditto
1072 (WebCore::getStreamResourceHandleMap): Ditto
1073 * platform/network/mac/ResourceResponseMac.mm:
1074 (WebCore::ResourceResponse::platformLazyInit): Ditto
1075 * platform/text/TextEncoding.cpp:
1076 (WebCore::TextEncoding::isJapanese): Ditto
1077 * rendering/RenderBlock.cpp:
1078 (WebCore::continuationOutlineTable): Ditto
1079 * rendering/RenderCounter.cpp:
1080 (WebCore::counterMaps): Ditto
1081 * rendering/RenderFlexibleBox.cpp:
1082 (WebCore::RenderFlexibleBox::layoutVerticalBox): Ditto
1083 * rendering/RenderListItem.cpp:
1084 (WebCore::RenderListItem::markerText): Ditto
1085 * rendering/RenderScrollbarTheme.cpp:
1086 (WebCore::RenderScrollbarTheme::renderScrollbarTheme): Ditto
1087 * rendering/RenderThemeMac.mm:
1088 (WebCore::RenderThemeMac::systemFont): Ditto
1089 * rendering/bidi.cpp:
1090 (WebCore::RenderBlock::checkLinesForTextOverflow): Ditto
1091 * rendering/style/RenderStyle.cpp:
1092 (WebCore::RenderStyle::initialDashboardRegions): Ditto
1093 (WebCore::RenderStyle::noneDashboardRegions): Ditto
1094 * storage/LocalStorage.cpp:
1095 (WebCore::localStorageMap): Ditto
1096 * svg/SVGAnimateMotionElement.cpp:
1097 (WebCore::SVGAnimateMotionElement::rotateMode): Ditto
1098 * svg/SVGAnimationElement.cpp:
1099 (WebCore::SVGAnimationElement::calcMode): Ditto
1100 (WebCore::SVGAnimationElement::attributeType): Ditto
1101 (WebCore::SVGAnimationElement::isAdditive): Ditto
1102 (WebCore::SVGAnimationElement::isAccumulated): Ditto
1103 * svg/SVGLangSpace.cpp:
1104 (WebCore::SVGLangSpace::xmlspace): Ditto
1105 * svg/SVGSVGElement.cpp:
1106 (WebCore::SVGSVGElement::contentScriptType): Ditto
1107 (WebCore::SVGSVGElement::contentStyleType): Ditto
1108 * svg/SVGStyleElement.cpp:
1109 (WebCore::SVGStyleElement::type): Ditto
1110 (WebCore::SVGStyleElement::media): Ditto
1111 * svg/SVGTextContentElement.cpp:
1112 (WebCore::SVGTextContentElement::parseMappedAttribute): Ditto
1113 * svg/animation/SVGSMILElement.cpp:
1114 (WebCore::SVGSMILElement::parseClockValue): Ditto
1115 (WebCore::SVGSMILElement::restart): Ditto
1116 (WebCore::SVGSMILElement::fill): Ditto
1117 (WebCore::SVGSMILElement::repeatCount): Ditto
1118 (WebCore::SVGSMILElement::notifyDependentsIntervalChanged): Ditto
1119 * svg/graphics/SVGResource.cpp:
1120 (WebCore::clientMap): Ditto
1121 * svg/graphics/SVGResourceMarker.cpp:
1122 (WebCore::SVGResourceMarker::draw): Ditto
1123 * xml/XMLHttpRequest.cpp:
1124 (WebCore::preflightResultCache): Ditto
1125 (WebCore::isSafeRequestHeader): Ditto
1126 (WebCore::isOnAccessControlResponseHeaderWhitelist): Ditto
1127 * xml/XPathExpressionNode.cpp:
1128 (WebCore::XPath::Expression::evaluationContext): Ditto
1129 * xml/XPathParser.cpp:
1130 (WebCore::XPath::isAxisName): Ditto
1131 (WebCore::XPath::isNodeTypeName): Ditto
1132 * xml/XPathValue.cpp:
1133 (WebCore::XPath::Value::toNodeSet): Ditto
1134
vestbo@webkit.org6a404a22008-11-06 19:04:46 +000011352008-11-06 Tor Arne Vestbø <tavestbo@trolltech.com>
1136
1137 Rubber-stamped by Simon Hausmann.
1138
1139 Remove a bunch of unused methods in the Qt media element implementation
1140
1141 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
1142 (WebCore::MediaPlayerPrivate::MediaPlayerPrivate):
1143 * platform/graphics/qt/MediaPlayerPrivatePhonon.h:
1144
simon.fraser@apple.com845c2632008-11-06 18:42:24 +000011452008-11-05 Simon Fraser <simon.fraser@apple.com>
1146
1147 Reviewed by Dave Hyatt
1148
1149 https://bugs.webkit.org/show_bug.cgi?id=21870
1150
1151 Implement absoluteToLocal() to convert a point from absolute
1152 to local coordinates, optionally taking transforms into account.
1153
1154 Use this to set offsetX/offsetY in mouse events, thus fixing
1155 offsetX/offsetY in events on elements with transforms.
1156
1157 Test: fast/events/offsetX-offsetY.html
1158
1159 * dom/MouseRelatedEvent.cpp:
1160 (WebCore::MouseRelatedEvent::receivedTarget):
1161 * rendering/RenderBox.cpp:
1162 (WebCore::RenderBox::localToAbsolute):
1163 (WebCore::RenderBox::absoluteToLocal):
1164 (WebCore::RenderBox::offsetFromContainer):
1165 * rendering/RenderBox.h:
1166 * rendering/RenderObject.cpp:
1167 (WebCore::RenderObject::absoluteToLocal):
1168 * rendering/RenderObject.h:
1169 * rendering/RenderTableCell.cpp:
1170 (WebCore::RenderTableCell::localToAbsolute):
1171 (WebCore::RenderTableCell::absoluteToLocal):
1172 * rendering/RenderTableCell.h:
1173 * rendering/RenderView.cpp:
1174 (WebCore::RenderView::absoluteToLocal):
1175 * rendering/RenderView.h:
1176
alp@webkit.orga8a7ebd2008-11-06 18:41:18 +000011772008-11-06 Alp Toker <alp@nuanti.com>
1178
1179 Reviewed by Cameron Zwarich.
1180
1181 https://bugs.webkit.org/show_bug.cgi?id=22067
1182 [GTK] Sun Java plugin segfaults at PluginPackage::createPackage()
1183
1184 null-check symbols loaded from plugin modules, initialize the function
1185 table (like Win already does) and update it with the latest
1186 additions. Adjust whitespace for easy diff'ing with the Win port code
1187 from which it was forked.
1188
1189 This fixes crashes with libnspr4.so and any other plugins that don't
1190 provide the symbols we expect.
1191
1192 * plugins/gtk/PluginPackageGtk.cpp:
1193 (WebCore::PluginPackage::fetchInfo):
1194 (WebCore::PluginPackage::load):
1195
hausmann@webkit.org9be29cf2008-11-06 16:38:54 +000011962008-11-06 Kristian Amlie <kristian.amlie@nokia.com>
1197
1198 Reviewed by Simon Hausmann.
1199
hausmann@webkit.orgbdf11782008-11-06 18:38:57 +00001200 Removed dead (and broken) code from an ancient Symbian port.
1201
1202 * config.h:
1203 * platform/text/AtomicString.h:
1204 * platform/text/PlatformString.h:
1205
12062008-11-06 Kristian Amlie <kristian.amlie@nokia.com>
1207
1208 Reviewed by Simon Hausmann.
1209
hausmann@webkit.orge5ea3732008-11-06 18:38:48 +00001210 Use QLibrary as PlatformModule when compiling with Qt for S60.
1211
1212 * platform/FileSystem.h:
1213
12142008-11-06 Kristian Amlie <kristian.amlie@nokia.com>
1215
1216 Reviewed by Simon Hausmann.
1217
hausmann@webkit.org07a5d322008-11-06 18:38:31 +00001218 Compile fix for Symbian.
1219 The snprintf function is defined in stdio.h, the inclusion
1220 of snprintf.h inside this PLATFORM(SYMBIAN) block does not
1221 compile.
1222
1223 * config.h:
1224
12252008-11-06 Kristian Amlie <kristian.amlie@nokia.com>
1226
1227 Reviewed by Simon Hausmann.
1228
hausmann@webkit.org9be29cf2008-11-06 16:38:54 +00001229 Disable webkit plugins for Symbian.
1230
1231 * WebCore.pro:
1232
vestbo@webkit.orgb2902812008-11-06 12:14:49 +000012332008-11-06 Tor Arne Vestbø <tavestbo@trolltech.com>
1234
vestbo@webkit.orgecfcaef2008-11-06 12:15:13 +00001235 Fix build break in debug mode when XSLT is not enabled
1236
1237 * loader/Cache.cpp:
1238 (WebCore::Cache::dumpStats):
1239
12402008-11-06 Tor Arne Vestbø <tavestbo@trolltech.com>
1241
vestbo@webkit.orgb2902812008-11-06 12:14:49 +00001242 Reviewed by Simon Hausmann.
1243
1244 Repaint video on UpdateRequest to prevent recursive painting
1245
1246 Calling QWidget::render() to update the video generates a paint
1247 event that's then picked up by the event filter once more :(
1248
1249 We're really only interested in updates from Phonon, which we
1250 get through the UpdateRequest for each new frame.
1251
1252 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
1253 (WebCore::MediaPlayerPrivate::eventFilter):
1254
cwzwarich@webkit.orgdf57b3f2008-11-06 08:18:35 +000012552008-11-06 Cameron Zwarich <zwarich@apple.com>
1256
1257 Not reviewed.
1258
cwzwarich@webkit.org5400b932008-11-06 09:22:54 +00001259 Fix the WebCore build for some platforms by changing build scripts to
1260 account for the recent move of the create_hash_table script from the kjs
1261 subdirectory of JavaScriptCore to the root directory.
1262
1263 * WebCore.pro:
1264 * make-generated-sources.sh:
1265
12662008-11-06 Cameron Zwarich <zwarich@apple.com>
1267
1268 Not reviewed.
1269
cwzwarich@webkit.orgdf57b3f2008-11-06 08:18:35 +00001270 Fix a case-sensitivity issue in Mac forwarding headers. Strangely
1271 enough, this does not always cause the build to break, even with a
1272 case-sensitive filesystem.
1273
1274 * ForwardingHeaders/runtime/Interpreter.h:
1275
ap@webkit.org90b52e82008-11-06 07:04:47 +000012762008-11-05 Alexey Proskuryakov <ap@webkit.org>
1277
ap@webkit.orgddf67942008-11-06 07:07:23 +00001278 Reviewed by Maciej Stachowiak.
1279
1280 https://bugs.webkit.org/show_bug.cgi?id=22083
1281 MessageEvents cannot be used across threads
1282
1283 * dom/Event.idl:
1284 * dom/MessageEvent.idl:
1285 Add a NoStaticTables attribute - MessageEvent is used in worker threads, so static tables
1286 won't work.
1287
1288 * dom/MessagePort.cpp:
1289 (WebCore::MessagePort::EventData::EventData):
1290 (WebCore::MessagePort::EventData::~EventData):
1291 (WebCore::MessagePort::clone):
1292 (WebCore::MessagePort::postMessage):
1293 (WebCore::MessagePort::startConversation):
1294 (WebCore::MessagePort::dispatchMessages):
1295 * dom/MessagePort.h:
1296 Don't create a MessageEvent until dispatch time - messages can be posted across threads,
1297 but MessageEvents are tied to the thread that they were created in.
1298
12992008-11-05 Alexey Proskuryakov <ap@webkit.org>
1300
ap@webkit.org90b52e82008-11-06 07:04:47 +00001301 Reviewed by Darin Adler.
1302
1303 https://bugs.webkit.org/show_bug.cgi?id=22066
1304 Implement Worker global object
1305
1306 * DerivedSources.make: Added WorkerLocation IDL and JSWorkerContext lookup table.
1307
1308 * WebCore.xcodeproj/project.pbxproj: Only adding files to Mac project for now, as Worker
1309 support is still disabled by default.
1310
1311 * bindings/js/JSDOMGlobalObject.cpp: (WebCore::toJSDOMGlobalObject): Implemented Worker case.
1312
1313 * bindings/js/JSMessageChannelConstructor.cpp:
1314 (WebCore::JSMessageChannelConstructor::JSMessageChannelConstructor): Ditto.
1315
1316 * bindings/js/JSWorkerContext.cpp: Added.
1317 * bindings/js/JSWorkerContext.h: Added.
1318 * bindings/js/WorkerScriptController.cpp: Added.
1319 * bindings/js/WorkerScriptController.h: Added.
1320 * dom/WorkerContext.cpp: Added.
1321 * dom/WorkerContext.h: Added.
1322 Added an implementation of worker contexts.
1323
1324 * dom/DedicatedWorker.cpp:
1325 (WebCore::DedicatedWorker::startLoad): Fixed a lifetime bug I saw on my tests.
1326 (WebCore::DedicatedWorker::notifyFinished): Create a thread. Currently, object ownership
1327 and lifetime is not clear at all.
1328
1329 * dom/WorkerLocation.cpp: Added.
1330 * dom/WorkerLocation.h: Added.
1331 * dom/WorkerLocation.idl: Added.
1332 Added WorkerLocation, which is one of the objects available to workers.
1333
1334 * dom/WorkerThread.cpp: Added.
1335 (WebCore::WorkerThread::WorkerThread):
1336 (WebCore::WorkerThread::start):
1337 (WebCore::WorkerThread::workerThreadStart):
1338 (WebCore::WorkerThread::workerThread):
1339 * dom/WorkerThread.h: Added.
1340 (WebCore::WorkerThread::create):
1341 Run some code in a worker thread (no message loop yet).
1342
antti@apple.comc5a38532008-11-06 02:40:54 +000013432008-11-05 Antti Koivisto <antti@apple.com>
1344
1345 Reviewed by Dan Bernstein.
1346
1347 https://bugs.webkit.org/show_bug.cgi?id=22093
1348 Don't keep decoded stylesheet data in cache
1349
1350 <rdar://problem/6343588>
1351
1352 Don't keep decoded stylesheet string around in the cache. There are no sharing benefits and
1353 performance benefits are negligible (no measured PLT impact). Reduces memory consumption of
1354 style sheet data in cache by 2/3 in common case.
1355
1356 * loader/CachedCSSStyleSheet.cpp:
1357 (WebCore::CachedCSSStyleSheet::sheetText):
1358 (WebCore::CachedCSSStyleSheet::data):
1359 * loader/CachedCSSStyleSheet.h:
1360
ddkilzer@apple.comb02df962008-11-06 02:00:19 +000013612008-11-05 David Kilzer <ddkilzer@apple.com>
1362
1363 Bug 21596: WebCore::Cache should use parsed Pragma and Cache-Control headers
1364
1365 <https://bugs.webkit.org/show_bug.cgi?id=21596>
1366
1367 Reviewed by Antti.
1368
1369 This patch adds real parsing for Pragma and Cache-Control headers
1370 based on RFC 2616, Sections 2, 14.9 and 14.32. It also adds some
1371 new String and StringImpl methods to assist with the parsing.
1372
1373 * loader/Cache.cpp:
1374 (WebCore::Cache::dumpStats): Added. Convenience method for dumping
1375 stats outside of Safari.
1376 * loader/Cache.h: Declared dumpStats().
1377
1378 * loader/CachedResource.cpp:
1379 (WebCore::CachedResource::mustRevalidate): Updated to use
1380 ResourceResponseBase::cacheControlDirectives() instead of substring
1381 matching of the entire Cache-Control header.
1382
1383 * loader/loader.cpp:
1384 (WebCore::Loader::Host::didReceiveResponse): Used the local
1385 'resource' variable instead of 'request->cachedResource()'.
1386
1387 * platform/network/ResourceResponseBase.cpp:
1388 (WebCore::ResourceResponseBase::setHTTPHeaderField): Set
1389 m_haveParsedCacheControlHeader to false when a "Cache-Control"
1390 header is set. Ditto for m_haveParsedPragmaHeader and "Pragma".
1391 (WebCore::ResourceResponseBase::parsePragmaDirectives): Added.
1392 Provides parsed Pragma header directives.
1393 (WebCore::ResourceResponseBase::parseCacheControlDirectives): Added.
1394 Provides parsed Cache-Control header directives.
1395 (WebCore::isCacheHeaderSeparator): Added. Returns true if a
1396 character is a separator character per RFC 2616, Section 2.2, else
1397 returns false.
1398 (WebCore::isControlCharacter): Added. Returns true if a character
1399 is a control character per RFC 2616 Section 2.2, else returns false.
1400 (WebCore::trimToNextSeparator): Added. Returns a string truncated
1401 at the first separator character per isCacheHeaderSeparator().
1402 (WebCore::parseCacheHeader): Added. This is the main parsing
1403 routine for both Cache-Control and Pragma headers.
1404 (WebCore::parseCacheControlDirectiveValues): Added. This splits
1405 certain Cache-Control directive values into a vector of strings.
1406 * platform/network/ResourceResponseBase.h:
1407 (WebCore::CacheControlDirectiveMap): Added. Typedef for a parsed
1408 Cache-Control header.
1409 (WebCore::PragmaDirectiveMap): Added. Typedef for a parsed Pragma
1410 header.
1411 (WebCore::ResourceResponseBase::parsePragmaDirectives): Added
1412 declaration.
1413 (WebCore::ResourceResponseBase::parseCacheControlDirectives): Ditto.
1414 (WebCore::ResourceResponseBase::m_haveParsedCacheControlHeader):
1415 Added. Boolean to describe when the "Cache-Control" header needs to
1416 be reparsed.
1417 (WebCore::ResourceResponseBase::m_haveParsedPragmaHeader): Added.
1418 Boolean to describe when the "Pragma" header needs to be reparsed.
1419 (WebCore::ResourceResponseBase::m_cacheControlDirectiveMap): Added.
1420 Cached map to hold parsed "Cache-Control" headers.
1421 (WebCore::ResourceResponseBase::m_pragmaDirectiveMap): Added.
1422 Cached map to hold parsed "Pragma" headers.
1423
1424 * platform/text/PlatformString.h:
1425 (WebCore::String::find): Added. Returns the first match based on
1426 the character-matching function pointer passed in.
1427 (WebCore::String::removeCharacters): Added declaration.
1428 (WebCore::find): Added. Inline method that takes a character-
1429 matching function pointer. Called by StringImpl::find().
1430 * platform/text/String.cpp:
1431 (WebCore::String::removeCharacters): Added. Calls
1432 StringImpl::removeCharacters().
1433 * platform/text/StringImpl.cpp:
1434 (WebCore::StringImpl::removeCharacters): Added. Returns a string
1435 with all characters removed that match the character-matching
1436 function pointer passed in. If there is no change to the string, it
1437 returns itself. Based heavily on StringImpl::simplifyWhitespace().
1438 (WebCore::StringImpl::find): Added. Calls WebCore::find().
1439 * platform/text/StringImpl.h:
1440 (WebCore::FindMatchFunctionPtr): Added. Typedef for a character-
1441 matching function pointer.
1442 (WebCore::StringImpl::removeCharacters): Added declaration.
1443 (WebCore::StringImpl::find): Ditto.
1444
justin.garcia@apple.com41ed13a2008-11-06 01:48:04 +000014452008-11-05 Justin Garcia <justin.garcia@apple.com>
1446
1447 Reviewed by Beth Dakin.
1448
1449 <rdar://problem/5480736> In Mail and Gmail, copied indented text pastes with line break
1450
1451 As a rule, we don't allow merges out of blockquotes. In the bug, we are inserting a text node
1452 between two blockquotes. Because the start merge moves the text node into a blockquote, when we
1453 determine whether or not we should do the end merge, it incorrectly appears as though the end merge
1454 is merging out of a blockquote. The fix is to determine whether or not we should do the end merge
1455 before we do the start merge, so that the start merge doesn't effect our decision.
1456
1457 * editing/ReplaceSelectionCommand.cpp:
1458 (WebCore::ReplaceSelectionCommand::ReplaceSelectionCommand): Initialize the new boolean.
1459 (WebCore::ReplaceSelectionCommand::mergeEndIfNeeded): Moved code from doApply() here for clarity.
1460 (WebCore::ReplaceSelectionCommand::doApply): Set m_shouldMergeEnd before we do the start merge.
1461 * editing/ReplaceSelectionCommand.h: Added m_shouldMergeEnd.
1462
cwzwarich@webkit.org0b51a732008-11-05 23:21:32 +000014632008-11-05 Cameron Zwarich <zwarich@apple.com>
1464
cwzwarich@webkit.org9eece252008-11-06 00:30:42 +00001465 Not reviewed.
1466
cwzwarich@webkit.org36c7fc72008-11-06 00:41:49 +00001467 Speculatively fix the Windows build, even though these changes may not
1468 actually matter for anything in the build, because the Windows bots are
1469 behind.
1470
1471 * WebCore.vcproj/WebCore.vcproj:
1472
14732008-11-05 Cameron Zwarich <zwarich@apple.com>
1474
1475 Not reviewed.
1476
cwzwarich@webkit.org9eece252008-11-06 00:30:42 +00001477 Fix the Qt build.
1478
1479 * bridge/qt/qt_class.cpp:
1480 * bridge/qt/qt_runtime.h:
1481
14822008-11-05 Cameron Zwarich <zwarich@apple.com>
1483
cwzwarich@webkit.org0b51a732008-11-05 23:21:32 +00001484 Rubber-stamped by Sam Weinig.
1485
1486 Move more files to the runtime subdirectory of JavaScriptCore.
1487
1488 * ForwardingHeaders/kjs/collector.h: Removed.
1489 * ForwardingHeaders/kjs/completion.h: Removed.
1490 * ForwardingHeaders/kjs/identifier.h: Removed.
1491 * ForwardingHeaders/kjs/interpreter.h: Removed.
1492 * ForwardingHeaders/kjs/lookup.h: Removed.
1493 * ForwardingHeaders/kjs/operations.h: Removed.
1494 * ForwardingHeaders/kjs/protect.h: Removed.
1495 * ForwardingHeaders/kjs/ustring.h: Removed.
1496 * ForwardingHeaders/runtime/Collector.h: Copied from ForwardingHeaders/kjs/collector.h.
1497 * ForwardingHeaders/runtime/Completion.h: Copied from ForwardingHeaders/kjs/completion.h.
1498 * ForwardingHeaders/runtime/Identifier.h: Copied from ForwardingHeaders/kjs/identifier.h.
1499 * ForwardingHeaders/runtime/Interpreter.h: Copied from ForwardingHeaders/kjs/interpreter.h.
1500 * ForwardingHeaders/runtime/Lookup.h: Copied from ForwardingHeaders/kjs/lookup.h.
1501 * ForwardingHeaders/runtime/Operations.h: Copied from ForwardingHeaders/kjs/operations.h.
1502 * ForwardingHeaders/runtime/Protect.h: Copied from ForwardingHeaders/kjs/protect.h.
1503 * ForwardingHeaders/runtime/UString.h: Copied from ForwardingHeaders/kjs/ustring.h.
1504 * bindings/js/GCController.cpp:
1505 * bindings/js/JSCustomPositionCallback.h:
1506 * bindings/js/JSCustomPositionErrorCallback.h:
1507 * bindings/js/JSCustomSQLStatementCallback.h:
1508 * bindings/js/JSCustomSQLStatementErrorCallback.h:
1509 * bindings/js/JSCustomSQLTransactionErrorCallback.h:
1510 * bindings/js/JSCustomVoidCallback.h:
1511 * bindings/js/JSDOMBinding.h:
1512 * bindings/js/JSDOMWindowBase.h:
1513 * bindings/js/JSEventListener.h:
1514 * bindings/js/ScheduledAction.h:
1515 * bindings/js/ScriptController.cpp:
1516 * bindings/js/ScriptController.h:
1517 * bindings/objc/WebScriptObject.mm:
1518 * bindings/scripts/CodeGeneratorJS.pm:
1519 * bridge/NP_jsobject.cpp:
1520 * bridge/c/c_class.cpp:
1521 * bridge/jni/jni_class.cpp:
1522 * bridge/jni/jni_jsobject.mm:
1523 * bridge/npruntime.cpp:
1524 * bridge/runtime_root.h:
1525 * history/CachedPage.h:
1526 * html/CanvasRenderingContext2D.cpp:
1527 * html/HTMLCanvasElement.cpp:
1528 * inspector/InspectorController.cpp:
1529 * inspector/JavaScriptCallFrame.cpp:
1530 * page/Console.cpp:
1531 * page/Page.cpp:
1532 * platform/text/AtomicString.cpp:
1533 * platform/text/PlatformString.h:
1534
weinig@apple.comef952ff2008-11-05 20:03:26 +000015352008-11-05 Sam Weinig <sam@webkit.org>
1536
1537 Reviewed by Anders Carlsson.
1538
1539 Fix https://bugs.webkit.org/show_bug.cgi?id=22085
1540 The Plugin JS object should expose item() and namedItem() methods to match Firefox
1541
1542 * bindings/js/JSPluginCustom.cpp:
1543 (WebCore::JSPlugin::nameGetter):
1544 * plugins/Plugin.cpp:
1545 (WebCore::Plugin::namedItem):
1546 * plugins/Plugin.h:
1547 * plugins/Plugin.idl:
1548
ap@webkit.org25eca0a2008-11-05 19:19:02 +000015492008-11-05 Alexey Proskuryakov <ap@webkit.org>
1550
1551 Reviewed by Maciej Stachowiak.
1552
1553 https://bugs.webkit.org/show_bug.cgi?id=21060
1554 Range#surroundContents incorrectly throws BAD_BOUNDARYPOINTS_ERR
1555
1556 Test: fast/dom/Range/surroundContents-check-boundary-points.html
1557
1558 * dom/Range.cpp: (WebCore::Range::surroundContents): Fix BAD_BOUNDARYPOINTS_ERR checks.
1559
andersca@apple.comd5804932008-11-05 18:42:29 +000015602008-11-05 Anders Carlsson <andersca@apple.com>
1561
1562 Reviewed by Dan Bernstein.
1563
1564 Remove two global destructors from CoreTextController.
1565
1566 * platform/graphics/mac/CoreTextController.cpp:
1567 (WebCore::CoreTextController::collectCoreTextRunsForCharacters):
1568
darin@chromium.orga9ece152008-11-05 18:41:07 +000015692008-11-05 Darin Fisher <darin@chromium.org>
1570
1571 Reviewed by Darin Adler.
1572
1573 CRASH at Scrollbar::invalidateRect due to null m_client
1574 https://bugs.webkit.org/show_bug.cgi?id=22080
1575
1576 * platform/Scrollbar.cpp:
1577 (WebCore::Scrollbar::isWindowActive):
1578 (WebCore::Scrollbar::invalidateRect):
1579
weinig@apple.com84ce5772008-11-05 18:30:59 +000015802008-11-04 Sam Weinig <sam@webkit.org>
1581
1582 Reviewed by Simon Hausmann.
1583
1584 Fix https://bugs.webkit.org/show_bug.cgi?id=21648
1585 navigator.mimeTypes and navigator.plugins don't expose item and namedItem to JS
1586
1587 - Also adds constructors for Plugin, PluginArray, MimeType and MimeTypeArray.
1588
1589 * bindings/js/JSMimeTypeArrayCustom.cpp:
1590 (WebCore::JSMimeTypeArray::nameGetter):
1591 * bindings/js/JSPluginArrayCustom.cpp:
1592 (WebCore::JSPluginArray::nameGetter):
1593 * page/DOMWindow.idl:
1594 * plugins/MimeType.idl:
1595 * plugins/MimeTypeArray.cpp:
1596 (WebCore::MimeTypeArray::namedItem):
1597 * plugins/MimeTypeArray.h:
1598 * plugins/MimeTypeArray.idl:
1599 * plugins/Plugin.idl:
1600 * plugins/PluginArray.cpp:
1601 (WebCore::PluginArray::namedItem):
1602 * plugins/PluginArray.h:
1603 * plugins/PluginArray.idl:
1604
sfalken@apple.com206de2b2008-11-05 18:23:10 +000016052008-11-05 Steve Falkenburg <sfalken@apple.com>
1606
1607 Build fix.
1608
1609 * plugins/PluginPackage.cpp:
1610
hausmann@webkit.orge5a83262008-11-05 15:31:30 +000016112008-11-05 Jeff Cook <cookiecaper@gmail.com>
1612
1613 Reviewed by Simon Hausmann and Tor Arne.
1614
1615 Fix crash in the Qt port when unloading swfdec and Flash 10
1616 by reordering window destruction and plugin stop.
1617
1618 See https://bugs.webkit.org/show_bug.cgi?id=20779
1619
1620 * plugins/qt/PluginViewQt.cpp:
1621 (WebCore::PluginView::stop):
1622
hausmann@webkit.org49f97662008-11-05 15:31:10 +000016232008-11-05 Simon Hausmann <hausmann@webkit.org>
1624
1625 Reviewed by Tor Arne Vestbø
1626
hausmann@webkit.orgf9c88732008-11-05 15:31:22 +00001627 Fix loading of Flash 10 in the Qt port by faking the toolkit to be Gtk.
1628
1629 Otherwise Flash refuses to load and function :(
1630
1631 * plugins/PluginPackage.cpp:
1632 (WebCore::PluginPackage::determineQuirks):
1633 * plugins/PluginQuirkSet.h:
1634 (WebCore::):
1635 * plugins/qt/PluginViewQt.cpp:
1636 (WebCore::PluginView::getValue):
1637
16382008-11-05 Simon Hausmann <hausmann@webkit.org>
1639
1640 Reviewed by Tor Arne Vestbø
1641
hausmann@webkit.org49f97662008-11-05 15:31:10 +00001642 Unify determineQuirks between the Qt and the Gtk PluginPackage.
1643 Share the code for parsing the module version from the description.
1644 This is currently used to determine Flash based quirks.
1645
1646 * plugins/PluginPackage.cpp:
1647 (WebCore::PluginPackage::createPackage):
1648 (WebCore::PluginPackage::determineQuirks):
1649 (WebCore::PluginPackage::determineModuleVersionFromDescription):
1650 * plugins/PluginPackage.h:
1651 * plugins/gtk/PluginPackageGtk.cpp:
1652 (WebCore::PluginPackage::fetchInfo):
1653 * plugins/qt/PluginPackageQt.cpp:
1654 (WebCore::PluginPackage::fetchInfo):
1655
cwzwarich@webkit.org4bcb8732008-11-05 00:49:41 +000016562008-11-04 Cameron Zwarich <zwarich@apple.com>
1657
1658 Rubber-stamped by Sam Weinig.
1659
1660 Move kjs/dtoa.h to the wtf subdirectory of JavaScriptCore.
1661
1662 * ForwardingHeaders/kjs/dtoa.h: Removed.
1663 * ForwardingHeaders/wtf/dtoa.h: Copied from ForwardingHeaders/kjs/dtoa.h.
1664 * css/CSSParser.cpp:
1665 * platform/text/String.cpp:
1666 * platform/text/StringImpl.cpp:
1667
pam@chromium.org28f3c1b2008-11-05 00:24:44 +000016682008-11-04 Jonathan Haas <myrdred@gmail.com>
1669
1670 Addiitonal tweaks and patch prep by Pamela Greene <pam@chromium.org>
1671
1672 Reviewed by Darin Adler.
1673
1674 Fixed an issue which could cause memory corruption using ToT libxml.
1675 See https://bugs.webkit.org/show_bug.cgi?id=15715
1676
1677 Test: fast/xsl/xslt-nested-stylesheets.xml
1678
1679 * xml/XSLImportRule.cpp:
1680 (WebCore::XSLImportRule::setXSLStyleSheet): Set parent rather than owner document
1681 * xml/XSLStyleSheet.cpp:
1682 (WebCore::XSLStyleSheet::XSLStyleSheet): Initialize m_parentStyleSheet
1683 (WebCore::XSLStyleSheet::parseString): Make all child stylesheets use parent's dictionary
1684 (WebCore::XSLStyleSheet::setParentStyleSheet): Added
1685 * xml/XSLStyleSheet.h: Added m_parentStyleSheet member
1686
simon.fraser@apple.com0d555c02008-11-04 22:40:53 +000016872008-11-04 Simon Fraser <simon.fraser@apple.com>
1688
1689 No review.
1690
1691 Improved buid fix: include MathExtras.h to get roundf on all platforms.
1692
1693 * platform/graphics/FloatPoint.h:
1694
beidson@apple.com0d9e16f2008-11-04 20:55:13 +000016952008-11-04 Brady Eidson <beidson@apple.com>
1696
1697 Reviewed by John Sullivan
1698
1699 Add a simple "visited" method to HistoryItem for use by global history
1700
1701 * WebCore.base.exp:
1702
1703 * history/HistoryItem.cpp:
1704 (WebCore::HistoryItem::visited): Update the title on the item, set last visited time,
1705 and bump the visit count. All things that should happen when a url is visited again!
1706 * history/HistoryItem.h:
1707
jmalonzo@webkit.org5b93bc22008-11-04 19:43:58 +000017082008-11-04 Jan Michael Alonzo <jmalonzo@webkit.org>
1709
1710 Build fix. Not reviewed.
1711
1712 * platform/graphics/FloatPoint.h: include math.h.
1713 reported by zdobersek in #webkit.
1714
darin@chromium.org48246852008-11-04 19:40:56 +000017152008-11-04 Darin Fisher <darin@chromium.org>
1716
1717 Reviewed by Anders Carlsson.
1718
1719 No need to clobber all ResourceRequest fields in FrameLoader::reload()
1720 https://bugs.webkit.org/show_bug.cgi?id=21949
1721
1722 * loader/FrameLoader.cpp:
1723 (WebCore::FrameLoader::reload):
1724
darin@apple.comebdfeb62008-11-04 19:00:58 +000017252008-11-04 Darin Adler <darin@apple.com>
1726
1727 Reviewed by Tim Hatcher.
1728
1729 * storage/Database.cpp:
1730 (WebCore::databaseVersionKey): Tweaked formatting.
1731
darin@apple.com6d0ef6f2008-11-04 18:58:45 +000017322008-11-03 Darin Adler <darin@apple.com>
1733
1734 Reviewed by Tim Hatcher.
1735
1736 - https://bugs.webkit.org/show_bug.cgi?id=22061
1737 create script to check for exit-time destructors
1738
1739 * WebCore.xcodeproj/project.pbxproj: Added a script
1740 phase that runs the check-for-exit-time-destructors script.
1741
1742 * html/HTMLAttributeNames.in: Removed some unused attribute names.
1743
1744 * html/HTMLEmbedElement.cpp:
1745 (WebCore::HTMLEmbedElement::parseMappedAttribute): Removed code that
1746 sets the write-only m_pluginPage.
1747 * html/HTMLEmbedElement.h: Ditto.
1748
1749 * platform/mac/CursorMac.mm:
1750 (WebCore::leakNamedCursor): Changed to return a Cursor&.
1751 (WebCore::pointerCursor): Changed to leak an object to avoid an
1752 exit-time destructor.
1753 (WebCore::crossCursor): Ditto.
1754 (WebCore::handCursor): Ditto.
1755 (WebCore::moveCursor): Ditto.
1756 (WebCore::verticalTextCursor): Ditto.
1757 (WebCore::cellCursor): Ditto.
1758 (WebCore::contextMenuCursor): Ditto.
1759 (WebCore::aliasCursor): Ditto.
1760 (WebCore::zoomInCursor): Ditto.
1761 (WebCore::zoomOutCursor): Ditto.
1762 (WebCore::copyCursor): Ditto.
1763 (WebCore::noneCursor): Ditto.
1764 (WebCore::progressCursor): Ditto.
1765 (WebCore::noDropCursor): Ditto.
1766 (WebCore::notAllowedCursor): Ditto.
1767 (WebCore::iBeamCursor): Ditto.
1768 (WebCore::waitCursor): Ditto.
1769 (WebCore::helpCursor): Ditto.
1770 (WebCore::eastResizeCursor): Ditto.
1771 (WebCore::northResizeCursor): Ditto.
1772 (WebCore::northEastResizeCursor): Ditto.
1773 (WebCore::northWestResizeCursor): Ditto.
1774 (WebCore::southResizeCursor): Ditto.
1775 (WebCore::southEastResizeCursor): Ditto.
1776 (WebCore::southWestResizeCursor): Ditto.
1777 (WebCore::westResizeCursor): Ditto.
1778 (WebCore::northSouthResizeCursor): Ditto.
1779 (WebCore::eastWestResizeCursor): Ditto.
1780 (WebCore::northEastSouthWestResizeCursor): Ditto.
1781 (WebCore::northWestSouthEastResizeCursor): Ditto.
1782 (WebCore::columnResizeCursor): Ditto.
1783 (WebCore::rowResizeCursor): Ditto.
1784 (WebCore::grabCursor): Ditto.
1785 (WebCore::grabbingCursor): Ditto.
1786
1787 * storage/Database.cpp:
1788 (WebCore::guidMutex): Changed to leak an object to avoid an
1789 exit-time destructor. Also added a comment explaining why it's
1790 thread safe.
1791 (WebCore::guidToVersionMap): Ditto.
1792 (WebCore::guidToDatabaseMap): Ditto.
1793 (WebCore::Database::databaseInfoTableName): Ditto.
1794 (WebCore::databaseVersionKey): Ditto.
1795 (WebCore::Database::getVersionFromDatabase): Ditto.
1796 (WebCore::Database::setVersionInDatabase): Ditto.
1797 (WebCore::guidForOriginAndName): Ditto.
1798 * storage/DatabaseTracker.cpp:
1799 (WebCore::DatabaseTracker::tracker): Ditto.
1800 (WebCore::notificationMutex): Ditto.
1801 (WebCore::notificationQueue): Ditto.
1802 (WebCore::DatabaseTracker::notifyDatabasesChanged): Ditto.
1803
simon.fraser@apple.comc65d3282008-11-04 18:54:50 +000018042008-11-04 Simon Fraser <simon.fraser@apple.com>
1805
1806 Reviewed by Dave Hyatt
1807
1808 https://bugs.webkit.org/show_bug.cgi?id=21941
1809
1810 Rename absolutePosition() to localToAbsolute(), and add the ability
1811 to optionally take transforms into account (which will eventually be the
1812 default behavior).
1813
1814 * WebCore.base.exp:
1815 * WebCore.xcodeproj/project.pbxproj:
1816 * dom/ContainerNode.cpp:
1817 (WebCore::ContainerNode::getUpperLeftCorner):
1818 (WebCore::ContainerNode::getLowerRightCorner):
1819 (WebCore::ContainerNode::getRect):
1820 * dom/ContainerNode.h:
1821 * dom/MouseRelatedEvent.cpp:
1822 (WebCore::MouseRelatedEvent::receivedTarget):
1823 * dom/Node.cpp:
1824 (WebCore::Node::getRect):
1825 * editing/SelectionController.cpp:
1826 (WebCore::SelectionController::layout):
1827 (WebCore::SelectionController::caretRect):
1828 * editing/visible_units.cpp:
1829 (WebCore::previousLinePosition):
1830 (WebCore::nextLinePosition):
1831 * html/HTMLAnchorElement.cpp:
1832 (WebCore::HTMLAnchorElement::isKeyboardFocusable):
1833 (WebCore::HTMLAnchorElement::defaultEventHandler):
1834 * html/HTMLAreaElement.cpp:
1835 (WebCore::HTMLAreaElement::getRect):
1836 * html/HTMLImageElement.cpp:
1837 (WebCore::HTMLImageElement::x):
1838 (WebCore::HTMLImageElement::y):
1839 * html/HTMLInputElement.cpp:
1840 (WebCore::HTMLInputElement::defaultEventHandler):
1841 * html/HTMLInputElement.h:
1842 * page/AccessibilityRenderObject.cpp:
1843 (WebCore::AccessibilityRenderObject::boundingBoxRect):
1844 * page/EventHandler.cpp:
1845 (WebCore::EventHandler::handleDrag):
1846 * platform/graphics/FloatPoint.h:
1847 (WebCore::roundedIntPoint):
1848 * platform/graphics/IntSize.h:
1849 (WebCore::IntSize::expand):
1850 * rendering/LayoutState.cpp:
1851 (WebCore::LayoutState::LayoutState):
1852 * rendering/RenderBlock.cpp:
1853 (WebCore::RenderBlock::layoutBlock):
1854 (WebCore::RenderBlock::paintObject):
1855 (WebCore::RenderBlock::selectionGapRects):
1856 (WebCore::RenderBlock::fillBlockSelectionGaps):
1857 (WebCore::RenderBlock::nodeAtPoint):
1858 (WebCore::RenderBlock::positionForCoordinates):
1859 * rendering/RenderBox.cpp:
1860 (WebCore::RenderBox::localToAbsolute):
1861 (WebCore::RenderBox::computeAbsoluteRepaintRect):
1862 (WebCore::RenderBox::caretRect):
1863 * rendering/RenderBox.h:
1864 (WebCore::RenderBox::relativePositionOffset):
1865 * rendering/RenderContainer.cpp:
1866 (WebCore::RenderContainer::addLineBoxRects):
1867 * rendering/RenderFlow.cpp:
1868 (WebCore::RenderFlow::absoluteClippedOverflowRect):
1869 (WebCore::RenderFlow::caretRect):
1870 (WebCore::RenderFlow::addFocusRingRects):
1871 * rendering/RenderLayer.cpp:
1872 (WebCore::RenderLayer::updateLayerPosition):
1873 (WebCore::RenderLayer::convertToLayerCoords):
1874 (WebCore::RenderLayer::addScrolledContentOffset):
1875 (WebCore::RenderLayer::subtractScrolledContentOffset):
1876 (WebCore::RenderLayer::scrollRectToVisible):
1877 * rendering/RenderLayer.h:
1878 (WebCore::RenderLayer::scrolledContentOffset):
1879 (WebCore::RenderLayer::relativePositionOffset):
1880 * rendering/RenderListBox.cpp:
1881 (WebCore::RenderListBox::panScroll):
1882 (WebCore::RenderListBox::scrollToward):
1883 * rendering/RenderListMarker.cpp:
1884 (WebCore::RenderListMarker::selectionRect):
1885 * rendering/RenderObject.cpp:
1886 (WebCore::RenderObject::absoluteBoundingBoxRect):
1887 (WebCore::RenderObject::computeAbsoluteRepaintRect):
1888 (WebCore::RenderObject::localToAbsolute):
1889 (WebCore::RenderObject::addDashboardRegions):
1890 (WebCore::RenderObject::absoluteContentBox):
1891 (WebCore::RenderObject::absoluteOutlineBox):
1892 * rendering/RenderObject.h:
1893 (WebCore::RenderObject::localToAbsoluteForContent):
1894 * rendering/RenderPart.cpp:
1895 (WebCore::RenderPart::updateWidgetPosition):
1896 * rendering/RenderReplaced.cpp:
1897 (WebCore::RenderReplaced::selectionRect):
1898 * rendering/RenderSVGInlineText.cpp:
1899 (WebCore::RenderSVGInlineText::computeAbsoluteRectForRange):
1900 * rendering/RenderSVGText.cpp:
1901 (WebCore::RenderSVGText::absoluteRects):
1902 * rendering/RenderTableCell.cpp:
1903 (WebCore::RenderTableCell::localToAbsolute):
1904 * rendering/RenderTableCell.h:
1905 * rendering/RenderText.cpp:
1906 (WebCore::RenderText::addLineBoxRects):
1907 (WebCore::RenderText::caretRect):
1908 (WebCore::RenderText::selectionRect):
1909 * rendering/RenderVideo.cpp:
1910 (WebCore::RenderVideo::updatePlayer):
1911 * rendering/RenderView.cpp:
1912 (WebCore::RenderView::localToAbsolute):
1913 * rendering/RenderView.h:
1914 * rendering/RenderWidget.cpp:
1915 (WebCore::RenderWidget::updateWidgetPosition):
1916 * svg/SVGSVGElement.cpp:
1917 (WebCore::SVGSVGElement::getScreenCTM):
1918
hausmann@webkit.orgb8b5aa12008-11-04 16:22:05 +000019192008-11-03 Yael Aharon <yael.aharon@nokia.com>
1920
1921 Reviewed by Simon Hausmann.
1922
1923 Add methods for getting and setting user data on History Item.
1924 This change is limited to QT port only. Tests were added in
1925 the patch for https://bugs.webkit.org/show_bug.cgi?id=21864.
1926
1927 Minor change by Simon: made the functions inline and added a missing
1928 const.
1929
1930 * history/HistoryItem.h:
1931
ap@webkit.orgc5e3f1b2008-11-04 10:46:13 +000019322008-11-01 Alexey Proskuryakov <ap@webkit.org>
1933
1934 Reviewed by Darin Adler.
1935
1936 https://bugs.webkit.org/show_bug.cgi?id=22030
1937 Make EventNames usable from multiple threads
1938
1939 * platform/text/AtomicString.cpp:
1940 (WebCore::stringTable):
1941 (WebCore::AtomicString::add):
1942 (WebCore::AtomicString::remove):
1943 (WebCore::AtomicString::find):
1944 (WebCore::AtomicString::init):
1945 * platform/text/AtomicString.h:
1946 Atomic string table is now per-thread. Individual strings cannot be shared between threads,
1947 so global AtomicString constants cannot be used from threads other than the main one.
1948
1949 * dom/EventNames.cpp:
1950 (WebCore::EventNames::EventNames):
1951 (WebCore::eventNames):
1952 (WebCore::EventNames::init):
1953 * dom/EventNames.h:
1954 Made EventNames a ThreadSpecific struct. Individual event names are now accessed as
1955 eventNames().fooEvent, not EventNames::fooEvent. This makes EventNames usable from all
1956 threads.
1957
1958 * WebCore.base.exp:
1959 * bindings/js/JSDOMWindowBase.cpp:
1960 * bindings/js/JSEventListener.cpp:
1961 * bindings/js/ScriptController.cpp:
1962 (WebCore::ScriptController::processingUserGesture):
1963 * dom/BeforeTextInsertedEvent.cpp:
1964 (WebCore::BeforeTextInsertedEvent::BeforeTextInsertedEvent):
1965 * dom/BeforeUnloadEvent.cpp:
1966 (WebCore::BeforeUnloadEvent::BeforeUnloadEvent):
1967 * dom/CharacterData.cpp:
1968 (WebCore::CharacterData::dispatchModifiedEvent):
1969 * dom/ContainerNode.cpp:
1970 (WebCore::dispatchChildInsertionEvents):
1971 (WebCore::dispatchChildRemovalEvents):
1972 * dom/DedicatedWorker.cpp:
1973 (WebCore::DedicatedWorker::dispatchErrorEvent):
1974 * dom/Document.cpp:
1975 (WebCore::Document::implicitClose):
1976 (WebCore::Document::setFocusedNode):
1977 (WebCore::Document::addListenerTypeIfNeeded):
1978 (WebCore::Document::removeWindowInlineEventListenerForType):
1979 (WebCore::Document::addWindowEventListener):
1980 (WebCore::Document::removeWindowEventListener):
1981 (WebCore::Document::finishedParsing):
1982 * dom/EventTargetNode.cpp:
1983 (WebCore::EventTargetNode::dispatchGenericEvent):
1984 (WebCore::EventTargetNode::dispatchSubtreeModifiedEvent):
1985 (WebCore::EventTargetNode::dispatchWindowEvent):
1986 (WebCore::EventTargetNode::dispatchUIEvent):
1987 (WebCore::EventTargetNode::dispatchSimulatedClick):
1988 (WebCore::EventTargetNode::dispatchMouseEvent):
1989 (WebCore::EventTargetNode::dispatchFocusEvent):
1990 (WebCore::EventTargetNode::dispatchBlurEvent):
1991 (WebCore::EventTargetNode::defaultEventHandler):
1992 (WebCore::EventTargetNode::on*): (multiple methods)
1993 (WebCore::EventTargetNode::setOn*): (multiple methods)
1994 * dom/KeyboardEvent.cpp:
1995 (WebCore::eventTypeForKeyboardEventType):
1996 (WebCore::KeyboardEvent::keyCode):
1997 (WebCore::KeyboardEvent::charCode):
1998 * dom/MessageEvent.cpp:
1999 (WebCore::MessageEvent::MessageEvent):
2000 * dom/MessagePort.cpp:
2001 (WebCore::MessagePort::dispatchMessages):
2002 (WebCore::MessagePort::dispatchCloseEvent):
2003 * dom/MouseEvent.cpp:
2004 (WebCore::MouseEvent::isDragEvent):
2005 (WebCore::MouseEvent::toElement):
2006 (WebCore::MouseEvent::fromElement):
2007 * dom/OverflowEvent.cpp:
2008 (WebCore::OverflowEvent::OverflowEvent):
2009 * dom/TextEvent.cpp:
2010 (WebCore::TextEvent::TextEvent):
2011 * dom/WebKitAnimationEvent.cpp:
2012 (WebCore::WebKitAnimationEvent::WebKitAnimationEvent):
2013 (WebCore::WebKitAnimationEvent::~WebKitAnimationEvent):
2014 (WebCore::WebKitAnimationEvent::initWebKitAnimationEvent):
2015 (WebCore::WebKitAnimationEvent::animationName):
2016 (WebCore::WebKitAnimationEvent::elapsedTime):
2017 * dom/WebKitTransitionEvent.cpp:
2018 (WebCore::WebKitTransitionEvent::WebKitTransitionEvent):
2019 (WebCore::WebKitTransitionEvent::~WebKitTransitionEvent):
2020 (WebCore::WebKitTransitionEvent::initWebKitTransitionEvent):
2021 (WebCore::WebKitTransitionEvent::propertyName):
2022 (WebCore::WebKitTransitionEvent::elapsedTime):
2023 * dom/WheelEvent.cpp:
2024 (WebCore::WheelEvent::WheelEvent):
2025 (WebCore::WheelEvent::initWheelEvent):
2026 * dom/XMLTokenizerLibxml2.cpp:
2027 * dom/XMLTokenizerQt.cpp:
2028 * editing/DeleteButton.cpp:
2029 (WebCore::DeleteButton::defaultEventHandler):
2030 * editing/EditCommand.cpp:
2031 * editing/Editor.cpp:
2032 (WebCore::Editor::canDHTMLCut):
2033 (WebCore::Editor::canDHTMLCopy):
2034 (WebCore::Editor::canDHTMLPaste):
2035 (WebCore::Editor::tryDHTMLCopy):
2036 (WebCore::Editor::tryDHTMLCut):
2037 (WebCore::Editor::tryDHTMLPaste):
2038 (WebCore::dispatchEditableContentChangedEvents):
2039 * editing/ReplaceSelectionCommand.cpp:
2040 (WebCore::ReplacementFragment::ReplacementFragment):
2041 * editing/SelectionController.cpp:
2042 (WebCore::SelectionController::setFocused):
2043 * html/HTMLAnchorElement.cpp:
2044 (WebCore::HTMLAnchorElement::defaultEventHandler):
2045 * html/HTMLBodyElement.cpp:
2046 (WebCore::HTMLBodyElement::parseMappedAttribute):
2047 * html/HTMLButtonElement.cpp:
2048 (WebCore::HTMLButtonElement::parseMappedAttribute):
2049 (WebCore::HTMLButtonElement::defaultEventHandler):
2050 * html/HTMLElement.cpp:
2051 (WebCore::HTMLElement::parseMappedAttribute):
2052 * html/HTMLFormControlElement.cpp:
2053 (WebCore::HTMLFormControlElement::onChange):
2054 * html/HTMLFormElement.cpp:
2055 (WebCore::HTMLFormElement::handleLocalEvents):
2056 (WebCore::HTMLFormElement::prepareSubmit):
2057 (WebCore::HTMLFormElement::reset):
2058 (WebCore::HTMLFormElement::parseMappedAttribute):
2059 * html/HTMLFrameElementBase.cpp:
2060 (WebCore::HTMLFrameElementBase::parseMappedAttribute):
2061 * html/HTMLFrameSetElement.cpp:
2062 (WebCore::HTMLFrameSetElement::parseMappedAttribute):
2063 * html/HTMLImageElement.cpp:
2064 (WebCore::HTMLImageElement::parseMappedAttribute):
2065 * html/HTMLImageLoader.cpp:
2066 (WebCore::HTMLImageLoader::dispatchLoadEvent):
2067 * html/HTMLInputElement.cpp:
2068 (WebCore::HTMLInputElement::parseMappedAttribute):
2069 (WebCore::HTMLInputElement::setValueFromRenderer):
2070 (WebCore::HTMLInputElement::preDispatchEventHandler):
2071 (WebCore::HTMLInputElement::postDispatchEventHandler):
2072 (WebCore::HTMLInputElement::defaultEventHandler):
2073 (WebCore::HTMLInputElement::onSearch):
2074 * html/HTMLLabelElement.cpp:
2075 (WebCore::HTMLLabelElement::defaultEventHandler):
2076 * html/HTMLMediaElement.cpp:
2077 (WebCore::HTMLMediaElement::load):
2078 (WebCore::HTMLMediaElement::mediaPlayerNetworkStateChanged):
2079 (WebCore::HTMLMediaElement::setReadyState):
2080 (WebCore::HTMLMediaElement::progressEventTimerFired):
2081 (WebCore::HTMLMediaElement::seek):
2082 (WebCore::HTMLMediaElement::setDefaultPlaybackRate):
2083 (WebCore::HTMLMediaElement::setPlaybackRate):
2084 (WebCore::HTMLMediaElement::play):
2085 (WebCore::HTMLMediaElement::pause):
2086 (WebCore::HTMLMediaElement::setVolume):
2087 (WebCore::HTMLMediaElement::setMuted):
2088 (WebCore::HTMLMediaElement::mediaPlayerTimeChanged):
2089 (WebCore::HTMLMediaElement::documentWillBecomeInactive):
2090 * html/HTMLObjectElement.cpp:
2091 (WebCore::HTMLObjectElement::parseMappedAttribute):
2092 * html/HTMLOptionElement.cpp:
2093 * html/HTMLScriptElement.cpp:
2094 (WebCore::HTMLScriptElement::parseMappedAttribute):
2095 (WebCore::HTMLScriptElement::dispatchLoadEvent):
2096 (WebCore::HTMLScriptElement::dispatchErrorEvent):
2097 * html/HTMLSelectElement.cpp:
2098 (WebCore::HTMLSelectElement::parseMappedAttribute):
2099 (WebCore::HTMLSelectElement::defaultEventHandler):
2100 (WebCore::HTMLSelectElement::menuListDefaultEventHandler):
2101 (WebCore::HTMLSelectElement::listBoxDefaultEventHandler):
2102 * html/HTMLTextAreaElement.cpp:
2103 (WebCore::HTMLTextAreaElement::parseMappedAttribute):
2104 (WebCore::HTMLTextAreaElement::defaultEventHandler):
2105 * html/HTMLTokenizer.cpp:
2106 (WebCore::HTMLTokenizer::notifyFinished):
2107 * loader/FrameLoader.cpp:
2108 (WebCore::FrameLoader::stopLoading):
2109 (WebCore::FrameLoader::canCachePage):
2110 * loader/ImageDocument.cpp:
2111 (WebCore::ImageEventListener::handleEvent):
2112 * loader/ImageLoader.cpp:
2113 * loader/MediaDocument.cpp:
2114 (WebCore::MediaDocument::defaultEventHandler):
2115 * loader/appcache/DOMApplicationCache.cpp:
2116 (WebCore::DOMApplicationCache::callCheckingListener):
2117 (WebCore::DOMApplicationCache::callErrorListener):
2118 (WebCore::DOMApplicationCache::callNoUpdateListener):
2119 (WebCore::DOMApplicationCache::callDownloadingListener):
2120 (WebCore::DOMApplicationCache::callProgressListener):
2121 (WebCore::DOMApplicationCache::callUpdateReadyListener):
2122 (WebCore::DOMApplicationCache::callCachedListener):
2123 * page/AccessibilityObject.cpp:
2124 * page/AccessibilityRenderObject.cpp:
2125 (WebCore::AccessibilityRenderObject::mouseButtonListener):
2126 * page/ContextMenuController.cpp:
2127 (WebCore::ContextMenuController::handleContextMenuEvent):
2128 * page/DOMWindow.cpp:
2129 (WebCore::DOMWindow::on*): (multiple methods)
2130 (WebCore::DOMWindow::setOn*): (multiple methods)
2131 * page/EventHandler.cpp:
2132 (WebCore::EventHandler::handleMousePressEvent):
2133 (WebCore::EventHandler::handleMouseDoubleClickEvent):
2134 (WebCore::EventHandler::handleMouseMoveEvent):
2135 (WebCore::EventHandler::handleMouseReleaseEvent):
2136 (WebCore::EventHandler::updateDragAndDrop):
2137 (WebCore::EventHandler::cancelDragAndDrop):
2138 (WebCore::EventHandler::performDragAndDrop):
2139 (WebCore::EventHandler::updateMouseEventTargetNode):
2140 (WebCore::EventHandler::dispatchMouseEvent):
2141 (WebCore::EventHandler::sendContextMenuEvent):
2142 (WebCore::EventHandler::canMouseDownStartSelect):
2143 (WebCore::EventHandler::canMouseDragExtendSelect):
2144 (WebCore::EventHandler::defaultKeyboardEventHandler):
2145 (WebCore::EventHandler::dragSourceMovedTo):
2146 (WebCore::EventHandler::dragSourceEndedAt):
2147 (WebCore::EventHandler::handleDrag):
2148 (WebCore::EventHandler::handleTextInputEvent):
2149 * page/FocusController.cpp:
2150 * page/Frame.cpp:
2151 (WebCore::Frame::sendResizeEvent):
2152 (WebCore::Frame::sendScrollEvent):
2153 * page/Page.cpp:
2154 (WebCore::networkStateChanged):
2155 * page/animation/AnimationBase.cpp:
2156 (WebCore::AnimationBase::updateStateMachine):
2157 (WebCore::AnimationBase::animationTimerCallbackFired):
2158 (WebCore::AnimationBase::primeEventTimers):
2159 * page/animation/ImplicitAnimation.cpp:
2160 (WebCore::ImplicitAnimation::onAnimationEnd):
2161 (WebCore::ImplicitAnimation::sendTransitionEvent):
2162 * page/animation/KeyframeAnimation.cpp:
2163 (WebCore::KeyframeAnimation::onAnimationStart):
2164 (WebCore::KeyframeAnimation::onAnimationIteration):
2165 (WebCore::KeyframeAnimation::onAnimationEnd):
2166 (WebCore::KeyframeAnimation::sendAnimationEvent):
2167 * page/gtk/EventHandlerGtk.cpp:
2168 * page/mac/EventHandlerMac.mm:
2169 (WebCore::isKeyboardOptionTab):
2170 * page/mac/FrameMac.mm:
2171 * page/qt/EventHandlerQt.cpp:
2172 (WebCore::isKeyboardOptionTab):
2173 * plugins/PluginView.cpp:
2174 * plugins/gtk/PluginViewGtk.cpp:
2175 * plugins/qt/PluginViewQt.cpp:
2176 * plugins/win/PluginViewWin.cpp:
2177 (WebCore::PluginView::handleKeyboardEvent):
2178 (WebCore::PluginView::handleMouseEvent):
2179 * rendering/MediaControlElements.cpp:
2180 (WebCore::MediaControlMuteButtonElement::defaultEventHandler):
2181 (WebCore::MediaControlPlayButtonElement::defaultEventHandler):
2182 (WebCore::MediaControlSeekButtonElement::defaultEventHandler):
2183 (WebCore::MediaControlTimelineElement::defaultEventHandler):
2184 (WebCore::MediaControlFullscreenButtonElement::defaultEventHandler):
2185 * rendering/RenderFrameSet.cpp:
2186 (WebCore::RenderFrameSet::userResize):
2187 * rendering/RenderLayer.cpp:
2188 (WebCore::RenderLayer::scrollToOffset):
2189 * rendering/RenderListBox.cpp:
2190 (WebCore::RenderListBox::valueChanged):
2191 * rendering/RenderMedia.cpp:
2192 (WebCore::RenderMedia::forwardEvent):
2193 * rendering/RenderObject.cpp:
2194 * rendering/RenderSlider.cpp:
2195 (WebCore::HTMLSliderThumbElement::defaultEventHandler):
2196 * rendering/RenderTextControl.cpp:
2197 (WebCore::RenderTextControl::forwardEvent):
2198 (WebCore::RenderTextControl::selectionChanged):
2199 * rendering/RenderWidget.cpp:
2200 * rendering/TextControlInnerElements.cpp:
2201 (WebCore::TextControlInnerTextElement::defaultEventHandler):
2202 (WebCore::SearchFieldResultsButtonElement::defaultEventHandler):
2203 (WebCore::SearchFieldCancelButtonElement::defaultEventHandler):
2204 * storage/LocalStorageArea.cpp:
2205 (WebCore::LocalStorageArea::dispatchStorageEvent):
2206 * storage/SessionStorageArea.cpp:
2207 (WebCore::SessionStorageArea::dispatchStorageEvent):
2208 * svg/SVGAElement.cpp:
2209 (WebCore::SVGAElement::defaultEventHandler):
2210 * svg/SVGDocument.cpp:
2211 (WebCore::SVGDocument::dispatchZoomEvent):
2212 (WebCore::SVGDocument::dispatchScrollEvent):
2213 * svg/SVGElement.cpp:
2214 (WebCore::SVGElement::parseMappedAttribute):
2215 (WebCore::hasLoadListener):
2216 (WebCore::SVGElement::sendSVGLoadEventIfPossible):
2217 * svg/SVGElementInstance.cpp:
2218 (WebCore::SVGElementInstance::on*): (multiple methods)
2219 (WebCore::SVGElementInstance::setOn*): (multiple methods)
2220 * svg/SVGImageLoader.cpp:
2221 (WebCore::SVGImageLoader::dispatchLoadEvent):
2222 * svg/SVGSVGElement.cpp:
2223 (WebCore::SVGSVGElement::parseMappedAttribute):
2224 * svg/SVGScriptElement.cpp:
2225 (WebCore::SVGScriptElement::dispatchErrorEvent):
2226 * xml/XMLHttpRequest.cpp:
2227 (WebCore::XMLHttpRequest::dispatchReadyStateChangeEvent):
2228 (WebCore::XMLHttpRequest::dispatchAbortEvent):
2229 (WebCore::XMLHttpRequest::dispatchErrorEvent):
2230 (WebCore::XMLHttpRequest::dispatchLoadEvent):
2231 (WebCore::XMLHttpRequest::dispatchLoadStartEvent):
2232 (WebCore::XMLHttpRequest::dispatchProgressEvent):
2233 * xml/XMLHttpRequestUpload.cpp:
2234 (WebCore::XMLHttpRequestUpload::dispatchAbortEvent):
2235 (WebCore::XMLHttpRequestUpload::dispatchErrorEvent):
2236 (WebCore::XMLHttpRequestUpload::dispatchLoadEvent):
2237 (WebCore::XMLHttpRequestUpload::dispatchLoadStartEvent):
2238 (WebCore::XMLHttpRequestUpload::dispatchProgressEvent):
2239 * xml/XPathResult.cpp:
2240 (WebCore::XPathResult::XPathResult):
2241 (WebCore::XPathResult::~XPathResult):
2242 (WebCore::XPathResult::invalidateIteratorState):
2243 Access event names via eventNames() function.
2244
cwzwarich@webkit.org26ab56b2008-11-04 08:07:41 +000022452008-11-04 Cameron Zwarich <zwarich@apple.com>
2246
cwzwarich@webkit.orgd39a1fc2008-11-04 09:43:49 +00002247 Reviewed by Mark Rowe.
2248
2249 Delete unused forwarding headers.
2250
2251 * ForwardingHeaders/kjs/Activation.h: Removed.
2252 * ForwardingHeaders/kjs/Register.h: Removed.
2253 * ForwardingHeaders/kjs/RegisterID.h: Removed.
2254
22552008-11-04 Cameron Zwarich <zwarich@apple.com>
2256
cwzwarich@webkit.org26ab56b2008-11-04 08:07:41 +00002257 Not reviewed.
2258
2259 Fix stupid typo in previous build fix.
2260
2261 * bindings/js/JSStorageCustom.cpp:
2262 * bindings/scripts/CodeGeneratorJS.pm:
2263 * bridge/NP_jsobject.cpp:
2264
cwzwarich@webkit.org4b497862008-11-04 04:00:31 +000022652008-11-03 Cameron Zwarich <zwarich@apple.com>
2266
cwzwarich@webkit.orge0e250b2008-11-04 07:33:36 +00002267 Not reviewed.
2268
cwzwarich@webkit.org5d5284b2008-11-04 07:56:20 +00002269 Fix the build for all non-Mac platforms.
2270
2271 * ForwardingHeaders/kjs/PropertyNameArray.h: Removed.
2272 * ForwardingHeaders/runtime/PropertyNameArray.h: Copied from ForwardingHeaders/kjs/PropertyNameArray.h.
2273 * bindings/js/JSStorageCustom.cpp:
2274 * bindings/scripts/CodeGeneratorJS.pm:
2275 * bridge/NP_jsobject.cpp:
2276
22772008-11-03 Cameron Zwarich <zwarich@apple.com>
2278
2279 Not reviewed.
2280
cwzwarich@webkit.orge0e250b2008-11-04 07:33:36 +00002281 Fix the wxWindows build.
2282
2283 * bridge/c/c_instance.cpp:
2284
22852008-11-03 Cameron Zwarich <zwarich@apple.com>
2286
cwzwarich@webkit.orgb91210c2008-11-04 07:10:41 +00002287 Rubber-stamped by Maciej Stachowiak.
2288
2289 Move more files into the runtime subdirectory of JavaScriptCore.
2290
2291 * ForwardingHeaders/kjs/ArgList.h: Removed.
2292 * ForwardingHeaders/kjs/CollectorHeapIterator.h: Removed.
2293 * ForwardingHeaders/kjs/ExecState.h: Removed.
2294 * ForwardingHeaders/kjs/InitializeThreading.h: Removed.
2295 * ForwardingHeaders/kjs/JSGlobalData.h: Removed.
2296 * ForwardingHeaders/kjs/JSLock.h: Removed.
2297 * ForwardingHeaders/kjs/SymbolTable.h: Removed.
2298 * ForwardingHeaders/runtime/ArgList.h: Copied from ForwardingHeaders/kjs/ArgList.h.
2299 * ForwardingHeaders/runtime/CollectorHeapIterator.h: Copied from ForwardingHeaders/kjs/CollectorHeapIterator.h.
2300 * ForwardingHeaders/runtime/ExecState.h: Copied from ForwardingHeaders/kjs/ExecState.h.
2301 * ForwardingHeaders/runtime/InitializeThreading.h: Copied from ForwardingHeaders/kjs/InitializeThreading.h.
2302 * ForwardingHeaders/runtime/JSGlobalData.h: Copied from ForwardingHeaders/kjs/JSGlobalData.h.
2303 * ForwardingHeaders/runtime/JSLock.h: Copied from ForwardingHeaders/kjs/JSLock.h.
2304 * ForwardingHeaders/runtime/SymbolTable.h: Copied from ForwardingHeaders/kjs/SymbolTable.h.
2305 * bindings/js/GCController.cpp:
2306 * bindings/js/JSCustomPositionCallback.cpp:
2307 * bindings/js/JSCustomPositionErrorCallback.cpp:
2308 * bindings/js/JSCustomSQLStatementCallback.cpp:
2309 * bindings/js/JSCustomSQLStatementErrorCallback.cpp:
2310 * bindings/js/JSCustomSQLTransactionCallback.cpp:
2311 * bindings/js/JSCustomSQLTransactionErrorCallback.cpp:
2312 * bindings/js/JSCustomVoidCallback.cpp:
2313 * bindings/js/JSCustomXPathNSResolver.cpp:
2314 * bindings/js/JSDOMWindowBase.cpp:
2315 * bindings/js/JSEventCustom.cpp:
2316 * bindings/js/JSEventListener.cpp:
2317 * bindings/js/JSNodeFilterCondition.cpp:
2318 * bindings/js/ScheduledAction.cpp:
2319 * bindings/js/ScriptController.cpp:
2320 * bindings/js/ScriptControllerMac.mm:
2321 * bindings/objc/WebScriptObject.mm:
2322 * bridge/NP_jsobject.cpp:
2323 * bridge/c/c_class.cpp:
2324 * bridge/c/c_instance.cpp:
2325 * bridge/c/c_runtime.cpp:
2326 * bridge/c/c_utility.cpp:
2327 * bridge/jni/jni_class.cpp:
2328 * bridge/jni/jni_instance.cpp:
2329 * bridge/jni/jni_jsobject.mm:
2330 * bridge/jni/jni_objc.mm:
2331 * bridge/jni/jni_runtime.cpp:
2332 * bridge/jni/jni_runtime.h:
2333 * bridge/jni/jni_utility.cpp:
2334 * bridge/npruntime.cpp:
2335 * bridge/objc/objc_instance.mm:
2336 * bridge/objc/objc_runtime.mm:
2337 * bridge/objc/objc_utility.mm:
2338 * bridge/runtime.cpp:
2339 * dom/Document.cpp:
2340 * dom/Node.cpp:
2341 * dom/NodeFilter.cpp:
2342 * dom/NodeIterator.cpp:
2343 * dom/TreeWalker.cpp:
2344 * history/CachedPage.cpp:
2345 * inspector/InspectorController.cpp:
2346 * inspector/JavaScriptCallFrame.cpp:
2347 * inspector/JavaScriptCallFrame.h:
2348 * inspector/JavaScriptDebugServer.cpp:
2349 * inspector/JavaScriptProfileNode.cpp:
2350 * loader/FrameLoader.cpp:
2351 * loader/icon/IconDatabase.cpp:
2352 * page/Console.cpp:
2353 * page/Page.cpp:
2354 * page/mac/FrameMac.mm:
2355 * plugins/PluginView.cpp:
2356 * plugins/gtk/PluginViewGtk.cpp:
2357 * plugins/qt/PluginViewQt.cpp:
2358 * plugins/win/PluginViewWin.cpp:
2359 * storage/Database.cpp:
2360 * xml/XMLHttpRequest.cpp:
2361
23622008-11-03 Cameron Zwarich <zwarich@apple.com>
2363
cwzwarich@webkit.org4b497862008-11-04 04:00:31 +00002364 Reviewed by Sam Weinig.
2365
2366 Remove the forwarding header for FunctionCallProfile, because it was
2367 renamed to ProfileNode in r33466.
2368
2369 * ForwardingHeaders/kjs/FunctionCallProfile.h: Removed.
2370
simon.fraser@apple.comf9050b32008-11-03 22:37:00 +000023712008-11-03 Simon Fraser <simon.fraser@apple.com>
2372
2373 Reviewed by Dave Hyatt
2374
2375 https://bugs.webkit.org/show_bug.cgi?id=22026
2376
2377 When computing the bounds of the transparency layer, we need to
2378 map the clipRect through the enclosing transform.
2379
2380 Test: fast/layers/opacity-transforms.html
2381
2382 * rendering/RenderLayer.cpp:
2383 (WebCore::transparencyClipBox):
2384
kdecker@apple.comeb4eabb22008-11-03 20:52:50 +000023852008-11-03 Kevin Decker <kdecker@apple.com>
2386
2387 Reviewed by Anders Carlsson.
2388
2389 https://bugs.webkit.org/show_bug.cgi?id=22053
2390
2391 Added additional support needed for the NPDrawingModelCoreAnimation drawing model.
2392
2393 * bridge/npapi.h:
2394
alp@webkit.org75ab3a52008-11-03 19:15:13 +000023952008-11-03 Xan Lopez <xan@gnome.org>
2396
2397 Reviewed by Alp Toker.
2398
2399 Update parseDataUrl() function in the libsoup http backend with
2400 the one from the curl backend which has recent correctness and crash
2401 fixes.
2402
2403 * platform/network/soup/ResourceHandleSoup.cpp:
2404 (WebCore::parseDataUrl):
2405
alp@webkit.org1ad9e722008-11-03 16:50:16 +000024062008-11-03 Holger Hans Peter Freyther <zecke@selfish.org>
2407
2408 Reviewed by Alp Toker.
2409
2410 https://bugs.webkit.org/show_bug.cgi?id=22041
2411 Fix CURL crashes on the test suite
2412
alp@webkit.orgc90968d2008-11-03 17:11:19 +00002413 Fix segfault with setDefersLoading(). Do not call into curl when we
2414 don't have a CURL handle.
2415
2416 It is attempted to defer the loading before the load has been
2417 started (no curl handle was allocated yet). If that happens then
2418 just remember that. ResourceHandleManager::startJob is already taking
2419 care of this and in initResourceHandle the the downloading will
2420 be paused if needed.
2421
2422 Fixes fast/loader/simultaneous-reloads-assert.html
2423
2424 * platform/network/curl/ResourceHandleCurl.cpp:
2425 (WebCore::ResourceHandle::setDefersLoading):
2426
24272008-11-03 Holger Hans Peter Freyther <zecke@selfish.org>
2428
2429 Reviewed by Alp Toker.
2430
2431 https://bugs.webkit.org/show_bug.cgi?id=22041
2432 Fix CURL crashes on the test suite
2433
alp@webkit.org1ad9e722008-11-03 16:50:16 +00002434 Do not send "no data" to WebCore in parseDataUrl().
2435
2436 Fixes assert on fast/tokenizer/image-empty-crash.html
2437
2438 * platform/network/curl/ResourceHandleManager.cpp:
2439 (WebCore::parseDataUrl):
2440
christian@webkit.orgfb968c62008-11-02 20:23:14 +000024412008-11-02 Xan Lopez <xan@gnome.org>
2442
2443 Reviewed by Holger Freyther.
2444
2445 https://bugs.webkit.org/show_bug.cgi?id=22009
2446 HTML5 Video with GStreamer pulls gnome-vfs without using it
2447
2448 * platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp:
2449 Remove gnome-vfs include.
2450
abarth@webkit.orga796cc02008-11-01 09:31:42 +000024512008-11-01 Adam Barth <abarth@webkit.org>
2452
2453 Reviewed by Sam Weinig.
2454
2455 Be sure to check the final URLs of requested resources to make sure we
2456 don't get fooled by HTTP redirects.
2457
2458 https://bugs.webkit.org/show_bug.cgi?id=21963
2459
2460 Tests: http/tests/security/xss-DENIED-xsl-document-redirect.xml
2461 http/tests/security/xss-DENIED-xsl-external-entity-redirect.xml
2462
2463 * dom/XMLTokenizerLibxml2.cpp:
2464 (WebCore::openFunc):
2465 * loader/DocLoader.cpp:
2466 (WebCore::DocLoader::canRequest):
2467 (WebCore::DocLoader::requestResource):
2468 * loader/DocLoader.h:
2469 * xml/XSLTProcessor.cpp:
2470 (WebCore::docLoaderFunc):
2471
ap@webkit.orgec7365b2008-11-01 07:21:53 +000024722008-11-01 Alexey Proskuryakov <ap@webkit.org>
2473
2474 Reviewed by Darin Adler.
2475
2476 https://bugs.webkit.org/show_bug.cgi?id=22001
2477 AtomicStringImpl* keys of event listener maps can outlive their strings
2478
2479 Test: fast/events/destroyed-atomic-string.html
2480
2481 * dom/MessagePort.cpp:
2482 (WebCore::MessagePort::addEventListener):
2483 (WebCore::MessagePort::removeEventListener):
2484 (WebCore::MessagePort::dispatchEvent):
2485 * dom/MessagePort.h:
2486 * loader/appcache/DOMApplicationCache.cpp:
2487 (WebCore::DOMApplicationCache::addEventListener):
2488 (WebCore::DOMApplicationCache::removeEventListener):
2489 (WebCore::DOMApplicationCache::dispatchEvent):
2490 * loader/appcache/DOMApplicationCache.h:
2491 * xml/XMLHttpRequest.cpp:
2492 (WebCore::XMLHttpRequest::addEventListener):
2493 (WebCore::XMLHttpRequest::removeEventListener):
2494 (WebCore::XMLHttpRequest::dispatchEvent):
2495 * xml/XMLHttpRequest.h:
2496 * xml/XMLHttpRequestUpload.cpp:
2497 (WebCore::XMLHttpRequestUpload::addEventListener):
2498 (WebCore::XMLHttpRequestUpload::removeEventListener):
2499 (WebCore::XMLHttpRequestUpload::dispatchEvent):
2500 * xml/XMLHttpRequestUpload.h:
2501 Changed EventListenersMap to use AtomicString as key (instead of AtomicStringImpl*).
2502
ap@webkit.orgf319b262008-11-01 07:11:09 +000025032008-10-31 Alexey Proskuryakov <ap@webkit.org>
2504
2505 Reviewed by Darin Adler.
2506
2507 https://bugs.webkit.org/show_bug.cgi?id=21998
2508 Use JSDOMGlobalObject in EventListener-related bindings
2509
2510 * dom/MessagePort.idl: Auto-generate bindings for onclose and onmessage.
2511
2512 * bindings/scripts/CodeGeneratorJS.pm: Use JSDOMGlobalObject instead of JSDOMWindow in JS
2513 bindings for inline event handlers.
2514
2515 * bindings/js/JSDOMApplicationCacheCustom.cpp:
2516 (WebCore::JSDOMApplicationCache::addEventListener):
2517 (WebCore::JSDOMApplicationCache::removeEventListener):
2518 * bindings/js/JSEventTargetNodeCustom.cpp:
2519 (WebCore::JSEventTargetNode::addEventListener):
2520 (WebCore::JSEventTargetNode::removeEventListener):
2521 * bindings/js/JSMessagePortCustom.cpp:
2522 (WebCore::JSMessagePort::removeEventListener):
2523 * bindings/js/JSSVGElementInstanceCustom.cpp:
2524 (WebCore::JSSVGElementInstance::addEventListener):
2525 (WebCore::JSSVGElementInstance::removeEventListener):
2526 * bindings/js/JSXMLHttpRequestCustom.cpp:
2527 (WebCore::JSXMLHttpRequest::addEventListener):
2528 (WebCore::JSXMLHttpRequest::removeEventListener):
2529 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
2530 (WebCore::JSXMLHttpRequestUpload::addEventListener):
2531 (WebCore::JSXMLHttpRequestUpload::removeEventListener):
2532 Use ScriptExecutionContext and JSDOMGlobalObject in bindings.
2533
2534 * dom/EventTarget.h:
2535 * dom/EventTargetNode.cpp:
2536 (WebCore::EventTargetNode::scriptExecutionContext):
2537 * dom/EventTargetNode.h:
2538 * dom/MessagePort.cpp:
2539 * dom/MessagePort.h:
2540 (WebCore::MessagePort::scriptExecutionContext):
2541 * loader/appcache/DOMApplicationCache.cpp:
2542 (WebCore::DOMApplicationCache::scriptExecutionContext):
2543 * loader/appcache/DOMApplicationCache.h:
2544 * svg/SVGElementInstance.cpp:
2545 (WebCore::SVGElementInstance::scriptExecutionContext):
2546 * svg/SVGElementInstance.h:
2547 * xml/XMLHttpRequest.cpp:
2548 (WebCore::XMLHttpRequest::scriptExecutionContext):
2549 * xml/XMLHttpRequest.h:
2550 * xml/XMLHttpRequestUpload.cpp:
2551 (WebCore::XMLHttpRequestUpload::scriptExecutionContext):
2552 * xml/XMLHttpRequestUpload.h:
2553 Remove associatedFrame() method, and provide scriptExecutionContext() where it wasn't
2554 available yet.
2555
cwzwarich@webkit.org7d328d52008-11-01 00:35:14 +000025562008-10-31 Cameron Zwarich <zwarich@apple.com>
2557
cwzwarich@webkit.org16e38912008-11-01 01:05:21 +00002558 Rubber-stamped by Geoff Garen.
2559
2560 Rename SourceRange.h to SourceCode.h.
2561
2562 * ForwardingHeaders/kjs/SourceCode.h: Copied from ForwardingHeaders/kjs/SourceRange.h.
2563 * ForwardingHeaders/kjs/SourceRange.h: Removed.
2564 * bindings/js/StringSourceProvider.h:
2565 * bridge/NP_jsobject.cpp:
2566
25672008-10-31 Cameron Zwarich <zwarich@apple.com>
2568
cwzwarich@webkit.org7d328d52008-11-01 00:35:14 +00002569 Reviewed by Darin Adler.
2570
2571 Bug 22019: Move JSC::Interpreter::shouldPrintExceptions() to WebCore::Console
2572 <https://bugs.webkit.org/show_bug.cgi?id=22019>
2573
2574 * WebCore.base.exp:
2575 * page/Console.cpp:
2576 (WebCore::printToStandardOut):
2577 (WebCore::Console::shouldPrintExceptions):
2578 (WebCore::Console::setShouldPrintExceptions):
2579 * page/Console.h:
2580
mitz@apple.comb7f88482008-10-31 23:35:00 +000025812008-10-31 Dan Bernstein <mitz@apple.com>
2582
2583 Reviewed by John Sullivan.
2584
2585 - WebCore part of <rdar://problem/6334641> Add WebView SPI for disabling document.cookie
2586
2587 * dom/Document.cpp:
2588 (WebCore::Document::cookie): Added checking if cookies are disabled.
2589 (WebCore::Document::setCookie): Ditto.
2590 * page/Navigator.cpp:
2591 (WebCore::Navigator::cookieEnabled): Ditto.
2592 * page/Page.cpp:
2593 (WebCore::Page::Page): Initialize m_cookieEnabled to true.
2594 * page/Page.h:
2595 (WebCore::Page::cookieEnabled): Added.
2596 (WebCore::Page::setCookieEnabled): Added.
2597
adele@apple.comae80b362008-10-31 23:25:48 +000025982008-10-31 Adele Peterson <adele@apple.com>
2599
2600 Reviewed by Darin Adler.
2601
2602 WebCore Windows part of fix for <rdar://problem/5839256> FILE CONTROL: multi-file upload.
2603 https://bugs.webkit.org/show_bug.cgi?id=22008
2604
2605 * platform/FileChooser.cpp: (WebCore::FileChooser::chooseIcon):
2606 Rename newIconForFile and newIconForFiles to createIconForFile and createIconForFiles.
2607 * platform/graphics/Icon.h: ditto.
2608 * platform/graphics/gtk/IconGtk.cpp:
2609 (WebCore::Icon::createIconForFile): ditto.
2610 (WebCore::Icon::createIconForFiles): ditto.
2611 * platform/graphics/mac/IconMac.mm:
2612 (WebCore::Icon::createIconForFile): ditto.
2613 (WebCore::Icon::createIconForFiles): ditto.
2614 * platform/graphics/qt/IconQt.cpp:
2615 (WebCore::Icon::createIconForFile): ditto.
2616 (WebCore::Icon::createIconForFiles): ditto.
2617 * platform/wx/TemporaryLinkStubs.cpp:
2618 (Icon::createIconForFile): ditto.
2619 (Icon::createIconForFiles): ditto.
2620 * platform/graphics/win/IconWin.cpp:
2621 (WebCore::Icon::createIconForFile): ditto.
2622 (WebCore::Icon::createIconForFiles): Add creation of an icon for multiple files.
2623
2624 * rendering/RenderThemeWin.cpp: (WebCore::RenderThemeWin::paintSearchFieldResultsDecoration):
2625 Improve icon creation code to match new code in Icon::createIconForFiles
2626
timothy@apple.comfae10182008-10-31 18:49:52 +000026272008-10-31 Timothy Hatcher <timothy@apple.com>
2628
2629 Add manual tests that check breakpoints on a blockless body of "for" loops.
2630
2631 https://bugs.webkit.org/show_bug.cgi?id=22004
2632
2633 Reviewed by Darin Adler.
2634
2635 * manual-tests/inspector/debugger-pause-on-for-in-statements.html: Added.
2636 * manual-tests/inspector/debugger-pause-on-for-statements.html: Added.
2637
darin@apple.com61934912008-10-31 18:45:19 +000026382008-10-31 Darin Adler <darin@apple.com>
2639
2640 - fix build
2641
2642 * platform/win/WCDataObject.cpp: Added missing include of "config.h".
2643
ap@webkit.orgbe35d512008-10-31 09:44:03 +000026442008-10-30 Alexey Proskuryakov <ap@webkit.org>
2645
2646 Reviewed by Darin Adler.
2647
2648 https://bugs.webkit.org/show_bug.cgi?id=21970
2649 Make MessagePort event dispatch work in workers
2650
2651 * bindings/js/JSDOMGlobalObject.cpp:
2652 (WebCore::JSDOMGlobalObject::JSDOMGlobalObjectData::JSDOMGlobalObjectData):
2653 (WebCore::JSDOMGlobalObject::~JSDOMGlobalObject):
2654 (WebCore::JSDOMGlobalObject::findJSEventListener):
2655 (WebCore::JSDOMGlobalObject::findOrCreateJSEventListener):
2656 (WebCore::JSDOMGlobalObject::findJSUnprotectedEventListener):
2657 (WebCore::JSDOMGlobalObject::findOrCreateJSUnprotectedEventListener):
2658 (WebCore::JSDOMGlobalObject::jsEventListeners):
2659 (WebCore::JSDOMGlobalObject::jsInlineEventListeners):
2660 (WebCore::JSDOMGlobalObject::jsUnprotectedEventListeners):
2661 (WebCore::JSDOMGlobalObject::jsUnprotectedInlineEventListeners):
2662 (WebCore::JSDOMGlobalObject::setCurrentEvent):
2663 (WebCore::JSDOMGlobalObject::currentEvent):
2664 (WebCore::toJSDOMGlobalObject):
2665 * bindings/js/JSDOMGlobalObject.h:
2666 * bindings/js/JSDOMWindowBase.cpp:
2667 (WebCore::JSDOMWindowBase::JSDOMWindowBaseData::JSDOMWindowBaseData):
2668 (WebCore::JSDOMWindowBase::~JSDOMWindowBase):
2669 (WebCore::JSDOMWindowBase::clearHelperObjectProperties):
2670 * bindings/js/JSDOMWindowBase.h:
2671 Moved event listener tracking from JSDOMWindow to JSDOMGlobalObject.
2672
2673 * bindings/js/JSEventListener.cpp:
2674 (WebCore::JSAbstractEventListener::handleEvent):
2675 (WebCore::JSUnprotectedEventListener::JSUnprotectedEventListener):
2676 (WebCore::JSUnprotectedEventListener::~JSUnprotectedEventListener):
2677 (WebCore::JSUnprotectedEventListener::globalObject):
2678 (WebCore::JSUnprotectedEventListener::clearGlobalObject):
2679 (WebCore::JSEventListener::JSEventListener):
2680 (WebCore::JSEventListener::~JSEventListener):
2681 (WebCore::JSEventListener::globalObject):
2682 (WebCore::JSEventListener::clearGlobalObject):
2683 (WebCore::JSLazyEventListener::JSLazyEventListener):
2684 (WebCore::JSLazyEventListener::parseCode):
2685 * bindings/js/JSEventListener.h:
2686 (WebCore::JSUnprotectedEventListener::create):
2687 (WebCore::JSEventListener::create):
2688 (WebCore::JSLazyEventListener::create):
2689 Changed to use JSDOMGlobalObject and ScriptExecutionContext.
2690
2691 * bindings/js/JSMessagePortCustom.cpp:
2692 (WebCore::JSMessagePort::startConversation):
2693 (WebCore::JSMessagePort::addEventListener):
2694 (WebCore::JSMessagePort::removeEventListener):
2695 (WebCore::JSMessagePort::setOnmessage):
2696 (WebCore::JSMessagePort::setOnclose):
2697 Updated bindings to work with JSDOMGlobalObject. Next step is to make code generator emit
2698 such code, and stop using a custom implementation for JSMessagePort inline event handler
2699 getters and setters.
2700
2701 * dom/Document.cpp:
2702 (WebCore::Document::virtualURL):
2703 * dom/Document.h:
2704 * dom/ScriptExecutionContext.h:
2705 Expose url() method on ScriptExecutionContext (necessary for compiling scripts in
2706 JSLazyEventListener).
2707
cwzwarich@webkit.orgefc1b112008-10-31 08:18:20 +000027082008-10-31 Cameron Zwarich <zwarich@apple.com>
2709
2710 Not reviewed.
2711
2712 Speculative wxWindows build fix.
2713
2714 * webcore-base.bkl:
2715
mrowe@apple.com222bc732008-10-31 06:13:07 +000027162008-10-30 Mark Rowe <mrowe@apple.com>
2717
2718 Reviewed by Jon Homeycutt.
2719
2720 Explicitly default to building for only the native architecture in debug and release builds.
2721
2722 * Configurations/DebugRelease.xcconfig:
2723
cwzwarich@webkit.orga691b5a2008-10-31 05:56:58 +000027242008-10-30 Cameron Zwarich <zwarich@apple.com>
2725
2726 Rubber-stamped by Sam Weinig.
2727
2728 Create a debugger directory in JavaScriptCore and move the relevant
2729 files to it.
2730
2731 * ForwardingHeaders/debugger: Added.
2732 * ForwardingHeaders/debugger/Debugger.h: Copied from ForwardingHeaders/kjs/debugger.h.
2733 * ForwardingHeaders/debugger/DebuggerCallFrame.h: Copied from ForwardingHeaders/kjs/DebuggerCallFrame.h.
2734 * ForwardingHeaders/kjs/DebuggerCallFrame.h: Removed.
2735 * ForwardingHeaders/kjs/debugger.h: Removed.
2736 * WebCore.pro:
2737 * bindings/js/ScriptController.cpp:
2738 * inspector/JavaScriptCallFrame.cpp:
2739 * inspector/JavaScriptCallFrame.h:
2740 * inspector/JavaScriptDebugServer.cpp:
2741 * inspector/JavaScriptDebugServer.h:
2742
timothy@apple.com4ab9f652008-10-31 05:49:22 +000027432008-10-30 Tony Chang <tony@chromium.org>
2744
2745 Fix 2 Windows theme bugs:
2746 1) Checkboxes marked readonly were rendered incorrectly
2747 2) If a button has focus and is pressed, it was rendered
2748 as focused rather than pressed.
2749
2750 https://bugs.webkit.org/show_bug.cgi?id=21859
2751
2752 Reviewed by Dave Hyatt.
2753
2754 * rendering/RenderThemeWin.cpp:
2755 (WebCore::RenderThemeWin::determineState):
2756 (WebCore::RenderThemeWin::determineButtonState):
2757
timothy@apple.come95b7572008-10-31 05:36:06 +000027582008-10-30 Benjamin K. Stuhl <bks24@cornell.edu>
2759
2760 gcc 4.3.3/linux-x86 generates "suggest parentheses around && within ||"
2761 warnings; add some parentheses to disambiguate things. No functional
2762 changes, so no tests.
2763
2764 https://bugs.webkit.org/show_bug.cgi?id=21973
2765 Add parentheses to clean up some gcc warnings
2766
2767 Reviewed by Dan Bernstein.
2768
2769 * platform/graphics/Font.h:
2770 (WebCore::Font::treatAsZeroWidthSpace):
2771
timothy@apple.comef646322008-10-31 05:29:01 +000027722008-10-30 Aaron Boodman <aa@chromium.org>
2773
2774 Added an explicit dependency on HashMap.h. It was getting pulled in via
2775 <kjs/identifier.h> in the case of JSC, causing errors for the Chromium port.
2776
2777 Reviewed by Darin Adler.
2778
2779 * platform/text/PlatformString.h:
2780
ddkilzer@apple.com14d66632008-10-31 01:54:49 +000027812008-10-30 Greg Bolsinga <bolsinga@apple.com>
2782
2783 Reviewed by Sam Weinig
2784
ddkilzer@apple.com52840822008-10-31 01:56:43 +00002785 https://bugs.webkit.org/show_bug.cgi?id=21967
2786
2787 For some platforms the GeolocationService must be suspended and resumed.
2788
2789 * page/Geolocation.cpp:
2790 (WebCore::Geolocation::clearWatch): now uses Geolocation::hasListeners()
2791 (WebCore::Geolocation::suspend): calls GeolocationService::suspend() if there are listeners
2792 (WebCore::Geolocation::resume): calls GeolocationService::resume() if there are listeners
2793 (WebCore::Geolocation::geolocationServicePositionChanged): now uses Geolocation::hasListeners()
2794 * page/Geolocation.h:
2795 (WebCore::Geolocation::hasListeners): Indicates of the Geolocation has interested GeolocationService listeners
2796 * platform/GeolocationService.h:
2797 (WebCore::GeolocationService::suspend): empty implementation
2798 (WebCore::GeolocationService::resume): empty implementation
2799
28002008-10-30 Greg Bolsinga <bolsinga@apple.com>
2801
2802 Reviewed by Sam Weinig
2803
ddkilzer@apple.com14d66632008-10-31 01:54:49 +00002804 https://bugs.webkit.org/show_bug.cgi?id=21966
2805
2806 The Geolocation spec was updated on 10/27/2008. This brings WebCore up to date.
2807 http://dev.w3.org/geo/api/spec-source.html
2808
2809 * page/Geolocation.cpp:
2810 (WebCore::Geolocation::GeoNotifier::GeoNotifier): PositionOptions' timeout now unsigned
2811 * page/Geoposition.cpp: velocity is now called speed
2812 (WebCore::Geoposition::toString):
2813 * page/Geoposition.h: velocity is now called speed
2814 (WebCore::Geoposition::create):
2815 (WebCore::Geoposition::speed):
2816 (WebCore::Geoposition::Geoposition):
2817 * page/Geoposition.idl: velocity is now called speed
2818 * page/PositionOptions.h: timeout is now unsigned
2819 (WebCore::PositionOptions::create):
2820 (WebCore::PositionOptions::timeout):
2821 (WebCore::PositionOptions::setTimeout):
2822 (WebCore::PositionOptions::PositionOptions):
2823 * page/PositionOptions.idl: timeout is now unsigned long
2824
justin.garcia@apple.com8c6832c2008-10-30 23:46:31 +000028252008-10-30 Justin Garcia <justin.garcia@apple.com>
2826
justin.garcia@apple.com484cb6b2008-10-31 00:11:48 +00002827 Also handle preserved newlines.
2828
2829 * editing/BreakBlockquoteCommand.cpp:
2830 (WebCore::BreakBlockquoteCommand::doApply):
2831
28322008-10-30 Justin Garcia <justin.garcia@apple.com>
2833
justin.garcia@apple.com8c6832c2008-10-30 23:46:31 +00002834 Reviewed by Beth Dakin.
2835
2836 <rdar://problem/6104369> Hitting return at the end of a quoted line creates an extraneous quoted line
2837
2838 * editing/BreakBlockquoteCommand.cpp:
2839 (WebCore::BreakBlockquoteCommand::doApply):
2840 Don't store the endingSelection() in selection, just call endingSelection() in the few places it's
2841 needed. This function is cheap since it just returns a reference to a Selection instead of creating one.
2842 Don't store an affinity. In the one place that it was used, isLastVisiblePositionInNode(VisiblePosition(pos, affinity), topBlockquote),
2843 we now use visiblePos (in order to avoid VisiblePosition creation).
2844 Set pos after we delete the current selection (if there is one), and be consistent about what we set
2845 pos to. Before, we upstream()ed it if there was a selection to delete and left it alone otherwise. In fact...
2846 ...we need to use downstream() for pos so that when a caret is at the boundary between two nodes, pos is
2847 in the first node that we want to move. This fixes the bug, since it lets code that checks for the case
2848 where the caret is between text and a br work correctly.
2849
vestbo@webkit.orgd8876f12008-10-30 20:45:52 +000028502008-10-30 Yael Aharon <yael.aharon@nokia.com>
2851
2852 Reviewed by Darin Adler.
2853
2854 Fix the Qt build.
2855
2856 https://bugs.webkit.org/show_bug.cgi?id=21969
2857
2858 * inspector/front-end/WebKit.qrc:
2859 * platform/graphics/qt/ImageBufferQt.cpp:
2860 (WebCore::ImageBufferData::ImageBufferData):
2861 (WebCore::ImageBuffer::ImageBuffer):
2862 (WebCore::ImageBuffer::context):
2863 (WebCore::ImageBuffer::image):
2864 (WebCore::ImageBuffer::toDataURL):
2865
darin@apple.comf9f4f9a2008-10-30 20:52:02 +000028662008-10-30 Justin Garcia <justin.garcia@apple.com>
2867
2868 Reviewed by Darin Adler.
2869
2870 More preparation for:
2871 <rdar://problem/6104369> Hitting return at the end of a quoted line creates an extraneous quoted line
2872
2873 * editing/BreakBlockquoteCommand.cpp:
2874 (WebCore::BreakBlockquoteCommand::doApply): Added comments. Don't need to use newStartNode. If the
2875 startNode needs to change, change it. Afterwords, check to make sure that it hasn't left topBlockquote.
2876 This is slightly stricter than before, where we just made sure that it still had a topBlockquote. This
2877 doesn't really fix a bug, since we can't really get into a situation where we move to a different
2878 topBlockquote, but it simplifies the code.
2879
alp@webkit.org3d557522008-10-30 14:09:59 +000028802008-10-30 Dirk Schulze <vbs85@gmx.de>
2881
2882 Reviewed by Alp Toker.
2883
2884 https://bugs.webkit.org/show_bug.cgi?id=21883
2885 [CAIRO] globalAlpha has to be stored and restored
2886
2887 Cairo's globalAlpha has to be stored and reloaded on calling
2888 save() and restore(). We use the power of GraphicsContextState for this.
2889
2890 * platform/graphics/GraphicsContextPrivate.h:
2891 (WebCore::GraphicsContextState::GraphicsContextState):
2892 * platform/graphics/cairo/GraphicsContextCairo.cpp:
2893 (WebCore::GraphicsContext::fillPath):
2894 (WebCore::GraphicsContext::strokePath):
2895 (WebCore::GraphicsContext::setAlpha):
2896 (WebCore::GraphicsContext::getAlpha):
2897 * platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h:
2898 (WebCore::GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate):
2899
ap@webkit.org771c2652008-10-30 08:41:34 +000029002008-10-29 Alexey Proskuryakov <ap@webkit.org>
2901
2902 Reviewed by Maciej Stachowiak.
2903
2904 Rename "attachedToEventTargetNode" to "isInline".
2905
2906 Inline (onXXX) attributes are used not just with event target nodes, but also with Window,
2907 XMLHttpRequest, MessagePort et al.
2908
2909 Also renamed createHTMLEventHandler() (which was a leftover from earlier isHTMLEvent ->
2910 attachedToEventTargetNode rename made for SVG) to createInlineEventListener().
2911 And also renamed EventTargetNode, Document and Window "eventListenerForType" methods to
2912 "inlineEventListenerForType", as they work with inline listeners.
2913
2914 * bindings/js/JSDOMApplicationCacheCustom.cpp:
2915 (WebCore::JSDOMApplicationCache::addEventListener):
2916 (WebCore::JSDOMApplicationCache::removeEventListener):
2917 * bindings/js/JSMessagePortCustom.cpp:
2918 (WebCore::JSMessagePort::setOnmessage):
2919 (WebCore::JSMessagePort::setOnclose):
2920 * bindings/js/JSXMLHttpRequestCustom.cpp:
2921 (WebCore::JSXMLHttpRequest::addEventListener):
2922 (WebCore::JSXMLHttpRequest::removeEventListener):
2923 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
2924 (WebCore::JSXMLHttpRequestUpload::addEventListener):
2925 (WebCore::JSXMLHttpRequestUpload::removeEventListener):
2926 Pass a correct value for this argument - callers used to be confused, because they didn't
2927 consider themselves event target nodes. This doesn't affect behavior however, as the only
2928 difference between inline and non-inline event handlers is that the former treat
2929 "return false" as "event.preventDefault()", which is not important to any of these objects.
2930
2931 * bindings/js/JSEventListener.cpp: (WebCore::JSLazyEventListener::parseCode):
2932 Assert that isInline is true instead of checking its value, as the constructor of this class
2933 always sets it to true.
2934
2935 * bindings/js/JSDOMWindowBase.cpp:
2936 (WebCore::JSDOMWindowBase::~JSDOMWindowBase):
2937 (WebCore::JSDOMWindowBase::findJSEventListener):
2938 (WebCore::JSDOMWindowBase::findOrCreateJSEventListener):
2939 (WebCore::JSDOMWindowBase::findJSUnprotectedEventListener):
2940 (WebCore::JSDOMWindowBase::findOrCreateJSUnprotectedEventListener):
2941 (WebCore::JSDOMWindowBase::jsInlineEventListeners):
2942 (WebCore::JSDOMWindowBase::jsUnprotectedInlineEventListeners):
2943 * bindings/js/JSDOMWindowBase.h:
2944 * bindings/js/JSEventListener.cpp:
2945 (WebCore::JSAbstractEventListener::handleEvent):
2946 (WebCore::JSAbstractEventListener::isInline):
2947 (WebCore::JSUnprotectedEventListener::JSUnprotectedEventListener):
2948 (WebCore::JSUnprotectedEventListener::~JSUnprotectedEventListener):
2949 (WebCore::JSEventListener::JSEventListener):
2950 (WebCore::JSEventListener::~JSEventListener):
2951 (WebCore::JSLazyEventListener::parseCode):
2952 * bindings/js/JSEventListener.h:
2953 (WebCore::JSAbstractEventListener::JSAbstractEventListener):
2954 (WebCore::JSUnprotectedEventListener::create):
2955 (WebCore::JSEventListener::create):
2956 * bindings/js/ScriptController.cpp:
2957 (WebCore::ScriptController::createInlineEventHandler):
2958 * bindings/js/ScriptController.h:
2959 * dom/Document.cpp:
2960 (WebCore::Document::setWindowInlineEventListenerForType):
2961 (WebCore::Document::windowInlineEventListenerForType):
2962 (WebCore::Document::removeWindowInlineEventListenerForType):
2963 (WebCore::Document::createEventListener):
2964 (WebCore::Document::setWindowInlineEventListenerForTypeAndAttribute):
2965 * dom/Document.h:
2966 * dom/EventListener.h:
2967 (WebCore::EventListener::isInline):
2968 * dom/EventTargetNode.cpp:
2969 (WebCore::EventTargetNode::removeInlineEventListenerForType):
2970 (WebCore::EventTargetNode::setInlineEventListenerForType):
2971 (WebCore::EventTargetNode::setInlineEventListenerForTypeAndAttribute):
2972 (WebCore::EventTargetNode::inlineEventListenerForType):
2973 (WebCore::EventTargetNode::on*): (many methods)
2974 (WebCore::EventTargetNode::setOn*): (many methods)
2975 * dom/EventTargetNode.h:
2976 * editing/ReplaceSelectionCommand.cpp:
2977 (WebCore::ReplacementFragment::ReplacementFragment):
2978 * html/HTMLBodyElement.cpp:
2979 (WebCore::HTMLBodyElement::parseMappedAttribute):
2980 * html/HTMLButtonElement.cpp:
2981 (WebCore::HTMLButtonElement::parseMappedAttribute):
2982 * html/HTMLElement.cpp:
2983 (WebCore::HTMLElement::parseMappedAttribute):
2984 * html/HTMLFormElement.cpp:
2985 (WebCore::HTMLFormElement::parseMappedAttribute):
2986 * html/HTMLFrameElementBase.cpp:
2987 (WebCore::HTMLFrameElementBase::parseMappedAttribute):
2988 * html/HTMLFrameSetElement.cpp:
2989 (WebCore::HTMLFrameSetElement::parseMappedAttribute):
2990 * html/HTMLImageElement.cpp:
2991 (WebCore::HTMLImageElement::parseMappedAttribute):
2992 * html/HTMLInputElement.cpp:
2993 (WebCore::HTMLInputElement::parseMappedAttribute):
2994 * html/HTMLObjectElement.cpp:
2995 (WebCore::HTMLObjectElement::parseMappedAttribute):
2996 * html/HTMLScriptElement.cpp:
2997 (WebCore::HTMLScriptElement::parseMappedAttribute):
2998 * html/HTMLSelectElement.cpp:
2999 (WebCore::HTMLSelectElement::parseMappedAttribute):
3000 * html/HTMLTextAreaElement.cpp:
3001 (WebCore::HTMLTextAreaElement::parseMappedAttribute):
3002 * page/AccessibilityRenderObject.cpp:
3003 (WebCore::AccessibilityRenderObject::mouseButtonListener):
3004 * page/DOMWindow.cpp:
3005 (WebCore::DOMWindow::setInlineEventListenerForType):
3006 (WebCore::DOMWindow::inlineEventListenerForType):
3007 (WebCore::DOMWindow::on*): (many methods)
3008 (WebCore::DOMWindow::setOn*): (many methods)
3009 * page/DOMWindow.h:
3010 * svg/SVGElement.cpp:
3011 (WebCore::SVGElement::parseMappedAttribute):
3012 * svg/SVGElementInstance.cpp:
3013 (WebCore::SVGElementInstance::on*): (many methods)
3014 (WebCore::SVGElementInstance::setOn*): (many methods)
3015 * svg/SVGSVGElement.cpp:
3016 (WebCore::SVGSVGElement::parseMappedAttribute):
3017 Rename things, as described above.
3018
zecke@webkit.orgbcca41d2008-10-29 22:39:18 +000030192008-10-29 Gustavo Noronha Silva <gns@gnome.org>
3020
3021 Reviewed and slightly changed by Holger Freyther.
3022
3023 Added all the files that need to be installed for the Inspector to
3024 work.
3025
3026 * GNUmakefile.am: Invoke the shell to get the files.
3027
darin@chromium.orgde675412008-10-29 21:45:02 +000030282008-10-29 Andrew Scherkus <scherkus@chromium.org>
3029
3030 Reviewed by Darin Adler
3031
3032 Add MediaPlayerPrivateChromium to MediaPlayer
3033 https://bugs.webkit.org/show_bug.cgi?id=21930
3034
3035 * platform/graphics/MediaPlayer.cpp:
3036
justin.garcia@apple.com8cba38d2008-10-29 21:43:47 +000030372008-10-29 Justin Garcia <justin.garcia@apple.com>
3038
3039 Reviewed by Darin Adler.
3040
3041 Some preparation for:
3042 <rdar://problem/6104369> Hitting return at the end of a quoted line creates an extraneous quoted line
3043
3044 Added an early return to avoid a level of if-nesting. No other changes. We probably don't
3045 need to rebalance whitespace before the early return but for now don't risk any change in behavior
3046 I'll revisit that later.
3047
3048 * editing/BreakBlockquoteCommand.cpp:
3049 (WebCore::BreakBlockquoteCommand::doApply):
3050
kevino@webkit.orgce2e48a2008-10-29 20:13:27 +000030512008-10-29 Kevin Ollivier <kevino@theolliviers.com>
3052
3053 wx build fixes after addition of runtime and ImageBuffer changes.
3054
3055 * platform/graphics/wx/ImageBufferData.h: Added.
3056 * platform/graphics/wx/ImageBufferWx.cpp:
3057 (WebCore::ImageBufferData::ImageBufferData):
3058 (WebCore::ImageBuffer::ImageBuffer):
3059 (WebCore::ImageBuffer::context):
3060 * webcore-base.bkl:
3061
brettw@chromium.org95ee6812008-10-29 16:38:52 +000030622008-10-29 Brett Wilson <brettw@chromium.org>
3063
3064 Reviewed by Darin Adler
3065 https://bugs.webkit.org/attachment.cgi?id=24745
3066
3067 Allow Skia implementations to get text style changed notifications.
3068
3069 * platform/graphics/GraphicsContext.cpp:
3070
timothy@apple.comdbc138a2008-10-29 15:02:31 +000030712008-10-29 Timothy Hatcher <timothy@apple.com>
3072
3073 Add a manual test that checks breakpoints on a blockless body of
3074 an "else" statement.
3075
3076 https://bugs.webkit.org/show_bug.cgi?id=21944
3077
3078 Reviewed by Maciej Stachowiak.
3079
3080 * manual-tests/inspector/debugger-pause-on-else-statements.html: Added.
3081
ap@webkit.orgc78a2072008-10-29 10:35:26 +000030822008-10-29 Alexey Proskuryakov <ap@webkit.org>
3083
ap@webkit.org7c52f882008-10-29 10:44:22 +00003084 Reviewed by Darin Adler.
3085
3086 https://bugs.webkit.org/show_bug.cgi?id=21921
3087 MessagePort messages are dispatched to documents that are not fully active
3088
3089 Covered by corrected fast/events/message-port-inactive-document.html
3090
3091 * bindings/js/JSEventListener.cpp:
3092 (WebCore::JSAbstractEventListener::handleEvent): Don't dispatch messages to contexts
3093 that are not fully active.
3094
30952008-10-29 Alexey Proskuryakov <ap@webkit.org>
3096
ap@webkit.org6b4b6872008-10-29 10:37:26 +00003097 Reviewed by Sam Weinig.
3098
3099 https://bugs.webkit.org/show_bug.cgi?id=21922
3100 Expose MessagePort global constructor
3101
3102 Covered by existing dumper tests.
3103
3104 * dom/MessagePort.idl:
3105 * page/DOMWindow.idl:
3106
31072008-10-29 Alexey Proskuryakov <ap@webkit.org>
3108
ap@webkit.orgc78a2072008-10-29 10:35:26 +00003109 Reviewed by Darin Adler.
3110
3111 https://bugs.webkit.org/show_bug.cgi?id=21924
3112 HashTable internal index is not always deleted
3113
3114 * bindings/js/JSDOMBinding.cpp: (WebCore::DOMObjectHashTableMap::~DOMObjectHashTableMap):
3115 Call deleteTable for HashTables that are being deleted.
3116
ap@webkit.org3c120a82008-10-29 10:26:58 +000031172008-10-28 Alexey Proskuryakov <ap@webkit.org>
3118
3119 Reviewed by Darin Adler.
3120
3121 https://bugs.webkit.org/show_bug.cgi?id=21923
3122 Create an abstraction for script execution context
3123
3124 * GNUmakefile.am:
3125 * WebCore.pro:
3126 * WebCore.vcproj/WebCore.vcproj:
3127 * WebCore.xcodeproj/project.pbxproj:
3128 * WebCoreSources.bkl:
3129 Added ScriptExecutionContext.{h,cpp}.
3130
3131 * bindings/js/JSAudioConstructor.cpp:
3132 (WebCore::JSAudioConstructor::JSAudioConstructor):
3133 * bindings/js/JSAudioConstructor.h:
3134 * bindings/js/JSImageConstructor.cpp:
3135 (WebCore::JSImageConstructor::JSImageConstructor):
3136 * bindings/js/JSImageConstructor.h:
3137 * bindings/js/JSOptionConstructor.cpp:
3138 (WebCore::JSOptionConstructor::JSOptionConstructor):
3139 * bindings/js/JSOptionConstructor.h:
3140 * bindings/js/JSXMLHttpRequestConstructor.cpp:
3141 (WebCore::JSXMLHttpRequestConstructor::JSXMLHttpRequestConstructor):
3142 * bindings/js/JSXMLHttpRequestConstructor.h:
3143 Pass ScriptExecutionContext instead of Document to make getDOMConstructor() happy.
3144 Since these objects can only work within documents now, it is immediately converted back
3145 to Document.
3146
3147 * bindings/js/JSMessageChannelConstructor.cpp:
3148 (WebCore::JSMessageChannelConstructor::JSMessageChannelConstructor):
3149 (WebCore::JSMessageChannelConstructor::construct):
3150 * bindings/js/JSMessageChannelConstructor.h:
3151 (WebCore::JSMessageChannelConstructor::scriptExecutionContext):
3152 MessageChannel needs to be supported in workers right away, so the constructor operates with
3153 it directly.
3154
3155 * dom/ActiveDOMObject.cpp:
3156 (WebCore::ActiveDOMObject::ActiveDOMObject):
3157 (WebCore::ActiveDOMObject::~ActiveDOMObject):
3158 (WebCore::ActiveDOMObject::contextDestroyed):
3159 * dom/ActiveDOMObject.h:
3160 (WebCore::ActiveDOMObject::scriptExecutionContext):
3161 * bindings/js/JSDOMBinding.cpp:
3162 (WebCore::markActiveObjectsForContext):
3163 (WebCore::markCrossHeapDependentObjectsForContext):
3164 Use ScriptExecutionContext instead of Document, now that ActiveDOMObject and MessagePort
3165 tracking is handled by ScriptExecutionContext.
3166
3167 * bindings/js/JSDOMBinding.h: (WebCore::getDOMPrototype): Moved to JSDOMGlobalObject.
3168
3169 * bindings/js/JSDOMGlobalObject.h:
3170 (WebCore::getDOMConstructor): Moved to this file, as constructors live in JSDOMGlobalObject.
3171 Also, the two-argument version that used to be in JSDOMWindowBase.cpp need to be accessible
3172 to worker context implementation.
3173 (WebCore::scriptExecutionContext): Added a pure virtual method to access
3174 ScriptExecutionContext, implemented by subclasses.
3175
3176 * bindings/js/JSDOMWindowBase.h:
3177 * bindings/js/JSDOMWindowBase.cpp: (WebCore::JSDOMWindowBase::scriptExecutionContext):
3178 Implement by returning the associated document. Note that this method currently gives bogus
3179 results after navigation - DOMWindow Frame reference is not zeroed out, so we get a document
3180 that is currently in the frame, not the one associated with this window.
3181
3182 * bindings/js/JSDedicatedWorkerConstructor.cpp: Removed unnecessary include of DOMWindow.h.
3183
3184 * bindings/js/JSDocumentCustom.cpp: (WebCore::JSDocument::mark):
3185 Call markActiveObjectsForContext() by its new name.
3186
3187 * dom/DedicatedWorker.cpp:
3188 (WebCore::DedicatedWorker::DedicatedWorker):
3189 (WebCore::DedicatedWorker::document):
3190 * dom/DedicatedWorker.h:
3191 * xml/XMLHttpRequest.cpp:
3192 (WebCore::XMLHttpRequest::document):
3193 * xml/XMLHttpRequest.h:
3194 Added a document() function that upcasts ScriptExecutionContext, as these objects only work
3195 within documents currently (at least for XMLHttpRequest, this will change soon though).
3196
3197 * dom/Document.cpp:
3198 (WebCore::Document::Document):
3199 (WebCore::Document::~Document):
3200 Moved active object and MessagePort tracking up to ScriptExecutionContext, to share code
3201 with workers.
3202
3203 * dom/Document.h:
3204 (WebCore::Document::isDocument):
3205 (WebCore::Document::refScriptExecutionContext):
3206 (WebCore::Document::derefScriptExecutionContext):
3207 Inherit from ScriptExecutionContext.
3208
3209 * dom/MessageChannel.cpp:
3210 (WebCore::MessageChannel::MessageChannel):
3211 * dom/MessageChannel.h:
3212 (WebCore::MessageChannel::create):
3213 Use ScriptExecutionContext instead of Document.
3214
3215 * dom/MessagePort.cpp:
3216 (WebCore::CloseMessagePortTimer::CloseMessagePortTimer): Make m_port a RefPtr, because
3217 MessagePort doesn't ref() itself when posting this event any more (this is a fix for an
3218 unrelated issue that was causing random crashes in layout tests).
3219 (WebCore::MessagePort::MessagePort):
3220 (WebCore::MessagePort::~MessagePort):
3221 (WebCore::MessagePort::associatedFrame):
3222 (WebCore::MessagePort::clone):
3223 (WebCore::MessagePort::postMessage):
3224 (WebCore::MessagePort::startConversation):
3225 (WebCore::MessagePort::start):
3226 (WebCore::MessagePort::contextDestroyed):
3227 (WebCore::MessagePort::dispatchMessages):
3228 * dom/MessagePort.h:
3229 (WebCore::MessagePort::create):
3230 (WebCore::MessagePort::scriptExecutionContext):
3231 Use ScriptExecutionContext instead of Document. This is a step toward making MessagePort
3232 work in worker contexts - we need to also make some its method thread safe for cross-thread
3233 messaging, and make event dispatching thread safe.
3234
3235 * dom/ScriptExecutionContext.cpp: Added.
3236 * dom/ScriptExecutionContext.h: Added.
3237 ActiveDOMObject and MessagePort tracking is moved from Document.
3238 It is debatable whether ScriptExecutionContext should be a parent of Document or DOMWindow,
3239 but as I'm just moving Document code, and it is Document that is the main context object
3240 in our implementation currently.
3241 Changing ScriptExecutionContext to be a parent of DOMWindow causes a number of bugs that
3242 seem non-trivial to fix, and isn't really a part of this task.
3243
alp@webkit.orge27cab82008-10-29 03:20:15 +000032442008-10-28 Alp Toker <alp@nuanti.com>
3245
alp@webkit.orgb206e942008-10-29 05:22:20 +00003246 List newly-added ImageBufferData.h in build system.
3247
3248 * GNUmakefile.am:
3249
32502008-10-28 Alp Toker <alp@nuanti.com>
3251
alp@webkit.orge27cab82008-10-29 03:20:15 +00003252 Reviewed by Cameron Zwarich.
3253
3254 De-list unused WebCore ForwardingHeaders to fix the dist target.
3255
3256 * GNUmakefile.am:
3257
cwzwarich@webkit.org7eb0cf92008-10-29 02:41:47 +000032582008-10-28 Cameron Zwarich <zwarich@apple.com>
3259
3260 Not reviewed.
3261
3262 Attempt to fix the Windows build by generating Forwardingheaders for the
3263 runtime directory in JavaScriptCore.
3264
3265 * WebCore.vcproj/WebCore.vcproj:
3266
justin.garcia@apple.com28768642008-10-29 02:07:18 +000032672008-10-28 Justin Garcia <justin.garcia@apple.com>
3268
3269 Reviewed by Darin Adler.
3270
3271 <rdar://problem/5188560> REGRESSION: Spell checker doesn't clear spelling/grammar marker after error is marked as Ignored
3272
3273 * editing/Editor.cpp:
3274 (WebCore::Editor::ignoreSpelling): Remove misspelling markers from the word.
3275 (WebCore::Editor::learnSpelling): Added a FIXME about <rdar://problem/5396072>, which
3276 will probably require a change more complicated than just marking the learned word as
3277 misspelled. I'll address it with a separate patch.
3278 * editing/EditorCommand.cpp:
3279 (WebCore::executeIgnoreSpelling): Added.
3280 (WebCore::CommandEntry::): Added an entry for IgnoreSpelling.
3281
cwzwarich@webkit.orgba054bb2008-10-29 01:54:00 +000032822008-10-28 Cameron Zwarich <zwarich@apple.com>
3283
3284 Reviewed by Mark Rowe.
3285
3286 Move ForwardingHeaders to their correct location after the creation of
3287 the runtime directory in JavaScriptCore.
3288
3289 * ForwardingHeaders/kjs/ArrayPrototype.h: Removed.
3290 * ForwardingHeaders/kjs/BooleanObject.h: Removed.
3291 * ForwardingHeaders/kjs/CallData.h: Removed.
3292 * ForwardingHeaders/kjs/ConstructData.h: Removed.
3293 * ForwardingHeaders/kjs/DateInstance.h: Removed.
3294 * ForwardingHeaders/kjs/Error.h: Removed.
3295 * ForwardingHeaders/kjs/FunctionConstructor.h: Removed.
3296 * ForwardingHeaders/kjs/FunctionPrototype.h: Removed.
3297 * ForwardingHeaders/kjs/InternalFunction.h: Removed.
3298 * ForwardingHeaders/kjs/JSArray.h: Removed.
3299 * ForwardingHeaders/kjs/JSFunction.h: Removed.
3300 * ForwardingHeaders/kjs/JSGlobalObject.h: Removed.
3301 * ForwardingHeaders/kjs/JSNumberCell.h: Removed.
3302 * ForwardingHeaders/kjs/JSObject.h: Removed.
3303 * ForwardingHeaders/kjs/JSString.h: Removed.
3304 * ForwardingHeaders/kjs/JSValue.h: Removed.
3305 * ForwardingHeaders/kjs/ObjectPrototype.h: Removed.
3306 * ForwardingHeaders/kjs/PropertyMap.h: Removed.
3307 * ForwardingHeaders/kjs/PrototypeFunction.h: Removed.
3308 * ForwardingHeaders/kjs/StringObject.h: Removed.
3309 * ForwardingHeaders/kjs/StringObjectThatMasqueradesAsUndefined.h: Removed.
3310 * ForwardingHeaders/kjs/StringPrototype.h: Removed.
3311 * ForwardingHeaders/kjs/StructureID.h: Removed.
3312 * ForwardingHeaders/runtime: Added.
3313 * ForwardingHeaders/runtime/ArrayPrototype.h: Copied from ForwardingHeaders/kjs/ArrayPrototype.h.
3314 * ForwardingHeaders/runtime/BooleanObject.h: Copied from ForwardingHeaders/kjs/BooleanObject.h.
3315 * ForwardingHeaders/runtime/CallData.h: Copied from ForwardingHeaders/kjs/CallData.h.
3316 * ForwardingHeaders/runtime/ConstructData.h: Copied from ForwardingHeaders/kjs/ConstructData.h.
3317 * ForwardingHeaders/runtime/DateInstance.h: Copied from ForwardingHeaders/kjs/DateInstance.h.
3318 * ForwardingHeaders/runtime/Error.h: Copied from ForwardingHeaders/kjs/Error.h.
3319 * ForwardingHeaders/runtime/FunctionConstructor.h: Copied from ForwardingHeaders/kjs/FunctionConstructor.h.
3320 * ForwardingHeaders/runtime/FunctionPrototype.h: Copied from ForwardingHeaders/kjs/FunctionPrototype.h.
3321 * ForwardingHeaders/runtime/InternalFunction.h: Copied from ForwardingHeaders/kjs/InternalFunction.h.
3322 * ForwardingHeaders/runtime/JSArray.h: Copied from ForwardingHeaders/kjs/JSArray.h.
3323 * ForwardingHeaders/runtime/JSFunction.h: Copied from ForwardingHeaders/kjs/JSFunction.h.
3324 * ForwardingHeaders/runtime/JSGlobalObject.h: Copied from ForwardingHeaders/kjs/JSGlobalObject.h.
3325 * ForwardingHeaders/runtime/JSNumberCell.h: Copied from ForwardingHeaders/kjs/JSNumberCell.h.
3326 * ForwardingHeaders/runtime/JSObject.h: Copied from ForwardingHeaders/kjs/JSObject.h.
3327 * ForwardingHeaders/runtime/JSString.h: Copied from ForwardingHeaders/kjs/JSString.h.
3328 * ForwardingHeaders/runtime/JSValue.h: Copied from ForwardingHeaders/kjs/JSValue.h.
3329 * ForwardingHeaders/runtime/ObjectPrototype.h: Copied from ForwardingHeaders/kjs/ObjectPrototype.h.
3330 * ForwardingHeaders/runtime/PropertyMap.h: Copied from ForwardingHeaders/kjs/PropertyMap.h.
3331 * ForwardingHeaders/runtime/PrototypeFunction.h: Copied from ForwardingHeaders/kjs/PrototypeFunction.h.
3332 * ForwardingHeaders/runtime/StringObject.h: Copied from ForwardingHeaders/kjs/StringObject.h.
3333 * ForwardingHeaders/runtime/StringObjectThatMasqueradesAsUndefined.h: Copied from ForwardingHeaders/kjs/StringObjectThatMasqueradesAsUndefined.h.
3334 * ForwardingHeaders/runtime/StringPrototype.h: Copied from ForwardingHeaders/kjs/StringPrototype.h.
3335 * ForwardingHeaders/runtime/StructureID.h: Copied from ForwardingHeaders/kjs/StructureID.h.
3336 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
3337 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
3338 * bindings/js/JSClipboardCustom.cpp:
3339 * bindings/js/JSConsoleCustom.cpp:
3340 * bindings/js/JSCustomPositionCallback.h:
3341 * bindings/js/JSCustomPositionErrorCallback.h:
3342 * bindings/js/JSCustomSQLStatementCallback.h:
3343 * bindings/js/JSCustomSQLStatementErrorCallback.h:
3344 * bindings/js/JSCustomSQLTransactionErrorCallback.h:
3345 * bindings/js/JSCustomVoidCallback.h:
3346 * bindings/js/JSCustomXPathNSResolver.h:
3347 * bindings/js/JSDOMBinding.cpp:
3348 * bindings/js/JSDOMBinding.h:
3349 * bindings/js/JSDOMGlobalObject.h:
3350 * bindings/js/JSDOMWindowBase.cpp:
3351 * bindings/js/JSDOMWindowCustom.cpp:
3352 * bindings/js/JSDOMWindowShell.cpp:
3353 * bindings/js/JSDatabaseCustom.cpp:
3354 * bindings/js/JSEventListener.cpp:
3355 * bindings/js/JSEventTarget.h:
3356 * bindings/js/JSHTMLDocumentCustom.cpp:
3357 * bindings/js/JSHistoryCustom.cpp:
3358 * bindings/js/JSInspectedObjectWrapper.cpp:
3359 * bindings/js/JSJavaScriptCallFrameCustom.cpp:
3360 * bindings/js/JSLocationCustom.cpp:
3361 * bindings/js/JSNodeFilterCondition.h:
3362 * bindings/js/JSQuarantinedObjectWrapper.cpp:
3363 * bindings/js/JSQuarantinedObjectWrapper.h:
3364 * bindings/js/JSXMLHttpRequestCustom.cpp:
3365 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
3366 * bindings/objc/WebScriptObject.mm:
3367 * bindings/objc/WebScriptObjectPrivate.h:
3368 * bindings/scripts/CodeGeneratorJS.pm:
3369 * bridge/NP_jsobject.cpp:
3370 * bridge/c/c_instance.cpp:
3371 * bridge/c/c_utility.cpp:
3372 * bridge/c/c_utility.h:
3373 * bridge/jni/jni_instance.cpp:
3374 * bridge/jni/jni_jsobject.h:
3375 * bridge/jni/jni_jsobject.mm:
3376 * bridge/jni/jni_runtime.cpp:
3377 * bridge/jni/jni_utility.cpp:
3378 * bridge/jni/jni_utility.h:
3379 * bridge/objc/objc_instance.mm:
3380 * bridge/objc/objc_runtime.h:
3381 * bridge/objc/objc_runtime.mm:
3382 * bridge/objc/objc_utility.h:
3383 * bridge/objc/objc_utility.mm:
3384 * bridge/runtime.h:
3385 * bridge/runtime_array.cpp:
3386 * bridge/runtime_array.h:
3387 * bridge/runtime_method.cpp:
3388 * bridge/runtime_method.h:
3389 * bridge/runtime_object.cpp:
3390 * bridge/runtime_object.h:
3391 * bridge/runtime_root.cpp:
3392 * inspector/JavaScriptCallFrame.cpp:
3393 * inspector/JavaScriptProfile.cpp:
3394 * inspector/JavaScriptProfile.h:
3395 * inspector/JavaScriptProfileNode.cpp:
3396 * inspector/JavaScriptProfileNode.h:
3397 * loader/FrameLoader.cpp:
3398 * page/Console.cpp:
3399 * plugins/PluginView.cpp:
3400 * plugins/gtk/PluginViewGtk.cpp:
3401 * plugins/qt/PluginViewQt.cpp:
3402 * plugins/win/PluginViewWin.cpp:
3403
adele@apple.com66ae4f52008-10-29 00:20:48 +000034042008-10-28 Adele Peterson <adele@apple.com>
3405
adele@apple.com39b601d2008-10-29 00:37:36 +00003406 Windows build fix. This removes Cairo include directories from non-Cairbo build configurations.
3407
3408 * WebCore.vcproj/WebCore.vcproj:
3409
34102008-10-28 Adele Peterson <adele@apple.com>
3411
3412 Windows build fix.
adele@apple.com66ae4f52008-10-29 00:20:48 +00003413
3414 * platform/graphics/ImageBuffer.h:
3415 (WebCore::ImageBuffer::create):
3416
cwzwarich@webkit.orgcf5b4bf2008-10-29 00:12:35 +000034172008-10-28 Cameron Zwarich <zwarich@apple.com>
3418
3419 Not reviewed.
3420
3421 Roll out a mistaken attempt at fixing the GTK build in r37947.
3422
3423 * GNUmakefile.am:
3424
adele@apple.comdfda2f42008-10-28 23:36:33 +000034252008-10-28 Adele Peterson <adele@apple.com>
3426
3427 Reviewed by John Sullivan.
3428
3429 Fix for https://bugs.webkit.org/show_bug.cgi?id=21880
3430 "files" string for multifile uploads needs to be localized
3431
3432 * page/mac/WebCoreViewFactory.h:
3433 * platform/LocalizedStrings.h:
3434 * platform/gtk/FileChooserGtk.cpp: (WebCore::FileChooser::basenameForWidth):
3435 * platform/gtk/LocalizedStringsGtk.cpp: (WebCore::multipleFileUploadText):
3436 * platform/mac/FileChooserMac.mm: (WebCore::FileChooser::basenameForWidth):
3437 * platform/mac/LocalizedStringsMac.mm: (WebCore::multipleFileUploadText):
3438 * platform/qt/Localizations.cpp: (WebCore::multipleFileUploadText):
3439 * platform/wx/LocalizedStringsWx.cpp: (WebCore::multipleFileUploadText):
3440
brettw@chromium.org6eee5b02008-10-28 23:10:42 +000034412008-10-28 Brett Wilson <brettw@chromium.org>
3442
3443 Reviewed by Darin Adler.
3444
3445 https://bugs.webkit.org/show_bug.cgi?id=21816
3446
3447 Remove platform ifdefs in ImageBuffer.h by moving platform specific code
3448 into a new PlatformImageBuffer class. Move the static create function
3449 into the header because it can be cross-platform. Initialization now
3450 happens in the cunstructor which sets a flag that create uses to know
3451 whether it should return null or not. I also made passing of IntSize
3452 more consistent (always by reference).
3453
3454 This change also changes the ifdefs in GraphicsContext to allow Skia
3455 ports to implement text drawing modes.
3456
3457 * platform/graphics/ImageBuffer.h:
3458 (WebCore::ImageBuffer::create):
3459 (WebCore::ImageBuffer::size):
3460 * platform/graphics/cairo/ImageBufferCairo.cpp:
3461 (WebCore::ImageBufferData::ImageBufferData):
3462 (WebCore::ImageBuffer::ImageBuffer):
3463 (WebCore::ImageBuffer::~ImageBuffer):
3464 (WebCore::ImageBuffer::image):
3465 (WebCore::ImageBuffer::getImageData):
3466 (WebCore::ImageBuffer::putImageData):
3467 * platform/graphics/cairo/ImageBufferData.h:
3468 * platform/graphics/cg/ImageBufferCG.cpp:
3469 (WebCore::ImageBufferData::ImageBufferData):
3470 (WebCore::ImageBuffer::ImageBuffer):
3471 (WebCore::ImageBuffer::~ImageBuffer):
3472 (WebCore::ImageBuffer::getImageData):
3473 (WebCore::ImageBuffer::putImageData):
3474 * platform/graphics/cg/ImageBufferData.h:
3475 * platform/graphics/qt/ImageBufferData.h:
3476 * platform/graphics/qt/ImageBufferQt.cpp:
3477 (WebCore::ImageBufferData::ImageBufferData):
3478 (WebCore::ImageBuffer::ImageBuffer):
3479 (WebCore::ImageBuffer::~ImageBuffer):
3480
cwzwarich@webkit.org0cb4aa32008-10-28 22:14:54 +000034812008-10-28 Cameron Zwarich <zwarich@apple.com>
3482
3483 Not reviewed.
3484
cwzwarich@webkit.org38fa5d22008-10-28 22:22:30 +00003485 Fix the GTK build.
3486
3487 * GNUmakefile.am:
3488
34892008-10-28 Cameron Zwarich <zwarich@apple.com>
3490
3491 Not reviewed.
3492
cwzwarich@webkit.org0cb4aa32008-10-28 22:14:54 +00003493 Another Qt build fix.
3494
3495 * WebCore.pro:
3496
ddkilzer@apple.com983f9392008-10-28 21:01:40 +000034972008-10-28 Greg Bolsinga <bolsinga@apple.com>
3498
3499 Reviewed by David Kilzer.
3500
ddkilzer@apple.com0f55da32008-10-28 21:42:26 +00003501 https://bugs.webkit.org/show_bug.cgi?id=21932
3502 Add non-pointer constant lookups to SoftLinking.h
3503
3504 * platform/mac/SoftLinking.h:
3505
35062008-10-28 Greg Bolsinga <bolsinga@apple.com>
3507
3508 Reviewed by David Kilzer.
3509
ddkilzer@apple.com983f9392008-10-28 21:01:40 +00003510 https://bugs.webkit.org/show_bug.cgi?id=2192
3511 Missing semi-colons in Geoposition.idl
3512
3513 * page/Geoposition.idl: Add missing semi-colons
3514
timothy@apple.comecd08c12008-10-28 20:41:59 +000035152008-10-28 Timothy Hatcher <timothy@apple.com>
3516
timothy@apple.com7dec1b92008-10-28 20:42:34 +00003517 Make the Profiles panel in the Web Inspector have an enable screen.
3518 Profiling now needs to be enabled before console.profile() works.
3519
3520 <rdar://problem/6211578> Make the JavaScript profiler opt-in, so it does
3521 not slow down JavaScript all the time
3522
3523 Reviewed by Darin Adler and Kevin McCullough.
3524
3525 * English.lproj/localizedStrings.js: New strings.
3526 * WebCore.base.exp: New and changed exports.
3527 * WebCore.vcproj/WebCore.vcproj: Add the PanelEnablerView.js file.
3528 * bindings/js/JSDOMWindowBase.cpp:
3529 (WebCore::JSDOMWindowBase::supportsProfiling): Call InspectorController:profilerEnabled.
3530 * inspector/InspectorController.cpp:
3531 (WebCore::InspectorController::InspectorController): Initialize the m_startProfiling
3532 Timer to call InspectorController::startUserInitiatedProfiling.
3533 (WebCore::InspectorController::startUserInitiatedProfilingSoon): Start a one-shot timer
3534 that calls InspectorController::startUserInitiatedProfiling.
3535 (WebCore::InspectorController::startUserInitiatedProfiling): Recompile all JavaScript
3536 and enable the profiler if the profiler was not enabled.
3537 (WebCore::InspectorController::stopUserInitiatedProfiling): Rearrange code for readability.
3538 (WebCore::InspectorController::enableProfiler): Recompile all the JavaScript functions
3539 if the skipRecompile argument is false. Call the profilerWasEnabled script function.
3540 (WebCore::InspectorController::disableProfiler): Recompile all the JavaScript functions.
3541 Call the profilerWasEnabled script function.
3542 (WebCore::InspectorController::disableDebugger): Set m_attachDebuggerWhenShown to false,
3543 so it won't be started later.
3544 * inspector/InspectorController.h:
3545 (WebCore::InspectorController::profilerEnabled): Return enabled() && m_profilerEnabled.
3546 * inspector/front-end/Images/debuggingButtons.png: Remove.
3547 * inspector/front-end/Images/enableButtons.png: Added.
3548 * inspector/front-end/Images/profilesSilhouette.png: Added.
3549 * inspector/front-end/Images/scriptsSilhouette.png: Added.
3550 * inspector/front-end/PanelEnablerView.js: Added.
3551 (WebInspector.PanelEnablerView):
3552 (WebInspector.PanelEnablerView.prototype._enableButtonCicked): Fire the "enable clicked"
3553 event so listeners can do their thing.
3554 (WebInspector.PanelEnablerView.prototype._windowResized): Test if the icon should be hidden.
3555 * inspector/front-end/ProfilesPanel.js:
3556 (WebInspector.ProfilesPanel): Create the PanelEnablerView and the strings needed for it.
3557 (WebInspector.ProfilesPanel.prototype.get statusBarItems): Include the enableToggleButton.
3558 (WebInspector.ProfilesPanel.prototype.profilerWasEnabled): Call reset and populateInterface.
3559 (WebInspector.ProfilesPanel.prototype.profilerWasDisabled): Call reset.
3560 (WebInspector.ProfilesPanel.prototype.reset): Call _updateInterface.
3561 (WebInspector.ProfilesPanel.prototype.setRecordingProfile): Moved in the code, no changes.
3562 (WebInspector.ProfilesPanel.prototype._updateInterface): Update the toggle button and
3563 show/hide other buttons. Also show/hide the PanelEnablerView.
3564 (WebInspector.ProfilesPanel.prototype._enableProfiling): Call _toggleProfiling if not enabled.
3565 (WebInspector.ProfilesPanel.prototype._toggleProfiling): Call InspectorController's
3566 disableProfiler or enableProfiler.
3567 * inspector/front-end/ScriptsPanel.js:
3568 (WebInspector.ScriptsPanel): Replace the overlay element with a PanelEnablerView. Replace the
3569 debuggingButton with the enableToggleButton.
3570 (WebInspector.ScriptsPanel.prototype.get statusBarItems): Replace the debuggingButton with
3571 the enableToggleButton.
3572 (WebInspector.ScriptsPanel.prototype._updateDebuggerButtons): Hide/show the pauseOnExceptionButton
3573 when needed. Replace the overlay element with a PanelEnablerView. Replace the debuggingButton
3574 with the enableToggleButton.
3575 (WebInspector.ScriptsPanel.prototype._enableDebugging): Call _toggleDebugging when not enabled.
3576 (WebInspector.ScriptsPanel.prototype._toggleDebugging): Remove the call to _clearInterface,
3577 since reset is called from debuggerWasEnabled and debuggerWasDisabled.
3578 * inspector/front-end/View.js: Inherit from WebInspector.Object.
3579 * inspector/front-end/WebKit.qrc: Add the PanelEnablerView.js file.
3580 * inspector/front-end/inspector.css: New styles for the PanelEnablerView.
3581 * inspector/front-end/inspector.html: Add the PanelEnablerView.js file.
3582 * inspector/front-end/inspector.js:
3583 (WebInspector.profilerWasEnabled): Added. Calls the ProfilesPanel.
3584 (WebInspector.profilerWasDisabled): Ditto.
3585 * page/Console.cpp:
3586 (WebCore::Console::error): Remove null check for m_frame, since m_frame isn't used.
3587 (WebCore::Console::info): Ditto.
3588 (WebCore::Console::log): Ditto.
3589 (WebCore::Console::assertCondition): Ditto.
3590 (WebCore::Console::dirxml): Remove null check for m_frame and use this->page().
3591 (WebCore::Console::count): Ditto.
3592 (WebCore::Console::profile): Return early if InspectorController::profilerEnabled is false.
3593 (WebCore::Console::profileEnd): Ditto.
3594 (WebCore::Console::warn): Remove null check for m_frame, since m_frame isn't used.
3595 * page/Settings.cpp:
3596 (WebCore::Settings::Settings): Remove initialization of m_didInitializeDeveloperExtrasEnabled.
3597 (WebCore::Settings::setDeveloperExtrasEnabled): Remove code that recompiled functions.
3598 Now just sets the member boolean.
3599 * page/Settings.h: Remove m_didInitializeDeveloperExtrasEnabled.
3600
36012008-10-28 Timothy Hatcher <timothy@apple.com>
3602
timothy@apple.com0a8972d2008-10-28 20:42:11 +00003603 Rename a few methods related to attaching and detaching the debugger. Also
3604 adds stub methods for enabling and disabling the profiler.
3605
3606 * Rename attachDebugger to enableDebugger.
3607 * Rename detachDebugger to disableDebugger.
3608 * Rename the debuggerAttached getter to debuggerEnabled.
3609 * Rename the debuggerAttached callback to debuggerWasEnabled.
3610 * Rename the debuggerDetached callback to debuggerWasDisabled.
3611
3612 Reviewed by Darin Adler.
3613
3614 * WebCore.base.exp:
3615 * inspector/InspectorController.cpp:
3616 (WebCore::InspectorController::InspectorController):
3617 (WebCore::InspectorController::setWindowVisible):
3618 (WebCore::InspectorController::windowScriptObjectAvailable):
3619 (WebCore::InspectorController::close):
3620 (WebCore::InspectorController::enableProfiler):
3621 (WebCore::InspectorController::disableProfiler):
3622 (WebCore::InspectorController::enableDebugger):
3623 (WebCore::InspectorController::disableDebugger):
3624 (WebCore::InspectorController::pauseInDebugger):
3625 (WebCore::InspectorController::resumeDebugger):
3626 (WebCore::InspectorController::stepOverStatementInDebugger):
3627 (WebCore::InspectorController::stepIntoStatementInDebugger):
3628 (WebCore::InspectorController::stepOutOfFunctionInDebugger):
3629 * inspector/InspectorController.h:
3630 (WebCore::InspectorController::profilerEnabled):
3631 (WebCore::InspectorController::debuggerEnabled):
3632 * inspector/front-end/BreakpointsSidebarPane.js:
3633 (WebInspector.BreakpointsSidebarPane.prototype.addBreakpoint):
3634 (WebInspector.BreakpointsSidebarPane.prototype.removeBreakpoint):
3635 (WebInspector.BreakpointsSidebarPane.prototype._breakpointEnableChanged):
3636 * inspector/front-end/Object.js:
3637 * inspector/front-end/ProfilesPanel.js:
3638 (WebInspector.ProfilesPanel):
3639 * inspector/front-end/ScriptsPanel.js:
3640 (WebInspector.ScriptsPanel):
3641 (WebInspector.ScriptsPanel.prototype.get statusBarItems):
3642 (WebInspector.ScriptsPanel.prototype.debuggerWasEnabled):
3643 (WebInspector.ScriptsPanel.prototype.debuggerWasDetached):
3644 (WebInspector.ScriptsPanel.prototype.reset):
3645 (WebInspector.ScriptsPanel.prototype.canShowResource):
3646 (WebInspector.ScriptsPanel.prototype._updatePauseOnExceptionsButton):
3647 (WebInspector.ScriptsPanel.prototype._updateDebuggerButtons):
3648 (WebInspector.ScriptsPanel.prototype._toggleDebugging):
3649 * inspector/front-end/View.js:
3650 * inspector/front-end/inspector.css:
3651 * inspector/front-end/inspector.html:
3652 * inspector/front-end/inspector.js:
3653 (WebInspector.addResource):
3654 (WebInspector.debuggerWasEnabled):
3655 (WebInspector.debuggerWasDisabled):
3656
36572008-10-28 Timothy Hatcher <timothy@apple.com>
3658
timothy@apple.comecd08c12008-10-28 20:41:59 +00003659 Fix an exception when searching the Resources panel while there
3660 and resources queued to be added to the list.
3661
3662 Reviewed by Kevin McCullough.
3663
3664 * inspector/front-end/ResourcesPanel.js:
3665 (WebInspector.ResourcesPanel.prototype.searchCanceled): Null check
3666 the _resourcesTreeElement property.
3667 (WebInspector.ResourcesPanel.prototype.performSearch): Ditto.
3668
alp@webkit.orgd5cc6262008-10-28 16:18:00 +000036692008-10-28 Alp Toker <alp@nuanti.com>
3670
3671 GTK+ build fix for older versions of Pango where PANGO_VERSION_CHECK
3672 isn't defined.
3673
3674 * platform/graphics/gtk/FontGtk.cpp:
3675 (WebCore::getDefaultPangoLayout):
3676 * platform/graphics/gtk/FontPlatformDataPango.cpp:
3677
ap@webkit.orgbed87e92008-10-28 13:42:34 +000036782008-10-28 Alexey Proskuryakov <ap@webkit.org>
3679
3680 Reviewed by Darin Adler.
3681
3682 https://bugs.webkit.org/show_bug.cgi?id=21893
3683 Character set is incorrect for external scripts in XHTML pages
3684
3685 <rdar://problem/6317451> Incorrect encoding for text in a popup at http://xpoint.ru/
3686
3687 Test: fast/encoding/external-script-charset.xhtml
3688
3689 Expose scriptCharset() function on all ScriptElements, and call it from XML tokenizer.
3690
3691 * dom/ScriptElement.h:
3692 * dom/XMLTokenizerLibxml2.cpp:
3693 (WebCore::XMLTokenizer::endElementNs):
3694 * dom/XMLTokenizerQt.cpp:
3695 (WebCore::XMLTokenizer::parseEndElement):
3696 * html/HTMLScriptElement.h:
3697 * svg/SVGScriptElement.cpp:
3698 (WebCore::SVGScriptElement::scriptCharset):
3699 * svg/SVGScriptElement.h:
3700
alp@webkit.org2ab36952008-10-28 12:53:51 +000037012008-10-28 Alp Toker <alp@nuanti.com>
3702
3703 Include copyright license files in the autotools dist target and
3704 exclude unused zlib headers.
3705
3706 Change suggested by Mike Hommey.
3707
3708 * GNUmakefile.am:
3709
weinig@apple.com57022612008-10-28 05:24:13 +000037102008-10-27 Sam Weinig <sam@webkit.org>
3711
3712 Reviewed by Maciej Stachowiak.
3713
3714 Clear the window shell when destroying a page to allow documents
3715 which have no way of being reached anymore, to be torn down.
3716
3717 * page/Frame.cpp:
3718 (WebCore::Frame::pageDestroyed):
3719
kevino@webkit.orgcdfc5ff2008-10-27 22:15:11 +000037202008-10-27 Kevin Watters <kevinwatters@gmail.com>
3721
3722 Reviewed by Kevin Ollivier.
3723
3724 Update the active state as well as the focused state as both need to be true
3725 for the caret to be drawn.
3726
3727 https://bugs.webkit.org/show_bug.cgi?id=21900
3728
3729 * WebView.cpp:
3730 (wxWebView::OnSetFocus):
3731 (wxWebView::OnKillFocus):
3732
kevino@webkit.orgc10dd0c2008-10-27 22:07:30 +000037332008-10-27 Kevin Ollivier <kevino@theolliviers.com>
3734
3735 wx build fix on Linux/GTK. Enable support for #include <JavaScriptCore/XYZ.h> style includes.
3736
3737 * webcore-wx.bkl:
3738
darin@apple.com3ab3cf62008-10-27 21:20:13 +000037392008-10-27 Michael Knaup <michael.knaup@mac.com>
3740
3741 Reviewed and tweaked by Darin Adler.
3742
3743 - https://bugs.webkit.org/show_bug.cgi?id=8988
3744
3745 Bug 8988: Add support for Mozilla CSS custom cursors.
3746 Added -webkit-grab and -webkit-grabbing cursor suppport
3747 for the Mac, dummy implementations for other platforms.
3748
3749 * css/CSSParser.cpp:
3750 (WebCore::CSSParser::parseValue): Updated since the
3751 -webkit-grabbing cursor is now the last one.
3752
3753 * css/CSSPrimitiveValueMappings.h:
3754 (WebCore::CSSPrimitiveValue::CSSPrimitiveValue): Added
3755 CURSOR_WEBKIT_GRAB and CURSOR_WEBKIT_GRABBING.
3756
3757 * css/CSSValueKeywords.in: Added -webkit-grab and
3758 -webkit-grabbing.
3759
3760 * manual-tests/cursor.html: Added -webkit-zoom-in,
3761 webkit-zoom-out, -webkit-grab, and -webkit-grabbing.
3762
3763 * page/EventHandler.cpp:
3764 (WebCore::EventHandler::selectCursor): Added
3765 CURSOR_WEBKIT_GRAB and CURSOR_WEBKIT_GRABBING.
3766
3767 * platform/Cursor.h: Added grabCursor and grabbingCursor.
3768
3769 * platform/gtk/CursorGtk.cpp:
3770 (WebCore::grabCursor): Added.
3771 (WebCore::grabbingCursor): Added.
3772 * platform/mac/CursorMac.mm:
3773 (WebCore::grabCursor): Added.
3774 (WebCore::grabbingCursor): Added.
3775 * platform/qt/CursorQt.cpp:
3776 (WebCore::grabCursor): Added.
3777 (WebCore::grabbingCursor): Added.
3778 * platform/win/CursorWin.cpp:
3779 (WebCore::grabCursor): Added.
3780 (WebCore::grabbingCursor): Added.
3781 * platform/wx/CursorWx.cpp:
3782 (WebCore::grabCursor): Added.
3783 (WebCore::grabbingCursor): Added.
3784
3785 * rendering/style/RenderStyleConstants.h:
3786 Added CURSOR_WEBKIT_GRAB and CURSOR_WEBKIT_GRABBING.
3787 Also broke ECursor out into a single constant per line.
3788 Also added a couple of comments.
3789
eric@webkit.orgb1115002008-10-27 20:07:49 +000037902008-10-27 Dimitri Glazkov <dglazkov@chromium.org>
3791
3792 Reviewed by Darin Adler.
3793
3794 * svg/SVGAnimatedTemplate.h: needed a HashMap define
3795
eric@webkit.orgb2e05732008-10-27 19:49:58 +000037962008-10-21 Eric Seidel <eric@webkit.org>
3797
3798 Reviewed by Dave Hyatt.
3799
3800 Infinite recursion crash in WebCore::RenderSVGRoot::absoluteClippedOverflowRect on a <stop> element outside of a gradient block
3801 https://bugs.webkit.org/show_bug.cgi?id=20400
3802
3803 Test: svg/custom/stop-crash.svg
3804
3805 * WebCore.xcodeproj/project.pbxproj:
3806 * rendering/RenderSVGGradientStop.h:
3807 (WebCore::RenderSVGGradientStop::absoluteClippedOverflowRect):
3808
andersca@apple.com0021f002008-10-27 18:52:49 +000038092008-10-27 Anders Carlsson <andersca@apple.com>
3810
andersca@apple.comd693d602008-10-27 18:55:12 +00003811 Reviewed by Sam Weinig.
3812
3813 No need to call release if the connection is null.
3814
3815 * platform/network/mac/ResourceHandleMac.mm:
3816 (WebCore::ResourceHandle::start):
3817
38182008-10-27 Anders Carlsson <andersca@apple.com>
3819
andersca@apple.com0021f002008-10-27 18:52:49 +00003820 Reviewed by Kevin Decker.
3821
3822 <rdar://problem/6322650> Crash in fast/loader/simultaneous-reloads-assert.html
3823
3824 Make sure to null check the NSURLConnection object.
3825
3826 * platform/network/mac/ResourceHandleMac.mm:
3827 (WebCore::ResourceHandle::start):
3828 (WebCore::ResourceHandle::setDefersLoading):
3829
ap@webkit.org6bc2b852008-10-27 08:53:48 +000038302008-10-27 Alexey Proskuryakov <ap@webkit.org>
3831
3832 Fix non-Mac builds.
3833
3834 * GNUmakefile.am:
3835 * WebCore.pro:
3836 * WebCore.vcproj/WebCore.vcproj:
3837 * WebCoreSources.bkl:
3838 Renamed JSHTMLOptionElementConstructor to JSOptionConstructor.
3839
ap@webkit.orgb133b5c2008-10-27 07:59:16 +000038402008-10-26 Alexey Proskuryakov <ap@webkit.org>
3841
3842 Reviewed by Sam Weinig.
3843
3844 https://bugs.webkit.org/show_bug.cgi?id=21886
3845 window.HTMLOptionElement == "[object HTMLElementConstructor]" instead of HTMLOptionElementConstructor
3846
3847 Test: fast/dom/HTMLOptionElement/option-prototype.html
3848
3849 We now have separate objects for window.Option and window.HTMLOptionElement - the latter
3850 "constructor" cannot be used to construct anything. This matches Firefox behavior.
3851
3852 * WebCore.xcodeproj/project.pbxproj:
3853 * bindings/js/JSDOMWindowBase.cpp:
3854 (jsDOMWindowBaseOption):
3855 * bindings/js/JSHTMLOptionElementConstructor.cpp: Removed.
3856 * bindings/js/JSHTMLOptionElementConstructor.h: Removed.
3857 * bindings/js/JSOptionConstructor.cpp: Copied from WebCore/bindings/js/JSHTMLOptionElementConstructor.cpp.
3858 * bindings/js/JSOptionConstructor.h: Copied from WebCore/bindings/js/JSHTMLOptionElementConstructor.h.
3859 * html/HTMLOptionElement.idl:
3860 Renamed JSHTMLOptionElementConstructor to JSOptionConstructor.
3861
3862 * html/HTMLOptionElement.idl: Generate a constructor.
3863
ggaren@apple.combdfb2b52008-10-25 20:03:06 +000038642008-10-25 Geoffrey Garen <ggaren@apple.com>
3865
3866 Not reviewed.
3867
3868 Try to fix Mac debug build on the buildbot.
3869
3870 * platform/FileChooser.cpp:
3871 (WebCore::FileChooserClient::~FileChooserClient):
3872 * platform/FileChooser.h: Moved destructor to .cpp file, to avoid a
3873 weak exported symbol.
3874
vestbo@webkit.org4e516942008-10-25 15:22:24 +000038752008-10-25 Jade Han <jade.han@nokia.com>
3876
3877 Reviewed by Anders.
3878
3879 Enable custom properties for Qt runtime objects in QtWebKit
3880
3881 https://bugs.webkit.org/show_bug.cgi?id=21813
3882
3883 * bridge/runtime_object.cpp:
3884 (JSC::RuntimeObjectImp::getOwnPropertySlot):
3885 (JSC::RuntimeObjectImp::put):
3886
weinig@apple.comd75fed72008-10-25 06:02:05 +000038872008-10-24 Sam Weinig <sam@webkit.org>
3888
weinig@apple.com6c48aa12008-10-25 06:36:21 +00003889 Fix windows build.
3890
3891 * page/Chrome.cpp:
3892 * page/Chrome.h:
3893
38942008-10-24 Sam Weinig <sam@webkit.org>
3895
weinig@apple.com32ded9f2008-10-25 06:29:06 +00003896 Fix Qt build.
3897
3898 * platform/qt/FileChooserQt.cpp:
3899
39002008-10-24 Sam Weinig <sam@webkit.org>
3901
weinig@apple.comd75fed72008-10-25 06:02:05 +00003902 Reviewed by Dan Bernstein.
3903
3904 Fix https://bugs.webkit.org/show_bug.cgi?id=21759
3905 Layering violation: FileChooser should not depend on Document/Frame/Page
3906
3907 Move file choosing into WebKit ChromeClient.
3908
3909 * loader/EmptyClients.h:
3910 (WebCore::EmptyChromeClient::runOpenPanel):
3911 * page/Chrome.cpp:
3912 (WebCore::Chrome::runOpenPanel):
3913 * page/Chrome.h:
3914 * page/ChromeClient.h:
3915 * page/mac/ChromeMac.mm:
3916 * platform/FileChooser.h:
3917 * platform/mac/FileChooserMac.mm:
3918 * platform/qt/FileChooserQt.cpp:
3919 * platform/win/FileChooserWin.cpp:
3920 * platform/wx/TemporaryLinkStubs.cpp:
3921 * rendering/RenderFileUploadControl.cpp:
3922 (WebCore::RenderFileUploadControl::click):
3923
kevino@webkit.org4629ecf2008-10-25 01:34:12 +000039242008-10-24 Kevin Ollivier <kevino@theolliviers.com>
3925
3926 wx build fix - add newIconForFiles stub.
3927
3928 * platform/wx/TemporaryLinkStubs.cpp:
3929 (Icon::newIconForFiles):
3930
kevino@webkit.org64c5aeb2008-10-25 01:15:05 +000039312008-10-24 Kevin Watters <kevinwatters@gmail.com>
3932
3933 Reviewed by Kevin Ollivier.
3934
3935 Use the CGFont metrics APIs for more accurate measurements, and tweak the y
3936 value the text is drawn at (it was a couple pixels off before because wx
3937 internally adds to the y value.
3938
3939 https://bugs.webkit.org/show_bug.cgi?id=21853
3940
3941 * platform/wx/wxcode/mac/carbon/fontprops.cpp:
3942 (wxFontProperties::wxFontProperties):
3943 * platform/wx/wxcode/mac/carbon/non-kerned-drawing.cpp:
3944 (WebCore::drawTextWithSpacing):
3945
eric@webkit.orgeb5cef42008-10-24 23:46:30 +000039462008-10-24 Eric Seidel <eric@webkit.org>
3947
3948 Reviewed by Sam Weinig.
3949
3950 Generate missing constructors and add test to prevent missing ones in the future
3951 https://bugs.webkit.org/show_bug.cgi?id=21846
3952
3953 Test: fast/js/global-constructors.html
3954
3955 * css/CSSStyleSheet.idl:
3956 * css/RGBColor.idl:
3957 * dom/NodeIterator.idl:
3958 * dom/TreeWalker.idl:
3959 * xml/XPathExpression.idl:
3960
ap@webkit.org1ae2de22008-10-24 23:39:17 +000039612008-10-24 Alexey Proskuryakov <ap@webkit.org>
3962
3963 Reviewed by Darin Adler.
3964
3965 https://bugs.webkit.org/show_bug.cgi?id=21836
3966 REGRESSION: Sign-in on Fancast.com causes crash in Webkit nightly
3967
3968 Test: http/tests/xmlhttprequest/detaching-frame.html
3969
3970 * xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::dropProtection): Null check the window -
3971 even though XHR needs a context (AKA frame) to be serviced, the frame may be disconnected
3972 when dispatching the same callback that results in this function being called.
3973
ddkilzer@apple.come2f6f5c2008-10-24 23:04:55 +000039742008-10-24 David Kilzer <ddkilzer@apple.com>
3975
3976 Gtk build fix.
3977
3978 * platform/gtk/TemporaryLinkStubs.cpp:
3979 (WebCore::setFocusRingColorChangeFunction): Removed in r37858.
3980
mrowe@apple.com60f38472008-10-24 22:20:10 +000039812008-10-24 Mark Rowe <mrowe@apple.com>
3982
3983 Reviewed by Sam Weinig.
3984
3985 <rdar://problem/6164952> Use constant kCGInterpolationMedium in GraphicsContextCG.cpp rather than hard-coded values.
3986
3987 * platform/graphics/cg/GraphicsContextCG.cpp:
3988 (WebCore::GraphicsContext::setImageInterpolationQuality):
3989 (WebCore::GraphicsContext::imageInterpolationQuality):
3990
andersca@apple.com4348c6a2008-10-24 22:16:18 +000039912008-10-24 Anders Carlsson <andersca@apple.com>
3992
3993 Reviewed by Sam Weinig.
3994
3995 <rdar://problem/5440917> Support NPN_Construct
3996
3997 * WebCore.NPAPI.exp:
3998 Export _NPN_Construct.
3999
4000 * bridge/NP_jsobject.cpp:
4001 (_NPN_Construct):
4002 Implement this.
4003
4004 * bridge/c/c_instance.cpp:
4005 (JSC::Bindings::CInstance::supportsConstruct):
4006 (JSC::Bindings::CInstance::invokeConstruct):
4007 Have this call the appropriate NPClass method.
4008
4009 * bridge/npruntime.h:
4010 Add NPN_Construct.
4011
4012 * bridge/npruntime_impl.h:
4013 Add _NPN_Construct.
4014
4015 * bridge/runtime.h:
4016 (JSC::Bindings::Instance::supportsConstruct):
4017 (JSC::Bindings::Instance::invokeConstruct):
4018 New methods.
4019
4020 * bridge/runtime_object.cpp:
4021 (JSC::callRuntimeConstructor):
4022 Call the native instance.
4023
4024 (JSC::RuntimeObjectImp::getConstructData):
4025 Implement this.
4026
4027 * bridge/runtime_object.h:
4028 Add new method declarations.
4029
4030 * plugins/gtk/PluginPackageGtk.cpp:
4031 (WebCore::PluginPackage::load):
4032 * plugins/qt/PluginPackageQt.cpp:
4033 (WebCore::PluginPackage::load):
4034 * plugins/win/PluginPackageWin.cpp:
4035 (WebCore::PluginPackage::load):
4036 Initialize m_pluginFuncs.construct.
4037
adele@apple.com8d6189b2008-10-24 22:09:35 +000040382008-10-24 Adele Peterson <adele@apple.com>
4039
4040 Build fix.
4041
4042 * platform/FileChooser.h: (WebCore::FileChooserClient::~FileChooserClient):
4043 * platform/graphics/mac/IconMac.mm: (WebCore::Icon::newIconForFiles):
4044
ddkilzer@apple.combff12fe2008-10-24 21:51:58 +000040452008-10-24 Greg Bolsinga <bolsinga@apple.com>
4046
4047 Fix GTK build break.
4048
4049 Reviewed by David Kilzer.
4050
4051 * GNUmakefile.am: Do not include .idl files whose generated files should not be
4052 compiled.
4053
ddkilzer@apple.comec6a0d12008-10-24 21:46:12 +000040542008-10-24 David Kilzer <ddkilzer@apple.com>
4055
4056 Wx build fix.
4057
4058 * platform/wx/TemporaryLinkStubs.cpp:
4059 (WebCore::setFocusRingColorChangeFunction): Removed in r37858.
4060
adele@apple.com497541b2008-10-24 21:12:45 +000040612008-10-24 Adele Peterson <adele@apple.com>
4062
4063 Reviewed by Sam Weinig.
4064
4065 WebCore part of fix for <rdar://problem/5839256> FILE CONTROL: multi-file upload.
4066
4067 This change adds support for multiple file selection in an <input type="file"> control when the "multiple" attribute is used.
4068 This is consistent with the direction HTML5 will be going in the future.
4069
4070 The initial implementation here will show "n files" as the text next to the control when multiple files are selected. You can view
4071 the individual files in a tooltip for now. Improvements to this control will come later.
4072
4073 Web developers will be able to access the FileList from the HTMLInputElement element, where they can get a base name and a size for each file.
4074 These FileList Files can also be sent in an XMLHTTPRequest.
4075
4076 * manual-tests/post-multi-file-upload.html: Added.
4077 * manual-tests/resources/multiFileResources: Added.
4078 * manual-tests/resources/multiFileResources/post-echo-and-notify-done.cgi: Added.
4079 * manual-tests/resources/multiFileResources/testFile1.html: Added.
4080 * manual-tests/resources/multiFileResources/testFile2.html: Added.
4081 * manual-tests/resources/multiFileResources/testFile3.html: Added.
4082
4083 * WebCore.base.exp: Added support to export the new "chooseFilenames" method to be used in WebKit.
4084
4085 * html/HTMLInputElement.cpp:
4086 (WebCore::HTMLInputElement::parseMappedAttribute): Add support for the multiple attribute.
4087 (WebCore::HTMLInputElement::value): Added comments. The HTML5 spec says that value shouldn't apply for the file upload control,
4088 but we don't want to break the behavior for existing websites that may rely on this.
4089 (WebCore::HTMLInputElement::setValue): ditto.
4090 (WebCore::HTMLInputElement::setValueFromRenderer): This is no longer used for file upload controls. setFileListFromRenderer is used instead.
4091 (WebCore::HTMLInputElement::setFileListFromRenderer): Added.
4092 * html/HTMLInputElement.h:
4093
4094 * page/Chrome.cpp: (WebCore::Chrome::setToolTip): Show a tooltip with the file name list for the multi-file upload control.
4095
4096 * page/DragController.cpp: (WebCore::DragController::concludeDrag): Updated to support multiple files.
4097
4098 * platform/FileChooser.cpp: Add support for maintaining a list of file paths that can be retrieved by the renderer.
4099 (WebCore::FileChooser::FileChooser):
4100 (WebCore::FileChooser::create):
4101 (WebCore::FileChooser::clear):
4102 (WebCore::FileChooser::chooseFile):
4103 (WebCore::FileChooser::chooseFiles):
4104 (WebCore::FileChooser::chooseIcon):
4105 * platform/FileChooser.h:
4106 (WebCore::FileChooser::filePaths):
4107 (WebCore::FileChooser::allowsMultipleFiles):
4108
4109 * platform/graphics/Icon.h:
4110 * platform/graphics/mac/IconMac.mm: (WebCore::Icon::newIconForFiles): Returns a generic icon for multiple files.
4111 * platform/graphics/gtk/IconGtk.cpp: (WebCore::Icon::newIconForFiles): stubbed out.
4112 * platform/graphics/qt/IconQt.cpp: (WebCore::Icon::newIconForFiles): ditto.
4113 * platform/graphics/win/IconWin.cpp: (WebCore::Icon::newIconForFiles): ditto.
4114
4115 * platform/gtk/FileChooserGtk.cpp: (WebCore::FileChooser::basenameForWidth): Updated to deal with new filenames vector.
4116 * platform/mac/FileChooserMac.mm: (WebCore::FileChooser::basenameForWidth): ditto.
4117 * platform/qt/FileChooserQt.cpp:
4118 (WebCore::FileChooser::openFileChooser):
4119 (WebCore::FileChooser::basenameForWidth):
4120 * platform/win/FileChooserWin.cpp: (WebCore::FileChooser::basenameForWidth):
4121
4122 * platform/network/mac/FormDataStreamMac.mm: (WebCore::disassociateStreamWithResourceHandle):
4123 Removed unnecessary assertion. This can get hit when connectionDidFinishLoading and cancel
4124 both get called for the same ResourceHandle. This getting called twice has no negative effect.
4125
4126 * rendering/RenderFileUploadControl.cpp:
4127 (WebCore::RenderFileUploadControl::valueChanged): Calls setFileListFromRenderer.
4128 (WebCore::RenderFileUploadControl::allowsMultipleFiles): Added.
4129 (WebCore::RenderFileUploadControl::updateFromElement): Uses the new filenames call from FileChooser.
4130 (WebCore::RenderFileUploadControl::receiveDroppedFiles): Updated to support multiple files.
4131 * rendering/RenderFileUploadControl.h:
4132
pkasting@chromium.orga8304c02008-10-24 20:43:02 +000041332008-10-23 Peter Kasting <pkasting@google.com>
4134
4135 Reviewed by David Hyatt.
4136
4137 https://bugs.webkit.org/show_bug.cgi?id=21844
4138 Remove setFocusRingColorChangeFunction.
4139
4140 * page/Page.cpp:
4141 (WebCore::Page::Page):
4142 * platform/graphics/Color.h:
4143 * platform/graphics/mac/ColorMac.mm:
4144 (WebCore::focusRingColor):
4145 * platform/graphics/qt/GraphicsContextQt.cpp:
4146 * platform/graphics/win/ColorSafari.cpp:
4147
ddkilzer@apple.com853ea9f2008-10-24 20:32:46 +000041482008-10-24 David Kilzer <ddkilzer@apple.com>
4149
4150 Build fix for Qt.
4151
4152 Reviewed by Greg.
4153
4154 * WebCore.pro: Added missing *.idl files.
4155
ddkilzer@apple.comf930faf2008-10-24 20:10:40 +000041562008-10-24 Greg Bolsinga <bolsinga@apple.com>
4157
4158 Reviewed by Sam Weinig.
4159
4160 https://bugs.webkit.org/show_bug.cgi?id=21475
4161
4162 Provide support for the Geolocation API
4163
4164 http://dev.w3.org/geo/api/spec-source.html
4165
4166 Test: geolocation/geolocation-not-implemented.html
4167
4168 * DerivedSources.make:
4169 * GNUmakefile.am: Added Geolocation support
4170 * WebCore.pro: Added Geolocation support
4171 * WebCore.vcproj/WebCore.vcproj: Added Geolocation support
4172 * WebCore.xcodeproj/project.pbxproj: Added Geolocation support
4173 * WebCoreSources.bkl: Added Geolocation support
4174 * bindings/js/JSCustomPositionCallback.cpp: Added.
4175 (WebCore::JSCustomPositionCallback::JSCustomPositionCallback):
4176 (WebCore::JSCustomPositionCallback::handleEvent):
4177 * bindings/js/JSCustomPositionCallback.h: Added.
4178 (WebCore::JSCustomPositionCallback::create):
4179 * bindings/js/JSCustomPositionErrorCallback.cpp: Added.
4180 (WebCore::JSCustomPositionErrorCallback::JSCustomPositionErrorCallback):
4181 (WebCore::JSCustomPositionErrorCallback::handleEvent):
4182 * bindings/js/JSCustomPositionErrorCallback.h: Added.
4183 (WebCore::JSCustomPositionErrorCallback::create):
4184 * bindings/js/JSDOMBinding.cpp: move markDOMObjectWrapper here from JSDOMWindowCustom
4185 (WebCore::markDOMObjectWrapper):
4186 * bindings/js/JSDOMBinding.h: move markDOMObjectWrapper here from JSDOMWindowCustom
4187 * bindings/js/JSDOMWindowCustom.cpp: move markDOMObjectWrapper to JSDOMBinding
4188 * bindings/js/JSGeolocationCustom.cpp: Added.
4189 (WebCore::JSGeolocation::getCurrentPosition):
4190 (WebCore::JSGeolocation::watchPosition):
4191 * bindings/js/JSNavigatorCustom.cpp: handle marking Geolocation
4192 (WebCore::JSNavigator::mark):
4193 * dom/Document.cpp:
4194 (WebCore::Document::Document):
4195 * dom/Document.h:
4196 (WebCore::Document::setUsingGeolocation):
4197 (WebCore::Document::usingGeolocation):
4198 * loader/FrameLoader.cpp: don't add to back forward cache if using Geolocation
4199 (WebCore::FrameLoader::canCachePage):
4200 * page/Geolocation.cpp: Added.
4201 (WebCore::Geolocation::GeoNotifier::GeoNotifier):
4202 (WebCore::Geolocation::GeoNotifier::timerFired):
4203 (WebCore::Geolocation::Geolocation):
4204 (WebCore::Geolocation::disconnectFrame):
4205 (WebCore::Geolocation::getCurrentPosition):
4206 (WebCore::Geolocation::watchPosition):
4207 (WebCore::Geolocation::clearWatch):
4208 (WebCore::Geolocation::stopUpdatingIfEmpty):
4209 (WebCore::Geolocation::sendErrorToOneShots):
4210 (WebCore::Geolocation::sendErrorToWatchers):
4211 (WebCore::Geolocation::sendPositionToOneShots):
4212 (WebCore::Geolocation::sendPositionToWatchers):
4213 (WebCore::Geolocation::handleError):
4214 (WebCore::Geolocation::geolocationServicePositionChanged):
4215 (WebCore::Geolocation::geolocationServiceErrorOccurred):
4216 * page/Geolocation.h: Added.
4217 (WebCore::Geolocation::create):
4218 (WebCore::Geolocation::~Geolocation):
4219 (WebCore::Geolocation::lastPosition):
4220 (WebCore::Geolocation::GeoNotifier::create):
4221 * page/Geolocation.idl: Added.
4222 * page/Geoposition.cpp: Added.
4223 (WebCore::Geoposition::toString):
4224 * page/Geoposition.h: Added.
4225 (WebCore::Geoposition::create):
4226 (WebCore::Geoposition::latitude):
4227 (WebCore::Geoposition::longitude):
4228 (WebCore::Geoposition::altitude):
4229 (WebCore::Geoposition::accuracy):
4230 (WebCore::Geoposition::altitudeAccuracy):
4231 (WebCore::Geoposition::heading):
4232 (WebCore::Geoposition::velocity):
4233 (WebCore::Geoposition::timestamp):
4234 (WebCore::Geoposition::Geoposition):
4235 * page/Geoposition.idl: Added.
4236 * page/Navigator.cpp:
4237 (WebCore::Navigator::disconnectFrame): disconnect Geolocation
4238 (WebCore::Navigator::geolocation): accessor for Geolocation
4239 * page/Navigator.h:
4240 (WebCore::Navigator::optionalGeolocation): accessor for Geolocation
4241 * page/Navigator.idl: accessor for Geolocation
4242 * page/PositionCallback.h: Added.
4243 (WebCore::PositionCallback::~PositionCallback):
4244 * page/PositionCallback.idl: Added.
4245 * page/PositionError.h: Added.
4246 (WebCore::PositionError::):
4247 (WebCore::PositionError::create):
4248 (WebCore::PositionError::code):
4249 (WebCore::PositionError::message):
4250 (WebCore::PositionError::PositionError):
4251 * page/PositionError.idl: Added.
4252 * page/PositionErrorCallback.h: Added.
4253 (WebCore::PositionErrorCallback::~PositionErrorCallback):
4254 * page/PositionErrorCallback.idl: Added.
4255 * page/PositionOptions.h: Added.
4256 (WebCore::PositionOptions::create):
4257 (WebCore::PositionOptions::enableHighAccuracy):
4258 (WebCore::PositionOptions::setEnableHighAccuracy):
4259 (WebCore::PositionOptions::timeout):
4260 (WebCore::PositionOptions::setTimeout):
4261 (WebCore::PositionOptions::PositionOptions):
4262 * page/PositionOptions.idl: Added.
4263 * platform/GeolocationService.cpp: Added.
4264 (WebCore::GeolocationService::GeolocationService):
4265 (WebCore::GeolocationService::positionChanged):
4266 (WebCore::GeolocationService::errorOccurred):
4267 * platform/GeolocationService.h: Added.
4268 (WebCore::GeolocationServiceClient::~GeolocationServiceClient):
4269 (WebCore::GeolocationServiceClient::geolocationServicePositionChanged):
4270 (WebCore::GeolocationServiceClient::geolocationServiceErrorOccurred):
4271 (WebCore::GeolocationService::~GeolocationService):
4272
simon.fraser@apple.coma0a18572008-10-24 19:15:52 +000042732008-10-24 Simon Fraser <simon.fraser@apple.com>
4274
simon.fraser@apple.com912ac412008-10-24 19:32:51 +00004275 Reviewed by Darin Adler
4276
4277 https://bugs.webkit.org/show_bug.cgi?id=21818
4278
4279 Add HashTraits for AtomicString so that AtomicString can be used as
4280 the key for a HashMap or HashSet.
4281
4282 * GNUmakefile.am: add AtomicStringHash.h
4283 * WebCore.vcproj/WebCore.vcproj: add AtomicStringHash.h
4284 * WebCore.xcodeproj/project.pbxproj: add AtomicStringHash.h
4285 * platform/text/AtomicString.h:
4286 (WebCore::AtomicString::AtomicString):
4287 (WebCore::AtomicString::isHashTableDeletedValue):
4288 specialize DefaultHash for AtomicString to use AtomicStringHash
4289 * platform/text/AtomicStringHash.h: Added.
4290 * platform/text/StringImpl.cpp:
4291 (WebCore::StringImpl::StringImpl):
4292 compute the hash up-front for the empty string
4293 * platform/text/StringImpl.h:
4294 (WebCore::StringImpl::existingHash):
4295 method to get the hash without a test and branch, for callers like
4296 AtomicStringHash who can guarantee that the hash has already been computed.
4297
42982008-10-24 Simon Fraser <simon.fraser@apple.com>
4299
simon.fraser@apple.coma0a18572008-10-24 19:15:52 +00004300 Reviewed by Sam Weinig
4301
4302 https://bugs.webkit.org/show_bug.cgi?id=21857
4303
4304 Add WebKitCSSKeyframeRule and WebKitCSSKeyframesRule to the
4305 switch in _wrapCSSRule.
4306
4307 * bindings/objc/DOMCSS.mm:
4308 (+[DOMCSSRule _wrapCSSRule:WebCore::]):
4309
aroben@apple.comb3ba69262008-10-24 19:14:17 +000043102008-10-24 Adam Roben <aroben@apple.com>
4311
4312 Windows build fix
4313
4314 * plugins/PluginView.cpp:
4315
mitz@apple.com258a2a32008-10-24 19:10:51 +000043162008-10-24 Dan Bernstein <mitz@apple.com>
4317
4318 Reviewed by Sam Weinig.
4319
4320 - fix https://bugs.webkit.org/show_bug.cgi?id=21851
4321 <rdar://problem/6304151> REGRESSION (r36513): Crash when removing a widget with percent height
4322
4323 Test: fast/replaced/percent-height-in-anonymous-block-widget.html
4324
4325 * rendering/RenderWidget.cpp:
4326 (WebCore::RenderWidget::destroy): Copied code added to
4327 RenderBox::destroy() in r36513 into this function.
4328
timothy@apple.comf4540012008-10-24 18:49:39 +000043292008-10-24 Timothy Hatcher <timothy@apple.com>
4330
4331 Add a mechanism to ask the InspectorClient for key/value setting pairs.
4332 These settings can be strings, numbers, booleans or string vectors. The
4333 settings are also bridged to and from JavaScript.
4334
4335 https://bugs.webkit.org/show_bug.cgi?id=21856
4336
4337 Reviewed by Darin Adler.
4338
4339 * WebCore.base.exp: Expose the String CFStringRef constructor.
4340 * inspector/InspectorClient.h:
4341 (WebCore::InspectorClient::populateSetting): Added, pure virtual.
4342 (WebCore::InspectorClient::storeSetting): Ditto.
4343 (WebCore::InspectorClient::removeSetting): Ditto.
4344 * inspector/InspectorController.cpp:
4345 (WebCore::setting): Calls InspectorController::setting and wraps the result in script types.
4346 (WebCore::setSetting): Calls InspectorController::setSetting after converting from script types.
4347 (WebCore::InspectorController::InspectorController): Increment a global static
4348 to track the number of live InspectorControllers.
4349 (WebCore::InspectorController::~InspectorController): Decrement the global static
4350 that tracks the number of live InspectorControllers. Delete the setting cache if there
4351 are no more live controllers.
4352 (WebCore::InspectorController::setting): Check the cache and return the setting from there,
4353 otherwise make a new Setting and ask the client to populate it.
4354 (WebCore::InspectorController::setSetting): Change the cache and ask the client to store it.
4355 (WebCore::InspectorController::windowScriptObjectAvailable): Add setting and setSetting
4356 to the InspectorController script class.
4357 * inspector/InspectorController.h:
4358 (WebCore::InspectorController::Setting::Setting):
4359 (WebCore::InspectorController::Setting::operator=):
4360 (WebCore::InspectorController::Setting::type): Return m_type.
4361 (WebCore::InspectorController::Setting::string): Return m_string. Assert the type is correct.
4362 (WebCore::InspectorController::Setting::stringVector): Return m_stringVector.
4363 Assert the type is correct.
4364 (WebCore::InspectorController::Setting::doubleValue): Return m_simpleContent.m_double.
4365 Assert the type is correct.
4366 (WebCore::InspectorController::Setting::integerValue): Return m_simpleContent.m_integer.
4367 Assert the type is correct.
4368 (WebCore::InspectorController::Setting::booleanValue): Return m_simpleContent.m_boolean.
4369 Assert the type is correct.
4370 (WebCore::InspectorController::Setting::set): Overloaded for each data type, sets the right
4371 field and the type.
4372 * loader/EmptyClients.h:
4373 (WebCore::EmptyInspectorClient::populateSetting): Added, empty method.
4374 (WebCore::EmptyInspectorClient::storeSetting): Ditto.
4375 (WebCore::EmptyInspectorClient::removeSetting): Ditto.
4376
cwzwarich@webkit.org22ade9b2008-10-24 18:10:17 +000043772008-10-24 Cameron Zwarich <zwarich@apple.com>
4378
4379 Reviewed by Sam Weinig.
4380
4381 Remove some C-style casts.
4382
4383 * html/HTMLViewSourceDocument.cpp:
4384 (WebCore::HTMLViewSourceDocument::addViewSourceToken):
4385
darin@apple.com44331f82008-10-24 16:22:51 +000043862008-10-24 Darin Adler <darin@apple.com>
4387
4388 - finish rolling out https://bugs.webkit.org/show_bug.cgi?id=21732
4389
4390 * bindings/js/JSAttrCustom.cpp:
4391 * bindings/js/JSCSSRuleCustom.cpp:
4392 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
4393 * bindings/js/JSCSSValueCustom.cpp:
4394 * bindings/js/JSCanvasPixelArrayCustom.h:
4395 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
4396 * bindings/js/JSClipboardCustom.cpp:
4397 * bindings/js/JSConsoleCustom.cpp:
4398 * bindings/js/JSCustomSQLStatementCallback.cpp:
4399 * bindings/js/JSCustomSQLStatementErrorCallback.cpp:
4400 * bindings/js/JSCustomSQLTransactionCallback.cpp:
4401 * bindings/js/JSCustomSQLTransactionErrorCallback.cpp:
4402 * bindings/js/JSCustomVoidCallback.cpp:
4403 * bindings/js/JSCustomVoidCallback.h:
4404 * bindings/js/JSCustomXPathNSResolver.cpp:
4405 * bindings/js/JSCustomXPathNSResolver.h:
4406 * bindings/js/JSDOMApplicationCacheCustom.cpp:
4407 * bindings/js/JSDOMBinding.cpp:
4408 * bindings/js/JSDOMBinding.h:
4409 * bindings/js/JSDOMWindowBase.cpp:
4410 * bindings/js/JSDOMWindowBase.h:
4411 * bindings/js/JSDOMWindowCustom.cpp:
4412 * bindings/js/JSDOMWindowCustom.h:
4413 * bindings/js/JSDOMWindowShell.cpp:
4414 * bindings/js/JSDOMWindowShell.h:
4415 * bindings/js/JSDatabaseCustom.cpp:
4416 * bindings/js/JSDedicatedWorkerCustom.cpp:
4417 * bindings/js/JSDocumentCustom.cpp:
4418 * bindings/js/JSElementCustom.cpp:
4419 * bindings/js/JSEventCustom.cpp:
4420 * bindings/js/JSEventListener.cpp:
4421 * bindings/js/JSEventTarget.cpp:
4422 * bindings/js/JSEventTarget.h:
4423 * bindings/js/JSEventTargetBase.h:
4424 * bindings/js/JSEventTargetNodeCustom.cpp:
4425 * bindings/js/JSHTMLAllCollection.h:
4426 * bindings/js/JSHTMLAppletElementCustom.cpp:
4427 * bindings/js/JSHTMLCollectionCustom.cpp:
4428 * bindings/js/JSHTMLDocumentCustom.cpp:
4429 * bindings/js/JSHTMLEmbedElementCustom.cpp:
4430 * bindings/js/JSHTMLFormElementCustom.cpp:
4431 * bindings/js/JSHTMLFrameElementCustom.cpp:
4432 * bindings/js/JSHTMLFrameSetElementCustom.cpp:
4433 * bindings/js/JSHTMLIFrameElementCustom.cpp:
4434 * bindings/js/JSHTMLInputElementCustom.cpp:
4435 * bindings/js/JSHTMLObjectElementCustom.cpp:
4436 * bindings/js/JSHTMLOptionsCollectionCustom.cpp:
4437 * bindings/js/JSHTMLSelectElementCustom.cpp:
4438 * bindings/js/JSHTMLSelectElementCustom.h:
4439 * bindings/js/JSHistoryCustom.cpp:
4440 * bindings/js/JSImageDataCustom.cpp:
4441 * bindings/js/JSInspectedObjectWrapper.cpp:
4442 * bindings/js/JSInspectedObjectWrapper.h:
4443 * bindings/js/JSInspectorCallbackWrapper.cpp:
4444 * bindings/js/JSInspectorCallbackWrapper.h:
4445 * bindings/js/JSJavaScriptCallFrameCustom.cpp:
4446 * bindings/js/JSLocationCustom.cpp:
4447 * bindings/js/JSMessagePortCustom.cpp:
4448 * bindings/js/JSMimeTypeArrayCustom.cpp:
4449 * bindings/js/JSNamedNodeMapCustom.cpp:
4450 * bindings/js/JSNamedNodesCollection.cpp:
4451 * bindings/js/JSNamedNodesCollection.h:
4452 * bindings/js/JSNavigatorCustom.cpp:
4453 * bindings/js/JSNodeCustom.cpp:
4454 * bindings/js/JSNodeFilterCondition.cpp:
4455 * bindings/js/JSNodeFilterCondition.h:
4456 * bindings/js/JSNodeFilterCustom.cpp:
4457 * bindings/js/JSNodeIteratorCustom.cpp:
4458 * bindings/js/JSNodeListCustom.cpp:
4459 * bindings/js/JSPluginArrayCustom.cpp:
4460 * bindings/js/JSPluginCustom.cpp:
4461 * bindings/js/JSPluginElementFunctions.cpp:
4462 * bindings/js/JSPluginElementFunctions.h:
4463 * bindings/js/JSQuarantinedObjectWrapper.cpp:
4464 * bindings/js/JSQuarantinedObjectWrapper.h:
4465 * bindings/js/JSRGBColor.cpp:
4466 * bindings/js/JSRGBColor.h:
4467 * bindings/js/JSSQLResultSetRowListCustom.cpp:
4468 * bindings/js/JSSQLTransactionCustom.cpp:
4469 * bindings/js/JSSVGElementInstanceCustom.cpp:
4470 * bindings/js/JSSVGLengthCustom.cpp:
4471 * bindings/js/JSSVGMatrixCustom.cpp:
4472 * bindings/js/JSSVGPathSegCustom.cpp:
4473 * bindings/js/JSSVGPathSegListCustom.cpp:
4474 * bindings/js/JSSVGPointListCustom.cpp:
4475 * bindings/js/JSSVGTransformListCustom.cpp:
4476 * bindings/js/JSStorageCustom.cpp:
4477 * bindings/js/JSStyleSheetCustom.cpp:
4478 * bindings/js/JSStyleSheetListCustom.cpp:
4479 * bindings/js/JSTextCustom.cpp:
4480 * bindings/js/JSTreeWalkerCustom.cpp:
4481 * bindings/js/JSXMLHttpRequestCustom.cpp:
4482 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
4483 * bindings/js/JSXSLTProcessorCustom.cpp:
4484 * bindings/js/ScheduledAction.cpp:
4485 * bindings/js/ScheduledAction.h:
4486 * bindings/js/ScriptController.cpp:
4487 * bindings/js/ScriptController.h:
4488 * bindings/objc/WebScriptObject.mm:
4489 * bindings/objc/WebScriptObjectPrivate.h:
4490 * bindings/scripts/CodeGeneratorJS.pm:
4491 * bridge/NP_jsobject.cpp:
4492 * bridge/c/c_instance.cpp:
4493 * bridge/c/c_instance.h:
4494 * bridge/c/c_runtime.cpp:
4495 * bridge/c/c_runtime.h:
4496 * bridge/c/c_utility.cpp:
4497 * bridge/c/c_utility.h:
4498 * bridge/jni/jni_instance.cpp:
4499 * bridge/jni/jni_instance.h:
4500 * bridge/jni/jni_jsobject.h:
4501 * bridge/jni/jni_jsobject.mm:
4502 * bridge/jni/jni_objc.mm:
4503 * bridge/jni/jni_runtime.cpp:
4504 * bridge/jni/jni_runtime.h:
4505 * bridge/jni/jni_utility.cpp:
4506 * bridge/jni/jni_utility.h:
4507 * bridge/objc/WebScriptObject.h:
4508 * bridge/objc/objc_class.h:
4509 * bridge/objc/objc_class.mm:
4510 * bridge/objc/objc_instance.h:
4511 * bridge/objc/objc_instance.mm:
4512 * bridge/objc/objc_runtime.h:
4513 * bridge/objc/objc_runtime.mm:
4514 * bridge/objc/objc_utility.h:
4515 * bridge/objc/objc_utility.mm:
4516 * bridge/qt/qt_class.cpp:
4517 * bridge/qt/qt_class.h:
4518 * bridge/qt/qt_instance.cpp:
4519 * bridge/qt/qt_instance.h:
4520 * bridge/qt/qt_runtime.cpp:
4521 * bridge/qt/qt_runtime.h:
4522 * bridge/runtime.cpp:
4523 * bridge/runtime.h:
4524 * bridge/runtime_array.cpp:
4525 * bridge/runtime_array.h:
4526 * bridge/runtime_method.cpp:
4527 * bridge/runtime_method.h:
4528 * bridge/runtime_object.cpp:
4529 * bridge/runtime_object.h:
4530 * bridge/testqtbindings.cpp:
4531 * inspector/JavaScriptCallFrame.cpp:
4532 * inspector/JavaScriptCallFrame.h:
4533 * inspector/JavaScriptProfile.cpp:
4534 * inspector/JavaScriptProfile.h:
4535 * inspector/JavaScriptProfileNode.cpp:
4536 * inspector/JavaScriptProfileNode.h:
4537 * loader/FrameLoader.cpp:
4538 * loader/FrameLoader.h:
4539 * page/Console.cpp:
4540 * page/Console.h:
4541 * plugins/MimeTypeArray.h:
4542 * plugins/Plugin.h:
4543 * plugins/PluginArray.h:
4544 * plugins/PluginView.cpp:
4545 * xml/XMLHttpRequest.cpp:
4546 Use JSValue* instead of JSValuePtr.
4547
hausmann@webkit.orgcffb4f42008-10-24 14:43:29 +000045482008-10-24 Simon Hausmann <hausmann@webkit.org>
4549
4550 Fix the Qt build.
4551
4552 * bridge/qt/qt_instance.cpp:
4553 (JSC::Bindings::QtField::valueFromInstance):
4554
ddkilzer@apple.com4f3c9aa2008-10-24 07:39:15 +000045552008-10-24 David Kilzer <ddkilzer@apple.com>
4556
4557 Rolled out r37840 and r37841.
4558
4559 * DerivedSources.make:
4560 * GNUmakefile.am:
4561 * WebCore.pro:
4562 * WebCore.vcproj/WebCore.vcproj:
4563 * WebCore.xcodeproj/project.pbxproj:
4564 * WebCoreSources.bkl:
4565 * bindings/js/JSCustomPositionCallback.cpp: Removed.
4566 * bindings/js/JSCustomPositionCallback.h: Removed.
4567 * bindings/js/JSCustomPositionErrorCallback.cpp: Removed.
4568 * bindings/js/JSCustomPositionErrorCallback.h: Removed.
4569 * bindings/js/JSDOMBinding.cpp:
4570 * bindings/js/JSDOMBinding.h:
4571 * bindings/js/JSDOMWindowCustom.cpp:
4572 (WebCore::markDOMObjectWrapper):
4573 * bindings/js/JSGeolocationCustom.cpp: Removed.
4574 * bindings/js/JSNavigatorCustom.cpp:
4575 * dom/Document.cpp:
4576 (WebCore::Document::Document):
4577 * dom/Document.h:
4578 * loader/FrameLoader.cpp:
4579 (WebCore::FrameLoader::canCachePage):
4580 * page/Geolocation.cpp: Removed.
4581 * page/Geolocation.h: Removed.
4582 * page/Geolocation.idl: Removed.
4583 * page/Geoposition.cpp: Removed.
4584 * page/Geoposition.h: Removed.
4585 * page/Geoposition.idl: Removed.
4586 * page/Navigator.cpp:
4587 (WebCore::Navigator::disconnectFrame):
4588 * page/Navigator.h:
4589 * page/Navigator.idl:
4590 * page/PositionCallback.h: Removed.
4591 * page/PositionCallback.idl: Removed.
4592 * page/PositionError.h: Removed.
4593 * page/PositionError.idl: Removed.
4594 * page/PositionErrorCallback.h: Removed.
4595 * page/PositionErrorCallback.idl: Removed.
4596 * page/PositionOptions.h: Removed.
4597 * page/PositionOptions.idl: Removed.
4598 * platform/GeolocationService.cpp: Removed.
4599 * platform/GeolocationService.h: Removed.
4600
ddkilzer@apple.com4a4be182008-10-24 05:39:28 +000046012008-10-23 David Kilzer <ddkilzer@apple.com>
4602
4603 Attempt to fix GTK build.
4604
4605 * GNUmakefile.am: Added new *.idl files that were missing.
4606
ddkilzer@apple.comc9e37fd2008-10-24 05:05:47 +000046072008-10-23 Greg Bolsinga <bolsinga@apple.com>
4608
4609 Reviewed by Sam Weinig.
4610
4611 https://bugs.webkit.org/show_bug.cgi?id=21475
4612
4613 Provide support for the Geolocation API
4614
4615 http://dev.w3.org/geo/api/spec-source.html
4616
4617 Test: geolocation/geolocation-not-implemented.html
4618
4619 * DerivedSources.make:
4620 * GNUmakefile.am: Added Geolocation support
4621 * WebCore.pro: Added Geolocation support
4622 * WebCore.vcproj/WebCore.vcproj: Added Geolocation support
4623 * WebCore.xcodeproj/project.pbxproj: Added Geolocation support
4624 * WebCoreSources.bkl: Added Geolocation support
4625 * bindings/js/JSCustomPositionCallback.cpp: Added.
4626 (WebCore::JSCustomPositionCallback::JSCustomPositionCallback):
4627 (WebCore::JSCustomPositionCallback::handleEvent):
4628 * bindings/js/JSCustomPositionCallback.h: Added.
4629 (WebCore::JSCustomPositionCallback::create):
4630 * bindings/js/JSCustomPositionErrorCallback.cpp: Added.
4631 (WebCore::JSCustomPositionErrorCallback::JSCustomPositionErrorCallback):
4632 (WebCore::JSCustomPositionErrorCallback::handleEvent):
4633 * bindings/js/JSCustomPositionErrorCallback.h: Added.
4634 (WebCore::JSCustomPositionErrorCallback::create):
4635 * bindings/js/JSDOMBinding.cpp: move markDOMObjectWrapper here from JSDOMWindowCustom
4636 (WebCore::markDOMObjectWrapper):
4637 * bindings/js/JSDOMBinding.h: move markDOMObjectWrapper here from JSDOMWindowCustom
4638 * bindings/js/JSDOMWindowCustom.cpp: move markDOMObjectWrapper to JSDOMBinding
4639 * bindings/js/JSGeolocationCustom.cpp: Added.
4640 (WebCore::JSGeolocation::getCurrentPosition):
4641 (WebCore::JSGeolocation::watchPosition):
4642 * bindings/js/JSNavigatorCustom.cpp: handle marking Geolocation
4643 (WebCore::JSNavigator::mark):
4644 * dom/Document.cpp:
4645 (WebCore::Document::Document):
4646 * dom/Document.h:
4647 (WebCore::Document::setUsingGeolocation):
4648 (WebCore::Document::usingGeolocation):
4649 * loader/FrameLoader.cpp: don't add to back forward cache if using Geolocation
4650 (WebCore::FrameLoader::canCachePage):
4651 * page/Geolocation.cpp: Added.
4652 (WebCore::Geolocation::GeoNotifier::GeoNotifier):
4653 (WebCore::Geolocation::GeoNotifier::timerFired):
4654 (WebCore::Geolocation::Geolocation):
4655 (WebCore::Geolocation::disconnectFrame):
4656 (WebCore::Geolocation::getCurrentPosition):
4657 (WebCore::Geolocation::watchPosition):
4658 (WebCore::Geolocation::clearWatch):
4659 (WebCore::Geolocation::stopUpdatingIfEmpty):
4660 (WebCore::Geolocation::sendErrorToOneShots):
4661 (WebCore::Geolocation::sendErrorToWatchers):
4662 (WebCore::Geolocation::sendPositionToOneShots):
4663 (WebCore::Geolocation::sendPositionToWatchers):
4664 (WebCore::Geolocation::handleError):
4665 (WebCore::Geolocation::geolocationServicePositionChanged):
4666 (WebCore::Geolocation::geolocationServiceErrorOccurred):
4667 * page/Geolocation.h: Added.
4668 (WebCore::Geolocation::create):
4669 (WebCore::Geolocation::~Geolocation):
4670 (WebCore::Geolocation::lastPosition):
4671 (WebCore::Geolocation::GeoNotifier::create):
4672 * page/Geolocation.idl: Added.
4673 * page/Geoposition.cpp: Added.
4674 (WebCore::Geoposition::toString):
4675 * page/Geoposition.h: Added.
4676 (WebCore::Geoposition::create):
4677 (WebCore::Geoposition::latitude):
4678 (WebCore::Geoposition::longitude):
4679 (WebCore::Geoposition::altitude):
4680 (WebCore::Geoposition::accuracy):
4681 (WebCore::Geoposition::altitudeAccuracy):
4682 (WebCore::Geoposition::heading):
4683 (WebCore::Geoposition::velocity):
4684 (WebCore::Geoposition::timestamp):
4685 (WebCore::Geoposition::Geoposition):
4686 * page/Geoposition.idl: Added.
4687 * page/Navigator.cpp:
4688 (WebCore::Navigator::disconnectFrame): disconnect Geolocation
4689 (WebCore::Navigator::geolocation): accessor for Geolocation
4690 * page/Navigator.h:
4691 (WebCore::Navigator::optionalGeolocation): accessor for Geolocation
4692 * page/Navigator.idl: accessor for Geolocation
4693 * page/PositionCallback.h: Added.
4694 (WebCore::PositionCallback::~PositionCallback):
4695 * page/PositionCallback.idl: Added.
4696 * page/PositionError.h: Added.
4697 (WebCore::PositionError::):
4698 (WebCore::PositionError::create):
4699 (WebCore::PositionError::code):
4700 (WebCore::PositionError::message):
4701 (WebCore::PositionError::PositionError):
4702 * page/PositionError.idl: Added.
4703 * page/PositionErrorCallback.h: Added.
4704 (WebCore::PositionErrorCallback::~PositionErrorCallback):
4705 * page/PositionErrorCallback.idl: Added.
4706 * page/PositionOptions.h: Added.
4707 (WebCore::PositionOptions::create):
4708 (WebCore::PositionOptions::enableHighAccuracy):
4709 (WebCore::PositionOptions::setEnableHighAccuracy):
4710 (WebCore::PositionOptions::timeout):
4711 (WebCore::PositionOptions::setTimeout):
4712 (WebCore::PositionOptions::PositionOptions):
4713 * page/PositionOptions.idl: Added.
4714 * platform/GeolocationService.cpp: Added.
4715 (WebCore::GeolocationService::GeolocationService):
4716 (WebCore::GeolocationService::positionChanged):
4717 (WebCore::GeolocationService::errorOccurred):
4718 * platform/GeolocationService.h: Added.
4719 (WebCore::GeolocationServiceClient::~GeolocationServiceClient):
4720 (WebCore::GeolocationServiceClient::geolocationServicePositionChanged):
4721 (WebCore::GeolocationServiceClient::geolocationServiceErrorOccurred):
4722 (WebCore::GeolocationService::~GeolocationService):
4723
alp@webkit.org4e4aac32008-10-24 04:52:50 +000047242008-10-23 Alp Toker <alp@nuanti.com>
4725
4726 Fix typo in comment in previous commit. GTK -> GLIB
4727
4728 * platform/gtk/guriescape.c:
4729
alp@webkit.org274a3a12008-10-24 04:32:51 +000047302008-10-23 Kalle Vahlman <kalle.vahlman@movial.com>
4731
4732 Reviewed by Alp Toker.
4733
4734 https://bugs.webkit.org/show_bug.cgi?id=21824
4735 [GTK] FileSystem abstraction uses features from Glib 2.16
4736
4737 Wrap g_uri_unescape_string() to fix building with pre-2.16 Glib
4738
4739 * platform/gtk/guriescape.c:
4740 (unescape_character):
4741 (_webcore_g_uri_unescape_segment):
4742 (_webcore_g_uri_unescape_string):
4743 * platform/gtk/guriescape.h:
4744
jmalonzo@webkit.orga721ed52008-10-24 03:44:10 +000047452008-10-23 Jan Michael Alonzo <jmalonzo@webkit.org>
4746
4747 Fix Gtk build typo introduced in http://trac.webkit.org/changeset/37826.
4748
4749 * GNUmakefile.am:
4750
darin@chromium.org65ff24c2008-10-24 01:04:33 +000047512008-10-23 Darin Fisher <darin@chromium.org>
4752
4753 Reviewed by Eric Seidel.
4754
4755 m_frame null checked but then dereferenced
4756 https://bugs.webkit.org/show_bug.cgi?id=21845
4757
4758 This error was found using a static analysis tool, and so I do not know
4759 how to produce a null m_frame on entry to this method. Hence, I have
4760 not included a regression test.
4761
4762 * page/EventHandler.cpp:
4763 (WebCore::EventHandler::allowDHTMLDrag): Add an early return.
4764
mitz@apple.com83d2e872008-10-23 21:56:03 +000047652008-10-23 Dan Bernstein <mitz@apple.com>
4766
4767 Reviewed by Sam Weinig with no hesitation.
4768
4769 - fix the HTML/CSS case of https://bugs.webkit.org/show_bug.cgi?id=19839
4770 <rdar://problem/6304805> A PDF,RLE sequence that should be a no-op affects bidi reordering
4771
4772 Test: fast/text/bidi-embedding-pop-and-push-same.html
4773
4774 * platform/text/BidiResolver.h:
4775 (WebCore::BidiResolver::embed): Changed to only add the embedding
4776 operation to a vector of pending operations.
4777
4778 (WebCore::BidiResolver::lowerExplicitEmbeddingLevel): Added. Moved the
4779 code that used to be in the PDF case of embed() here, except the part
4780 that sets the context.
4781
4782 (WebCore::BidiResolver::raiseExplicitEmbeddingLevel): Added. Moved the
4783 code that used to be in the non-PDF case of embed() here, except the
4784 part the sets the context.
4785
4786 (WebCore::BidiResolver::commitExplicitEmbedding): Added. Processes the
4787 explicit embedding operations in the vector by creating an updated
4788 context and determining the old and new embedding levels. If the levels
4789 are not the same, calls {lower,raise}ExplicitEmbeddingLevel(). Always
4790 sets the context to the new one.
4791
4792 (WebCore::BidiResolver::createBidiRunsForLine): Added calls to
4793 commitExplicitEmbedding() after calling embed() and after calling
4794 increment().
4795
4796 * rendering/bidi.cpp:
4797 (WebCore::bidiFirst): Added calls to commitExplicitEmbedding() because
4798 this function increments the resolver.
4799
4800 (WebCore::RenderBlock::skipLeadingWhitespace): Ditto.
4801
jmalonzo@webkit.org2af1d5f2008-10-23 21:24:14 +000048022008-10-23 Jan Michael Alonzo <jmalonzo@webkit.org>
4803
4804 Gtk build fix. Not reviewed.
4805
4806 Add DNSCurl and DNSSoup to the Gtk build
4807
4808 * GNUmakefile.am:
4809 * platform/gtk/TemporaryLinkStubs.cpp:
4810 * platform/network/soup/DNSSoup.cpp: Copied from WebCore/platform/network/curl/DNSCurl.cpp.
4811 (WebCore::prefetchDNS):
4812
eric@webkit.org378afbe2008-10-23 21:17:27 +000048132008-10-23 Eric Seidel <eric@webkit.org>
4814
4815 Reviewed by Sam Weinig.
4816
4817 Un-break the Darwin build.
4818
4819 * platform/graphics/cg/GraphicsContextPlatformPrivateCG.h:
4820 * platform/graphics/cg/ImageCG.cpp:
4821
darin@chromium.org9573fd42008-10-23 21:13:50 +000048222008-10-23 Darin Fisher <darin@chromium.org>
4823
4824 Reviewed by Eric Seidel.
4825
4826 Fix forward decls to be struct instead of class.
4827 https://bugs.webkit.org/show_bug.cgi?id=21838
4828
4829 * rendering/style/StyleRareInheritedData.h:
4830 * rendering/style/StyleRareNonInheritedData.h:
4831
weinig@apple.combb96c632008-10-23 20:36:25 +000048322008-10-23 Brent Fulgham <bfulgham@gmail.com>
4833
4834 Reviewed by Oliver Hunt.
4835
4836 * platform/network/curl/ResourceRequest.h: A better implementation
4837 of CFURLRequest, rather than void*. This gives better compatibility
4838 with the WebKit.idl interface.
4839 (WebCore::ResourceRequest::cfURLRequest):
4840
eric@webkit.orgb7074c02008-10-23 19:59:42 +000048412008-10-23 Mike Pinkerton <pinkerton@chromium.org>
4842
4843 Reviewed by Eric Seidel.
4844
4845 PLATFORM(CHROMIUM) uses CG the same way PLATFORM(MAC) does so fix
4846 ifdefs to reflect that.
4847
4848 * platform/graphics/cg/GraphicsContextPlatformPrivateCG.h:
4849 * platform/graphics/cg/ImageCG.cpp:
4850
pkasting@chromium.org586415d2008-10-23 19:37:35 +000048512008-10-23 Peter Kasting <pkasting@google.com>
4852
4853 Reviewed by Adam Roben.
4854
4855 https://bugs.webkit.org/show_bug.cgi?id=21833
4856 Place JavaScript Debugger hooks under #if ENABLE(JAVASCRIPT_DEBUGGER).
4857
4858 * inspector/InspectorController.cpp:
4859 (WebCore::InspectorController::InspectorController):
4860 (WebCore::InspectorController::setWindowVisible):
4861 (WebCore::InspectorController::windowScriptObjectAvailable):
4862 (WebCore::InspectorController::close):
4863 * inspector/InspectorController.h:
4864 * page/Page.cpp:
4865 (WebCore::Page::Page):
4866
kmccullough@apple.comd7e4bf72008-10-23 18:33:46 +000048672008-10-23 Kevin McCullough <kmccullough@apple.com>
4868
4869 Reviewed by Tim Hatcher.
4870
4871 https://bugs.webkit.org/show_bug.cgi?id=21817
4872 Bug 21817: Manual profiler tests should be made into layout tests
4873
4874 -Moving the tests before diffing so that it's clear what changed.
4875
4876 * manual-tests/inspector/profiler-test-anonymous-event-handler.html: Removed.
4877 * manual-tests/inspector/profiler-test-anonymous-function-called-from-different-contexts.html: Removed.
4878 * manual-tests/inspector/profiler-test-anonymous-function-calls-built-in-functions.html: Removed.
4879 * manual-tests/inspector/profiler-test-anonymous-function-calls-eval.html: Removed.
4880 * manual-tests/inspector/profiler-test-apply.html: Removed.
4881 * manual-tests/inspector/profiler-test-built-in-function-calls-anonymous.html: Removed.
4882 * manual-tests/inspector/profiler-test-built-in-function-calls-user-defined-function.html: Removed.
4883 * manual-tests/inspector/profiler-test-call-nodelist-as-function.html: Removed.
4884 * manual-tests/inspector/profiler-test-calling-the-function-that-started-the-profiler-from-another-scope.html: Removed.
4885 * manual-tests/inspector/profiler-test-compare-multiple-profiles.html: Removed.
4886 * manual-tests/inspector/profiler-test-constructor.html: Removed.
4887 * manual-tests/inspector/profiler-test-dead-time.html: Removed.
4888 * manual-tests/inspector/profiler-test-deep-recursion.html: Removed.
4889 * manual-tests/inspector/profiler-test-document-dot-write.html: Removed.
4890 * manual-tests/inspector/profiler-test-event-handler.html: Removed.
4891 * manual-tests/inspector/profiler-test-execution-context-and-eval-on-same-line.html: Removed.
4892 * manual-tests/inspector/profiler-test-heavy-view.html: Removed.
4893 * manual-tests/inspector/profiler-test-inline-event-handler.html: Removed.
4894 * manual-tests/inspector/profiler-test-multiple-and-different-scoped-anonymous-function-calls.html: Removed.
4895 * manual-tests/inspector/profiler-test-multiple-and-different-scoped-function-calls.html: Removed.
4896 * manual-tests/inspector/profiler-test-multiple-frames.html: Removed.
4897 * manual-tests/inspector/profiler-test-multiple-windows.html: Removed.
4898 * manual-tests/inspector/profiler-test-nested-anonymous-functon.html: Removed.
4899 * manual-tests/inspector/profiler-test-nested-start-and-stop-profiler.html: Removed.
4900 * manual-tests/inspector/profiler-test-no-execution-context.html: Removed.
4901 * manual-tests/inspector/profiler-test-one-execution-context.html: Removed.
4902 * manual-tests/inspector/profiler-test-profile-calls-in-included-file.html: Removed.
4903 * manual-tests/inspector/profiler-test-profiling-from-a-nested-location-but-stop-profiling-outside-the-nesting.html: Removed.
4904 * manual-tests/inspector/profiler-test-profiling-from-a-nested-location.html: Removed.
4905 * manual-tests/inspector/profiler-test-simple-event-call.html: Removed.
4906 * manual-tests/inspector/profiler-test-simple-no-level-change.html: Removed.
4907 * manual-tests/inspector/profiler-test-start-and-stop-profiler-multiple-times.html: Removed.
4908 * manual-tests/inspector/profiler-test-start-and-stop-profiling-in-the-same-function.html: Removed.
4909 * manual-tests/inspector/profiler-test-start-but-dont-stop-profiling.html: Removed.
4910 * manual-tests/inspector/profiler-test-stop-profiling-after-setTimeout.html: Removed.
4911 * manual-tests/inspector/profiler-test-stop-then-function-call.html: Removed.
4912 * manual-tests/inspector/profiler-test-throw-exception-from-eval.html: Removed.
4913 * manual-tests/inspector/profiler-test-two-execution-contexts.html: Removed.
4914 * manual-tests/inspector/profiler-test-user-defined-function-calls-built-in-functions.html: Removed.
4915 * manual-tests/inspector/profiler-test-window-dot-eval.html: Removed.
4916 * manual-tests/inspector/resources/other-frame.html: Removed.
4917 * manual-tests/inspector/resources/other-window.html: Removed.
4918 * manual-tests/inspector/resources/profiler-test-JS-resources.js: Removed.
4919
abarth@webkit.org31873302008-10-23 17:07:24 +000049202008-10-23 Adam Barth <abarth@webkit.org>
4921
4922 Reviewed by Sam Weinig.
4923
4924 https://bugs.webkit.org/show_bug.cgi?id=21826
4925
4926 Add accessor for SecurityOrigin::m_domainWasSetInDOM.
4927
4928 * page/SecurityOrigin.h:
4929 (WebCore::SecurityOrigin::domainWasSetInDOM):
4930
darin@apple.com3f537b92008-10-23 15:55:41 +000049312008-10-23 Darin Adler <darin@apple.com>
4932
4933 - roll out https://bugs.webkit.org/show_bug.cgi?id=21732
4934
4935 * bindings/js/ScheduledAction.h:
4936 * inspector/InspectorController.cpp:
4937 ProtectedPtr<JSValue> instead of ProtectedPtr<JSValuePtr>.
4938
hausmann@webkit.org7ff09a42008-10-23 12:27:41 +000049392008-10-23 Simon Hausmann <hausmann@webkit.org>
4940
4941 Fix the Qt build.
4942
4943 * bridge/qt/qt_runtime.cpp:
4944 (JSC::Bindings::QtConnectionObject::execute):
4945 * bridge/qt/qt_runtime.h:
4946 (JSC::Bindings::QtRuntimeMethod::createStructureID):
4947
ap@webkit.org76544c12008-10-23 10:15:55 +000049482008-10-23 Alexey Proskuryakov <ap@webkit.org>
4949
4950 Reviewed by Maciej Stachowiak.
4951
4952 https://bugs.webkit.org/show_bug.cgi?id=21825
4953 JSDOMBinding should not blindly cast the global object to JSDOMWindow
4954
4955 * bindings/js/JSDOMGlobalObject.cpp:
4956 * bindings/js/JSDOMGlobalObject.h:
4957 * GNUmakefile.am:
4958 * WebCore.pro:
4959 * WebCore.vcproj/WebCore.vcproj:
4960 * WebCore.xcodeproj/project.pbxproj:
4961 * WebCoreSources.bkl:
4962 Added JSDOMGlobalObject, a base class to be used by both Window and worker contexts.
4963
4964 * bindings/js/JSDOMBinding.cpp:
4965 (WebCore::getCachedDOMStructure):
4966 (WebCore::cacheDOMStructure):
4967 (WebCore::getCachedDOMConstructor):
4968 (WebCore::cacheDOMConstructor):
4969 Cast to JSDOMGlobalObject, as DOM objects live in DOM global objects.
4970
4971 * bindings/js/JSDOMWindowBase.cpp:
4972 (WebCore::JSDOMWindowBase::JSDOMWindowBase):
4973 * bindings/js/JSDOMWindowBase.h:
4974 * bindings/js/JSDOMWindowCustom.cpp:
4975 (WebCore::JSDOMWindow::mark):
4976 Moved constructor and structure tracking to JSDOMGlobalObject.
4977
abarth@webkit.org48cade32008-10-23 09:43:34 +000049782008-10-23 Adam Barth <abarth@webkit.org>
4979
4980 Reviewed by Sam Weinig.
4981
4982 https://bugs.webkit.org/show_bug.cgi?id=21787
4983
4984 Update postMessage to send origin = "null" for non-serializable
4985 origins to match latest spec. Merge SecurityOrigin::toString and
4986 SecurityOrigin::toHTTPOrigin because they are now the same.
4987
4988 Test: http/tests/security/postMessage/data-url-sends-null-origin.html
4989
4990 * loader/FrameLoader.cpp:
4991 (WebCore::FrameLoader::outgoingOrigin):
4992 (WebCore::FrameLoader::loadURL):
4993 (WebCore::FrameLoader::addHTTPOriginIfNeeded):
4994 (WebCore::FrameLoader::loadItem):
4995 * loader/loader.cpp:
4996 (WebCore::Loader::Host::servePendingRequests):
4997 * page/SecurityOrigin.cpp:
4998 (WebCore::SecurityOrigin::toString):
4999 * page/SecurityOrigin.h:
5000 * xml/XMLHttpRequest.cpp:
5001 (WebCore::XMLHttpRequest::makeSimpleCrossSiteAccessRequest):
5002 (WebCore::XMLHttpRequest::makeCrossSiteAccessRequestWithPreflight):
5003 (WebCore::XMLHttpRequest::handleAsynchronousPreflightResult):
5004 (WebCore::XMLHttpRequest::didReceiveResponsePreflight):
5005
ddkilzer@apple.com5c2a8892008-10-23 02:53:02 +000050062008-10-22 David Kilzer <ddkilzer@apple.com>
5007
5008 Bug 21781: WebCore::Settings should have a maximum decoded image size setting
5009
5010 <https://bugs.webkit.org/show_bug.cgi?id=21781>
5011
5012 Reviewed by Antti.
5013
5014 No tests since there is no change in behavior.
5015
5016 * loader/CachedImage.cpp:
5017 (WebCore::CachedImage::maximumDecodedImageSize): Added. Returns
5018 WebCore::Settings::maximumDecodedImageSize() or 0 on error.
5019 (WebCore::CachedImage::data): Flag an error if the image being
5020 loaded is too big.
5021 * loader/CachedImage.h:
5022 (WebCore::CachedImage::maximumDecodedImageSize): Added declaration.
5023 * page/Settings.cpp:
5024 (WebCore::Settings::Settings): Initialize m_maximumDecodedImageSize
5025 to the maximum value of size_t.
5026 * page/Settings.h:
5027 (WebCore::Settings::setMaximumDecodedImageSize): Added method.
5028 (WebCore::Settings::maximumDecodedImageSize): Ditto.
5029
darin@apple.com3fb46e42008-10-23 01:43:37 +000050302008-10-22 Mike Pinkerton <pinkerton@chromium.org>
5031
5032 Reviewed by Dan Bernstein.
5033 Landed and tweaked a bit by Darin Adler.
5034
5035 - fix https://bugs.webkit.org/show_bug.cgi?id=21809
5036
5037 Remove PLATFORM(MAC) wrapping USE(ATSUI). It's redundant and inhibits
5038 its use for PLATFORM(CHROMIUM) in the future.
5039
5040 * platform/graphics/SimpleFontData.h:
5041
dsmith@webkit.org102296e2008-10-23 00:49:27 +000050422008-10-22 David Smith <catfish.man@gmail.com>
5043
darin@apple.com3fb46e42008-10-23 01:43:37 +00005044 Reviewed by Anders Carlsson.
dsmith@webkit.org102296e2008-10-23 00:49:27 +00005045
5046 https://bugs.webkit.org/show_bug.cgi?id=19974
5047 getElementsByClassName not live enough
5048
5049 Test: fast/dom/getElementsByClassName/015.html
5050
5051 * dom/StyledElement.cpp:
5052 (WebCore::StyledElement::classAttributeChanged): call dispatchSubtreeModifiedEvent()
5053
darin@apple.com74e6ed62008-10-23 00:11:11 +000050542008-10-22 Darin Adler <darin@apple.com>
5055
5056 Reviewed by Sam Weinig.
5057
5058 - fix https://bugs.webkit.org/show_bug.cgi?id=21294
5059 Bug 21294: Devirtualize getOwnPropertySlot()
5060
5061 * bindings/js/JSDOMWindowShell.h:
5062 (WebCore::JSDOMWindowShell::createStructureID): Added. Returns a structure without
5063 HasStandardGetOwnPropertySlot since this class overrides getOwnPropertySlot.
5064
5065 * bindings/js/JSInspectorCallbackWrapper.cpp:
5066 (WebCore::JSInspectorCallbackWrapper::wrap): Change to use a unique structure
5067 for this class rather than sharing nullProtoStructureID, which no longer exists.
5068
5069 * bindings/js/JSNamedNodesCollection.h:
5070 (WebCore::JSNamedNodesCollection::createStructureID): Added. Returns a structure without
5071 HasStandardGetOwnPropertySlot since this class overrides getOwnPropertySlot.
5072 * bindings/js/JSRGBColor.h:
5073 (WebCore::JSRGBColor::createStructureID): Ditto.
5074
5075 * bindings/scripts/CodeGeneratorJS.pm: Added createStructureID functions for the wrappers,
5076 constructors, and prototypes in any case where they override getOwnPropertySlot, without
5077 HasStandardGetOwnPropertySlot.
5078
5079 * bridge/objc/objc_runtime.h:
5080 (JSC::Bindings::ObjcFallbackObjectImp::createStructureID): Added. Returns a structure
5081 without HasStandardGetOwnPropertySlot since this class overrides getOwnPropertySlot.
5082 * bridge/qt/qt_runtime.h:
5083 (JSC::Bindings::QtRuntimeMethod::createStructureID): Ditto.
5084 * bridge/runtime_array.h:
5085 (JSC::RuntimeArray::createStructureID): Ditto.
5086 * bridge/runtime_method.h:
5087 (JSC::RuntimeMethod::createStructureID): Ditto.
5088 * bridge/runtime_object.h:
5089 (JSC::RuntimeObjectImp::createStructureID): Ditto.
5090
aroben@apple.comf4c75612008-10-22 23:33:58 +000050912008-10-22 Brent Fulgham <bfulgham@gmail.com>
5092
aroben@apple.com21fec102008-10-22 23:34:22 +00005093 Bring Windows Cairo Port's font handling in line with CG.
5094 http://bugs.webkit.org/show_bug.cgi?id=21812.
5095
5096 Reviewed by Adam Roben.
5097
5098 * platform/graphics/win/FontCacheWin.cpp:
5099 (WebCore::createGDIFont): Remove unnecessary special-case for Cairo
5100 TrueType font search. It should match CG in all font selections.
5101
51022008-10-22 Brent Fulgham <bfulgham@gmail.com>
5103
aroben@apple.comf4c75612008-10-22 23:33:58 +00005104 http://bugs.webkit.org/show_bug.cgi?id=21812.
5105 Bring Windows Cairo Port's font handling in line with CG.
5106
5107 Reviewed by David Hyatt.
5108
5109 * platform/graphics/win/FontCacheWin.cpp:
5110 (WebCore::createGDIFont): Remove unnecessary special-case for Cairo TrueType font search. It should match CG in all font selections.
5111
beidson@apple.comb90e6aa2008-10-22 23:06:53 +000051122008-10-22 Brady Eidson <beidson@apple.com>
5113
5114 Reviewed by Adam Roben
5115
5116 <rdar://6261773> - autocomplete="off" doesn't work on Windows
5117
5118 Visual Studio makes a poor decision regarding the combination of enums and bitfields, such that a
5119 statement like "m_autocomplete = Off" followed by "return m_autocomplete == Off" would return "false"
5120 instead of the much more correct "true."
5121
5122 In the past we have worked around this by declaring the bitfield member as an unsigned instead
5123 of the enum type.
5124
5125 For more discussion, see http://trac.webkit.org/changeset/25329
5126
5127 * html/HTMLInputElement.h: Work around insane Visual Studio enum issue *sigh*
5128
kmccullough@apple.com0435f782008-10-22 23:04:00 +000051292008-10-22 Kevin McCullough <kmccullough@apple.com>
5130
5131 Reviewed by Oliver Hunt and Tim Hatcher.
5132
5133 https://bugs.webkit.org/show_bug.cgi?id=19225
5134 Bug 19225: JSProfiler: Create automated profiler tests
5135 - This change exports profiles on the console object so that they can be
5136 iterated over via JavaScript, and thus can be used in automated tests.
5137
5138 * bindings/js/JSConsoleCustom.cpp: Get the profiles and return an array
5139 that JS can use.
5140 (WebCore::JSConsole::profiles):
5141 * inspector/InspectorController.h: Use the new typedef.
5142 (WebCore::InspectorController::profiles):
5143 * page/Console.cpp: Keep our own array of profile objects.
5144 (WebCore::Console::profileEnd):
5145 * page/Console.h: Ditto.
5146 (WebCore::Console::profiles):
5147 * page/Console.idl: Expose the profiles to JS.
5148
hyatt@apple.comaf225eb2008-10-22 21:51:23 +000051492008-10-22 David Hyatt <hyatt@apple.com>
5150
5151 https://bugs.webkit.org/show_bug.cgi?id=21775
5152
5153 Convert buttons over to use the new Theme API on OS X.
5154
5155 Reviewed by Adam Roben
5156
5157 * platform/LengthBox.h:
5158 (WebCore::LengthBox::LengthBox):
5159 * platform/Theme.cpp:
5160 (WebCore::Theme::controlBorder):
5161 (WebCore::Theme::controlPadding):
5162 * platform/Theme.h:
5163 (WebCore::Theme::controlFont):
5164 (WebCore::Theme::controlSize):
5165 (WebCore::Theme::minControlSize):
5166 (WebCore::Theme::controlRequiresPreWhiteSpace):
5167 * platform/mac/ThemeMac.h:
5168 (WebCore::ThemeMac::controlRequiresPreWhiteSpace):
5169 * platform/mac/ThemeMac.mm:
5170 (WebCore::checkboxSize):
5171 (WebCore::radioSize):
5172 (WebCore::buttonSizes):
5173 (WebCore::buttonMargins):
5174 (WebCore::button):
5175 (WebCore::paintButton):
5176 (WebCore::ThemeMac::controlFont):
5177 (WebCore::ThemeMac::controlSize):
5178 (WebCore::ThemeMac::minControlSize):
5179 (WebCore::ThemeMac::controlBorder):
5180 (WebCore::ThemeMac::controlPadding):
5181 (WebCore::ThemeMac::inflateControlPaintRect):
5182 (WebCore::ThemeMac::paint):
5183 * rendering/RenderTheme.cpp:
5184 (WebCore::RenderTheme::adjustStyle):
5185 (WebCore::RenderTheme::paint):
5186 (WebCore::RenderTheme::controlStatesForRenderer):
5187 (WebCore::RenderTheme::isDefault):
5188 (WebCore::RenderTheme::adjustRadioStyle):
5189 * rendering/RenderTheme.h:
5190 (WebCore::RenderTheme::setRadioSize):
5191 * rendering/RenderThemeMac.h:
5192 * rendering/RenderThemeMac.mm:
5193 (WebCore::RenderThemeMac::adjustRepaintRect):
5194 (WebCore::menuListButtonSizes):
5195 (WebCore::RenderThemeMac::adjustMenuListStyle):
5196 * rendering/style/RenderStyle.h:
5197 (WebCore::InheritedFlags::paddingBox):
5198 (WebCore::InheritedFlags::setPaddingBox):
5199
simon.fraser@apple.coma2a27b52008-10-22 19:35:52 +000052002008-10-22 Chris Marrin <cmarrin@apple.com>
5201
5202 Reviewed by Dave Hyatt
5203
5204 Make sure that the AtomicString that identifies a set of animation keyframes
5205 stays live by keeping a copy in the WebKitCSSKeyframesRule.
5206
5207 Also call styleSheetChanged() when the keyframes name changes, but
5208 add an internal method that doesn't call styleSheetChanged() for use
5209 during normal stylesheet parsing.
5210
5211 Test: animations/change-keyframes-name.html
5212
5213 * css/CSSGrammar.y:
5214 * css/WebKitCSSKeyframesRule.cpp:
5215 (WebCore::WebKitCSSKeyframesRule::setName):
5216 * css/WebKitCSSKeyframesRule.h:
5217 (WebCore::WebKitCSSKeyframesRule::setNameInternal):
5218
ap@webkit.org6ed149d2008-10-22 17:43:26 +000052192008-10-22 Alexey Proskuryakov <ap@webkit.org>
5220
5221 Reviewed by Sam Weinig.
5222
5223 https://bugs.webkit.org/show_bug.cgi?id=21791
5224 WebCore JS bindings should be able to use non-static hash tables for properties
5225
5226 Add a map for HashTables to WebCore JS client data.
5227
5228 This makes property access noticeably slower, so it is an opt-in. For classes that need to be
5229 supported in workers in forseeable future this is not critical.
5230
5231 * bindings/js/JSDOMBinding.cpp:
5232 (WebCore::DOMObjectHashTableMap::get):
5233 (WebCore::DOMObjectHashTableMap::mapFor):
5234 (WebCore::getHashTableForGlobalData):
5235 (WebCore::DOMObjectWrapperMap::mapFor):
5236 WebCore client data is now a class that contains both a DOM wrapper map and a property hash
5237 table one.
5238
5239 * bindings/js/JSDOMBinding.h: Added getHashTableForGlobalData() to query the hash table map.
5240
5241 * bindings/scripts/CodeGeneratorJS.pm: If the class has a NoStaticTables attribute, use
5242 JSDOMBinding map to access its property hash tables.
5243
5244 * dom/MessageChannel.idl:
5245 * dom/MessagePort.idl:
5246 Added NoStaticTables attribute.
5247
alp@webkit.org8d1d4c92008-10-22 13:55:06 +000052482008-10-22 Gustavo Noronha Silva <gns@gnome.org>
5249
5250 Reviewed by Timothy Hatcher.
5251
5252 Build failure because of missing include
5253 https://bugs.webkit.org/show_bug.cgi?id=21765
5254
5255 Build failure fix for WebKit/GTK+; added missing
5256 include (GOwnPtr.h)
5257
5258 * platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp:
5259
alp@webkit.orgee7dc252008-10-22 10:38:23 +000052602008-10-22 Alp Toker <alp@nuanti.com>
5261
alp@webkit.org197960d2008-10-22 13:51:16 +00005262 Reviewed by Adam Roben.
5263
5264 Fix crashes on older GTK+ versions (2.8). gtk_widget_style_get()
5265 doesn't initialize values if the requested property doesn't exist, so
5266 initialize the values to the documented defaults before calling it
5267 where necessary. Additionally, avoid critical warnings by not calling
5268 gtk_widget_style_get() when we know the property isn't available.
5269
5270 Note that this is an imported source file which doesn't follow the
5271 WebKit coding style.
5272
5273 * platform/gtk/gtk2drawing.c:
5274 (moz_gtk_init):
5275 (moz_gtk_button_get_inner_border):
5276 (moz_gtk_combo_box_paint):
5277 (moz_gtk_toolbar_separator_paint):
5278 (moz_gtk_menu_separator_paint):
5279 (moz_gtk_get_widget_border):
5280 (moz_gtk_get_tab_scroll_arrow_size):
5281 (moz_gtk_get_toolbar_separator_width):
5282 (moz_gtk_get_menu_separator_height):
5283
52842008-10-22 Alp Toker <alp@nuanti.com>
5285
alp@webkit.orgee7dc252008-10-22 10:38:23 +00005286 Fix build for Cairo 1.2.
5287
5288 * platform/graphics/cairo/GraphicsContextCairo.cpp:
5289 (WebCore::GraphicsContext::clipOut):
5290 * platform/gtk/RenderThemeGtk.cpp:
5291 (WebCore::paintMozWidget):
5292
darin@chromium.orga740bfe2008-10-22 07:56:41 +000052932008-10-22 Darin Fisher <darin@chromium.org>
5294
5295 Reviewed by Eric Seidel.
5296
5297 A little more PLATFORM(CHROMIUM) in WebCore
5298 https://bugs.webkit.org/show_bug.cgi?id=21758
5299
5300 * page/AccessibilityObject.h:
5301 * platform/graphics/Icon.h:
5302
ap@webkit.org4c610c02008-10-22 06:07:32 +000053032008-10-21 Alexey Proskuryakov <ap@webkit.org>
5304
5305 Reviewed by Darin Adler.
5306
5307 Test: fast/events/message-channel-gc-3.html
5308
5309 https://bugs.webkit.org/show_bug.cgi?id=21769
5310 MessagePort should be GC protected if there are messages to be delivered
5311
5312 * dom/MessagePort.h: Removed pending activity count. Now we track if a close event is
5313 pending, and check if the queue is non-empty.
5314 (WebCore::MessagePort::workerContext): Added a stub implementation for a cross-heap GC bug
5315 fix (below).
5316
5317 * dom/MessagePort.cpp:
5318 (WebCore::CloseMessagePortTimer::fired):
5319 (WebCore::MessagePort::MessagePort):
5320 (WebCore::MessagePort::queueCloseEvent):
5321 (WebCore::MessagePort::dispatchCloseEvent):
5322 (WebCore::MessagePort::hasPendingActivity):
5323 Track message and close event activity separately.
5324
5325 * bindings/js/JSDOMBinding.cpp:
5326 (WebCore::markCrossHeapDependentObjectsForDocument): Fixed a bug in cross-heap GC that was
5327 causing same-heap ports to never be deleted.
5328
mitz@apple.com90a34532008-10-22 03:10:23 +000053292008-10-21 Dan Bernstein <mitz@apple.com>
5330
5331 Reviewed by Sam Weinig.
5332
5333 - remove unreachable code
5334
5335 * platform/text/BidiResolver.h:
5336 (WebCore::::embed):
5337
bdakin@apple.comc144ec52008-10-22 00:22:55 +000053382008-10-21 Beth Dakin <bdakin@apple.com>
5339
5340 Reviewed by Darin Adler.
5341
5342 Fix for https://bugs.webkit.org/show_bug.cgi?id=20352
5343 REGRESSION(r31030-31055): Choosing "Print window" from frame set
5344 prints blank page
5345 and corresponding: <rdar://problem/6142398>
5346
5347 viewHeight() and viewWidth() only return valuable information if we
5348 are not printing. Everywhere else in the code, we make sure we are
5349 not printing before we call these functions. Adding a check for
5350 printing here fixes this bug, and framesets print again.
5351
5352 * rendering/RenderFrameSet.cpp:
5353 (WebCore::RenderFrameSet::layout):
5354
hausmann@webkit.orgfde4e2e2008-10-21 12:57:35 +000053552008-10-21 Yael Aharon <yael.aharon@nokia.com>
5356
5357 Reviewed by Simon.
5358
5359 Pixmap in canvas tag was not getting initialized.
5360
5361 See https://bugs.webkit.org/show_bug.cgi?id=21771
5362
5363 * platform/graphics/qt/ImageBufferQt.cpp:
5364 (WebCore::ImageBuffer::create):
5365
simon.fraser@apple.com1f2bbf32008-10-21 06:01:03 +000053662008-10-20 Simon Fraser <simon.fraser@apple.com>
5367
5368 Reviewed by Dan Bernstein
5369
5370 Add a comment explaining layoutDelta(), and an assertion
5371 that checks that delta changes were correctly paired during layout.
5372
5373 * rendering/RenderView.cpp:
5374 (WebCore::RenderView::layout):
5375 * rendering/RenderView.h:
5376
timothy@apple.com6b535d52008-10-21 04:50:24 +000053772008-10-20 Timothy Hatcher <timothy@apple.com>
5378
timothy@apple.com1c922772008-10-21 04:50:34 +00005379 Make auto-complete only suggest properties that are valid syntax
5380 when using dot-notation. Also when completing numeric properties,
5381 the quotes are omitted inside the brackets.
5382
5383 https://bugs.webkit.org/show_bug.cgi?id=21760
5384 https://bugs.webkit.org/show_bug.cgi?id=21761
5385
5386 Reviewed by Oliver Hunt.
5387
5388 * inspector/front-end/Console.js:
5389 (WebInspector.Console.prototype.completions): Skip properties that
5390 are not valid identifies when using dot-notation. And omit the quotes
5391 when completing numbers in bracket-notation.
5392
53932008-10-20 Timothy Hatcher <timothy@apple.com>
5394
timothy@apple.com6b535d52008-10-21 04:50:24 +00005395 Fixes the Profiles panel in the Web Inspector, which was broken by
5396 the JSValue base-class changes. Also renames some functions and
5397 variables in JavaScriptProfileNode.cpp that where title case.
5398
5399 https://bugs.webkit.org/show_bug.cgi?id=21764
5400
5401 Reviewed by Oliver Hunt.
5402
5403 * inspector/JavaScriptProfile.cpp:
5404 (WebCore::toJS): Use a JSObject pointer instead of JSValuePtr so the
5405 returned JSValuePtr will be treated as an object and not a value.
5406 * inspector/JavaScriptProfileNode.cpp:
5407 (WebCore::toJS): Ditto.
5408
weinig@apple.com5ed91732008-10-21 02:14:45 +000054092008-10-20 Sam Weinig <sam@webkit.org>
5410
5411 Reviewed by Anders Carlsson.
5412
5413 Remove FrameLoaderClient::detachedFromParent4. It is no longer used by any port.
5414
5415 * loader/EmptyClients.h:
5416 (WebCore::EmptyFrameLoaderClient::detachedFromParent4):.
5417 * loader/FrameLoader.cpp:
5418 (WebCore::FrameLoader::detachFromParent):
5419 * loader/FrameLoaderClient.h:
5420
antti@apple.com6068cf42008-10-21 01:22:51 +000054212008-10-20 Antti Koivisto <antti@apple.com>
5422
5423 Reviewed by Adele Peterson.
5424
5425 Fix https://bugs.webkit.org/show_bug.cgi?id=21763
5426 REGRESSION (r36108-r36113): Can't load picture content on wired.com galleries
5427 <rdar://problem/6285025
5428
5429 If we get 304 response we need to explicitly check if that completes the frame load.
5430
5431 No test case, simulating the condition is pretty difficult.
5432
5433 * loader/loader.cpp:
5434 (WebCore::Loader::Host::didReceiveResponse):
5435
andersca@apple.com74021572008-10-21 01:05:19 +000054362008-10-20 Anders Carlsson <andersca@apple.com>
5437
5438 Reviewed by Mark Rowe.
5439
5440 Work around <rdar://problem/6301728>.
5441
5442 Don't assert that loads are deferred when we're using CFNetwork on Mac or Windows.
5443
5444 * loader/MainResourceLoader.cpp:
5445 (WebCore::MainResourceLoader::didReceiveResponse):
5446 (WebCore::MainResourceLoader::didReceiveData):
5447 (WebCore::MainResourceLoader::didFinishLoading):
5448 (WebCore::MainResourceLoader::didFail):
5449
bdakin@apple.com05f9b6b2008-10-20 22:47:19 +000054502008-10-20 Beth Dakin <bdakin@apple.com>
5451
5452 Reviewed by Adele Peterson.
5453
5454 Speculative fix for <rdar://problem/6242585> CrashTracer: [USER] 19
5455 crashes in Safari at com.apple.WebCore
5456 WebCore::ScrollView::visibleContentRect const + 153
5457
5458 d->m_view can be null and is null-checked at other points in the
5459 code. The logs indicate that this crash occurs when closing a
5460 window containing a PDF, so in case where we crash, the PDF's view
5461 is probably already null. So the fix is to simply add a null-check.
5462
5463 * page/Frame.cpp:
5464 (WebCore::Frame::selectionRect):
5465
adele@apple.com79cd4612008-10-20 21:31:08 +000054662008-10-20 Adele Peterson <adele@apple.com>
5467
5468 Reviewed by Darin Adler.
5469
5470 * html/HTMLFormElement.cpp: (WebCore::HTMLFormElement::formData):
5471 Removed stray increment that would screw up any form with multiple files in it.
5472
weinig@apple.com5f550542008-10-20 20:42:46 +000054732008-10-20 Sam Weinig <sam@webkit.org>
5474
5475 Rubber-stamped by David Hyatt.
5476
5477 Split LengthBox and LengthSize into their own files.
5478
5479 * GNUmakefile.am:
5480 * WebCore.vcproj/WebCore.vcproj:
5481 * WebCore.xcodeproj/project.pbxproj:
5482 * platform/Length.h:
5483 (WebCore::Length::blend):
5484 * platform/LengthBox.h: Copied from platform/Length.h.
5485 (WebCore::LengthBox::LengthBox):
5486 (WebCore::LengthBox::nonZero):
5487 * platform/LengthSize.h: Copied from platform/Length.h.
5488 (WebCore::LengthSize::LengthSize):
5489 (WebCore::LengthSize::setWidth):
5490 (WebCore::LengthSize::setHeight):
5491 (WebCore::LengthSize::height):
5492 * platform/Theme.h:
5493 * rendering/style/FillLayer.h:
5494 * rendering/style/NinePieceImage.h:
5495 (WebCore::NinePieceImage::NinePieceImage):
5496 * rendering/style/RenderStyle.h:
5497 * rendering/style/StyleDashboardRegion.h:
5498 * rendering/style/StyleSurroundData.h:
5499 * rendering/style/StyleVisualData.h:
5500
mitz@apple.com105c3c02008-10-20 20:15:27 +000055012008-10-20 Dan Bernstein <mitz@apple.com>
5502
5503 - Mac build fix
5504
5505 * WebCore.xcodeproj/project.pbxproj:
5506
alp@webkit.org4a81ed22008-10-20 19:30:26 +000055072008-10-20 Alp Toker <alp@nuanti.com>
5508
5509 Fix autotools dist build target by listing recently added header
5510 files only. Not reviewed.
5511
5512 * GNUmakefile.am:
5513
hyatt@apple.com8f754742008-10-20 19:18:38 +000055142008-10-20 David Hyatt <hyatt@apple.com>
5515
hyatt@apple.comccda9a12008-10-20 19:27:58 +00005516 Clean up some USE(NEW_THEME) ifdefs (I botched one of them and have broken non-Mac platforms). Also
5517 refactor some of the code that I put in ThemeMac to be cross-platform, since it was in RenderTheme.cpp
5518 originally.
5519
5520 ifdef some methods in RenderTheme.cpp also that are no longer needed with the new Theme.
5521
5522 Reviewed by Adam Roben
5523
5524 * WebCore.xcodeproj/project.pbxproj:
5525 * platform/Theme.cpp: Added.
5526 (WebCore::Theme::controlSupportsBorder):
5527 (WebCore::Theme::controlSupportsPadding):
5528 * platform/Theme.h:
5529 * platform/mac/ThemeMac.h:
5530 * platform/mac/ThemeMac.mm:
5531 * rendering/RenderTheme.cpp:
5532 (WebCore::RenderTheme::adjustStyle):
5533 * rendering/RenderTheme.h:
5534
55352008-10-20 David Hyatt <hyatt@apple.com>
5536
hyatt@apple.com8f754742008-10-20 19:18:38 +00005537 Rename LengthBox's members to have m_ in front of them.
5538
5539 Reviewed by Sam Weinig
5540
5541 * css/CSSComputedStyleDeclaration.cpp:
5542 (WebCore::valueForNinePieceImage):
5543 (WebCore::getPositionOffsetValue):
5544 (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
5545 * css/CSSStyleSelector.cpp:
5546 (WebCore::CSSStyleSelector::mapNinePieceImage):
5547 * platform/Length.h:
5548 (WebCore::LengthBox::LengthBox):
5549 (WebCore::LengthBox::left):
5550 (WebCore::LengthBox::right):
5551 (WebCore::LengthBox::top):
5552 (WebCore::LengthBox::bottom):
5553 (WebCore::LengthBox::operator==):
5554 (WebCore::LengthBox::nonZero):
5555 * rendering/RenderObject.cpp:
5556 (WebCore::RenderObject::paintNinePieceImage):
5557 (WebCore::RenderObject::addDashboardRegions):
5558 * rendering/style/RenderStyle.cpp:
5559 (WebCore::positionedObjectMoved):
5560 (WebCore::RenderStyle::setClip):
5561 (WebCore::RenderStyle::noneDashboardRegions):
5562 * rendering/style/RenderStyle.h:
5563 (WebCore::InheritedFlags::left):
5564 (WebCore::InheritedFlags::right):
5565 (WebCore::InheritedFlags::top):
5566 (WebCore::InheritedFlags::bottom):
5567 (WebCore::InheritedFlags::clipLeft):
5568 (WebCore::InheritedFlags::clipRight):
5569 (WebCore::InheritedFlags::clipTop):
5570 (WebCore::InheritedFlags::clipBottom):
5571 (WebCore::InheritedFlags::marginTop):
5572 (WebCore::InheritedFlags::marginBottom):
5573 (WebCore::InheritedFlags::marginLeft):
5574 (WebCore::InheritedFlags::marginRight):
5575 (WebCore::InheritedFlags::paddingTop):
5576 (WebCore::InheritedFlags::paddingBottom):
5577 (WebCore::InheritedFlags::paddingLeft):
5578 (WebCore::InheritedFlags::paddingRight):
5579 (WebCore::InheritedFlags::setLeft):
5580 (WebCore::InheritedFlags::setRight):
5581 (WebCore::InheritedFlags::setTop):
5582 (WebCore::InheritedFlags::setBottom):
5583 (WebCore::InheritedFlags::setDashboardRegion):
5584 (WebCore::InheritedFlags::setClipLeft):
5585 (WebCore::InheritedFlags::setClipRight):
5586 (WebCore::InheritedFlags::setClipTop):
5587 (WebCore::InheritedFlags::setClipBottom):
5588 (WebCore::InheritedFlags::setMarginTop):
5589 (WebCore::InheritedFlags::setMarginBottom):
5590 (WebCore::InheritedFlags::setMarginLeft):
5591 (WebCore::InheritedFlags::setMarginRight):
5592 (WebCore::InheritedFlags::setPaddingTop):
5593 (WebCore::InheritedFlags::setPaddingBottom):
5594 (WebCore::InheritedFlags::setPaddingLeft):
5595 (WebCore::InheritedFlags::setPaddingRight):
5596
timothy@apple.com77523c52008-10-20 19:03:15 +000055972008-10-20 Timothy Hatcher <timothy@apple.com>
5598
5599 Make the Resource panel perform graph updates atomically, so when resources
5600 are added the graph and summary graph update at the same time.
5601
5602 https://bugs.webkit.org/show_bug.cgi?id=21755
5603
5604 Reviewed by Kevin McCullough.
5605
5606 * inspector/front-end/Resource.js:
5607 (WebInspector.Resource.prototype.get startTime): Return -1 if the _startTime
5608 property is undefined, null or 0. This allows callers to check for -1 and not
5609 the other values when there is no startTime yet.
5610 (WebInspector.Resource.prototype.get responseReceivedTime): Ditto.
5611 (WebInspector.Resource.prototype.get endTime): Ditto.
5612 (WebInspector.Resource.prototype.get duration): Remove an extra empty line.
5613 (WebInspector.Resource.prototype.get latency): Ditto.
5614 (WebInspector.Resource.prototype.get contentLength): Return 0 if the _duration
5615 property is undefined or null. This allows callers to always assume a number.
5616 (WebInspector.Resource.prototype.get expectedContentLength): Ditto.
5617 (WebInspector.Resource.prototype.get errors): Simplify the case where there is
5618 no _errors property yet.
5619 (WebInspector.Resource.prototype.set errors): Remove the check if the new value
5620 if the same as the previous value, since there is no work to guard.
5621 (WebInspector.Resource.prototype.get warnings): Simplify the case where there is
5622 no _warnings property yet.
5623 (WebInspector.Resource.prototype.set warnings): Remove the check if the new value
5624 if the same as the previous value, since there is no work to guard.
5625 (WebInspector.Resource.CompareByResponseReceivedTime): Add cases for when the
5626 responseReceivedTime is -1.
5627 (WebInspector.Resource.CompareByEndTime): Add cases for when the endTime is -1.
5628 * inspector/front-end/ResourcesPanel.js:
5629 (WebInspector.ResourcesPanel.prototype.get searchableViews): If a resource does not
5630 have a _resourcesTreeElement yet, exclude it from the searchable views.
5631 (WebInspector.ResourcesPanel.prototype.set calculator): Set _staleResource to _resources
5632 and call refresh to refresh the entire graph.
5633 (WebInspector.ResourcesPanel.prototype.set needsRefresh): Set a timeout if the panel
5634 is visible that calls refresh.
5635 (WebInspector.ResourcesPanel.prototype.refresh): Create the resource tree element and
5636 graph for a resource if it hasn't been created yet. If the boundaries changed during
5637 the first stale resource pass, do a full pass of all resources when updating the graphs.
5638 (WebInspector.ResourcesPanel.prototype.reset): Remove the legend items.
5639 (WebInspector.ResourcesPanel.prototype.addResource): Don't create the tree element and
5640 graph, these are now created during the first refresh.
5641 (WebInspector.ResourcesPanel.prototype.removeResource): Null check _resourcesTreeElement.
5642 (WebInspector.ResourcesPanel.prototype.addMessageToResource): Ditto.
5643 (WebInspector.ResourcesPanel.prototype.clearMessages): Ditto.
5644 (WebInspector.ResourcesPanel.prototype.refreshResource): Remove most of the work, just
5645 add the resource to the _staleResources and set needsRefresh.
5646 (WebInspector.ResourcesPanel.prototype.recreateViewForResourceIfNeeded): Null check
5647 _resourcesTreeElement.
5648 (WebInspector.ResourcesPanel.prototype._sortResourcesIfNeeded): Remove code to clear
5649 the timeout used by the deleted _sortResourcesSoonIfNeeded. Remove call to removeChild
5650 since the insertBefore call will do it if needed.
5651 (WebInspector.ResourcesPanel.prototype._updateGraphDividersIfNeeded): Remove code to
5652 clear the timeout used by the deleted _updateGraphDividersSoonIfNeeded.
5653 (WebInspector.ResourcesPanel.prototype._updateSummaryGraph): Remove code to clear the
5654 timeout used by the deleted _updateSummaryGraphSoon. No need to remove the totalLegendLabel,
5655 since all the legend items are removed in one pass right before.
5656 (WebInspector.ResourcesPanel.prototype._changeSortingFunction): Set the sortingFunction
5657 before the calculator so the correct sortingFunction is there when a refresh happens.
5658 (WebInspector.ResourceTimeCalculator.prototype.computeBarGraphPercentages): Set start to 0
5659 when the startTime is -1, since that looks best visually. Also set middle and end
5660 to the start and middle (respectfully) when startAtZero. This looks best visually.
5661 (WebInspector.ResourceGraph): Start the graph as hidden until the first refresh.
5662 (WebInspector.ResourceGraph.prototype.refresh): Remove the hidden class.
5663
hyatt@apple.coma16cfd32008-10-20 18:45:17 +000056642008-10-20 David Hyatt <hyatt@apple.com>
5665
5666 https://bugs.webkit.org/show_bug.cgi?id=21733
5667
5668 Make sure that the haveMetadata flag is set to true for generated images from image buffers, so that
5669 no attempt is made to re-cache the frame from a non-existent image source.
5670
5671 Reviewed by Sam Weinig
5672
5673 * platform/graphics/cairo/ImageCairo.cpp:
5674 (WebCore::BitmapImage::BitmapImage):
5675 * platform/graphics/cg/ImageCG.cpp:
5676 (WebCore::BitmapImage::BitmapImage):
5677
mitz@apple.comdffa6702008-10-20 18:23:29 +000056782008-10-20 Dan Bernstein <mitz@apple.com>
5679
5680 Reviewed by John Sullivan.
5681
5682 - make hasARenderedDescendant() have internal linkage
5683
5684 * editing/CompositeEditCommand.cpp:
5685 (WebCore::hasARenderedDescendant):
5686
cfleizach@apple.com2826b442008-10-20 17:57:12 +000056872008-10-20 Chris Fleizach <cfleizach@apple.com>
5688
5689 Reviewed by Jon Honeycutt
5690
5691 Fix a crash in Accessibility where a table section was being
5692 referenced without first checking if it was null
5693
5694 https://bugs.webkit.org/show_bug.cgi?id=21721
5695
5696 Test: accessibility/table-nofirstbody.html
5697
5698 * page/AccessibilityTable.cpp:
5699 (WebCore::AccessibilityTable::addChildren):
5700
hyatt@apple.com95f62812008-10-20 17:40:52 +000057012008-10-20 David Hyatt <hyatt@apple.com>
5702
5703 Avoid some stderr spew from CG by checking if we have a decoder yet in ImageSourceCG.
5704
5705 Reviewed by Darin Adler
5706
5707 * platform/graphics/cg/ImageSourceCG.cpp:
5708 (WebCore::ImageSource::repetitionCount):
5709 (WebCore::ImageSource::frameDurationAtIndex):
5710
alp@webkit.org1b2d1fd2008-10-20 17:06:10 +000057112008-10-20 Alp Toker <alp@nuanti.com>
5712
5713 Reviewed by Mark Rowe.
5714
5715 Fix the pthread conditionals in the FTP code to correctly define
5716 threadsafe *_r functions on Windows. Partly fixes the GTK+/Win32
5717 build.
5718
5719 * loader/FTPDirectoryDocument.cpp:
5720 * loader/FTPDirectoryParser.cpp:
5721
hyatt@apple.com74aa2f22008-10-20 16:50:20 +000057222008-10-20 David Hyatt <hyatt@apple.com>
5723
5724 https://bugs.webkit.org/show_bug.cgi?id=21751
5725
5726 Convert checkboxes and radio buttons on OS X over to the new Theme API.
5727
5728 Reviewed by Adam Roben
5729
5730 * css/CSSComputedStyleDeclaration.cpp:
5731 (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
5732 * css/CSSStyleSelector.cpp:
5733 (WebCore::CSSStyleSelector::mapFillSize):
5734 * platform/Length.h:
5735 (WebCore::LengthSize::LengthSize):
5736 (WebCore::LengthSize::operator==):
5737 (WebCore::LengthSize::width):
5738 (WebCore::LengthSize::height):
5739 (WebCore::LengthSize::setWidth):
5740 (WebCore::LengthSize::setHeight):
5741 * platform/Theme.h:
5742 (WebCore::Theme::controlSize):
5743 (WebCore::Theme::controlSupportsBorder):
5744 (WebCore::Theme::controlSupportsPadding):
5745 (WebCore::Theme::paint):
5746 (WebCore::Theme::inflateControlPaintRect):
5747 * platform/ThemeTypes.h:
5748 (WebCore::):
5749 * platform/mac/ThemeMac.h:
5750 * platform/mac/ThemeMac.mm:
5751 (WebCore::):
5752 (WebCore::controlSizeForFont):
5753 (WebCore::sizeFromFont):
5754 (WebCore::setControlSize):
5755 (WebCore::updateStates):
5756 (WebCore::inflateRect):
5757 (WebCore::checkboxSizes):
5758 (WebCore::checkboxMargins):
5759 (WebCore::checkboxSize):
5760 (WebCore::checkbox):
5761 (WebCore::paintCheckbox):
5762 (WebCore::radioSizes):
5763 (WebCore::radioMargins):
5764 (WebCore::radioSize):
5765 (WebCore::radio):
5766 (WebCore::paintRadio):
5767 (WebCore::ThemeMac::baselinePositionAdjustment):
5768 (WebCore::ThemeMac::controlSize):
5769 (WebCore::ThemeMac::controlSupportsBorder):
5770 (WebCore::ThemeMac::controlSupportsPadding):
5771 (WebCore::ThemeMac::inflateControlPaintRect):
5772 (WebCore::ThemeMac::paint):
5773 * rendering/RenderBox.cpp:
5774 (WebCore::RenderBox::calculateBackgroundSize):
5775 * rendering/RenderObject.cpp:
5776 (WebCore::mustRepaintFillLayers):
5777 * rendering/RenderTheme.cpp:
5778 (WebCore::RenderTheme::adjustStyle):
5779 (WebCore::RenderTheme::paint):
5780 (WebCore::RenderTheme::baselinePosition):
5781 (WebCore::RenderTheme::adjustRepaintRect):
5782 (WebCore::RenderTheme::controlStatesForRenderer):
5783 (WebCore::RenderTheme::isFocused):
5784 * rendering/RenderTheme.h:
5785 * rendering/RenderThemeMac.h:
5786 * rendering/RenderThemeMac.mm:
5787 (WebCore::RenderThemeMac::adjustRepaintRect):
5788 * rendering/style/FillLayer.cpp:
5789 (WebCore::FillLayer::operator==):
5790
ggaren@apple.com4b8c0fb2008-10-20 16:48:30 +000057912008-10-18 Geoffrey Garen <ggaren@apple.com>
5792
5793 Reviewed by Darin Adler.
5794
5795 Fixed https://bugs.webkit.org/show_bug.cgi?id=21735
5796 Emit profiling instrumentation only if the Web Inspector's profiling
5797 feature is enabled
5798
5799 * bindings/js/JSDOMWindowBase.cpp:
5800 (WebCore::JSDOMWindowBase::supportsProfiling):
5801 * bindings/js/JSDOMWindowBase.h: Implemented the interface for specifying
5802 whether a target global object has the Web Inspector's profiling feature
5803 enabled.
5804
5805 * inspector/JavaScriptDebugServer.cpp:
5806 (WebCore::JavaScriptDebugServer::recompileAllJSFunctionsSoon):
5807 (WebCore::JavaScriptDebugServer::didAddListener):
5808 (WebCore::JavaScriptDebugServer::didRemoveListener):
5809 * inspector/JavaScriptDebugServer.h: Exported an API for recompiling,
5810 used by the Settings object.
5811
5812 * page/Settings.cpp:
5813 (WebCore::Settings::Settings):
5814 (WebCore::Settings::setDeveloperExtrasEnabled):
5815 * page/Settings.h: Recompile when the developer menu is enabled/disabled
5816 for the first time, to add/remove profiling hooks. In the future, with
5817 better Web Inspector UI, we can do this on a page-by-page basis,
5818 instead of a global basis.
5819
hyatt@apple.com6b537eb2008-10-20 15:54:55 +000058202008-10-20 David Hyatt <hyatt@apple.com>
5821
5822 Move Length to platform/.
5823
5824 Reviewed by Adam Roben
5825
5826 * GNUmakefile.am:
5827 * WebCore.pro:
5828 * WebCore.vcproj/WebCore.vcproj:
5829 * WebCore.xcodeproj/project.pbxproj:
5830 * WebCoreSources.bkl:
5831 * platform/Length.cpp: Copied from rendering/Length.cpp.
5832 * platform/Length.h: Copied from rendering/Length.h.
5833
darin@apple.com29bf98b2008-10-20 15:16:29 +000058342008-10-20 Darin Adler <darin@apple.com>
5835
darin@apple.come90aa812008-10-20 15:28:14 +00005836 - try to fix Qt build
5837
darin@apple.com1f5b8ac2008-10-20 15:29:04 +00005838 * bridge/qt/qt_runtime.cpp:
5839 (JSC::Bindings::QtRuntimeMetaMethod::connectGetter): Add asObject calls.
5840 (JSC::Bindings::QtRuntimeMetaMethod::disconnectGetter): Ditto.
5841
58422008-10-20 Darin Adler <darin@apple.com>
5843
5844 - try to fix Qt build
5845
darin@apple.come90aa812008-10-20 15:28:14 +00005846 * bridge/qt/qt_instance.cpp:
5847 (JSC::Bindings::QtInstance::mark): Use JSValue* instead of JSValuePtr.
5848 (JSC::Bindings::QtField::valueFromInstance): Ditto.
5849 * bridge/qt/qt_instance.h: Ditto.
5850
58512008-10-20 Darin Adler <darin@apple.com>
5852
darin@apple.com29bf98b2008-10-20 15:16:29 +00005853 - try to fix Tiger build
5854
5855 * bridge/objc/objc_instance.mm:
5856 (ObjcInstance::invokeMethod): Add a const_cast to remove the unwanted
5857 volatile qualifier.
5858 (ObjcInstance::invokeDefaultMethod): Ditto.
5859 (ObjcInstance::getValueOfUndefinedField): Ditto.
5860 * bridge/objc/objc_runtime.mm:
5861 (JSC::Bindings::ObjcField::valueFromInstance): Ditto.
5862
ap@webkit.org0d0f77352008-10-20 15:13:11 +000058632008-10-20 Alexey Proskuryakov <ap@webkit.org>
5864
5865 Reviewed by Darin Adler.
5866
5867 https://bugs.webkit.org/show_bug.cgi?id=21750
5868 Eliminate the notion of "temporary events"
5869
5870 We mark some events as temporary when dispatching, for the sole reason of
5871 manually calling forgetDOMObject when done dispatching.
5872
5873 There doesn't seem to be any reason to call it manually, as JSEvent destructor
5874 will do this automatically right away.
5875
5876 * bindings/js/ScriptController.cpp:
5877 * bindings/js/ScriptController.h:
5878 Removed ScriptController::finishedWithEvent(), which was called after dispatching
5879 a temporary event.
5880
5881 * dom/ContainerNode.cpp:
5882 (WebCore::dispatchChildInsertionEvents):
5883 (WebCore::dispatchChildRemovalEvents):
5884 * dom/EventTarget.h:
5885 * dom/EventTargetNode.cpp:
5886 (WebCore::EventTargetNode::dispatchEvent):
5887 (WebCore::EventTargetNode::dispatchGenericEvent):
5888 (WebCore::EventTargetNode::dispatchSubtreeModifiedEvent):
5889 (WebCore::EventTargetNode::dispatchWindowEvent):
5890 (WebCore::EventTargetNode::dispatchUIEvent):
5891 (WebCore::EventTargetNode::dispatchKeyEvent):
5892 (WebCore::EventTargetNode::dispatchMouseEvent):
5893 (WebCore::EventTargetNode::dispatchWheelEvent):
5894 (WebCore::EventTargetNode::dispatchWebKitAnimationEvent):
5895 (WebCore::EventTargetNode::dispatchWebKitTransitionEvent):
5896 (WebCore::EventTargetNode::dispatchEventForType):
5897 (WebCore::EventTargetNode::dispatchProgressEvent):
5898 (WebCore::EventTargetNode::dispatchStorageEvent):
5899 * dom/EventTargetNode.h:
5900 * dom/MessagePort.cpp:
5901 (WebCore::MessagePort::dispatchMessages):
5902 (WebCore::MessagePort::dispatchCloseEvent):
5903 (WebCore::MessagePort::dispatchEvent):
5904 * dom/MessagePort.h:
5905 * editing/Editor.cpp:
5906 (WebCore::Editor::dispatchCPPEvent):
5907 (WebCore::dispatchEditableContentChangedEvents):
5908 * editing/ReplaceSelectionCommand.cpp:
5909 (WebCore::ReplacementFragment::ReplacementFragment):
5910 * editing/TypingCommand.cpp:
5911 (WebCore::TypingCommand::insertText):
5912 * loader/appcache/DOMApplicationCache.cpp:
5913 (WebCore::DOMApplicationCache::dispatchEvent):
5914 (WebCore::DOMApplicationCache::callListener):
5915 * loader/appcache/DOMApplicationCache.h:
5916 * page/EventHandler.cpp:
5917 (WebCore::EventHandler::dispatchDragEvent):
5918 (WebCore::EventHandler::keyEvent):
5919 (WebCore::EventHandler::handleTextInputEvent):
5920 * page/FrameView.cpp:
5921 (WebCore::FrameView::scheduleEvent):
5922 (WebCore::FrameView::updateOverflowStatus):
5923 (WebCore::FrameView::dispatchScheduledEvents):
5924 * page/FrameView.h:
5925 * rendering/RenderLayer.cpp:
5926 (WebCore::RenderLayer::scrollToOffset):
5927 (WebCore::RenderLayer::updateOverflowStatus):
5928 * svg/SVGElement.cpp:
5929 (WebCore::SVGElement::sendSVGLoadEventIfPossible):
5930 * svg/SVGElementInstance.cpp:
5931 (WebCore::SVGElementInstance::dispatchEvent):
5932 * svg/SVGElementInstance.h:
5933 * xml/XMLHttpRequest.cpp:
5934 (WebCore::XMLHttpRequest::dispatchEvent):
5935 (WebCore::XMLHttpRequest::dispatchReadyStateChangeEvent):
5936 (WebCore::XMLHttpRequest::dispatchXMLHttpRequestProgressEvent):
5937 * xml/XMLHttpRequest.h:
5938 * xml/XMLHttpRequestUpload.cpp:
5939 (WebCore::XMLHttpRequestUpload::dispatchEvent):
5940 (WebCore::XMLHttpRequestUpload::dispatchXMLHttpRequestProgressEvent):
5941 * xml/XMLHttpRequestUpload.h:
5942 Don't pass the tempEvent boolean around.
5943
alp@webkit.org64c083f2008-10-20 11:32:36 +000059442008-10-20 Alp Toker <alp@nuanti.com>
5945
5946 Remove unused includes only. Partial GTK+/Win build fix.
5947
5948 * platform/graphics/gtk/SimpleFontDataPango.cpp:
5949
ap@webkit.org00a9b882008-10-20 09:24:30 +000059502008-10-20 Alexey Proskuryakov <ap@webkit.org>
5951
5952 Reviewed by Oliver Hunt.
5953
5954 https://bugs.webkit.org/show_bug.cgi?id=21705
5955 Implement Web Workers client-side API
5956
5957 The implementation is experimental, and disabled by default. It doesn't quite match the
5958 published draft, being influenced by further WHATWG discussions.
5959
5960 This only implements the client-side API, and does not actually create any threads or
5961 global contexts yet.
5962
5963 * DerivedSources.make: Added DedicatedWorker. SharedWorker is not implemented yet, as I'm
5964 still not sure if having separate classes for these helps at all.
5965
5966 * WebCore.xcodeproj/project.pbxproj: Added new files.
5967
5968 * bindings/js/JSDOMWindowBase.cpp:
5969 (jsDOMWindowBaseWorker):
5970 (WebCore::JSDOMWindowBase::put):
5971 (setJSDOMWindowBaseWorker):
5972 Added window.Worker constructor. Moved JSXSLTProcessorConstructor.h include out of ifdef
5973 to match prevailing style.
5974
5975 * bindings/js/JSDedicatedWorkerConstructor.cpp: Added.
5976 * bindings/js/JSDedicatedWorkerConstructor.h: Added.
5977 * bindings/js/JSDedicatedWorkerCustom.cpp: Added.
5978 The implementation of event listeners are left custom intentionally, for easier implementation
5979 of listeners that are not tied to any Document in the future.
5980
5981 * dom/DedicatedWorker.cpp: Added.
5982 * dom/DedicatedWorker.h: Added.
5983 * dom/DedicatedWorker.idl: Added.
5984 Added an implementation that can only load requested scripts for now.
5985
darin@apple.comcd9e55b2008-10-20 06:29:32 +000059862008-10-19 Darin Adler <darin@apple.com>
5987
5988 Reviewed by Dan Bernstein.
5989
5990 - fix assertion seen when opening inspector
5991
5992 * bindings/js/JSQuarantinedObjectWrapper.cpp:
5993 (WebCore::JSQuarantinedObjectWrapper::getOwnPropertySlot):
5994 Removed unneeded asObject cast.
5995
mitz@apple.com2cce4672008-10-20 03:49:58 +000059962008-10-19 Dan Bernstein <mitz@apple.com>
5997
5998 Rubber-stamped by Timothy Hatcher.
5999
6000 - remove empty directories and correct the MIME type of inspector images
6001
6002 * page/inspector: Removed.
6003 * page/inspector/Images: Removed.
6004
timothy@apple.com2b1a4132008-10-20 03:43:19 +000060052008-10-19 Timothy Hatcher <timothy@apple.com>
6006
timothy@apple.com389d6642008-10-20 03:43:57 +00006007 Make the Web Inspector Resources panel open quicker and change graphs
6008 faster. There was some accidental n^2 logic at fault when updating the
6009 graph boundaries.
6010
6011 https://bugs.webkit.org/show_bug.cgi?id=21742
6012
6013 Reviewed by Darin Adler.
6014
6015 * inspector/front-end/ResourcesPanel.js:
6016 (WebInspector.ResourcesPanel.prototype.set calculator): Return early for
6017 a null calculator. Remove the second argument passed to _refreshAllResources.
6018 (WebInspector.ResourcesPanel.prototype.refresh): Call updateBoundaries on
6019 the calculator for all the stale resources before calling refreshResource.
6020 Pass true for the first argument of refreshResource to skip the boundary update.
6021 (WebInspector.ResourcesPanel.prototype._updateGraphBoundariesIfNeeded): Remove
6022 the second argument passed to _refreshAllResources.
6023 (WebInspector.ResourcesPanel.prototype._refreshAllResourcesSoon): Remove the
6024 skipSort argument since every passed true, and it would be bad to pass false.
6025 (WebInspector.ResourcesPanel.prototype._refreshAllResources): Ditto. And if
6026 skipBoundaryUpdate is false, call updateBoundaries on the calculator for all
6027 the resources before calling refreshResource. Pass true for the first argument
6028 of refreshResource to skip the boundary update.
6029
60302008-10-19 Timothy Hatcher <timothy@apple.com>
6031
timothy@apple.coma68e10d2008-10-20 03:43:45 +00006032 Visually distinguish resources that loaded from the memory cache.
6033
6034 https://bugs.webkit.org/show_bug.cgi?id=14279
6035
6036 Reviewed by Dan Bernstein.
6037
6038 * English.lproj/localizedStrings.js: New string.
6039 * inspector/front-end/Images/timelineHollowPillBlue.png: Added.
6040 * inspector/front-end/Images/timelineHollowPillGray.png: Added.
6041 * inspector/front-end/Images/timelineHollowPillGreen.png: Added.
6042 * inspector/front-end/Images/timelineHollowPillOrange.png: Added.
6043 * inspector/front-end/Images/timelineHollowPillPurple.png: Added.
6044 * inspector/front-end/Images/timelineHollowPillRed.png: Added.
6045 * inspector/front-end/Images/timelineHollowPillYellow.png: Added.
6046 * inspector/front-end/ResourcesPanel.js:
6047 (WebInspector.ResourceCalculator.prototype.computeBarGraphLabels):
6048 Add the "(from cache)" suffix to the tooltip.
6049 (WebInspector.ResourceTimeCalculator.prototype.computeBarGraphLabels):
6050 Add the "(from cache)" suffix to the tooltip.
6051 (WebInspector.ResourceGraph): Add the "resource-cached" class.
6052 * inspector/front-end/inspector.css: New styles to make the timeline
6053 bars use the hollow pill images.
6054
60552008-10-19 Timothy Hatcher <timothy@apple.com>
6056
timothy@apple.comc4c00ec2008-10-20 03:43:29 +00006057 Update the scroll position in the Resources panel when loading
6058 a new page or toggling on small resource rows.
6059
6060 https://bugs.webkit.org/show_bug.cgi?id=20114
6061
6062 Reviewed by Darin Adler.
6063
6064 * inspector/front-end/ResourcesPanel.js:
6065 (WebInspector.ResourcesPanel.prototype.reset): Scroll to the top,
6066 since all the resource are being removed.
6067 (WebInspector.ResourcesPanel.prototype.removeResource): Call
6068 _adjustScrollPosition in case the view is shorter and needs scrolled.
6069 (WebInspector.ResourcesPanel.prototype._toggleLargerResources): Ditto.
6070 (WebInspector.ResourcesPanel.prototype._adjustScrollPosition): Check
6071 the height of the sidebar against the scrollTop and height of the
6072 resourcesContainerElement. If the sidebar is shorter, scroll up
6073 so the last resource is at the bottom again.
6074
60752008-10-19 Timothy Hatcher <timothy@apple.com>
6076
timothy@apple.com2b1a4132008-10-20 03:43:19 +00006077 Show per resource times and sizes when hovering over the bar graph for a resource.
6078
6079 https://bugs.webkit.org/show_bug.cgi?id=14300
6080 rdar://problem/5712802
6081
6082 Reviewed by Cameron Zwarich.
6083
6084 * English.lproj/localizedStrings.js: Add new strings.
6085 * inspector/front-end/Images/graphLabelCalloutLeft.png: Added.
6086 * inspector/front-end/Images/graphLabelCalloutRight.png: Added.
6087 * inspector/front-end/ResourcesPanel.js:
6088 (WebInspector.ResourcesPanel.prototype.refreshResource): Pass the calculator to the
6089 ResourceGraph.refresh function.
6090 (WebInspector.ResourceCalculator.prototype.computeBarGraphLabels): Default implementation
6091 returns the formatted value.
6092 (WebInspector.ResourceTimeCalculator.prototype.computeBarGraphLabels): Return discrete values
6093 for the latency and download times. Also generate a custom tooltip.
6094 (WebInspector.ResourceGraph): Add a mouseover event listener that calls refreshLabelPositions.
6095 (WebInspector.ResourceGraph.prototype.refreshLabelPositions): Added. Updates the label positions
6096 in case the bar has changed size.
6097 (WebInspector.ResourceGraph.prototype.refresh): Set the label text and tooltips.
6098 * inspector/front-end/inspector.css: New styles for the labels.
6099
darin@apple.com989a6f82008-10-20 00:28:51 +000061002008-10-19 Darin Adler <darin@apple.com>
6101
6102 Reviewed by Oliver Hunt.
6103
6104 - next step of https://bugs.webkit.org/show_bug.cgi?id=21732
6105 improve performance by eliminating JSValue as a base class for JSCell
6106
6107 Remove most uses of JSValue, which will be removed in a future patch.
6108
6109 * bindings/js/JSCustomXPathNSResolver.h: Removed declaration of JSValue
6110 and used JSValuePtr instead.
6111 * bindings/js/JSEventTarget.h: Ditto.
6112 * bindings/js/JSNodeFilterCondition.h: Ditto.
6113 * bindings/js/ScheduledAction.h: Ditto.
6114 * bindings/js/ScriptController.h: Ditto.
6115 * bindings/objc/WebScriptObjectPrivate.h: Ditto.
6116 * bridge/c/c_utility.h: Ditto.
6117 * bridge/jni/jni_jsobject.h: Ditto.
6118 * bridge/jni/jni_utility.h: Ditto.
6119 * bridge/objc/WebScriptObject.h: Ditto.
6120 * dom/Traversal.h: Ditto.
6121 * inspector/InspectorController.cpp: Ditto.
6122 * inspector/JavaScriptProfile.h: Ditto.
6123 * inspector/JavaScriptProfileNode.h: Ditto.
6124 * loader/FrameLoader.h: Ditto.
6125 * page/Console.h: Ditto.
6126 * plugins/MimeTypeArray.h: Ditto.
6127 * plugins/Plugin.h: Ditto.
6128 * plugins/PluginArray.h: Ditto.
6129 * plugins/PluginView.cpp:
6130 (WebCore::getString): Ditto.
6131 (WebCore::PluginView::performRequest): Ditto.
6132 * plugins/gtk/PluginViewGtk.cpp: Ditto.
6133 * plugins/qt/PluginViewQt.cpp: Ditto.
6134 * plugins/win/PluginViewWin.cpp: Ditto.
6135
6136 * bridge/qt/qt_class.cpp:
6137 (JSC::Bindings::QtClass::fallbackObject): Use JSValuePtr and JSObject*
6138 instead of JSValue*.
6139 * bridge/qt/qt_class.h: Ditto.
6140 * bridge/qt/qt_instance.cpp:
6141 (JSC::Bindings::QtInstance::mark): Ditto.
6142 (JSC::Bindings::QtInstance::invokeMethod): Ditto.
6143 (JSC::Bindings::QtInstance::defaultValue): Ditto.
6144 (JSC::Bindings::QtInstance::stringValue): Ditto.
6145 (JSC::Bindings::QtInstance::numberValue): Ditto.
6146 (JSC::Bindings::QtInstance::booleanValue): Ditto.
6147 (JSC::Bindings::QtInstance::valueOf): Ditto.
6148 (JSC::Bindings::QtField::valueFromInstance): Ditto.
6149 (JSC::Bindings::QtField::setValueToInstance): Ditto.
6150 * bridge/qt/qt_instance.h: Ditto.
6151 * bridge/qt/qt_runtime.cpp: Ditto.
6152 (JSC::Bindings::valueRealType): Ditto.
6153 (JSC::Bindings::convertValueToQVariant): Ditto.
6154 (JSC::Bindings::convertQVariantToValue): Ditto.
6155 (JSC::Bindings::findMethodIndex): Ditto.
6156 (JSC::Bindings::QtRuntimeMetaMethod::call): Ditto.
6157 (JSC::Bindings::QtRuntimeMetaMethod::lengthGetter): Ditto.
6158 (JSC::Bindings::QtRuntimeMetaMethod::connectGetter): Ditto.
6159 (JSC::Bindings::QtRuntimeMetaMethod::disconnectGetter): Ditto.
6160 (JSC::Bindings::QtRuntimeConnectionMethod::call): Ditto.
6161 (JSC::Bindings::QtRuntimeConnectionMethod::lengthGetter): Ditto.
6162 (JSC::Bindings::QtArray::setValueAt): Ditto.
6163 (JSC::Bindings::QtArray::valueAt): Ditto.
6164 * bridge/qt/qt_runtime.h: Ditto.
6165
6166 * bridge/testqtbindings.cpp:
6167 (main): Use JSValuePtr.
6168
darin@apple.com5c465b02008-10-19 16:58:58 +000061692008-10-18 Darin Adler <darin@apple.com>
6170
6171 Reviewed by Oliver Hunt.
6172
6173 - next step of https://bugs.webkit.org/show_bug.cgi?id=21732
6174 improve performance by eliminating JSValue as a base class for JSCell
6175
6176 Tweak a little more to get closer to where we can make JSValuePtr a class.
6177
6178 * bindings/js/JSAudioConstructor.cpp:
6179 (WebCore::JSAudioConstructor::JSAudioConstructor): Use asObject.
6180 (WebCore::constructAudio): Ditto.
6181 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
6182 (WebCore::JSCSSStyleDeclaration::nameGetter): Ditto.
6183
6184 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
6185 (WebCore::toHTMLCanvasStyle): Use asString and asObject.
6186 (WebCore::JSCanvasRenderingContext2D::setFillColor): Ditto.
6187 (WebCore::JSCanvasRenderingContext2D::setStrokeColor): Ditto.
6188 (WebCore::JSCanvasRenderingContext2D::drawImage): Ditto.
6189 (WebCore::JSCanvasRenderingContext2D::drawImageFromRect): Ditto.
6190 (WebCore::JSCanvasRenderingContext2D::setShadow): Ditto.
6191 (WebCore::JSCanvasRenderingContext2D::createPattern): Ditto.
6192
6193 * bindings/js/JSCustomSQLTransactionErrorCallback.cpp:
6194 (WebCore::JSCustomSQLTransactionErrorCallback::handleEvent): Use JSValuePtr.
6195
6196 * bindings/js/JSDOMBinding.cpp:
6197 (WebCore::setDOMException): Use noValue.
6198
6199 * bindings/js/JSDOMBinding.h:
6200 (WebCore::getDOMPrototype): Use asObject.
6201
6202 * bindings/js/JSDOMWindowBase.cpp:
6203 (WebCore::showModalDialog): Use noValue.
6204 (jsDOMWindowBaseEvent): Use asObject.
6205 (jsDOMWindowBaseImage): Ditto.
6206 (jsDOMWindowBaseMessageChannel): Ditto.
6207 (jsDOMWindowBaseOption): Ditto.
6208 (jsDOMWindowBaseXMLHttpRequest): Ditto.
6209 (jsDOMWindowBaseAudio): Ditto.
6210 (jsDOMWindowBaseXSLTProcessor): Ditto.
6211 (WebCore::JSDOMWindowBase::childFrameGetter): Ditto.
6212 (WebCore::JSDOMWindowBase::indexGetter): Ditto.
6213 (WebCore::JSDOMWindowBase::namedItemGetter): Ditto.
6214 (WebCore::JSDOMWindowBase::getOwnPropertySlot): Ditto.
6215 (WebCore::JSDOMWindowBase::findJSEventListener): Ditto.
6216 (WebCore::JSDOMWindowBase::findOrCreateJSEventListener): Ditto.
6217 (WebCore::JSDOMWindowBase::findJSUnprotectedEventListener): Ditto.
6218 (WebCore::JSDOMWindowBase::findOrCreateJSUnprotectedEventListener): Ditto.
6219 (windowProtoFuncOpen): Use noValue.
6220 (WebCore::toJSDOMWindow): Use asObject.
6221
6222 * bindings/js/JSDOMWindowCustom.cpp:
6223 (WebCore::setTimeoutOrInterval): Use asString.
6224 (WebCore::toDOMWindow): Use asObject.
6225
6226 * bindings/js/JSEventListener.cpp:
6227 (WebCore::JSAbstractEventListener::handleEvent): Use noValue.
6228 (WebCore::JSLazyEventListener::parseCode): Use asObject.
6229
6230 * bindings/js/JSHTMLCollectionCustom.cpp:
6231 (WebCore::JSHTMLCollection::nameGetter): Use asObject.
6232 * bindings/js/JSHTMLDocumentCustom.cpp:
6233 (WebCore::JSHTMLDocument::nameGetter): Ditto.
6234 * bindings/js/JSHTMLElementCustom.cpp:
6235 (WebCore::JSHTMLElement::pushEventHandlerScope): Ditto.
6236 * bindings/js/JSHTMLFormElementCustom.cpp:
6237 (WebCore::JSHTMLFormElement::nameGetter): Ditto.
6238 * bindings/js/JSHTMLFrameSetElementCustom.cpp:
6239 (WebCore::JSHTMLFrameSetElement::nameGetter): Ditto.
6240 * bindings/js/JSHTMLOptionElementConstructor.cpp:
6241 (WebCore::JSHTMLOptionElementConstructor::JSHTMLOptionElementConstructor): Ditto.
6242 (WebCore::constructHTMLOptionElement): Ditto.
6243 * bindings/js/JSHTMLOptionsCollectionCustom.cpp:
6244 (WebCore::JSHTMLOptionsCollection::remove): Ditto.
6245 * bindings/js/JSImageConstructor.cpp:
6246 (WebCore::JSImageConstructor::JSImageConstructor): Ditto.
6247 (WebCore::constructImage): Ditto.
6248 * bindings/js/JSInspectedObjectWrapper.cpp:
6249 (WebCore::JSInspectedObjectWrapper::wrap): Ditto.
6250 * bindings/js/JSInspectorCallbackWrapper.cpp:
6251 (WebCore::JSInspectorCallbackWrapper::wrap): Ditto.
6252
6253 * bindings/js/JSJavaScriptCallFrameCustom.cpp:
6254 (WebCore::JSJavaScriptCallFrame::evaluate): Use noValue.
6255
6256 * bindings/js/JSMessageChannelConstructor.cpp:
6257 (WebCore::JSMessageChannelConstructor::JSMessageChannelConstructor): Use asObject.
6258 (WebCore::JSMessageChannelConstructor::construct): Ditto.
6259 * bindings/js/JSMimeTypeArrayCustom.cpp:
6260 (WebCore::JSMimeTypeArray::nameGetter): Ditto.
6261 * bindings/js/JSNamedNodeMapCustom.cpp:
6262 (WebCore::JSNamedNodeMap::nameGetter): Ditto.
6263 * bindings/js/JSNamedNodesCollection.cpp:
6264 (WebCore::JSNamedNodesCollection::lengthGetter): Ditto.
6265 (WebCore::JSNamedNodesCollection::indexGetter): Ditto.
6266 * bindings/js/JSNodeFilterCustom.cpp:
6267 (WebCore::toNodeFilter): Ditto.
6268 * bindings/js/JSNodeListCustom.cpp:
6269 (WebCore::JSNodeList::nameGetter): Ditto.
6270 * bindings/js/JSPluginArrayCustom.cpp:
6271 (WebCore::JSPluginArray::nameGetter): Ditto.
6272 * bindings/js/JSPluginCustom.cpp:
6273 (WebCore::JSPlugin::nameGetter): Ditto.
6274 * bindings/js/JSPluginElementFunctions.cpp:
6275 (WebCore::runtimeObjectGetter): Ditto.
6276 (WebCore::runtimeObjectPropertyGetter): Ditto.
6277 * bindings/js/JSQuarantinedObjectWrapper.cpp:
6278 (WebCore::JSQuarantinedObjectWrapper::asWrapper): Ditto.
6279 (WebCore::JSQuarantinedObjectWrapper::getOwnPropertySlot): Ditto.
6280 (WebCore::JSQuarantinedObjectWrapper::construct): Ditto.
6281 * bindings/js/JSRGBColor.cpp:
6282 (jsRGBColorRed): Ditto.
6283 (jsRGBColorGreen): Ditto.
6284 (jsRGBColorBlue): Ditto.
6285
6286 * bindings/js/JSSQLResultSetRowListCustom.cpp:
6287 (WebCore::JSSQLResultSetRowList::item): Use noValue.
6288
6289 * bindings/js/JSStorageCustom.cpp:
6290 (WebCore::JSStorage::nameGetter): Use asObject.
6291 (WebCore::JSStorage::deleteProperty): Ditto.
6292 (WebCore::JSStorage::customPut): Ditto.
6293 * bindings/js/JSStyleSheetListCustom.cpp:
6294 (WebCore::JSStyleSheetList::nameGetter): Ditto.
6295 * bindings/js/JSXMLHttpRequestConstructor.cpp:
6296 (WebCore::JSXMLHttpRequestConstructor::JSXMLHttpRequestConstructor): Ditto.
6297 * bindings/js/JSXSLTProcessorCustom.cpp:
6298 (WebCore::JSXSLTProcessor::importStylesheet): Ditto.
6299 (WebCore::JSXSLTProcessor::transformToFragment): Ditto.
6300 (WebCore::JSXSLTProcessor::transformToDocument): Ditto.
6301
6302 * bindings/js/ScriptController.cpp:
6303 (WebCore::ScriptController::evaluate): Use noValue.
6304 * bindings/objc/DOMInternal.mm:
6305 (-[WebScriptObject _initializeScriptDOMNodeImp]): Ditto.
6306
6307 * bindings/objc/WebScriptObject.mm:
6308 (-[WebScriptObject evaluateWebScript:]): Use JSValuePtr.
6309 (-[WebScriptObject valueForKey:]): Ditto.
6310 (-[WebScriptObject webScriptValueAtIndex:]): Ditto.
6311 (+[WebScriptObject _convertValueToObjcValue:originRootObject:rootObject:]):
6312 Use asObject and asString.
6313
6314 * bindings/scripts/CodeGeneratorJS.pm: Use asObject.
6315
6316 * bridge/c/c_instance.h: Use JSValuePtr.
6317 * bridge/c/c_runtime.cpp:
6318 (JSC::Bindings::CField::setValueToInstance): Ditto.
6319
6320 * bridge/c/c_utility.cpp:
6321 (JSC::Bindings::convertValueToNPVariant): Use asObject.
6322
6323 * bridge/jni/jni_instance.cpp:
6324 (JavaInstance::booleanValue): Use JSValuePtr.
6325 (JavaInstance::invokeMethod): Ditto. And noValue.
6326 * bridge/jni/jni_jsobject.mm:
6327 (JavaJSObject::getSlot): Ditto.
6328 (JavaJSObject::convertValueToJObject): Ditto.
6329 * bridge/jni/jni_runtime.cpp:
6330 (JavaField::dispatchValueFromInstance): Ditto.
6331 (JavaField::valueFromInstance): Ditto.
6332 (JavaField::dispatchSetValueToInstance): Ditto.
6333 (JavaField::setValueToInstance): Ditto.
6334 (JavaArray::setValueAt): Ditto.
6335 (JavaArray::valueAt): Ditto.
6336 * bridge/jni/jni_runtime.h: Ditto.
6337
6338 * bridge/jni/jni_utility.cpp:
6339 (JSC::Bindings::convertArrayInstanceToJavaArray): Take a JSArray*
6340 instead of a JSValue*.
6341 (JSC::Bindings::convertValueToJValue): Use asObject and asArray.
6342
6343 * bridge/objc/objc_class.h: Use JSValuePtr.
6344 * bridge/objc/objc_instance.h: Ditto.
6345 * bridge/objc/objc_runtime.h: Ditto.
6346
6347 * bridge/objc/objc_runtime.mm:
6348 (JSC::Bindings::callObjCFallbackObject): Use asObject.
6349
6350 * bridge/objc/objc_utility.h: Use JSValuePtr.
6351 * bridge/objc/objc_utility.mm:
6352 (JSC::Bindings::convertValueToObjcValue): Use JSValuePtr and asObject.
6353 (JSC::Bindings::convertObjcValueToValue): Use jsUndefined() instead of 0.
6354
6355 * bridge/runtime.cpp:
6356 (JSC::Bindings::Instance::getValueOfField): Use JSValuePtr.
6357 (JSC::Bindings::Instance::setValueOfField): Ditto.
6358
6359 * bridge/runtime_array.cpp:
6360 (JSC::RuntimeArray::lengthGetter): Use JSValuePtr and asObject.
6361 (JSC::RuntimeArray::indexGetter): Ditto.
6362 * bridge/runtime_array.h: Ditto.
6363 * bridge/runtime_method.cpp:
6364 (JSC::RuntimeMethod::lengthGetter): Ditto.
6365 (JSC::callRuntimeMethod): Ditto.
6366 * bridge/runtime_object.cpp:
6367 (JSC::RuntimeObjectImp::fallbackObjectGetter): Ditto.
6368 (JSC::RuntimeObjectImp::fieldGetter): Ditto.
6369 (JSC::RuntimeObjectImp::methodGetter): Ditto.
6370
6371 * loader/FrameLoader.cpp:
6372 (WebCore::FrameLoader::executeScript): Use noValue.
6373
6374 * page/Console.cpp:
6375 (WebCore::Console::trace): Use asInternalFunction.
6376
mitz@apple.com50ba3892008-10-19 16:41:50 +000063772008-10-19 Dan Bernstein <mitz@apple.com>
6378
6379 Reviewed by Timothy Hatcher.
6380
6381 - lower the default button repaint frequency
6382
6383 * rendering/RenderButton.cpp:
6384 (WebCore::RenderButton::styleDidChange): Changed the timer interval from
6385 0.01 to 0.03.
6386
mitz@apple.com3076b4b2008-10-19 02:53:39 +000063872008-10-18 Dan Bernstein <mitz@apple.com>
6388
mitz@apple.comfc465242008-10-19 06:26:15 +00006389 Reviewed by Mark Rowe.
6390
6391 - Windows build fix
6392
6393 * rendering/RenderThemeSafari.cpp:
6394 (WebCore::RenderThemeSafari::paintMediaFullscreenButton):
6395 (WebCore::RenderThemeSafari::paintMediaMuteButton):
6396 (WebCore::RenderThemeSafari::paintMediaPlayButton):
6397 (WebCore::RenderThemeSafari::paintMediaSeekBackButton):
6398 (WebCore::RenderThemeSafari::paintMediaSeekForwardButton):
6399 (WebCore::RenderThemeSafari::paintMediaSliderThumb):
6400
64012008-10-18 Dan Bernstein <mitz@apple.com>
6402
mitz@apple.com3076b4b2008-10-19 02:53:39 +00006403 Reviewed by Sam Weinig.
6404
6405 - WebCore part of https://bugs.webkit.org/show_bug.cgi?id=21736
6406 Long-dead decoded image data make up for most of the object cache's memory use over time
6407
6408 Add a cache setting for how long decoded image data should be allowed to
6409 persist in memory after the image has died. By default, this is set to
6410 0, which means "forever".
6411
6412 * loader/Cache.cpp:
6413 (WebCore::Cache::Cache): Initialize m_deadDecodedDataDeletionInterval.
6414 * loader/Cache.h:
6415 (WebCore::Cache::setDeadDecodedDataDeletionInterval): Added a setter.
6416 (WebCore::Cache::deadDecodedDataDeletionInterval): Added a getter.
6417 * loader/CachedImage.cpp:
6418 (WebCore::CachedImage::CachedImage): Initialize the decoded data
6419 deletion timer.
6420 (WebCore::CachedImage::decodedDataDeletionTimerFired): Added. Destroys
6421 the decoded image data.
6422 (WebCore::CachedImage::addClient): Stop the timer if it is active.
6423 (WebCore::CachedImage::allClientsRemoved): Start the decoded data
6424 deletion timer.
6425 * loader/CachedImage.h:
6426
darin@apple.com9c9096f2008-10-18 21:54:01 +000064272008-10-18 Darin Adler <darin@apple.com>
6428
darin@apple.com05b30262008-10-19 02:12:26 +00006429 Reviewed by Dan Bernstein.
6430
6431 - fix https://bugs.webkit.org/show_bug.cgi?id=21645
6432 REGRESSION (r37469-r37605): File Input not Uploaded in Multipart/Form-data Form
6433
6434 * html/HTMLFormElement.cpp:
6435 (WebCore::HTMLFormElement::formData):
6436 Fix loop that goes through the FormDataList to go two at a time in a clearer
6437 way. My last patch screwed up the way it got form content from the items.
darin@apple.comf20ce3332008-10-19 02:14:16 +00006438 This "two at a time" approach is a confusing way to do things, which explains
6439 why I got it wrong last time through, but I decided to just fix it locally for
6440 now rather than changing the design of FormDataList.
darin@apple.com05b30262008-10-19 02:12:26 +00006441
64422008-10-18 Darin Adler <darin@apple.com>
6443
darin@apple.com67c6c012008-10-19 01:52:42 +00006444 Reviewed by Cameron Zwarich.
6445
6446 - next step on https://bugs.webkit.org/show_bug.cgi?id=21732
6447 improve performance by eliminating JSValue as a base class for JSCell
6448
6449 Use JSValuePtr everywhere instead of JSValue*. In the future, we'll be
6450 changing JSValuePtr to be a class, and then eventually renaming it
6451 to JSValue once that's done.
6452
6453 * bindings/js/JSAttrCustom.cpp:
6454 * bindings/js/JSCSSRuleCustom.cpp:
6455 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
6456 * bindings/js/JSCSSValueCustom.cpp:
6457 * bindings/js/JSCanvasPixelArrayCustom.h:
6458 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
6459 * bindings/js/JSClipboardCustom.cpp:
6460 * bindings/js/JSConsoleCustom.cpp:
6461 * bindings/js/JSCustomSQLStatementCallback.cpp:
6462 * bindings/js/JSCustomSQLStatementErrorCallback.cpp:
6463 * bindings/js/JSCustomSQLTransactionCallback.cpp:
6464 * bindings/js/JSCustomSQLTransactionErrorCallback.cpp:
6465 * bindings/js/JSCustomVoidCallback.cpp:
6466 * bindings/js/JSCustomVoidCallback.h:
6467 * bindings/js/JSCustomXPathNSResolver.cpp:
6468 * bindings/js/JSDOMApplicationCacheCustom.cpp:
6469 * bindings/js/JSDOMBinding.cpp:
6470 * bindings/js/JSDOMBinding.h:
6471 * bindings/js/JSDOMWindowBase.cpp:
6472 * bindings/js/JSDOMWindowBase.h:
6473 * bindings/js/JSDOMWindowCustom.cpp:
6474 * bindings/js/JSDOMWindowCustom.h:
6475 * bindings/js/JSDOMWindowShell.cpp:
6476 * bindings/js/JSDOMWindowShell.h:
6477 * bindings/js/JSDatabaseCustom.cpp:
6478 * bindings/js/JSDocumentCustom.cpp:
6479 * bindings/js/JSElementCustom.cpp:
6480 * bindings/js/JSEventCustom.cpp:
6481 * bindings/js/JSEventListener.cpp:
6482 * bindings/js/JSEventTarget.cpp:
6483 * bindings/js/JSEventTargetBase.h:
6484 * bindings/js/JSEventTargetNodeCustom.cpp:
6485 * bindings/js/JSHTMLAllCollection.h:
6486 * bindings/js/JSHTMLAppletElementCustom.cpp:
6487 * bindings/js/JSHTMLCollectionCustom.cpp:
6488 * bindings/js/JSHTMLDocumentCustom.cpp:
6489 * bindings/js/JSHTMLEmbedElementCustom.cpp:
6490 * bindings/js/JSHTMLFormElementCustom.cpp:
6491 * bindings/js/JSHTMLFrameElementCustom.cpp:
6492 * bindings/js/JSHTMLFrameSetElementCustom.cpp:
6493 * bindings/js/JSHTMLIFrameElementCustom.cpp:
6494 * bindings/js/JSHTMLInputElementCustom.cpp:
6495 * bindings/js/JSHTMLObjectElementCustom.cpp:
6496 * bindings/js/JSHTMLOptionsCollectionCustom.cpp:
6497 * bindings/js/JSHTMLSelectElementCustom.cpp:
6498 * bindings/js/JSHTMLSelectElementCustom.h:
6499 * bindings/js/JSHistoryCustom.cpp:
6500 * bindings/js/JSImageDataCustom.cpp:
6501 * bindings/js/JSInspectedObjectWrapper.cpp:
6502 * bindings/js/JSInspectedObjectWrapper.h:
6503 * bindings/js/JSInspectorCallbackWrapper.cpp:
6504 * bindings/js/JSInspectorCallbackWrapper.h:
6505 * bindings/js/JSJavaScriptCallFrameCustom.cpp:
6506 * bindings/js/JSLocationCustom.cpp:
6507 * bindings/js/JSMessagePortCustom.cpp:
6508 * bindings/js/JSMimeTypeArrayCustom.cpp:
6509 * bindings/js/JSNamedNodeMapCustom.cpp:
6510 * bindings/js/JSNamedNodesCollection.cpp:
6511 * bindings/js/JSNamedNodesCollection.h:
6512 * bindings/js/JSNavigatorCustom.cpp:
6513 * bindings/js/JSNodeCustom.cpp:
6514 * bindings/js/JSNodeFilterCondition.cpp:
6515 * bindings/js/JSNodeFilterCustom.cpp:
6516 * bindings/js/JSNodeIteratorCustom.cpp:
6517 * bindings/js/JSNodeListCustom.cpp:
6518 * bindings/js/JSPluginArrayCustom.cpp:
6519 * bindings/js/JSPluginCustom.cpp:
6520 * bindings/js/JSPluginElementFunctions.cpp:
6521 * bindings/js/JSPluginElementFunctions.h:
6522 * bindings/js/JSQuarantinedObjectWrapper.cpp:
6523 * bindings/js/JSQuarantinedObjectWrapper.h:
6524 * bindings/js/JSRGBColor.cpp:
6525 * bindings/js/JSRGBColor.h:
6526 * bindings/js/JSSQLResultSetRowListCustom.cpp:
6527 * bindings/js/JSSQLTransactionCustom.cpp:
6528 * bindings/js/JSSVGElementInstanceCustom.cpp:
6529 * bindings/js/JSSVGLengthCustom.cpp:
6530 * bindings/js/JSSVGMatrixCustom.cpp:
6531 * bindings/js/JSSVGPathSegCustom.cpp:
6532 * bindings/js/JSSVGPathSegListCustom.cpp:
6533 * bindings/js/JSSVGPointListCustom.cpp:
6534 * bindings/js/JSSVGTransformListCustom.cpp:
6535 * bindings/js/JSStorageCustom.cpp:
6536 * bindings/js/JSStyleSheetCustom.cpp:
6537 * bindings/js/JSStyleSheetListCustom.cpp:
6538 * bindings/js/JSTextCustom.cpp:
6539 * bindings/js/JSTreeWalkerCustom.cpp:
6540 * bindings/js/JSXMLHttpRequestCustom.cpp:
6541 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
6542 * bindings/js/JSXSLTProcessorCustom.cpp:
6543 * bindings/js/ScheduledAction.cpp:
6544 * bindings/js/ScheduledAction.h:
6545 * bindings/js/ScriptController.cpp:
6546 * bindings/js/ScriptController.h:
6547 * bindings/objc/WebScriptObject.mm:
6548 * bindings/scripts/CodeGeneratorJS.pm:
6549 * bridge/NP_jsobject.cpp:
6550 * bridge/c/c_instance.cpp:
6551 * bridge/c/c_instance.h:
6552 * bridge/c/c_runtime.cpp:
6553 * bridge/c/c_runtime.h:
6554 * bridge/c/c_utility.cpp:
6555 * bridge/jni/jni_instance.cpp:
6556 * bridge/jni/jni_instance.h:
6557 * bridge/jni/jni_jsobject.mm:
6558 * bridge/jni/jni_objc.mm:
6559 * bridge/jni/jni_runtime.cpp:
6560 * bridge/jni/jni_runtime.h:
6561 * bridge/jni/jni_utility.cpp:
6562 * bridge/objc/objc_class.mm:
6563 * bridge/objc/objc_instance.h:
6564 * bridge/objc/objc_instance.mm:
6565 * bridge/objc/objc_runtime.h:
6566 * bridge/objc/objc_runtime.mm:
6567 * bridge/objc/objc_utility.h:
6568 * bridge/objc/objc_utility.mm:
6569 * bridge/runtime.h:
6570 * bridge/runtime_array.cpp:
6571 * bridge/runtime_array.h:
6572 * bridge/runtime_method.cpp:
6573 * bridge/runtime_method.h:
6574 * bridge/runtime_object.cpp:
6575 * bridge/runtime_object.h:
6576 * inspector/JavaScriptCallFrame.cpp:
6577 * inspector/JavaScriptCallFrame.h:
6578 * inspector/JavaScriptProfile.cpp:
6579 * inspector/JavaScriptProfileNode.cpp:
6580 * loader/FrameLoader.cpp:
6581 * loader/FrameLoader.h:
6582 * page/Console.cpp:
6583 * page/Console.h:
6584 * plugins/MimeTypeArray.h:
6585 * plugins/Plugin.h:
6586 * plugins/PluginArray.h:
6587 * xml/XMLHttpRequest.cpp:
6588 Replace JSValue* with JSValuePtr.
6589
65902008-10-18 Darin Adler <darin@apple.com>
6591
darin@apple.com5a494422008-10-18 23:08:12 +00006592 Reviewed by Oliver Hunt.
6593
6594 - first step of https://bugs.webkit.org/show_bug.cgi?id=21732
6595 improve performance by eliminating JSValue as a base class for JSCell
6596
6597 Update for change to make PreferredPrimitiveType no longer
6598 a member of JSValue.
6599
6600 * bridge/c/c_instance.cpp:
6601 (JSC::Bindings::CInstance::defaultValue): Removed JSValue:: prefix.
6602 * bridge/jni/jni_instance.cpp:
6603 (JavaInstance::defaultValue): Ditto.
6604 * bridge/objc/objc_instance.mm:
6605 (ObjcInstance::defaultValue): Ditto.
6606 * bridge/qt/qt_instance.cpp:
6607 (JSC::Bindings::QtInstance::defaultValue): Ditto.
6608 * bridge/runtime.h: Ditto. Also removed typedef.
6609
66102008-10-18 Darin Adler <darin@apple.com>
6611
darin@apple.com9c9096f2008-10-18 21:54:01 +00006612 - try to fix Windows build
6613
6614 * rendering/RenderThemeSafari.cpp:
6615 (WebCore::RenderThemeSafari::paintCheckbox): Explicitly qualify part name with
6616 SafariTheme namespace, since there is now an identically named constant in
6617 the ControlPart enum.
6618 (WebCore::RenderThemeSafari::paintButton): Ditto.
6619 (WebCore::RenderThemeSafari::paintTextField): Ditto.
6620 (WebCore::RenderThemeSafari::paintTextArea): Ditto.
6621 (WebCore::RenderThemeSafari::paintSearchField): Ditto.
6622 (WebCore::RenderThemeSafari::paintSearchFieldCancelButton): Ditto.
6623 (WebCore::RenderThemeSafari::paintSearchFieldResultsDecoration): Ditto.
6624 (WebCore::RenderThemeSafari::paintSearchFieldResultsButton): Ditto.
6625
jmalonzo@webkit.orgbb77ef92008-10-18 21:23:59 +000066262008-10-18 Jan Michael Alonzo <jmalonzo@webkit.org>
6627
6628 Reviewed by Alp Toker.
6629
6630 [GTK] crash after selecting a file on an <input type=file>
6631 https://bugs.webkit.org/show_bug.cgi?id=21385
6632
6633 Follow Mac and Win's behaviors for Icon::paint
6634
6635 * platform/graphics/gtk/IconGtk.cpp:
6636 (WebCore::Icon::paint): check if painting is enabled before
6637 painting the icon
6638
oliver@apple.com154f91e2008-10-18 08:44:34 +000066392008-10-18 Zan Dobersek <zandobersek@gmail.com>
6640
6641 Reviewed by Oliver Hunt.
6642
6643 Qt port build fix.
6644
6645 * platform/qt/RenderThemeQt.h:
6646
kevino@webkit.org75d2aee2008-10-18 00:03:58 +000066472008-10-17 Kevin Watters <kevinwatters@gmail.com>
6648
6649 Reviewed by Kevin Ollivier
6650
6651 Fix wx port's scrollbar and drawing handling after recent changes.
6652
6653 https://bugs.webkit.org/show_bug.cgi?id=21720
6654
6655 * platform/ScrollView.h:
6656 * platform/wx/ScrollViewWx.cpp:
6657 (WebCore::ScrollView::platformVisibleContentRect):
6658 (WebCore::ScrollView::platformContentsSize):
6659 (WebCore::ScrollView::platformSetContentsSize):
6660 * platform/wx/WidgetWx.cpp:
6661 (WebCore::Widget::paint):
6662
kevino@webkit.orgc81374f2008-10-17 23:22:58 +000066632008-10-17 Kevin Ollivier <kevino@theolliviers.com>
6664
6665 wx build fix. EAppearance -> ControlPart.
6666
6667 * platform/wx/RenderThemeWx.cpp:
6668 (WebCore::RenderThemeWx::isControlStyled):
6669 (WebCore::RenderThemeWx::adjustRepaintRect):
6670 (WebCore::RenderThemeWx::controlSupportsTints):
6671 (WebCore::RenderThemeWx::supportsFocus):
6672 (WebCore::RenderThemeWx::paintButton):
6673
hyatt@apple.com084394f2008-10-17 21:26:46 +000066742008-10-17 David Hyatt <hyatt@apple.com>
6675
hyatt@apple.com5cdc5e042008-10-17 22:02:16 +00006676 Eliminate the EAppearance enum in favor of the new ControlPart enum. Cut out the scrollbar
6677 values from the enum since they are handled by ScrollbarTheme instead.
6678
6679 Reviewed by Tim Hatcher
6680
6681 * css/CSSPrimitiveValueMappings.h:
6682 (WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
6683 (WebCore::CSSPrimitiveValue::operator ControlPart):
6684 * css/CSSStyleSelector.cpp:
6685 (WebCore::CSSStyleSelector::adjustRenderStyle):
6686 * css/CSSValueKeywords.in:
6687 * platform/gtk/RenderThemeGtk.cpp:
6688 (WebCore::supportsFocus):
6689 (WebCore::RenderThemeGtk::baselinePosition):
6690 (WebCore::setToggleSize):
6691 (WebCore::RenderThemeGtk::setCheckboxSize):
6692 (WebCore::RenderThemeGtk::setRadioSize):
6693 (WebCore::RenderThemeGtk::adjustButtonStyle):
6694 * platform/qt/RenderThemeQt.cpp:
6695 (WebCore::RenderThemeQt::baselinePosition):
6696 (WebCore::RenderThemeQt::controlSupportsTints):
6697 (WebCore::RenderThemeQt::adjustRepaintRect):
6698 (WebCore::RenderThemeQt::isControlStyled):
6699 (WebCore::computeSizeBasedOnStyle):
6700 (WebCore::RenderThemeQt::paintButton):
6701 (WebCore::RenderThemeQt::paintTextField):
6702 (WebCore::RenderThemeQt::paintMenuList):
6703 (WebCore::RenderThemeQt::supportsFocus):
6704 (WebCore::RenderThemeQt::applyTheme):
6705 (WebCore::RenderThemeQt::adjustSliderThumbSize):
6706 * platform/qt/RenderThemeQt.h:
6707 * rendering/RenderSlider.cpp:
6708 (WebCore::RenderSlider::createThumbStyle):
6709 (WebCore::RenderSlider::layout):
6710 (WebCore::RenderSlider::setValueForPosition):
6711 (WebCore::RenderSlider::setPositionFromValue):
6712 (WebCore::RenderSlider::positionForOffset):
6713 (WebCore::RenderSlider::currentPosition):
6714 (WebCore::RenderSlider::setCurrentPosition):
6715 (WebCore::RenderSlider::trackSize):
6716 * rendering/RenderTheme.cpp:
6717 (WebCore::RenderTheme::adjustStyle):
6718 (WebCore::RenderTheme::paint):
6719 (WebCore::RenderTheme::paintBorderOnly):
6720 (WebCore::RenderTheme::paintDecorations):
6721 (WebCore::RenderTheme::isControlContainer):
6722 (WebCore::RenderTheme::isControlStyled):
6723 (WebCore::RenderTheme::supportsFocusRing):
6724 (WebCore::RenderTheme::isDefault):
6725 * rendering/RenderTheme.h:
6726 * rendering/RenderThemeMac.mm:
6727 (WebCore::RenderThemeMac::isControlStyled):
6728 (WebCore::RenderThemeMac::adjustRepaintRect):
6729 (WebCore::RenderThemeMac::baselinePosition):
6730 (WebCore::RenderThemeMac::controlSupportsTints):
6731 (WebCore::RenderThemeMac::adjustButtonStyle):
6732 (WebCore::RenderThemeMac::setButtonCellState):
6733 (WebCore::RenderThemeMac::popupInternalPaddingLeft):
6734 (WebCore::RenderThemeMac::popupInternalPaddingRight):
6735 (WebCore::RenderThemeMac::popupInternalPaddingTop):
6736 (WebCore::RenderThemeMac::popupInternalPaddingBottom):
6737 (WebCore::RenderThemeMac::paintSliderTrack):
6738 (WebCore::RenderThemeMac::paintSliderThumb):
6739 (WebCore::RenderThemeMac::adjustSliderThumbSize):
6740 * rendering/RenderThemeSafari.cpp:
6741 (WebCore::RenderThemeSafari::isControlStyled):
6742 (WebCore::RenderThemeSafari::adjustRepaintRect):
6743 (WebCore::RenderThemeSafari::baselinePosition):
6744 (WebCore::RenderThemeSafari::controlSupportsTints):
6745 (WebCore::RenderThemeSafari::adjustButtonStyle):
6746 (WebCore::RenderThemeSafari::popupInternalPaddingLeft):
6747 (WebCore::RenderThemeSafari::popupInternalPaddingRight):
6748 (WebCore::RenderThemeSafari::popupInternalPaddingTop):
6749 (WebCore::RenderThemeSafari::popupInternalPaddingBottom):
6750 (WebCore::RenderThemeSafari::paintSliderTrack):
6751 (WebCore::RenderThemeSafari::adjustSliderThumbSize):
6752 * rendering/RenderThemeWin.cpp:
6753 (WebCore::RenderThemeWin::supportsFocus):
6754 (WebCore::RenderThemeWin::determineClassicState):
6755 (WebCore::RenderThemeWin::getClassicThemeData):
6756 (WebCore::RenderThemeWin::getThemeData):
6757 (WebCore::drawControl):
6758 (WebCore::RenderThemeWin::paintSliderTrack):
6759 (WebCore::RenderThemeWin::adjustSliderThumbSize):
6760 * rendering/RenderThemeWin.h:
6761 * rendering/style/RenderStyle.h:
6762 (WebCore::InheritedFlags::hasAppearance):
6763 (WebCore::InheritedFlags::appearance):
6764 (WebCore::InheritedFlags::setAppearance):
6765 (WebCore::InheritedFlags::initialAppearance):
6766 * rendering/style/RenderStyleConstants.h:
6767
67682008-10-17 David Hyatt <hyatt@apple.com>
6769
hyatt@apple.com084394f2008-10-17 21:26:46 +00006770 Beginning of the RenderTheme re-architecture (to share more code). Add the new Theme API header
6771 file. Add new USE(NEW_THEME) switch that is enabled on Mac. The Mac theme will be converted first.
6772
6773 Reviewed by Tim Hatcher
6774
6775 * WebCore.vcproj/WebCore.vcproj:
6776 * WebCore.xcodeproj/project.pbxproj:
6777 * config.h:
6778 * platform/Theme.h: Added.
6779 (WebCore::Theme::Theme):
6780 (WebCore::Theme::~Theme):
6781 (WebCore::Theme::baselinePositionAdjustment):
6782 (WebCore::Theme::controlHasInactiveAppearance):
6783 (WebCore::Theme::controlsCanHaveInactiveAppearance):
6784 (WebCore::Theme::controlsCanHaveHoveredAppearance):
6785 (WebCore::Theme::controlDrawsBorder):
6786 (WebCore::Theme::controlDrawsBackground):
6787 (WebCore::Theme::controlDrawsFocusOutline):
6788 (WebCore::Theme::selectionColor):
6789 (WebCore::Theme::textSearchHighlightColor):
6790 (WebCore::Theme::systemColor):
6791 (WebCore::Theme::systemFont):
6792 (WebCore::Theme::caretBlinkFrequency):
6793 (WebCore::Theme::themeChanged):
6794 (WebCore::Theme::controlSize):
6795 (WebCore::Theme::controlFont):
6796 (WebCore::Theme::controlPadding):
6797 (WebCore::Theme::controlInternalPadding):
6798 (WebCore::Theme::controlBorder):
6799 (WebCore::Theme::controlBorderRadius):
6800 (WebCore::Theme::paint):
6801 (WebCore::Theme::inflateControlPaintRect):
6802 * platform/ThemeTypes.h: Added.
6803 (WebCore::):
6804 (WebCore::ControlBox::ControlBox):
6805 (WebCore::ControlBox::top):
6806 (WebCore::ControlBox::right):
6807 (WebCore::ControlBox::bottom):
6808 (WebCore::ControlBox::left):
6809 * platform/mac/ThemeMac.h: Added.
6810 (WebCore::ThemeMac::ThemeMac):
6811 (WebCore::ThemeMac::~ThemeMac):
6812 * platform/mac/ThemeMac.mm: Added.
6813 (WebCore::platformTheme):
6814 * rendering/RenderTheme.cpp:
6815 (WebCore::RenderTheme::RenderTheme):
6816 * rendering/RenderTheme.h:
6817
jmalonzo@webkit.org38edc132008-10-17 21:16:01 +000068182008-10-17 Marco Barisione <marco.barisione@collabora.co.uk>
6819
6820 Reviewed by Sam Weinig. Landed by Jan Alonzo.
6821
6822 https://bugs.webkit.org/show_bug.cgi?id=21603
6823 [GTK] Minor fixes to GOwnPtr
6824
6825 * platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp:
6826 (WebCore::mediaPlayerPrivateErrorCallback):
6827
timothy@apple.com4bfc7332008-10-17 16:51:03 +000068282008-10-17 Timothy Hatcher <timothy@apple.com>
6829
timothy@apple.com22edf572008-10-17 21:04:42 +00006830 Recompile the JavaScript functions when removing any listener, so functions that are
6831 not being debugged can resume normal speed again.
6832
6833 https://bugs.webkit.org/show_bug.cgi?id=21715
6834
6835 Reviewed by Geoffrey Garen.
6836
6837 * bindings/js/JSDOMWindowBase.cpp:
6838 (WebCore::JSDOMWindowBase::globalExec): Changed an assert into an if check. This assert
6839 was firing when closing the window and having the recompile fire after. This was an
6840 overzelious assert now.
6841 * inspector/JavaScriptDebugServer.cpp:
6842 (WebCore::JavaScriptDebugServer::didRemoveListener): Start the recompile timer.
6843 (WebCore::JavaScriptDebugServer::didRemoveLastListener): Removed the recompile timer start.
6844
68452008-10-17 Timothy Hatcher <timothy@apple.com>
6846
timothy@apple.com4bfc7332008-10-17 16:51:03 +00006847 Fixes a regression where starting a debugging session in
6848 another Web Inspector window would not show any scripts.
6849 Also only attach the debugger to only the required Pages.
6850
6851 https://bugs.webkit.org/show_bug.cgi?id=21708
6852
6853 Reviewed by Darin Adler.
6854
6855 * inspector/JavaScriptDebugServer.cpp:
6856 (WebCore::JavaScriptDebugServer::addListener): Add an assert and
6857 remove the call to willAddFirstListener(). Add a call to
6858 didAddListener().
6859 (WebCore::JavaScriptDebugServer::removeListener): Add an assert
6860 and call to didRemoveListener().
6861 (WebCore::JavaScriptDebugServer::pageCreated): Attach the debugger
6862 if there is a listener interested in the new Page.
6863 (WebCore::JavaScriptDebugServer::hasListenersInterestedInPage):
6864 Use hasGlobalListeners() instead of isEmpty().
6865 (WebCore::JavaScriptDebugServer::sourceParsed): Ditto.
6866 (WebCore::JavaScriptDebugServer::didAddListener): Added. Attach the
6867 debugger to the page if non-null, or all pages if page is null.
6868 (WebCore::JavaScriptDebugServer::didRemoveListener): Added. Detach
6869 the debugger only if there are no interested listeners.
6870 (WebCore::JavaScriptDebugServer::didRemoveLastListener): Remove the
6871 call to Page::setDebuggerForAllPages().
6872 * inspector/JavaScriptDebugServer.h:
6873 (WebCore::JavaScriptDebugServer::hasGlobalListeners): Added.
6874
brettw@chromium.orgaf9954f2008-10-17 15:56:24 +000068752008-10-15 Brett Wilson <brettw@chromium.org>
6876
6877 Reviewed by Timothy Hatcher.
6878
6879 Have ImageDocument generate its own filename for the title of images
6880 without relying on the suggested filename from the network layer, which
6881 may be nonexistant or not relevant.
6882 https://bugs.webkit.org/show_bug.cgi?id=21565
6883
6884 * loader/ImageDocument.cpp:
6885 (WebCore::ImageTokenizer::finish):
6886
ap@webkit.org2114abd2008-10-17 08:10:55 +000068872008-10-17 Alexey Proskuryakov <ap@webkit.org>
6888
ap@webkit.org6959ea02008-10-17 13:35:28 +00006889 Non-Mac build fix.
6890
6891 * GNUmakefile.am:
6892 * WebCore.pro:
6893 * WebCore.vcproj/WebCore.vcproj:
6894 * WebCoreSources.bkl:
6895 Added ActiveDOMObject to the build.
6896
68972008-10-17 Alexey Proskuryakov <ap@webkit.org>
6898
ap@webkit.org2114abd2008-10-17 08:10:55 +00006899 Reviewed by Sam Weinig.
6900
6901 https://bugs.webkit.org/show_bug.cgi?id=21642
6902 Abstract out active object tracking
6903
6904 * WebCore.xcodeproj/project.pbxproj:
6905 * bindings/js/JSDOMBinding.cpp:
6906 (WebCore::markActiveObjectsForDocument):
6907 * dom/ActiveDOMObject.cpp: Added.
6908 (WebCore::ActiveDOMObject::ActiveDOMObject):
6909 (WebCore::ActiveDOMObject::~ActiveDOMObject):
6910 (WebCore::ActiveDOMObject::contextDestroyed):
6911 (WebCore::ActiveDOMObject::stop):
6912 * dom/ActiveDOMObject.h: Added.
6913 (WebCore::ActiveDOMObject::document):
6914 (WebCore::ActiveDOMObject::hasPendingActivity):
6915 (WebCore::ActiveDOMObject::setPendingActivity):
6916 (WebCore::ActiveDOMObject::unsetPendingActivity):
6917 * dom/Document.cpp:
6918 (WebCore::Document::~Document):
6919 (WebCore::Document::stopActiveDOMObjects):
6920 (WebCore::Document::createdActiveDOMObject):
6921 (WebCore::Document::destroyedActiveDOMObject):
6922 * dom/Document.h:
6923 (WebCore::Document::activeDOMObjects):
6924 * dom/MessagePort.cpp:
6925 (WebCore::MessagePort::contextDestroyed):
6926 * dom/MessagePort.h:
6927 * loader/FrameLoader.cpp:
6928 (WebCore::FrameLoader::stopLoading):
6929 * xml/XMLHttpRequest.cpp:
6930 (WebCore::XMLHttpRequest::XMLHttpRequest):
6931 (WebCore::XMLHttpRequest::~XMLHttpRequest):
6932 (WebCore::XMLHttpRequest::associatedFrame):
6933 (WebCore::XMLHttpRequest::responseXML):
6934 (WebCore::XMLHttpRequest::callReadyStateChangeListener):
6935 (WebCore::XMLHttpRequest::initSend):
6936 (WebCore::XMLHttpRequest::send):
6937 (WebCore::XMLHttpRequest::createRequest):
6938 (WebCore::XMLHttpRequest::makeSimpleCrossSiteAccessRequest):
6939 (WebCore::XMLHttpRequest::makeCrossSiteAccessRequestWithPreflight):
6940 (WebCore::XMLHttpRequest::handleAsynchronousPreflightResult):
6941 (WebCore::XMLHttpRequest::loadRequestSynchronously):
6942 (WebCore::XMLHttpRequest::loadRequestAsynchronously):
6943 (WebCore::XMLHttpRequest::dropProtection):
6944 (WebCore::XMLHttpRequest::setRequestHeader):
6945 (WebCore::XMLHttpRequest::processSyncLoadResults):
6946 (WebCore::XMLHttpRequest::didFinishLoading):
6947 (WebCore::XMLHttpRequest::didFinishLoadingPreflight):
6948 (WebCore::XMLHttpRequest::willSendRequest):
6949 (WebCore::XMLHttpRequest::accessControlCheck):
6950 (WebCore::XMLHttpRequest::didReceiveResponsePreflight):
6951 (WebCore::XMLHttpRequest::stop):
6952 (WebCore::XMLHttpRequest::contextDestroyed):
6953 * xml/XMLHttpRequest.h:
6954 Move activity tracking to a new ActiveDOMObject class.
6955
hyatt@apple.comdec0cbf22008-10-17 00:25:33 +000069562008-10-16 David Hyatt <hyatt@apple.com>
6957
hyatt@apple.comd4925582008-10-17 01:20:46 +00006958 Simplify styleForRenderer to avoid confusion. Callers in the SVG filter code thought "forRenderer" meant
6959 they would be given a style that corresponded to the RenderObject* passed in. This is not what the code
6960 did though. This patch removes the renderer argument and the Element subclass shadow implementation
6961 so that confusion like this can't occur again.
6962
6963 Reviewed by Oliver Hunt
6964
6965 * dom/Element.cpp:
6966 * dom/Element.h:
6967 * dom/Node.cpp:
6968 (WebCore::Node::createRendererIfNeeded):
6969 (WebCore::Node::styleForRenderer):
6970 * dom/Node.h:
6971 * html/HTMLOptGroupElement.cpp:
6972 (WebCore::HTMLOptGroupElement::attach):
6973 * html/HTMLOptionElement.cpp:
6974 (WebCore::HTMLOptionElement::attach):
6975 * svg/SVGClipPathElement.cpp:
6976 (WebCore::SVGClipPathElement::canvasResource):
6977 * svg/SVGFEDiffuseLightingElement.cpp:
6978 (WebCore::SVGFEDiffuseLightingElement::build):
6979 * svg/SVGFEFloodElement.cpp:
6980 (WebCore::SVGFEFloodElement::build):
6981 * svg/SVGFESpecularLightingElement.cpp:
6982 (WebCore::SVGFESpecularLightingElement::build):
6983 * svg/SVGGradientElement.cpp:
6984 (WebCore::SVGGradientElement::buildStops):
6985 * svg/SVGUseElement.cpp:
6986 (WebCore::SVGUseElement::attachShadowTree):
6987
69882008-10-16 David Hyatt <hyatt@apple.com>
6989
hyatt@apple.comdec0cbf22008-10-17 00:25:33 +00006990 https://bugs.webkit.org/attachment.cgi?bugid=21647
6991
6992 Make RenderStyle inherit from RefCounted so that it works with RefPtr. RenderStyle was being malloced
6993 out of the RenderArena. Years and years ago (before TCMalloc), the plan was to make RenderStyles and
6994 all their associated sub-structs use the arena. However only the RenderStyle itself was ever changed
6995 to use the arena.
6996
6997 At a later point style sharing was implemented, which made using the arena for styles pretty pointless,
6998 as the bulk of the styles on a given page are actually shared. Not ever making the sub-structs use the
6999 arena also limited the usefulness.
7000
7001 Now that we have RefPtr/PassRefPtr to eliminate manual ref/deref and now that we use TCMalloc for fast
7002 mallocs, there is no reason to keep RenderStyles in the arena. The benefits of being able to eliminate
7003 manual ref/deref far outweigh keeping them in the arena.
7004
7005 Reviewed by Adam Roben
7006
7007 * css/CSSStyleSelector.cpp:
7008 (WebCore::CSSStyleSelector::CSSStyleSelector):
7009 (WebCore::CSSStyleSelector::~CSSStyleSelector):
7010 (WebCore::CSSStyleSelector::styleForElement):
7011 (WebCore::CSSStyleSelector::keyframeStylesForAnimation):
7012 (WebCore::CSSStyleSelector::pseudoStyleForElement):
7013 These methods now return a PassRefPtr. They will null out the m_style variable as they hand it back
7014 so that it isn't left pointing to the previous style resolve RenderStyle (which is what the old code did).
7015
7016 (WebCore::CSSStyleSelector::updateFont):
7017 (WebCore::CSSStyleSelector::checkSelector):
7018 (WebCore::CSSStyleSelector::applyProperty):
7019 (WebCore::CSSStyleSelector::mapFillSize):
7020 (WebCore::CSSStyleSelector::mapFillXPosition):
7021 (WebCore::CSSStyleSelector::mapFillYPosition):
7022 * css/CSSStyleSelector.h:
7023 (WebCore::CSSStyleSelector::style):
7024 * dom/Document.cpp:
7025 (WebCore::Document::recalcStyle):
7026 * dom/Element.cpp:
7027 (WebCore::Element::styleForRenderer):
7028 (WebCore::Element::recalcStyle):
7029 (WebCore::Element::computedStyle):
7030 * dom/Element.h:
7031 * dom/ElementRareData.h:
7032 (WebCore::ElementRareData::ElementRareData):
7033 (WebCore::ElementRareData::resetComputedStyle):
7034 * dom/Node.cpp:
7035 (WebCore::Node::diff):
7036 (WebCore::Node::createRendererIfNeeded):
7037 (WebCore::Node::styleForRenderer):
7038 (WebCore::Node::setRenderStyle):
7039 * dom/Node.h:
7040 * html/CanvasRenderingContext2D.cpp:
7041 (WebCore::CanvasRenderingContext2D::setFont):
7042 * html/HTMLOptGroupElement.cpp:
7043 (WebCore::HTMLOptGroupElement::attach):
7044 (WebCore::HTMLOptGroupElement::detach):
7045 (WebCore::HTMLOptGroupElement::setRenderStyle):
7046 (WebCore::HTMLOptGroupElement::nonRendererRenderStyle):
7047 * html/HTMLOptGroupElement.h:
7048 * html/HTMLOptionElement.cpp:
7049 (WebCore::HTMLOptionElement::attach):
7050 (WebCore::HTMLOptionElement::detach):
7051 (WebCore::HTMLOptionElement::setRenderStyle):
7052 (WebCore::HTMLOptionElement::nonRendererRenderStyle):
7053 * html/HTMLOptionElement.h:
7054 * page/animation/AnimationBase.h:
7055 (WebCore::AnimationBase::animate):
7056 * page/animation/AnimationController.cpp:
7057 (WebCore::AnimationController::updateAnimations):
7058 * page/animation/AnimationController.h:
7059 * page/animation/CompositeAnimation.cpp:
7060 (WebCore::CompositeAnimationPrivate::updateTransitions):
7061 (WebCore::CompositeAnimationPrivate::updateKeyframeAnimations):
7062 (WebCore::CompositeAnimationPrivate::animate):
7063 (WebCore::CompositeAnimation::animate):
7064 * page/animation/CompositeAnimation.h:
7065 * page/animation/ImplicitAnimation.cpp:
7066 (WebCore::ImplicitAnimation::ImplicitAnimation):
7067 (WebCore::ImplicitAnimation::~ImplicitAnimation):
7068 (WebCore::ImplicitAnimation::animate):
7069 (WebCore::ImplicitAnimation::reset):
7070 (WebCore::ImplicitAnimation::isTargetPropertyEqual):
7071 (WebCore::ImplicitAnimation::blendPropertyValueInStyle):
7072 * page/animation/ImplicitAnimation.h:
7073 (WebCore::ImplicitAnimation::create):
7074 * page/animation/KeyframeAnimation.cpp:
7075 (WebCore::KeyframeAnimation::KeyframeAnimation):
7076 (WebCore::KeyframeAnimation::~KeyframeAnimation):
7077 (WebCore::KeyframeAnimation::animate):
7078 (WebCore::KeyframeAnimation::validateTransformFunctionList):
7079 * page/animation/KeyframeAnimation.h:
7080 (WebCore::KeyframeAnimation::create):
7081 (WebCore::KeyframeAnimation::unanimatedStyle):
7082 * rendering/InlineTextBox.cpp:
7083 (WebCore::InlineTextBox::paint):
7084 * rendering/MediaControlElements.cpp:
7085 (WebCore::MediaControlShadowRootElement::MediaControlShadowRootElement):
7086 (WebCore::MediaControlInputElement::MediaControlInputElement):
7087 * rendering/RenderBlock.cpp:
7088 (WebCore::RenderBlock::styleDidChange):
7089 (WebCore::RenderBlock::updateFirstLetter):
7090 * rendering/RenderContainer.cpp:
7091 (WebCore::RenderContainer::addChild):
7092 (WebCore::RenderContainer::updateBeforeAfterContentForContainer):
7093 * rendering/RenderFileUploadControl.cpp:
7094 (WebCore::RenderFileUploadControl::updateFromElement):
7095 (WebCore::RenderFileUploadControl::createButtonStyle):
7096 * rendering/RenderFileUploadControl.h:
7097 * rendering/RenderFlow.cpp:
7098 (WebCore::RenderFlow::createAnonymousFlow):
7099 * rendering/RenderFlow.h:
7100 * rendering/RenderInline.cpp:
7101 (WebCore::RenderInline::addChildToFlow):
7102 * rendering/RenderLayer.cpp:
7103 (WebCore::RenderLayer::updateScrollCornerStyle):
7104 (WebCore::RenderLayer::updateResizerStyle):
7105 (WebCore::RenderLayer::updateReflectionStyle):
7106 * rendering/RenderListItem.cpp:
7107 (WebCore::RenderListItem::styleDidChange):
7108 * rendering/RenderMedia.cpp:
7109 (WebCore::RenderMedia::createPanel):
7110 (WebCore::RenderMedia::createTimeDisplay):
7111 (WebCore::RenderMedia::changeOpacity):
7112 * rendering/RenderObject.cpp:
7113 (WebCore::RenderObject::selectionBackgroundColor):
7114 (WebCore::RenderObject::selectionForegroundColor):
7115 (WebCore::RenderObject::createAnonymousBlock):
7116 (WebCore::RenderObject::setAnimatableStyle):
7117 (WebCore::RenderObject::setStyle):
7118 (WebCore::RenderObject::setStyleInternal):
7119 (WebCore::RenderObject::arenaDelete):
7120 (WebCore::RenderObject::firstLineStyle):
7121 (WebCore::RenderObject::getPseudoStyle):
7122 * rendering/RenderObject.h:
7123 (WebCore::RenderObject::style):
7124 * rendering/RenderSVGBlock.cpp:
7125 (WebCore::RenderSVGBlock::setStyle):
7126 * rendering/RenderSVGBlock.h:
7127 * rendering/RenderScrollbar.cpp:
7128 (WebCore::RenderScrollbar::getScrollbarPseudoStyle):
7129 (WebCore::RenderScrollbar::updateScrollbarPart):
7130 * rendering/RenderScrollbar.h:
7131 * rendering/RenderSlider.cpp:
7132 (WebCore::RenderSlider::styleDidChange):
7133 (WebCore::RenderSlider::createThumbStyle):
7134 (WebCore::RenderSlider::updateFromElement):
7135 * rendering/RenderSlider.h:
7136 * rendering/RenderTable.cpp:
7137 (WebCore::RenderTable::addChild):
7138 * rendering/RenderTableRow.cpp:
7139 (WebCore::RenderTableRow::addChild):
7140 * rendering/RenderTableSection.cpp:
7141 (WebCore::RenderTableSection::addChild):
7142 * rendering/RenderTextControl.cpp:
7143 (WebCore::RenderTextControl::styleDidChange):
7144 (WebCore::RenderTextControl::createInnerBlockStyle):
7145 (WebCore::RenderTextControl::createInnerTextStyle):
7146 (WebCore::RenderTextControl::createResultsButtonStyle):
7147 (WebCore::RenderTextControl::createCancelButtonStyle):
7148 (WebCore::RenderTextControl::createSubtreeIfNeeded):
7149 (WebCore::RenderTextControl::updatePlaceholderVisibility):
7150 * rendering/RenderTextControl.h:
7151 * rendering/TextControlInnerElements.cpp:
7152 (WebCore::TextControlInnerElement::attachInnerElement):
7153 * rendering/TextControlInnerElements.h:
7154 * rendering/style/KeyframeList.cpp:
7155 (WebCore::KeyframeList::clear):
7156 (WebCore::KeyframeList::operator==):
7157 (WebCore::KeyframeList::insert):
7158 * rendering/style/KeyframeList.h:
7159 (WebCore::KeyframeValue::KeyframeValue):
7160 (WebCore::KeyframeValue::~KeyframeValue):
7161 (WebCore::KeyframeValue::key):
7162 (WebCore::KeyframeValue::style):
7163 * rendering/style/RenderStyle.cpp:
7164 (WebCore::defaultStyle):
7165 (WebCore::RenderStyle::create):
7166 (WebCore::RenderStyle::createDefaultStyle):
7167 (WebCore::RenderStyle::clone):
7168 (WebCore::RenderStyle::RenderStyle):
7169 (WebCore::RenderStyle::getCachedPseudoStyle):
7170 (WebCore::RenderStyle::addCachedPseudoStyle):
7171 * rendering/style/RenderStyle.h:
7172 (WebCore::):
7173 (WebCore::InheritedFlags::operator!=):
7174 * svg/SVGClipPathElement.cpp:
7175 (WebCore::SVGClipPathElement::canvasResource):
7176 * svg/SVGGradientElement.cpp:
7177 (WebCore::SVGGradientElement::buildStops):
7178 * svg/SVGStyledElement.cpp:
7179 (WebCore::SVGStyledElement::resolveStyle):
7180 * svg/SVGStyledElement.h:
7181 * svg/SVGUseElement.cpp:
7182 (WebCore::SVGUseElement::recalcStyle):
7183 (WebCore::SVGUseElement::attachShadowTree):
7184
andersca@apple.com2c7cec42008-10-16 19:08:19 +000071852008-10-16 Kenneth Russell <kenneth.russell@sun.com>
7186
7187 Reviewed and landed by Anders Carlsson.
7188
7189 https://bugs.webkit.org/show_bug.cgi?id=21587
7190 NPN_PluginThreadAsyncCall does not work properly
7191
7192 * plugins/PluginMainThreadScheduler.cpp:
7193 (WebCore::PluginMainThreadScheduler::dispatchCalls):
7194 Make sure to set m_callPending to false once the queue has been cleared.
7195
ap@webkit.orga89bd1e2008-10-16 08:00:53 +000071962008-10-15 Alexey Proskuryakov <ap@webkit.org>
7197
7198 Reviewed by Darin Adler.
7199
7200 https://bugs.webkit.org/show_bug.cgi?id=21609
7201 Make MessagePorts protect their peers across heaps
7202
7203 * dom/MessagePort.cpp:
7204 (WebCore::MessagePort::MessagePort):
7205 * dom/MessagePort.h:
7206 (WebCore::MessagePort::setJSWrapperIsKnownToBeInaccessible):
7207 (WebCore::MessagePort::jsWrapperIsKnownToBeInaccessible):
7208 Track objects whose JS wrappers are no longer reachable in MessagePort. Unfortunately, this
7209 means that the implementation object knows about JS bindings - but it is not possible to
7210 access JS wrappers from another heap/thread.
7211
7212 * bindings/js/JSDOMBinding.cpp:
7213 (WebCore::markCrossHeapDependentObjectsForDocument):
7214 * bindings/js/JSDOMBinding.h:
7215 * bindings/js/JSDOMWindowBase.cpp:
7216 (WebCore::JSDOMWindowBase::markCrossHeapDependentObjects):
7217 * bindings/js/JSDOMWindowBase.h:
7218 Implement cross-heap dependency tracking for entangled MessagePorts. If a wrapper object
7219 hasn't been marked normally, it is marked as inaccessible. It is then marked manually,
7220 as long as its entangled port is accessible itself.
7221
jhoneycutt@apple.com2edeb802008-10-16 04:56:46 +000072222008-10-15 Jon Honeycutt <jhoneycutt@apple.com>
7223
7224 Remove unneeded check of whether a Page defers loading before running it
7225 in a modal dialog.
7226
7227 No test possible.
7228
7229 Reviewed by Tim Hatcher.
7230
7231 * page/Chrome.cpp:
7232
ggaren@apple.com9f980342008-10-15 23:33:07 +000072332008-10-15 Geoffrey Garen <ggaren@apple.com>
7234
7235 Reviewed by Cameron Zwarich.
7236
7237 Fixed https://bugs.webkit.org/show_bug.cgi?id=21345
7238 Start the debugger without reloading the inspected page
7239
7240 * WebCore.base.exp: New symbols.
7241
7242 * ForwardingHeaders/kjs/CollectorHeapIterator.h: Copied from ForwardingHeaders/kjs/ustring.h.
7243 * ForwardingHeaders/kjs/Parser.h: Copied from ForwardingHeaders/kjs/ustring.h.
7244 * WebCore.xcodeproj/project.pbxproj: New forwarding headers.
7245
7246 * inspector/InspectorController.cpp:
7247 (WebCore::InspectorController::setWindowVisible):
7248 (WebCore::InspectorController::windowScriptObjectAvailable):
7249 (WebCore::InspectorController::startDebugging):
7250 * inspector/InspectorController.h: Renamed startDebuggingAndReloadInspectedPage
7251 to startDebugging, and changed its behavior to match.
7252
7253 * inspector/JavaScriptDebugListener.h:
7254 * inspector/JavaScriptDebugServer.cpp:
7255 (WebCore::JavaScriptDebugServer::JavaScriptDebugServer):
7256 (WebCore::JavaScriptDebugServer::addListener):
7257 (WebCore::JavaScriptDebugServer::removeListener):
7258 (WebCore::JavaScriptDebugServer::recompileAllJSFunctions):
7259 (WebCore::JavaScriptDebugServer::willAddFirstListener):
7260 (WebCore::JavaScriptDebugServer::didRemoveLastListener):
7261 * inspector/JavaScriptDebugServer.h: Refactored the
7262 JavaScriptDebugServer to centralize handling of adding the first listener
7263 and removing the last. Then, added a feature to recompile all JS functions
7264 in these cases. This allows us to dynamically add and remove hooks like
7265 the debugger hooks without reloading the page.
7266
7267 * inspector/front-end/ScriptsPanel.js:
7268 * English.lproj/localizedStrings.js: Updated for startDebuggingAndReloadInspectedPage =>
7269 startDebugging rename. Removed all UI that claimed that starting the
7270 debugger would reload the page.
7271
adele@apple.com40c50522008-10-15 22:10:25 +000072722008-10-15 Adele Peterson <adele@apple.com>
7273
7274 Attempt to fix the Tiger build.
7275
7276 * platform/network/mac/ResourceHandleMac.mm:
7277
zecke@webkit.orgaa1e7642008-10-15 22:08:06 +000072782008-10-15 Holger Hans Peter Freyther <zecke@selfish.org>
7279
zecke@webkit.orgc588fe72008-10-15 22:22:38 +00007280 Build fix attempt.
7281
7282 Try to fix static/non-static declaration of g_string_append_uri_escape
7283 by renaming that string. Another look needs to be taken.
7284
7285 * platform/gtk/guriescape.c:
7286 (_webcore_g_string_append_uri_escaped):
7287 (_webcore_g_uri_escape_string):
7288
72892008-10-15 Holger Hans Peter Freyther <zecke@selfish.org>
7290
zecke@webkit.orgaa1e7642008-10-15 22:08:06 +00007291 Build fix.
7292
7293 m_animatingImageType is gone.
7294
7295 * platform/graphics/cairo/ImageCairo.cpp:
7296 (WebCore::BitmapImage::BitmapImage):
7297
zecke@webkit.org34a153a2008-10-15 22:01:31 +000072982008-10-15 Jeff Cook <cookiecaper@gmail.com>
7299
7300 Reviewed by Holger Freyther.
7301
7302 Stop SIGSEGV when leaving a page with a Flash object by reordering
7303 window destruction and plugin stop.
7304
7305 See https://bugs.webkit.org/show_bug.cgi?id=20779
7306
7307 * plugins/gtk/PluginViewGtk.cpp:
7308 (WebCore::PluginView::stop):
7309
adele@apple.com555df922008-10-15 21:53:46 +000073102008-10-15 Adele Peterson <adele@apple.com>
7311
7312 Reviewed by Sam Weinig.
7313
7314 Implement didSendBodyData delegate method, and use older code path when that delegate doesn't exist.
7315
7316 * platform/network/ResourceHandle.h:
7317 * platform/network/mac/FormDataStreamMac.mm: (WebCore::formRead):
7318 * platform/network/mac/ResourceHandleMac.mm:
7319 (WebCore::ResourceHandle::didSendBodyDataDelegateExists):
7320 (WebCore::ResourceHandle::start):
7321 (WebCore::ResourceHandle::cancel):
7322 (-[WebCoreResourceHandleAsDelegate connection:willSendRequest:redirectResponse:]):
7323 (-[WebCoreResourceHandleAsDelegate connection:didSendBodyData:totalBytesWritten:totalBytesExpectedToWrite:]):
7324 (-[WebCoreResourceHandleAsDelegate connectionDidFinishLoading:]):
7325 (-[WebCoreResourceHandleAsDelegate connection:didFailWithError:]):
7326
pkasting@chromium.orgaf85ed22008-10-15 21:11:23 +000073272008-10-15 Peter Kasting <pkasting@google.com>
7328
7329 Reviewed by David Hyatt.
7330
7331 Qt build bustage fix.
7332
7333 * platform/graphics/qt/StillImageQt.h:
7334 (WebCore::StillImage::destroyDecodedData):
7335
hyatt@apple.com8907c882008-10-15 21:06:22 +000073362008-10-15 David Hyatt <hyatt@apple.com>
7337
7338 Make sure scrollbar styles get deleted if they aren't assigned to a renderer.
7339
7340 Reviewed by Mark Rowe
7341
7342 * rendering/RenderScrollbar.cpp:
7343 (WebCore::RenderScrollbar::getScrollbarPseudoStyle):
7344 (WebCore::RenderScrollbar::updateScrollbarPart):
7345
pkasting@chromium.orge8a5a6b2008-10-15 20:38:13 +000073462008-10-15 Peter Kasting <pkasting@google.com>
7347
7348 Reviewed by David Hyatt.
7349
7350 https://bugs.webkit.org/show_bug.cgi?id=19663 (Second attempt)
7351 Account for paint and timer lag when animating images. Also pretend
7352 that images whose animations were paused (by becoming invisible)
7353 continued to animate, by "catching up" to the correct frame when they're
7354 shown again.
7355
7356 * platform/graphics/BitmapImage.cpp:
7357 (WebCore::BitmapImage::BitmapImage):
7358 (WebCore::BitmapImage::destroyDecodedData):
7359 (WebCore::BitmapImage::cacheFrame):
7360 (WebCore::BitmapImage::frameIsCompleteAtIndex):
7361 (WebCore::BitmapImage::frameDurationAtIndex):
7362 (WebCore::BitmapImage::frameHasAlphaAtIndex):
7363 (WebCore::BitmapImage::repetitionCount):
7364 (WebCore::BitmapImage::shouldAnimate):
7365 (WebCore::BitmapImage::startAnimation):
7366 (WebCore::BitmapImage::resetAnimation):
7367 (WebCore::BitmapImage::advanceAnimation):
7368 (WebCore::BitmapImage::internalAdvanceAnimation):
7369 (WebCore::BitmapImage::notifyObserverAndTrimDecodedData):
7370 * platform/graphics/BitmapImage.h:
7371 (WebCore::FrameData::FrameData):
7372 (WebCore::BitmapImage::):
7373 * platform/graphics/GeneratedImage.h:
7374 (WebCore::GeneratedImage::destroyDecodedData):
7375 * platform/graphics/Image.h:
7376 * platform/graphics/cairo/ImageCairo.cpp:
7377 (WebCore::FrameData::clear):
7378 (WebCore::BitmapImage::BitmapImage):
7379 (WebCore::BitmapImage::draw):
7380 * platform/graphics/cg/ImageCG.cpp:
7381 (WebCore::FrameData::clear):
7382 (WebCore::BitmapImage::BitmapImage):
7383 (WebCore::BitmapImage::draw):
7384 * platform/graphics/cg/PDFDocumentImage.h:
7385 (WebCore::PDFDocumentImage::destroyDecodedData):
7386 * platform/graphics/qt/ImageQt.cpp:
7387 (WebCore::FrameData::clear):
7388 (WebCore::BitmapImage::draw):
7389 * platform/graphics/wx/ImageWx.cpp:
7390 (WebCore::FrameData::clear):
7391 (WebCore::BitmapImage::draw):
7392 * svg/graphics/SVGImage.h:
7393 (WebCore::SVGImage::destroyDecodedData):
7394
bdakin@apple.comcf22dba2008-10-15 20:32:43 +000073952008-10-14 Maxime Britto <britto@apple.com>
7396
7397 Reviewed by Darin Adler, tweaked and landed by Beth.
7398
7399 * WebCore.base.exp: Exposes two functions to be able to create a
7400 selection from a point on the screen. Also exposes the new
7401 TextIterator::currentNode function.
7402 * WebCore/editing/TextIterator.cpp:
7403 (TextIterator::currentNode) : New function that returns the current
7404 text node or NULL if there is no text node.
7405
zecke@webkit.orgc6012912008-10-15 20:18:31 +000074062008-10-15 Marco Barisione <marco.barisione@collabora.co.uk>
7407
7408 Reviewed by Holger Freyther.
7409
zecke@webkit.orgbc692f72008-10-15 20:53:02 +00007410 http://bugs.webkit.org/show_bug.cgi?id=21211
7411 [CURL] Upload doesn't work because cancel is called
7412
7413 FormDataStream::read returns 0 when retrieving data from the form
7414 fails, but also when there is no more data to send. This means that
7415 ResourceHandleManager::cancel is always called even when the data was
7416 successfully sent.
7417
7418 Check if there are more elements in the form before calling
7419 FormDataStream::read.
7420
7421 * platform/network/curl/FormDataStreamCurl.cpp:
7422 (WebCore::FormDataStream::hasMoreElements):
7423 * platform/network/curl/FormDataStreamCurl.h:
7424 * platform/network/curl/ResourceHandleManager.cpp:
7425 (WebCore::readCallback):
7426
74272008-10-15 Marco Barisione <marco.barisione@collabora.co.uk>
7428
7429 Reviewed by Holger Freyther.
7430
zecke@webkit.orgc6012912008-10-15 20:18:31 +00007431 http://bugs.webkit.org/show_bug.cgi?id=20664
7432 [GTK] File names are not always encodable in UTF-8
7433
7434 On Linux file names are just raw data and cannot always be directly
7435 encoded in UTF-8 or in any other encodings, so we escape them before
7436 storing the file name in a String and unescape them before passing
7437 them to native functions handling files.
7438
7439 * GNUmakefile.am:
7440 * platform/FileSystem.h:
7441 * platform/gtk/FileChooserGtk.cpp:
7442 (WebCore::stringByAdoptingFileSystemRepresentation):
7443 (WebCore::FileChooser::basenameForWidth):
7444 * platform/gtk/FileSystemGtk.cpp:
7445 (WebCore::filenameToString):
7446 (WebCore::filenameFromString):
7447 (WebCore::filenameForDisplay):
7448 (WebCore::fileExists):
7449 (WebCore::deleteFile):
7450 (WebCore::deleteEmptyDirectory):
7451 (WebCore::getFileSize):
7452 (WebCore::getFileModificationTime):
7453 (WebCore::makeAllDirectories):
7454 (WebCore::homeDirectoryPath):
7455 (WebCore::pathGetFileName):
7456 (WebCore::listDirectory):
7457 * platform/gtk/KURLGtk.cpp:
7458 (WebCore::KURL::fileSystemPath):
7459 * platform/gtk/SharedBufferGtk.cpp:
7460 (WebCore::SharedBuffer::createWithContentsOfFile):
7461 * platform/gtk/guriescape.c: Added.
7462 (is_valid):
7463 (gunichar_ok):
7464 (g_string_append_uri_escaped):
7465 (_webcore_g_uri_escape_string):
7466 * platform/gtk/guriescape.h: Added.
7467
darin@apple.come0c926d2008-10-15 17:02:02 +000074682008-10-15 Dirk Schulze <vbs85@gmx.de>
7469
7470 Reviewed by Eric Seidel.
7471
7472 - part of https://bugs.webkit.org/show_bug.cgi?id=20543
7473 Moved gradient spread method out of SVG into the GraphicsContext.
7474
7475 * platform/graphics/GraphicsContext.cpp:
7476 (WebCore::GraphicsContext::spreadMethod):
7477 (WebCore::GraphicsContext::setSpreadMethod):
7478 * platform/graphics/GraphicsContext.h:
7479 (WebCore::):
7480 * platform/graphics/GraphicsContextPrivate.h:
7481 * platform/graphics/cairo/GraphicsContextCairo.cpp:
7482 (WebCore::applySpreadMethod):
7483 (WebCore::GraphicsContext::fillPath):
7484 (WebCore::GraphicsContext::strokePath):
7485 * platform/graphics/qt/GraphicsContextQt.cpp:
7486 (WebCore::applySpreadMethod):
7487 (WebCore::GraphicsContext::fillPath):
7488 (WebCore::GraphicsContext::strokePath):
7489 * svg/GradientAttributes.h:
7490 (WebCore::GradientAttributes::GradientAttributes):
7491 (WebCore::GradientAttributes::spreadMethod):
7492 (WebCore::GradientAttributes::setSpreadMethod):
7493 * svg/SVGGradientElement.cpp:
7494 (WebCore::SVGGradientElement::parseMappedAttribute):
7495 * svg/SVGGradientElement.h:
7496 * svg/SVGLinearGradientElement.cpp:
7497 (WebCore::SVGLinearGradientElement::collectGradientProperties):
7498 * svg/SVGRadialGradientElement.cpp:
7499 (WebCore::SVGRadialGradientElement::collectGradientProperties):
7500 * svg/graphics/SVGPaintServerGradient.cpp:
7501 (WebCore::operator<<):
7502 (WebCore::SVGPaintServerGradient::SVGPaintServerGradient):
7503 (WebCore::SVGPaintServerGradient::spreadMethod):
7504 (WebCore::SVGPaintServerGradient::setGradientSpreadMethod):
7505 (WebCore::SVGPaintServerGradient::externalRepresentation):
7506 * svg/graphics/SVGPaintServerGradient.h:
7507 * svg/graphics/cairo/SVGPaintServerGradientCairo.cpp:
7508 (WebCore::SVGPaintServerGradient::setup):
7509 * svg/graphics/qt/SVGPaintServerGradientQt.cpp:
7510 (WebCore::SVGPaintServerGradient::setup):
7511
darin@chromium.org7a0c3c92008-10-15 05:22:03 +000075122008-10-09 Darin Fisher <darin@chromium.org>
7513
7514 Reviewed by Sam Weinig.
7515
7516 Make pan scrolling a platform configurable option
7517 https://bugs.webkit.org/show_bug.cgi?id=21515
7518
7519 * page/EventHandler.cpp:
7520 (WebCore::EventHandler::handleAutoscroll):
7521 (WebCore::EventHandler::autoscrollTimerFired):
7522 (WebCore::EventHandler::stopAutoscrollTimer):
7523 (WebCore::EventHandler::handleMousePressEvent):
7524 (WebCore::EventHandler::keyEvent):
7525
darin@chromium.org5a0619c2008-10-15 05:15:47 +000075262008-10-10 Darin Fisher <darin@chromium.org>
7527
7528 Reviewed by Darin Adler.
7529
7530 Add some PLATFORM(CHROMIUM) ifdefs to WebCore
7531 https://bugs.webkit.org/show_bug.cgi?id=21511
7532
7533 * loader/FTPDirectoryDocument.cpp:
7534 * loader/FTPDirectoryParser.cpp:
7535 * loader/FrameLoader.cpp:
7536 (WebCore::FrameLoader::finishedLoadingDocument):
7537 * platform/ContextMenuItem.h:
7538 * platform/Cursor.h:
7539 * platform/DragData.h:
7540 * platform/DragImage.h:
7541 * platform/Pasteboard.h:
7542 * platform/PlatformKeyboardEvent.h:
7543 (WebCore::PlatformKeyboardEvent::isSystemKey):
7544 * platform/PlatformMenuDescription.h:
7545 * platform/PlatformMouseEvent.h:
7546 * platform/PlatformWheelEvent.h:
7547 * platform/PopupMenu.h:
7548 * platform/ScrollView.h:
7549 * platform/Widget.h:
7550 * platform/network/NetworkStateNotifier.h:
7551
cmarrin@apple.com78e50e82008-10-14 21:31:40 +000075522008-10-14 Chris Marrin <cmarrin@apple.com>
7553
7554 Reviewed by Darin Adler.
7555
7556 Fixed https://bugs.webkit.org/show_bug.cgi?id=21490
7557 Optimize keyframe style sheet changes by avoiding styleSheetChanged()
7558
7559 Test: css3/change-keyframes.html
7560
7561 * css/WebKitCSSKeyframesRule.cpp:
7562 (WebCore::WebKitCSSKeyframesRule::append):
7563 (WebCore::WebKitCSSKeyframesRule::deleteRule):
7564
hyatt@apple.combf26cc02008-10-14 20:35:36 +000075652008-10-14 David Hyatt <hyatt@apple.com>
7566
7567 https://bugs.webkit.org/show_bug.cgi?id=21595
7568
7569 Clean up background and overflow propagation from the body to the viewport. Make it match the
7570 latest CSS2.1 spec thinking.
7571
7572 Reviewed by Adam Roben
7573
7574 Added many tests at fast/body-propagation/. These are Simon Pieters' tests of propagation handling
7575 (available at http://simon.html5.org/test/css/magic-body/).
7576
7577 * dom/Document.cpp:
7578 (WebCore::Document::body):
7579 * page/FrameView.cpp:
7580 (WebCore::FrameView::layout):
7581 * rendering/RenderBox.cpp:
7582 (WebCore::RenderBox::styleDidChange):
7583 (WebCore::RenderBox::paintRootBoxDecorations):
7584 (WebCore::RenderBox::paintBoxDecorations):
7585 (WebCore::RenderBox::repaintLayerRectsForImage):
7586
weinig@apple.com91cdcd52008-10-14 19:55:12 +000075872008-10-14 Dimitri Glazkov <dglazkov@chromium.org>
7588
7589 Reviewed and landed by Sam Weinig.
7590
7591 Due to change in spec (http://dev.w3.org/2006/webapi/selectors-api/#namespace),
7592 remove NSResolver code, leaving only checking for selectors that need
7593 NS resolution and throwing a coresponding error.
7594
7595 * WebCore.pro:
7596 * WebCore.vcproj/WebCore.vcproj:
7597 * WebCore.xcodeproj/project.pbxproj:
7598 * WebCoreSources.bkl:
7599 * bindings/js/JSDocumentCustom.cpp:
7600 * bindings/js/JSDocumentFragmentCustom.cpp:
7601 * bindings/js/JSElementCustom.cpp:
7602 * bindings/js/JSNSResolver.cpp: Removed.
7603 * bindings/js/JSNSResolver.h: Removed.
7604 * dom/Document.idl:
7605 * dom/DocumentFragment.idl:
7606 * dom/Element.idl:
7607 * dom/NSResolver.h: Removed.
7608 * dom/NSResolver.idl: Removed.
7609 * dom/Node.h:
7610 * dom/Node.cpp:
7611 (WebCore::forEachTagSelector):
7612 (WebCore::SelectorNeedsNamespaceResolutionFunctor::operator()):
7613 (WebCore::selectorNeedsNamespaceResolution):
7614 (WebCore::Node::querySelector):
7615 (WebCore::Node::querySelectorAll):
7616
darin@apple.com2b4eb8f2008-10-14 19:19:33 +000076172008-10-14 Darin Adler <darin@apple.com>
7618
7619 Reviewed by Sam Weinig (all but the FormDataListItem rename).
7620
7621 - https://bugs.webkit.org/show_bug.cgi?id=21593
7622 Bug 21593: add multiple-file support to HTMLFormElement
7623
7624 * html/FormDataList.cpp: Removed appendFile since it's now inline.
7625 Also took incorrect old copyrights off of this file that are left
7626 over from when it was split.
7627 * html/FormDataList.h: Ditto. Renamed FormDataListItem to Item and
7628 made it a member of FormDataList. Changed it to hold a File object
7629 instead of a path. And made its data members private. Changed
7630 FormDataList::appendFile accordingly.
7631
7632 * html/HTMLFormElement.cpp:
7633 (WebCore::HTMLFormElement::formData): Updated for above changes.
7634 Removed the code that special-cases HTMLInputElement, because now
7635 the FormDataListItem has everything we need. And if there are
7636 multiple files, we'll get multiple list items for them.
7637
7638 * html/HTMLInputElement.cpp:
7639 (WebCore::HTMLInputElement::appendFormData): Changed the code for
7640 <input type=file> to use File objects instead of path strings and
7641 also to append multiple files if the file list has them.
7642
vestbo@webkit.org03ca7582008-10-14 08:38:41 +000076432008-10-14 Tor Arne Vestbø <tavestbo@trolltech.com>
7644
7645 Reviewed by Simon.
vestbo@webkit.org61042592008-10-14 12:50:51 +00007646
7647 Fix QtWebKit scrollbar painting errors
7648
7649 * platform/qt/ScrollbarThemeQt.cpp:
7650 (WebCore::ScrollbarThemeQt::paint):
7651 (WebCore::ScrollbarThemeQt::paintScrollCorner):
7652
76532008-10-14 Tor Arne Vestbø <tavestbo@trolltech.com>
7654
7655 Reviewed by Simon.
vestbo@webkit.org03ca7582008-10-14 08:38:41 +00007656
vestbo@webkit.org084e5f62008-10-14 08:43:01 +00007657 Fix scrollbar arrows for horizontal scrollbars
7658
7659 * platform/qt/ScrollbarThemeQt.cpp:
7660 (WebCore::styleOptionSlider):
7661
76622008-10-14 Tor Arne Vestbø <tavestbo@trolltech.com>
7663
7664 Reviewed by Simon.
7665
vestbo@webkit.org03ca7582008-10-14 08:38:41 +00007666 Use style-painter to draw scrollbars in ScrollbarThemeQt
7667
7668 This has the benefit of setting up the painter properly without
7669 antialiasing and saving and restoring the brush. It also ensures
7670 that we use the style of the QWebView over the QApplication style
7671 if possible.
7672
7673 * platform/qt/RenderThemeQt.cpp:
7674 (WebCore::StylePainter::StylePainter):
7675 (WebCore::StylePainter::init):
7676 * platform/qt/RenderThemeQt.h:
7677 * platform/qt/ScrollbarThemeQt.cpp:
7678 (WebCore::ScrollbarThemeQt::paint):
7679
hyatt@apple.com8c2a2e62008-10-14 06:12:14 +000076802008-10-13 David Hyatt <hyatt@apple.com>
7681
hyatt@apple.com2768a4b2008-10-14 06:45:52 +00007682 Add support for CSS transitions on some SVG properties. This patch is intended to be a guideline
7683 for how to add support for the rest.
7684
7685 Reviewed by Oliver Hunt
7686
7687 * page/animation/AnimationBase.cpp:
7688 (WebCore::ensurePropertyMap):
7689 * rendering/style/RenderStyle.h:
7690 (WebCore::RenderStyle::fillOpacity):
7691 (WebCore::RenderStyle::setFillOpacity):
7692 (WebCore::RenderStyle::strokeOpacity):
7693 (WebCore::RenderStyle::setStrokeOpacity):
7694 (WebCore::RenderStyle::floodOpacity):
7695 (WebCore::RenderStyle::setFloodOpacity):
7696
76972008-10-13 David Hyatt <hyatt@apple.com>
7698
hyatt@apple.comda1f6322008-10-14 06:29:36 +00007699 <rdar://problem/6289712> REGRESSION(r37432-37490): Scroll bar is not drawn in Bookmark View, Preferences sheets.
7700
7701 Fix for disabled scrollbars not painting in Windows Safari. Make sure that the Windows theme
7702 implements paintTrackBackground so that when the thumb is not present the track still paints.
7703
7704 Reviewed by Oliver Hunt
7705
7706 * platform/ScrollbarThemeComposite.cpp:
7707 (WebCore::ScrollbarThemeComposite::paint):
7708 * platform/win/ScrollbarThemeWin.cpp:
7709 (WebCore::ScrollbarThemeWin::paintTrackBackground):
7710 * platform/win/ScrollbarThemeWin.h:
7711
77122008-10-13 David Hyatt <hyatt@apple.com>
7713
hyatt@apple.com8c2a2e62008-10-14 06:12:14 +00007714 Fix over-invalidation of native scrollbars.
7715
7716 Reviewed by Oliver Hunt
7717
7718 * platform/Scrollbar.h:
7719 (WebCore::Scrollbar::styleChanged):
7720 * platform/mac/ScrollbarThemeMac.mm:
7721 (+[ScrollbarPrefsObserver appearancePrefsChanged:]):
7722 * rendering/RenderScrollbar.cpp:
7723 (WebCore::RenderScrollbar::styleChanged):
7724
alp@webkit.orga3417882008-10-14 04:14:38 +000077252008-10-13 Alp Toker <alp@nuanti.com>
7726
7727 Fix autotools dist build target by listing recently added header
7728 files only. Not reviewed.
7729
7730 * GNUmakefile.am:
7731
mrowe@apple.com5c9cb4d2008-10-14 02:28:46 +000077322008-10-13 Mark Rowe <mrowe@apple.com>
7733
7734 Reviewed by Brady Eidson.
7735
7736 Don't run a SQLite query on every iteration of the sync thread when the query
7737 will touch a large portion of the icon database while performing no useful work.
7738
7739 * loader/icon/IconDatabase.cpp:
7740 (WebCore::IconDatabase::writeToDatabase): Don't call checkForDanglingPageURLs unless
7741 we modified the database.
7742 (WebCore::IconDatabase::checkForDanglingPageURLs): Don't do any work in a release build
7743 unless we've been asked to prune any dangling pageURLs that we find.
7744
mjs@apple.com268962e2008-10-14 01:21:43 +000077452008-10-13 Maciej Stachowiak <mjs@apple.com>
7746
7747 Rubber stamped by Mark Rowe.
7748
7749 - use gcc 4.2 when building with Xcode 3.1 or newer on Leopard, even though this is not the default
7750
7751 * Configurations/DebugRelease.xcconfig:
7752
hyatt@apple.comc3ed34a2008-10-14 00:59:46 +000077532008-10-13 David Hyatt <hyatt@apple.com>
7754
7755 Make dropdown lists on Windows work with CSS custom scrollbars.
7756
7757 Reviewed by Adele
7758
7759 * platform/PopupMenu.h:
7760 (WebCore::PopupMenu::scrollbarCornerPresent):
7761 * platform/PopupMenuClient.h:
7762 * platform/win/PopupMenuWin.cpp:
7763 (WebCore::PopupMenu::show):
7764 * rendering/RenderMenuList.cpp:
7765 (WebCore::RenderMenuList::createScrollbar):
7766 * rendering/RenderMenuList.h:
7767 * rendering/RenderTextControl.cpp:
7768 (WebCore::RenderTextControl::createScrollbar):
7769 * rendering/RenderTextControl.h:
7770
cfleizach@apple.com12468c12008-10-13 22:48:19 +000077712008-10-13 Chris Fleizach <cfleizach@apple.com>
7772
7773 Reviewed by Beth Dakin.
7774
7775 <rdar://problem/6271864> Links from image maps not being included in AXLinkUIElements
7776
7777 Links from image maps were not being included in the web area's AXLinkUIElements attribute.
7778 The position of image map links was being reported incorrectly and the parent-chain
7779 hierarchy for image map links was incorrect because image map links did not have a reference
7780 to their parent image.
7781
7782 Test: accessibility/document-links.html
7783
7784 * page/AccessibilityImageMapLink.cpp:
7785 (WebCore::AccessibilityImageMapLink::parentObject):
7786 (WebCore::AccessibilityImageMapLink::actionElement):
7787 (WebCore::AccessibilityImageMapLink::elementRect):
7788 * page/AccessibilityImageMapLink.h:
7789 (WebCore::AccessibilityImageMapLink::setHTMLMapElement):
7790 (WebCore::AccessibilityImageMapLink::setParent):
7791 * page/AccessibilityObject.cpp:
7792 * page/AccessibilityObject.h:
7793 * page/AccessibilityRenderObject.cpp:
7794 (WebCore::AccessibilityRenderObject::accessibilityParentForImageMap):
7795 (WebCore::AccessibilityRenderObject::getDocumentLinks):
7796 (WebCore::AccessibilityRenderObject::addChildren):
7797 * page/AccessibilityRenderObject.h:
7798 * page/mac/AccessibilityObjectWrapper.mm:
7799 (-[AccessibilityObjectWrapper accessibilityAttributeValue:]):
7800
hyatt@apple.com59696ac2008-10-13 21:53:07 +000078012008-10-13 David Hyatt <hyatt@apple.com>
7802
hyatt@apple.com456dd872008-10-13 22:42:59 +00007803 Make RenderListBox work with CSS scrollbars. Refactoring this code to support creation/destruction in
7804 the same way RenderLayer does also fixes a bug where the PLT would assert on the next-to-last page (no
7805 idea how to make a test case for that, though, since I couldn't repro without running the whole PLT).
7806
7807 Reviewed by Tim Hatcher
7808
7809 Added scrollbars/listbox-scrollbar-combinations.html
7810
7811 * rendering/RenderListBox.cpp:
7812 (WebCore::RenderListBox::~RenderListBox):
7813 (WebCore::RenderListBox::updateFromElement):
7814 (WebCore::RenderListBox::createScrollbar):
7815 (WebCore::RenderListBox::destroyScrollbar):
7816 (WebCore::RenderListBox::setHasVerticalScrollbar):
7817 * rendering/RenderListBox.h:
7818
78192008-10-13 David Hyatt <hyatt@apple.com>
7820
hyatt@apple.com59696ac2008-10-13 21:53:07 +00007821 In order to always match the :corner-present pseudo-class properly, delay initial updating of
7822 scrollbar styles until the layer has the scrollbars in its member variables.
7823
7824 Reviewed by Tim Hatcher
7825
7826 * rendering/RenderLayer.cpp:
7827 (WebCore::RenderLayer::setHasHorizontalScrollbar):
7828 (WebCore::RenderLayer::setHasVerticalScrollbar):
7829 * rendering/RenderScrollbar.cpp:
7830 (WebCore::RenderScrollbar::RenderScrollbar):
7831
weinig@apple.comfe8ca432008-10-13 21:41:40 +000078322008-10-13 Sam Weinig <sam@webkit.org>
7833
7834 Reviewed by Dan Bernstein.
7835
7836 Fix for https://bugs.webkit.org/show_bug.cgi?id=21577
7837 5 false positive StructureID leaks
7838
7839 In WebCore, we intentionally leak the common JSGlobalData which in turn
7840 leaks 5 StructureIDs. Use the new JSGlobalData::createLeaked in order to
7841 ignore the StructureIDs leaked within.
7842
7843 * bindings/js/JSDOMWindowBase.cpp:
7844 (WebCore::JSDOMWindowBase::commonJSGlobalData):
7845
hyatt@apple.com097c92d2008-10-13 20:21:35 +000078462008-10-13 David Hyatt <hyatt@apple.com>
7847
hyatt@apple.come2a30fd2008-10-13 21:23:21 +00007848 Add support for the :corner-present pseudoclass, which enables scrollbar pieces to change their
7849 artwork based on whether there is a scrollbar corner present.
7850
7851 Reviewed by Tim Hatcher
7852
7853 * css/CSSSelector.cpp:
7854 (WebCore::CSSSelector::extractPseudoType):
7855 * css/CSSSelector.h:
7856 (WebCore::CSSSelector::):
7857 * css/CSSStyleSelector.cpp:
7858 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
7859 * platform/ScrollView.cpp:
7860 (WebCore::ScrollView::scrollbarCornerPresent):
7861 * platform/ScrollView.h:
7862 * platform/ScrollbarClient.h:
7863 * rendering/RenderLayer.cpp:
7864 (WebCore::cornerRect):
7865 (WebCore::scrollCornerRect):
7866 (WebCore::resizerCornerRect):
7867 (WebCore::RenderLayer::scrollbarCornerPresent):
7868 (WebCore::RenderLayer::setHasHorizontalScrollbar):
7869 (WebCore::RenderLayer::setHasVerticalScrollbar):
7870 * rendering/RenderLayer.h:
7871 (WebCore::RenderLayer::horizontalScrollbar):
7872 (WebCore::RenderLayer::verticalScrollbar):
7873 * rendering/RenderListBox.h:
7874 (WebCore::RenderListBox::scrollbarCornerPresent):
7875
78762008-10-13 David Hyatt <hyatt@apple.com>
7877
hyatt@apple.com2c1832e2008-10-13 20:56:29 +00007878 Make resizers and scrollbar corners respect :window-inactive (one more bug fix and then Tim's master
7879 test case for all this can land).
7880
7881 Reviewed by Tim Hatcher
7882
7883 * css/CSSStyleSelector.cpp:
7884 (WebCore::CSSStyleSelector::SelectorChecker::checkSelector):
7885 (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
7886 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
7887 * rendering/RenderLayer.cpp:
7888 (WebCore::RenderLayer::paintOverflowControls):
7889 (WebCore::RenderLayer::paintScrollCorner):
7890 (WebCore::RenderLayer::paintResizer):
7891 (WebCore::RenderLayer::styleChanged):
7892 (WebCore::RenderLayer::updateScrollCornerStyle):
7893 (WebCore::RenderLayer::updateResizerStyle):
7894 * rendering/RenderLayer.h:
7895 * rendering/RenderScrollbar.cpp:
7896 (WebCore::RenderScrollbar::paint):
7897 * rendering/RenderScrollbarPart.cpp:
7898 (WebCore::RenderScrollbarPart::paintIntoRect):
7899
79002008-10-13 David Hyatt <hyatt@apple.com>
7901
hyatt@apple.com097c92d2008-10-13 20:21:35 +00007902 Rework resizer and scroll corner painting so that custom resizers and scroll corners will paint
7903 and invalidate properly as images load, etc.
7904
7905 Reviewed by Tim Hatcher
7906
7907 * rendering/RenderLayer.cpp:
7908 (WebCore::cornerRect):
7909 (WebCore::scrollCornerRect):
7910 (WebCore::resizerCornerRect):
7911 (WebCore::RenderLayer::positionOverflowControls):
7912 (WebCore::RenderLayer::paintOverflowControls):
7913 (WebCore::RenderLayer::paintScrollCorner):
7914 (WebCore::RenderLayer::paintResizer):
7915 (WebCore::RenderLayer::isPointInResizeControl):
7916 (WebCore::RenderLayer::hitTestOverflowControls):
7917 (WebCore::RenderLayer::styleChanged):
7918 * rendering/RenderLayer.h:
7919 * rendering/RenderObject.h:
7920 (WebCore::RenderObject::setRect):
7921 * rendering/RenderScrollbarPart.cpp:
7922 (WebCore::RenderScrollbarPart::styleDidChange):
7923 (WebCore::RenderScrollbarPart::imageChanged):
7924
jmalonzo@webkit.org4d9c9522008-10-13 11:44:35 +000079252008-10-13 Marco Barisione <marco.barisione@collabora.co.uk>
7926
7927 Reviewed by Darin Adler. Landed by Jan Alonzo.
7928
7929 WebKit GTK Port needs a smartpointer to handle g_free (GFreePtr?)
7930 http://bugs.webkit.org/show_bug.cgi?id=20483
7931
7932 Start the conversion to use GOwnPtr and fix a memory leak.
7933
7934 * platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp:
7935 (WebCore::mediaPlayerPrivateErrorCallback):
7936
jhoneycutt@apple.com6bc9f352008-10-13 02:43:30 +000079372008-10-12 Jon Honeycutt <jhoneycutt@apple.com>
7938
7939 Windows build fix.
7940
7941 * loader/TextResourceDecoder.cpp:
7942
darin@apple.com21120fc2008-10-13 02:13:47 +000079432008-10-12 Darin Fisher <darin@chromium.org>
7944
7945 Reviewed by Darin Adler.
7946
7947 - fix https://bugs.webkit.org/show_bug.cgi?id=21229
7948 Bug 21229: NetworkStateNotifier.h lacks a #include <windows.h> for PLATFORM(WIN)
7949
7950 * platform/network/NetworkStateNotifier.h: Add the #include.
7951
darin@apple.com6de19a02008-10-13 01:37:13 +000079522008-10-12 Darin Adler <darin@apple.com>
7953
7954 Based on work by Holger Freyther.
7955
7956 - part of https://bugs.webkit.org/show_bug.cgi?id=20953
7957 Split WidthIterator into its own source file.
7958
7959 * GNUmakefile.am: Added new source files.
7960 * WebCore.vcproj/WebCore.vcproj: Ditto.
7961 * WebCore.xcodeproj/project.pbxproj: Ditto.
7962 * WebCoreSources.bkl: Ditto.
7963
7964 * platform/graphics/Font.cpp: Use WidthIterator from its new place.
7965 * platform/graphics/WidthIterator.cpp: Added.
7966 * platform/graphics/WidthIterator.h: Added.
7967
darin@apple.com755e9c22008-10-13 01:13:29 +000079682008-10-12 Tony Chang <tony@chromium.org>
7969
7970 Reviewed by Sam Weinig.
7971
7972 - https://bugs.webkit.org/show_bug.cgi?id=21480
7973 Remove duplicate definitions of MimeClassInfo and PluginInfo.
7974
7975 * plugins/PluginInfoStore.cpp: Added an include.
7976 * plugins/PluginInfoStore.h: Removed struct declarations.
7977
darin@apple.com365a7d82008-10-13 01:07:04 +000079782008-10-12 Darin Adler <darin@apple.com>
7979
7980 Reviewed by Dan Bernstein.
7981
7982 - https://bugs.webkit.org/show_bug.cgi?id=21563
7983 Bug 21563: platform Gradient class should not use the CSS parser
7984
7985 * platform/graphics/Gradient.cpp: Removed the overload of addColorStop
7986 that accepts a CSS color string. That's handled in the DOM now, not here.
7987 (WebCore::Gradient::addColorStop): Use getRGBA instead of having our own
7988 copy of it here.
7989 * platform/graphics/Gradient.h: More of the same. Tweak formatting a bit.
7990
darin@apple.comad096ca2008-10-13 00:58:00 +000079912008-10-12 Glenn Wilson <gwilson@google.com>
7992
7993 Reviewed by Darin Adler.
7994
7995 - https://bugs.webkit.org/show_bug.cgi?id=20461
7996
7997 Added feature to allow multi-line inputs into text fields.
7998 HTMLInputElement would cut the set text at the first 'system' character,
7999 so it would truncate at the first carriage return or newline.
8000 This fix modifies that behavior to truncate at any non-space system character
8001 but changes \r, \n, and \r\n to a single space.
8002
8003 Tests: editing/pasteboard/paste-multiline-text-input.html
8004
8005 * html/HTMLInputElement.cpp:
8006 (WebCore::HTMLInputElement::constrainValue):
8007
darin@apple.comdcbbe942008-10-13 00:25:00 +000080082008-10-12 Dirk Schulze <vbs85@gmx.de>
8009
8010 Reviewed by Eric Seidel.
8011
8012 - https://bugs.webkit.org/show_bug.cgi?id=20435
8013
8014 Added exception codes to canvas gradients to match current specification.
8015
8016 Tests: fast/canvas/gradient-addColorStop-with-invalid-color.html
8017 fast/canvas/linearGradient-infinite-values.html
8018 fast/canvas/radialGradient-infinite-values.html
8019
8020 * html/CanvasGradient.cpp:
8021 (WebCore::CanvasGradient::addColorStop):
8022 * html/CanvasGradient.h:
8023 * html/CanvasGradient.idl:
8024 * html/CanvasRenderingContext2D.cpp:
8025 (WebCore::CanvasRenderingContext2D::createLinearGradient):
8026 (WebCore::CanvasRenderingContext2D::createRadialGradient):
8027 * html/CanvasRenderingContext2D.h:
8028 * html/CanvasRenderingContext2D.idl:
8029
darin@apple.come4c4b502008-10-12 23:59:09 +000080302008-10-12 Eric Roman <eroman@chromium.org>
8031
8032 - https://bugs.webkit.org/show_bug.cgi?id=20246
8033 Implement RenderThemeWin::systemColor() to match Windows colors.
8034
8035 Reviewed by David Hyatt.
8036
8037 * rendering/RenderThemeWin.cpp:
8038 (WebCore::cssValueIdToSysColorIndex):
8039 (WebCore::RenderThemeWin::systemColor):
8040 * rendering/RenderThemeWin.h:
8041
darin@apple.com734c7252008-10-12 23:50:45 +000080422008-10-12 Aaron Bockover <abockover@novell.com>
8043
8044 Reviewed by Alp Toker.
8045
8046 Add version parsing for Flash, and the PluginQuirkDontSetNullWindowHandleOnDestroy
8047 plugin quirk if Flash 10 or newer since at least in b218, setting a NULL window
8048 handler on destroy crashes WebKit <https://bugs.webkit.org/show_bug.cgi?id=19859>
8049
8050 * plugins/gtk/PluginPackageGtk.cpp:
8051
darin@apple.comee5d0dc2008-10-12 23:01:25 +000080522008-10-12 Jonathon Jongsma <jonathon.jongsma@collabora.co.uk>
8053
8054 Reviewed by Oliver Hunt.
8055
8056 - https://bugs.webkit.org/show_bug.cgi?id=19331
8057 <rdar://problem/5984433>: Drag and drop of links in edit mode violates assert in MoveSelectionCommand::doApply()
8058
8059 * page/DragController.cpp:
8060 (WebCore::DragController::startDrag): When a link is dragged without any
8061 text selected (note: for this to work, the EditableLinkBehavior setting must be
8062 set to 'live' or 'default') and then dropped into an editable html document it
8063 will eventually violate an ASSERT in MoveSelectionCommand that requires that there
8064 is a selection. To prevent this, expand the selection to the enclosing anchor tag
8065 when the drag begins.
8066
darin@apple.com2ce65d52008-10-12 22:49:46 +000080672008-10-12 Darin Adler <darin@apple.com>
8068
darin@apple.comb3de9be2008-10-12 22:53:15 +00008069 Reviewed by Mark Rowe.
8070
8071 - fix https://bugs.webkit.org/show_bug.cgi?id=21557
8072 Bug 21557: REGRESSION: generated-layer-scrollbar-crash.html is crashing
8073
8074 * rendering/RenderObject.cpp:
8075 (WebCore::RenderObject::getPseudoStyle): Keep walking up the parent chain
8076 until we hit an Element. Nowadays, Node::isElementNode() is just as efficient
8077 as RenderObject::isText(), and this guarantees that the node can be cast to
8078 Element*, which is done just below. The reason this is hit is that RenderLayer
8079 can call getPseudoStyle on a RenderView, which has the document as its
8080 element() -- and a document is neither a Text node nor an Element. A loose
8081 end is that this seems to mean you can't style the scrollbar corner or the
8082 resizer on a RenderView. Hyatt may want to look into that later.
8083
80842008-10-12 Darin Adler <darin@apple.com>
8085
darin@apple.com2ce65d52008-10-12 22:49:46 +00008086 Reviewed by Sam Weinig.
8087
8088 - https://bugs.webkit.org/show_bug.cgi?id=21556
8089 Bug 21556: non-ASCII digits are allowed in places where only ASCII should be
8090
8091 Tests: fast/dom/HTMLFontElement/size-attribute.html
8092 fast/dom/HTMLInputElement/size-attribute.html
8093 fast/dom/HTMLTableElement/cellpadding-attribute.html
8094
8095 * html/HTMLFontElement.cpp:
8096 (WebCore::parseFontSizeNumber): Use isASCIIDigit instead of
8097 Unicode::isDigit, since non-ASCII digits are not valid here.
8098 * html/HTMLFontElement.h: Tweaked formatting a bit and removed
8099 the unneeded destructor declaration.
8100 * platform/text/String.cpp:
8101 (WebCore::lengthOfCharactersAsInteger): Use isASCIIDigit instead
8102 of Unicode::isDigit, since non-ASCII digits are not valid.
8103
darin@apple.com39669162008-10-12 22:38:23 +000081042008-10-12 Jungshik Shin <jshin@chromium.org>
8105
8106 Reviewed by Darin Adler.
8107
8108 Treat x-user-defined as windows-1252 for html files with meta charset
8109 declaration to be compatible with Indian web sites.
8110 ( https://bugs.webkit.org/show_bug.cgi?id=18270 )
8111
8112 Test: fast/encoding/charset-xuser-defined.html
8113
8114 * loader/TextResourceDecoder.cpp:
8115 (WebCore::TextResourceDecoder::setEncoding):
8116
weinig@apple.com68017df2008-10-12 20:43:15 +000081172008-10-12 Sam Weinig <sam@webkit.org>
8118
weinig@apple.com590ccdb2008-10-12 21:32:38 +00008119 Reviewed by Dan Bernstein.
8120
8121 Remove unneeded forward declaration.
8122
8123 * platform/graphics/ImageBuffer.h:
8124
81252008-10-12 Sam Weinig <sam@webkit.org>
8126
weinig@apple.com68017df2008-10-12 20:43:15 +00008127 Reviewed by Darin Adler.
8128
8129 Fix for https://bugs.webkit.org/show_bug.cgi?id=21560
8130 Layering violation: String should not be responsible for creating Lengths
8131
8132 It was a layering violation for String to know haw to parse
8133 into Lengths, LengthArrays, and CoordsArrays.
8134
8135 * GNUmakefile.am:
8136 * WebCore.pro:
8137 * WebCore.vcproj/WebCore.vcproj:
8138 * WebCore.xcodeproj/project.pbxproj:
8139 * WebCoreSources.bkl:
8140 * html/HTMLAreaElement.cpp:
8141 (WebCore::HTMLAreaElement::parseMappedAttribute):
8142 * html/HTMLFrameSetElement.cpp:
8143 (WebCore::HTMLFrameSetElement::parseMappedAttribute):
8144 * platform/text/AtomicString.h:
8145 (WebCore::AtomicString::percentage):
8146 * platform/text/PlatformString.h:
8147 * platform/text/String.cpp:
8148 * platform/text/StringImpl.cpp:
8149 * platform/text/StringImpl.h:
8150 * rendering/Length.cpp: Added.
8151 (WebCore::parseLength):
8152 (WebCore::countCharacter):
8153 (WebCore::newCoordsArray):
8154 (WebCore::newLengthArray):
8155 * rendering/Length.h:
8156 (WebCore::LengthSize::LengthSize):
8157
darin@apple.com231607b2008-10-12 18:23:56 +000081582008-10-12 Brad Garcia <bgarcia@google.com>
8159
8160 Reviewed by Darin Adler.
8161
8162 Interpret fractional percentage values for %MultiLength values.
8163 Fix for https://bugs.webkit.org/show_bug.cgi?id=3591
8164 Test: fast/frames/frame-length-fractional-percentage.html
8165
8166 * platform/text/StringImpl.cpp:
8167 (WebCore::parseLength):
8168
timothy@apple.combba898e2008-10-12 17:04:51 +000081692008-10-12 Timothy Hatcher <timothy@apple.com>
8170
8171 Remember the expanded state of the rules in the Styles pane. So
8172 collapsing a rule will persist across all the elements that have
8173 that same rule. The same applies to Computed Style, so the Computed
8174 Style rule is now collapsed by default. This should help lessen the
8175 confusion on why Computed Style can't be edited (a common confusion.)
8176
8177 https://bugs.webkit.org/show_bug.cgi?id=21553
8178
8179 Reviewed by Darin Adler.
8180
8181 * inspector/front-end/PropertiesSection.js:
8182 (WebInspector.PropertiesSection): Set the _expanded property directly,
8183 instead of using the setter. Expanded is the default, so no work is needed.
8184 This prevents calling StylesSidebarPane.collapse before object initialization
8185 is complete.
8186 * inspector/front-end/StylesSidebarPane.js:
8187 (WebInspector.StylesSidebarPane.prototype.update): Check the Preferences object
8188 for the expanded state of the StylePropertiesSection. Collapse computed style
8189 by default and expand everything else.
8190 (WebInspector.StylePropertiesSection): Make a semi unique identifier to be used
8191 when remembering expanded state.
8192 (WebInspector.StylePropertiesSection.prototype.expand): Set the expanded state
8193 to true for this identifier in Preferences.styleRulesExpandedState. Don't remember
8194 the state if the dontRememberState property is true.
8195 (WebInspector.StylePropertiesSection.prototype.collapse): Set the expanded state
8196 to false for this identifier in Preferences.styleRulesExpandedState.
8197 * inspector/front-end/inspector.js:
8198 (Preferences.styleRulesExpandedState): Initialize to an empty object.
8199
jmalonzo@webkit.org1a75c1b2008-10-12 11:47:04 +000082002008-10-12 Jan Michael Alonzo <jmalonzo@webkit.org>
8201
8202 Reviewed by Alp Toker.
8203
8204 [Gtk] Remove libWebCoreJS.la when doing make clean
8205 https://bugs.webkit.org/show_bug.cgi?id=21544
8206
8207 Remove libWebCoreJS.la when doing a clean target
8208
8209 * GNUmakefile.am: add libWebCoreJS.la to CLEANFILES
8210
alp@webkit.org85a7e4f2008-10-12 06:50:21 +000082112008-10-11 Alp Toker <alp@nuanti.com>
8212
8213 Reviewed by Darin Adler.
8214
8215 https://bugs.webkit.org/show_bug.cgi?id=20592
8216 The focus ring is not shown while navigating on some pages
8217
8218 Fix drawFocusRing() so it doesn't depend on the current graphics
8219 state, thus matching other platforms which already work this way.
8220
8221 This patch provides two code paths: one using straight Cairo and
8222 one specialised for the GTK+ port with a more conventional appearance.
8223
8224 Also change focusRingColor() to return a null color, allowing the
8225 focus ring to pick up the style's current color if it isn't overridden
8226 with CSS.
8227
8228 * platform/graphics/cairo/GraphicsContextCairo.cpp:
8229 (WebCore::GraphicsContext::drawFocusRing):
8230 * platform/gtk/TemporaryLinkStubs.cpp:
8231 (WebCore::focusRingColor):
8232
mitz@apple.com7378cec2008-10-12 04:56:20 +000082332008-10-11 Dan Bernstein <mitz@apple.com>
8234
8235 Rubber-stamped by Sam Weinig.
8236
8237 - change all internal callers to use Cache::evict() instead of remove()
8238
8239 * loader/Cache.cpp:
8240 (WebCore::Cache::revalidateResource):
8241 (WebCore::Cache::revalidationSucceeded):
8242 (WebCore::Cache::pruneDeadResources):
8243 (WebCore::Cache::setDisabled):
8244
hyatt@apple.com0578b132008-10-12 04:20:26 +000082452008-10-11 David Hyatt <hyatt@apple.com>
8246
hyatt@apple.com668b6712008-10-12 04:26:47 +00008247 Make sure invalidatePart knows how to invalidate the track and scrollbar backgrounds.
8248
8249 Reviewed by Tim Hatcher
8250
8251 * platform/ScrollbarThemeComposite.cpp:
8252 (WebCore::ScrollbarThemeComposite::invalidatePart):
8253
82542008-10-11 David Hyatt <hyatt@apple.com>
8255
hyatt@apple.com0578b132008-10-12 04:20:26 +00008256 https://bugs.webkit.org/show_bug.cgi?id=21549 (regression in before/after track pieces).
8257
8258 Also fixed resizer positioning problems.
8259
8260 Reviewed by Tim Hatcher
8261
8262 * platform/ScrollbarThemeComposite.cpp:
8263 (WebCore::ScrollbarThemeComposite::splitTrack):
8264 (WebCore::ScrollbarThemeComposite::trackPosition):
8265 (WebCore::ScrollbarThemeComposite::trackLength):
8266 * platform/ScrollbarThemeComposite.h:
8267 (WebCore::ScrollbarThemeComposite::constrainTrackRectToTrackPieces):
8268 * rendering/RenderLayer.cpp:
8269 (WebCore::scrollCornerRect):
8270 (WebCore::RenderLayer::positionOverflowControls):
8271 (WebCore::RenderLayer::paintOverflowControls):
8272 (WebCore::RenderLayer::isPointInResizeControl):
8273 (WebCore::RenderLayer::hitTestOverflowControls):
8274 * rendering/RenderScrollbarTheme.cpp:
8275 (WebCore::RenderScrollbarTheme::constrainTrackRectToTrackPieces):
8276 * rendering/RenderScrollbarTheme.h:
8277
alp@webkit.org9c37e8f2008-10-12 03:33:28 +000082782008-10-11 Alp Toker <alp@nuanti.com>
8279
8280 Reviewed by David Hyatt.
8281
8282 Implement release/retain for Widget GTK+.
8283
8284 * platform/Widget.cpp:
8285 * platform/gtk/WidgetGtk.cpp:
8286 (WebCore::Widget::~Widget):
8287 (WebCore::Widget::releasePlatformWidget):
8288 (WebCore::Widget::retainPlatformWidget):
8289
mitz@apple.comf0f7ed82008-10-11 22:53:28 +000082902008-10-11 Dan Bernstein <mitz@apple.com>
8291
8292 Reviewed by Sam Weinig.
8293
8294 - rename WebCoreSetAlwaysUseATSU to WebCoreSetAlwaysUsesComplexTextCodePath
8295 and add a corresponding getter; add the same functions on Windows
8296
8297 * WebCore.base.exp:
8298 * platform/graphics/Font.cpp:
8299 (WebCore::Font::setCodePath):
8300 (WebCore::codePath):
8301 (WebCore::Font::canUseGlyphCache):
8302 * platform/graphics/Font.h:
8303 * platform/mac/WebCoreTextRenderer.h:
8304 * platform/mac/WebCoreTextRenderer.mm:
8305 (WebCoreSetAlwaysUsesComplexTextCodePath):
8306 (WebCoreAlwaysUsesComplexTextCodePath):
8307 * platform/win/WebCoreTextRenderer.cpp:
8308 (WebCore::WebCoreSetAlwaysUsesComplexTextCodePath):
8309 (WebCore::WebCoreAlwaysUsesComplexTextCodePath):
8310 * platform/win/WebCoreTextRenderer.h:
8311
weinig@apple.comeb4243f2008-10-11 22:10:38 +000083122008-10-11 Sam Weinig <sam@webkit.org>
8313
8314 Reviewed by Cameron Zwarich.
8315
weinig@apple.com5f7c6162008-10-11 22:20:09 +00008316 Stop leaking the event parameter names. The protected strings were showing up
8317 in the caches window after one use. No measurable performance loss.
8318
8319 * bindings/js/JSEventListener.cpp:
8320 (WebCore::eventParameterName):
8321
83222008-10-11 Sam Weinig <sam@webkit.org>
8323
8324 Reviewed by Cameron Zwarich.
8325
weinig@apple.comeb4243f2008-10-11 22:10:38 +00008326 Remove unused function getNodeEventListener.
8327
8328 * bindings/js/JSEventListener.cpp:
8329 * bindings/js/JSEventListener.h:
8330
hyatt@apple.comf2452672008-10-11 07:50:03 +000083312008-10-11 David Hyatt <hyatt@apple.com>
8332
8333 Add support for both positive and negative margins to tracks and track pieces.
8334
8335 Reviewed by Tim Hatcher
8336
8337 * platform/ScrollbarThemeComposite.cpp:
8338 (WebCore::ScrollbarThemeComposite::paint):
8339 (WebCore::ScrollbarThemeComposite::hitTest):
8340 (WebCore::ScrollbarThemeComposite::splitTrack):
8341 (WebCore::ScrollbarThemeComposite::trackPieceRects):
8342 (WebCore::ScrollbarThemeComposite::trackPosition):
8343 (WebCore::ScrollbarThemeComposite::trackLength):
8344 * platform/ScrollbarThemeComposite.h:
8345 (WebCore::ScrollbarThemeComposite::adjustTrackPieceRect):
8346 * rendering/RenderScrollbar.cpp:
8347 (WebCore::RenderScrollbar::trackRect):
8348 (WebCore::RenderScrollbar::trackPieceRectWithMargins):
8349 * rendering/RenderScrollbar.h:
8350 * rendering/RenderScrollbarPart.cpp:
8351 (WebCore::RenderScrollbarPart::computeScrollbarWidth):
8352 (WebCore::RenderScrollbarPart::computeScrollbarHeight):
8353 * rendering/RenderScrollbarTheme.cpp:
8354 (WebCore::RenderScrollbarTheme::adjustTrackPieceRect):
8355 * rendering/RenderScrollbarTheme.h:
8356
hyatt@apple.com729214e2008-10-11 06:30:47 +000083572008-10-10 David Hyatt <hyatt@apple.com>
8358
8359 Drop -webkit-scrollbar- from all the scrollbar pseudo-classes, since they are scoped to
8360 the scrollbar pseudo-elements anyway.
8361
8362 Reviewed by Tim Hatcher
8363
8364 * css/CSSSelector.cpp:
8365 (WebCore::CSSSelector::extractPseudoType):
8366 * css/CSSSelector.h:
8367 (WebCore::CSSSelector::):
8368 * css/CSSStyleSelector.cpp:
8369 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
8370
mitz@apple.comb5de9462008-10-11 06:26:59 +000083712008-10-10 Dan Bernstein <mitz@apple.com>
8372
8373 Reviewed by Sam Weinig.
8374
8375 - separate Cache::remove() into a private method and a public interface,
8376 then make Cache::pruneDeadResources() use the private method.
8377
8378 * loader/Cache.cpp:
8379 (WebCore::Cache::pruneDeadResources):
8380 (WebCore::Cache::evict):
8381 * loader/Cache.h:
8382 (WebCore::Cache::remove):
8383
hyatt@apple.comd65740c2008-10-11 05:30:39 +000083842008-10-10 David Hyatt <hyatt@apple.com>
8385
hyatt@apple.com739b8f02008-10-11 06:12:14 +00008386 Fix a math error when splitting a vertical track. Clean up more of ScrollbarThemeComposite
8387 now that the track pieces meet under the thumb.
8388
8389 Reviewed by Tim Hatcher
8390
8391 * platform/ScrollbarThemeComposite.cpp:
8392 (WebCore::ScrollbarThemeComposite::paint):
8393 (WebCore::ScrollbarThemeComposite::splitTrack):
8394
83952008-10-10 David Hyatt <hyatt@apple.com>
8396
hyatt@apple.com4c767e22008-10-11 06:04:02 +00008397 Make the track pieces of a scrollbar extend under the thumb (each gets half the thumb).
8398
8399 Reviewed by Tim Hatcher
8400
8401 * platform/ScrollbarThemeComposite.cpp:
8402 (WebCore::ScrollbarThemeComposite::hitTest):
8403 (WebCore::ScrollbarThemeComposite::splitTrack):
8404
84052008-10-10 David Hyatt <hyatt@apple.com>
8406
hyatt@apple.come8609a22008-10-11 05:54:35 +00008407 Make sure specialized ::scrollbar rules are still triggering custom scrollbar creation.
8408
8409 Reviewed by Tim Hatcher
8410
8411 * rendering/RenderLayer.cpp:
8412 (WebCore::RenderLayer::createScrollbar):
8413 * rendering/RenderScrollbar.cpp:
8414 (WebCore::RenderScrollbar::createCustomScrollbar):
8415 (WebCore::RenderScrollbar::RenderScrollbar):
8416 (WebCore::RenderScrollbar::setParent):
8417 (WebCore::RenderScrollbar::updateScrollbarParts):
8418 (WebCore::RenderScrollbar::updateScrollbarPart):
8419 * rendering/RenderScrollbar.h:
8420 * rendering/style/RenderStyle.h:
8421 (WebCore::RenderStyle::):
8422
84232008-10-10 David Hyatt <hyatt@apple.com>
8424
hyatt@apple.comd65740c2008-10-11 05:30:39 +00008425 Make sure scrollbar background images cause proper part invalidation to occur.
8426
8427 Reviewed by Tim Hatcher
8428
8429 * rendering/RenderScrollbar.cpp:
8430 (WebCore::RenderScrollbar::setHoveredPart):
8431 (WebCore::RenderScrollbar::setPressedPart):
8432 * rendering/RenderScrollbarPart.cpp:
8433 (WebCore::RenderScrollbarPart::styleDidChange):
8434 (WebCore::RenderScrollbarPart::imageChanged):
8435 * rendering/RenderScrollbarPart.h:
8436
simon.fraser@apple.com02722ea2008-10-11 00:32:39 +000084372008-10-10 Simon Fraser <simon.fraser@apple.com>
8438
8439 Reviewed by Darin Adler
8440
simon.fraser@apple.com72df8f02008-10-11 00:35:23 +00008441 https://bugs.webkit.org/show_bug.cgi?id=21538
8442
8443 The blendFunc() for TransformOperations should never mess with the
8444 operation lists by replacing some ops with identity, otherwise the lists
8445 no longer match and transitions break.
8446
8447 Test: transitions/matched-transform-functions.html
8448
8449 * page/animation/AnimationBase.cpp:
8450 (WebCore::blendFunc):
8451
84522008-10-10 Simon Fraser <simon.fraser@apple.com>
8453
8454 Reviewed by Darin Adler
8455
simon.fraser@apple.com02722ea2008-10-11 00:32:39 +00008456 https://bugs.webkit.org/show_bug.cgi?id=21537
8457
8458 Fix re-targetting a running transition; if the target property
8459 changes, we do need to make a new ImplicitAnimation.
8460
8461 Test: transitions/retargetted-transition.html
8462
8463 * page/animation/CompositeAnimation.cpp:
8464 (WebCore::CompositeAnimationPrivate::updateTransitions):
8465
oliver@apple.com7264bb52008-10-10 23:21:39 +000084662008-10-10 Oliver Hunt <oliver@apple.com>
8467
8468 Reviewed by Cameron Zwarich.
8469
8470 Part of <rdar://problem/6278147> Cannot stop a slow script -- Fix assertion.
8471
8472 When JS is terminated by the user choosing to stop a slow script
8473 the exception toString method throws, yet the console logger does
8474 not perform exception checks after logging. This leaves an
8475 exception on the Machine, which in turn results in an assertion
8476 failure next time we attempt to enter JS. The solution is just to
8477 clear the exception state after attempting to record the exception.
8478
8479 * page/Console.cpp:
8480 (WebCore::Console::reportException):
8481
hyatt@apple.comfca034d2008-10-10 21:05:07 +000084822008-10-10 David Hyatt <hyatt@apple.com>
8483
hyatt@apple.com0f129042008-10-10 22:24:15 +00008484 Make textareas work with custom CSS scrollbars and resizers. Need to access the correct renderer
8485 when looking for pseudo styles.
8486
8487 Reviewed by Tim Hatcher
8488
8489 * rendering/RenderLayer.cpp:
8490 (WebCore::RenderLayer::createScrollbar):
8491 (WebCore::RenderLayer::styleChanged):
8492
84932008-10-10 David Hyatt <hyatt@apple.com>
8494
hyatt@apple.comca798132008-10-10 22:16:24 +00008495 Add the ability to style the scroll corner and the resizer from CSS.
8496
8497 Reviewed by Tim Hatcher
8498
8499 * css/CSSSelector.cpp:
8500 (WebCore::CSSSelector::extractPseudoType):
8501 * css/CSSSelector.h:
8502 (WebCore::CSSSelector::):
8503 * css/CSSStyleSelector.cpp:
8504 (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
8505 * rendering/RenderLayer.cpp:
8506 (WebCore::RenderLayer::RenderLayer):
8507 (WebCore::RenderLayer::~RenderLayer):
8508 (WebCore::RenderLayer::paintOverflowControls):
8509 (WebCore::RenderLayer::paintScrollCorner):
8510 (WebCore::RenderLayer::paintResizer):
8511 (WebCore::RenderLayer::styleChanged):
8512 * rendering/RenderLayer.h:
8513 * rendering/RenderScrollbar.cpp:
8514 (WebCore::RenderScrollbar::updateScrollbarPart):
8515 (WebCore::RenderScrollbar::paintPart):
8516 * rendering/RenderScrollbarPart.cpp:
8517 (WebCore::RenderScrollbarPart::RenderScrollbarPart):
8518 (WebCore::RenderScrollbarPart::paintIntoRect):
8519 * rendering/RenderScrollbarPart.h:
8520 * rendering/style/RenderStyle.h:
8521 (WebCore::RenderStyle::):
8522
85232008-10-10 David Hyatt <hyatt@apple.com>
8524
hyatt@apple.comfca034d2008-10-10 21:05:07 +00008525 Make CSS scrollbars respect the OS setting regarding where buttons should be placed.
8526
8527 Reviewed by Sam Weinig
8528
8529 No test case possible, since the OS setting can vary.
8530
8531 * css/CSSSelector.cpp:
8532 (WebCore::CSSSelector::extractPseudoType):
8533 * css/CSSSelector.h:
8534 (WebCore::CSSSelector::):
8535 * css/CSSStyleSelector.cpp:
8536 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
8537 * platform/Scrollbar.h:
8538 (WebCore::Scrollbar::styleChanged):
8539 * platform/mac/ScrollbarThemeMac.mm:
8540 (+[ScrollbarPrefsObserver appearancePrefsChanged:]):
8541 (WebCore::ScrollbarThemeMac::preferencesChanged):
8542 * rendering/RenderLayer.cpp:
8543 (WebCore::RenderLayer::invalidateScrollbarRect):
8544 * rendering/RenderScrollbar.cpp:
8545 (WebCore::RenderScrollbar::styleChanged):
8546 (WebCore::RenderScrollbar::updateScrollbarPart):
8547 * rendering/RenderScrollbar.h:
8548 * rendering/RenderScrollbarTheme.h:
8549 (WebCore::RenderScrollbarTheme::buttonsPlacement):
8550
timothy@apple.comc1df5732008-10-10 20:27:51 +000085512008-10-10 Timothy Hatcher <timothy@apple.com>
8552
8553 Fixes a regression with input search fields, where the placeholder text
8554 would not be updated when the value of the placeholder attribute changed.
8555
8556 https://bugs.webkit.org/show_bug.cgi?id=21521
8557
8558 Reviewed by Adele Peterson.
8559
8560 Test: fast/forms/search-placeholder-value-changed.html
8561
8562 * html/HTMLInputElement.cpp:
8563 (WebCore::HTMLInputElement::parseMappedAttribute): Pass true for the
8564 placeholderValueChanged parameter of updatePlaceholderVisibility.
8565 (WebCore::HTMLInputElement::updatePlaceholderVisibility): Add parameter
8566 for placeholderValueChanged that informs the method that the value changed.
8567 * html/HTMLInputElement.h: Add the placeholderValueChanged to the
8568 updatePlaceholderVisibility method. Made it default to false.
8569
hyatt@apple.comf9e710b2008-10-10 19:32:52 +000085702008-10-10 David Hyatt <hyatt@apple.com>
8571
hyatt@apple.comc92f8c22008-10-10 20:12:14 +00008572 Allow the track part to have negative margins so that it can slightly overlap buttons. This
8573 is necessary to emulate the Aqua look in CSS.
8574
8575 Reviewed by Sam Weinig
8576
8577 * platform/ScrollbarThemeComposite.cpp:
8578 (WebCore::ScrollbarThemeComposite::paint):
8579 (WebCore::ScrollbarThemeComposite::hitTest):
8580 * rendering/RenderScrollbar.cpp:
8581 (WebCore::RenderScrollbar::setHoveredPart):
8582 (WebCore::RenderScrollbar::trackRect):
8583 * rendering/RenderScrollbar.h:
8584 * rendering/RenderScrollbarPart.cpp:
8585 (WebCore::RenderScrollbarPart::computeScrollbarWidth):
8586 (WebCore::RenderScrollbarPart::computeScrollbarHeight):
8587 * rendering/RenderScrollbarTheme.cpp:
8588 (WebCore::RenderScrollbarTheme::backButtonRect):
8589 (WebCore::RenderScrollbarTheme::forwardButtonRect):
8590 (WebCore::RenderScrollbarTheme::trackRect):
8591
85922008-10-10 David Hyatt <hyatt@apple.com>
8593
hyatt@apple.comf9e710b2008-10-10 19:32:52 +00008594 https://bugs.webkit.org/show_bug.cgi?id=21527
8595
8596 Make CSS scrollbars support :not, :hover and :active.
8597
8598 Reviewed by Adam Roben
8599
8600 Added WebCore/manual-tests/scrollbar-hover-active.html
8601
8602 * css/CSSStyleSelector.cpp:
8603 (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
8604 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
8605 * platform/Scrollbar.cpp:
8606 (WebCore::Scrollbar::autoscrollPressedPart):
8607 (WebCore::Scrollbar::startTimerIfNeeded):
8608 (WebCore::Scrollbar::setHoveredPart):
8609 (WebCore::Scrollbar::setPressedPart):
8610 (WebCore::Scrollbar::mouseMoved):
8611 (WebCore::Scrollbar::mouseExited):
8612 (WebCore::Scrollbar::mouseUp):
8613 (WebCore::Scrollbar::mouseDown):
8614 * platform/Scrollbar.h:
8615 * rendering/RenderScrollbar.cpp:
8616 (WebCore::RenderScrollbar::setHoveredPart):
8617 (WebCore::RenderScrollbar::setPressedPart):
8618 (WebCore::RenderScrollbar::updateScrollbarParts):
8619 (WebCore::pseudoForScrollbarPart):
8620 (WebCore::RenderScrollbar::updateScrollbarPart):
8621 * rendering/RenderScrollbar.h:
8622
cmarrin@apple.com274a8cf2008-10-10 18:43:47 +000086232008-10-10 Chris Marrin <cmarrin@apple.com>
8624
8625 Reviewed by Dan Bernstein.
8626
8627 Fix for https://bugs.webkit.org/show_bug.cgi?id=21025
8628 CSS transition with duration=0 and delay=0 doesn't override ongoing transition
8629
8630 Test: transitions/interrupt-zero-duration.html
8631
8632 * page/animation/CompositeAnimation.cpp:
8633 (WebCore::CompositeAnimation::updateTransitions):
8634
kevino@webkit.org0b227f82008-10-10 17:13:46 +000086352008-10-10 Kevin Ollivier <kevino@theolliviers.com>
8636
8637 wx build fix. Add new scrollbar-related sources.
8638
8639 * WebCoreSources.bkl:
8640
hyatt@apple.com216ac3b2008-10-10 07:15:04 +000086412008-10-10 David Hyatt <hyatt@apple.com>
8642
hyatt@apple.com676ab7f2008-10-10 16:59:20 +00008643 https://bugs.webkit.org/show_bug.cgi?id=21522
8644
8645 Support increment/decrement/start/end on scrollbars. Allows a fully functional scrollbar to be
8646 created. (Just :hover/:active left to finish it up.)
8647
8648 Reviewed by Adam Roben
8649
8650 Added scrollbars/scrollbar-buttons.html
8651
8652 * css/CSSStyleSelector.cpp:
8653 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
8654
86552008-10-10 David Hyatt <hyatt@apple.com>
8656
hyatt@apple.com08425212008-10-10 16:40:26 +00008657 Rename some pseudoclasses. Removing "-scrollbar-" from a bunch of the pseudoclasses. Renaming
8658 back/forward to decrement/increment. Adding start/end pseudoclasses.
8659
8660 Reviewed by Eric Seidel
8661
8662 * css/CSSSelector.cpp:
8663 (WebCore::CSSSelector::extractPseudoType):
8664 * css/CSSSelector.h:
8665 (WebCore::CSSSelector::):
8666 * css/CSSStyleSelector.cpp:
8667 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
8668
86692008-10-10 David Hyatt <hyatt@apple.com>
8670
hyatt@apple.com216ac3b2008-10-10 07:15:04 +00008671 Switch window-active to window-inactive, since that will work better as far as degrading in other
8672 browsers.
8673
8674 Reviewed by Tim Hatcher
8675
8676 * css/CSSSelector.cpp:
8677 (WebCore::CSSSelector::extractPseudoType):
8678 * css/CSSSelector.h:
8679 (WebCore::CSSSelector::):
8680 * css/CSSStyleSelector.cpp:
8681 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
8682
cmarrin@apple.com1386c1c2008-10-10 18:04:20 +000086832008-10-09 Chris Marrin <cmarrin@apple.com>
8684
8685 Reviewed by Dan Bernstein.
8686
8687 https://bugs.webkit.org/show_bug.cgi?id=21310
8688
8689 Redesigned how animation events are sent in order to get rid of
8690 AnimationEventDispatcher. ImplicitAnimation and KeyframeAnimation
8691 are now ref counted. While calling the event handler, I keep a
8692 reference to this class to avoid it getting destroyed out from under me.
8693
8694 I also moved most of the functionality of CompositeAnimation to
8695 and internal class (CompositeAnimationPrivate) to reduce the exposure
8696 of the internals of the various animation classes.
8697
8698 We have several transition and animation LayoutTests which verify that
8699 this fix works as expected and continues to avoid crashes.
8700
8701 * page/animation/AnimationBase.cpp:
8702 (WebCore::AnimationBase::AnimationBase):
8703 * page/animation/AnimationBase.h:
8704 (WebCore::AnimationBase::cancelTimers):
8705 (WebCore::AnimationBase::waitingForStyleAvailable):
8706 * page/animation/CompositeAnimation.cpp:
8707 (WebCore::CompositeAnimationPrivate::CompositeAnimationPrivate):
8708 (WebCore::CompositeAnimationPrivate::suspended):
8709 (WebCore::CompositeAnimationPrivate::~CompositeAnimationPrivate):
8710 (WebCore::CompositeAnimationPrivate::updateTransitions):
8711 (WebCore::CompositeAnimationPrivate::updateKeyframeAnimations):
8712 (WebCore::CompositeAnimationPrivate::animate):
8713 (WebCore::CompositeAnimationPrivate::setAnimating):
8714 (WebCore::CompositeAnimationPrivate::animating):
8715 (WebCore::CompositeAnimationPrivate::getAnimationForProperty):
8716 (WebCore::CompositeAnimationPrivate::resetTransitions):
8717 (WebCore::CompositeAnimationPrivate::resetAnimations):
8718 (WebCore::CompositeAnimationPrivate::cleanupFinishedAnimations):
8719 (WebCore::CompositeAnimationPrivate::setAnimationStartTime):
8720 (WebCore::CompositeAnimationPrivate::setTransitionStartTime):
8721 (WebCore::CompositeAnimationPrivate::suspendAnimations):
8722 (WebCore::CompositeAnimationPrivate::resumeAnimations):
8723 (WebCore::CompositeAnimationPrivate::overrideImplicitAnimations):
8724 (WebCore::CompositeAnimationPrivate::resumeOverriddenImplicitAnimations):
8725 (WebCore::compareAnimationIndices):
8726 (WebCore::CompositeAnimationPrivate::styleAvailable):
8727 (WebCore::CompositeAnimationPrivate::isAnimatingProperty):
8728 (WebCore::CompositeAnimationPrivate::setWaitingForStyleAvailable):
8729 (WebCore::CompositeAnimation::CompositeAnimation):
8730 (WebCore::CompositeAnimation::~CompositeAnimation):
8731 (WebCore::CompositeAnimation::animate):
8732 (WebCore::CompositeAnimation::animating):
8733 (WebCore::CompositeAnimation::setWaitingForStyleAvailable):
8734 (WebCore::CompositeAnimation::resetTransitions):
8735 (WebCore::CompositeAnimation::suspendAnimations):
8736 (WebCore::CompositeAnimation::resumeAnimations):
8737 (WebCore::CompositeAnimation::suspended):
8738 (WebCore::CompositeAnimation::styleAvailable):
8739 (WebCore::CompositeAnimation::setAnimating):
8740 (WebCore::CompositeAnimation::isAnimatingProperty):
8741 (WebCore::CompositeAnimation::setAnimationStartTime):
8742 (WebCore::CompositeAnimation::setTransitionStartTime):
8743 (WebCore::CompositeAnimation::overrideImplicitAnimations):
8744 (WebCore::CompositeAnimation::resumeOverriddenImplicitAnimations):
8745 * page/animation/CompositeAnimation.h:
8746 * page/animation/ImplicitAnimation.cpp:
8747 (WebCore::ImplicitAnimation::sendTransitionEvent):
8748 * page/animation/ImplicitAnimation.h:
8749 (WebCore::ImplicitAnimation::create):
8750 * page/animation/KeyframeAnimation.cpp:
8751 (WebCore::KeyframeAnimation::sendAnimationEvent):
8752 * page/animation/KeyframeAnimation.h:
8753 (WebCore::KeyframeAnimation::create):
8754
hyatt@apple.come784a792008-10-10 05:56:10 +000087552008-10-09 David Hyatt <hyatt@apple.com>
8756
hyatt@apple.come3803262008-10-10 07:04:38 +00008757 Add support for scrollbar orientation as a pseudoclass. Add support for whether or not the scrollbar
8758 is active as well.
8759
8760 Reviewed by Tim Hatcher
8761
8762 Added scrollbars/scrollbar-orientation.html
8763
8764 * css/CSSSelector.cpp:
8765 (WebCore::CSSSelector::extractPseudoType):
8766 * css/CSSSelector.h:
8767 (WebCore::CSSSelector::):
8768 * css/CSSStyleSelector.cpp:
8769 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
8770 * platform/Scrollbar.cpp:
8771 (WebCore::Scrollbar::isWindowActive):
8772 * platform/Scrollbar.h:
8773 * rendering/RenderScrollbar.cpp:
8774 (WebCore::RenderScrollbar::paint):
8775 (WebCore::RenderScrollbar::partForStyleResolve):
8776 * rendering/RenderScrollbar.h:
8777
87782008-10-09 David Hyatt <hyatt@apple.com>
8779
hyatt@apple.come784a792008-10-10 05:56:10 +00008780 Add support for pseudo classes on scrollbar pseudo elements. As an initial proof of concept only
8781 :enabled/:disabled are supported. More pseudo classes will follow quickly now that this works.
8782
8783 Reviewed by Tim Hatcher
8784
8785 Added scrollbars/disabled-scrollbar.html
8786
8787 * css/CSSStyleSelector.cpp:
8788 (WebCore::CSSStyleSelector::SelectorChecker::checkSelector):
8789 (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
8790 (WebCore::CSSStyleSelector::SelectorChecker::checkScrollbarPseudoClass):
8791 * css/CSSStyleSelector.h:
8792 * rendering/RenderObject.cpp:
8793 (WebCore::RenderObject::getPseudoStyle):
8794 * rendering/RenderObject.h:
8795 * rendering/RenderScrollbar.cpp:
8796 (WebCore::RenderScrollbar::setEnabled):
8797 (WebCore::RenderScrollbar::scrollbarForStyleResolve):
8798 (WebCore::RenderScrollbar::getScrollbarPseudoStyle):
8799 (WebCore::RenderScrollbar::paintPart):
8800 * rendering/RenderScrollbar.h:
8801
eric.carlson@apple.com24750582008-10-10 04:04:15 +000088022008-10-09 Eric Carlson <eric.carlson@apple.com>
8803
8804 Media controls should not show when element is not visible
8805
8806 https://bugs.webkit.org/show_bug.cgi?id=21155
8807
8808 Reviewed by Adele Peterson.
8809
8810 * html/HTMLMediaElement.cpp:
8811 (WebCore::HTMLMediaElement::recalcStyle): New, call renderer()->updateFromElement to stay
8812 in sync with visibility changes
8813 * html/HTMLMediaElement.h:
8814 * rendering/RenderMedia.cpp:
8815 (WebCore::RenderMedia::RenderMedia): initialize m_previousVisible
8816 (WebCore::RenderMedia::updateControlVisibility): consider style()->visibility() when determining
8817 if element is visible or not. Don't animate controller visibility when change triggered by
8818 showing or hiding media element.
8819 * rendering/RenderMedia.h: declare m_previousVisible
8820
timothy@apple.com746258b2008-10-10 03:23:12 +000088212008-10-09 Timothy Hatcher <timothy@apple.com>
8822
8823 Annotate the Objective-C DOM APIs with the JavaScriptCore/WebKitAvailability.h
8824 availability macros and version macros.
8825
8826 https://bugs.webkit.org/show_bug.cgi?id=21496
8827 rdar://problem/6259225
8828
8829 Reviewed by Sam Weinig.
8830
8831 * bindings/objc/DOMCSS.h: Add a version #if around catgory interface.
8832 * bindings/objc/DOMEventException.h: Include JavaScriptCore/WebKitAvailability.h
8833 and add an #if around the enum.
8834 * bindings/objc/DOMException.h: Ditto. Give the enum a name and remove the
8835 comment to match the other headers.
8836 * bindings/objc/DOMExtensions.h: Annotate the methods with version 3.0 or later.
8837 * bindings/objc/DOMObject.h: Add a version #if around class interface.
8838 * bindings/objc/DOMRangeException.h: Include JavaScriptCore/WebKitAvailability.h
8839 and add a version #if around the enum.
8840 * bindings/objc/DOMSVGException.h: Ditto. Use the latest version since SVG is new.
8841 * bindings/objc/DOMXPathException.h: Ditto. Use the 3.0 version.
8842 * bindings/objc/PublicDOMInterfaces.h: Annotate classes and protocols for
8843 when they where added to WebKit. Also annotate individual methods that are
8844 deprecated or where added after the class was added to WebKit.
8845 * bindings/objc/WebScriptObject.h: Include JavaScriptCore/WebKitAvailability.h
8846 since this header is included by most DOM headers. Annotate the JSObject method.
8847
8848 * bindings/scripts/CodeGeneratorObjC.pm:
8849 (ReadPublicInterfaces): Parse out the availability macro for each function/property.
8850 And parse out the availability version for the class/protocol. Default to
8851 WEBKIT_VERSION_LATEST if the class is new.
8852 (GenerateHeader): Include JavaScriptCore/WebKitAvailability.h if needed. Add the
8853 interface availability version check if the class has a required version. Create
8854 a public interface key (used to lookup in $publicInterfaces) and make a declaration
8855 suffix that includes the availability macro (if needed). Use the "available in 1.3
8856 and later but deprecated in 3.0" macro instead of "deprecated in 10.5 and later" as
8857 the default availability macro for old style methods. Tweak line breaks in the generated
8858 headers to look good and not have too many extra lines.
8859
simon.fraser@apple.coma89b8cd2008-10-10 03:15:31 +000088602008-10-09 Simon Fraser <simon.fraser@apple.com>
8861
8862 Reviewed by Dave Hyatt
8863
8864 https://bugs.webkit.org/show_bug.cgi?id=20947
8865
8866 Refactor setStyle() methods into styleWillChange()
8867 and styleDidChange(), so most of the setStyle() overrides can
8868 be removed.
8869
8870 * rendering/RenderBR.cpp:
8871 (WebCore::RenderBR::styleDidChange):
8872 * rendering/RenderBR.h:
8873 * rendering/RenderBlock.cpp:
8874 (WebCore::RenderBlock::styleWillChange):
8875 (WebCore::RenderBlock::styleDidChange):
8876 * rendering/RenderBlock.h:
8877 * rendering/RenderBox.cpp:
8878 (WebCore::RenderBox::~RenderBox):
8879 (WebCore::RenderBox::destroy):
8880 (WebCore::RenderBox::styleWillChange):
8881 (WebCore::RenderBox::styleDidChange):
8882 * rendering/RenderBox.h:
8883 * rendering/RenderButton.cpp:
8884 (WebCore::RenderButton::styleWillChange):
8885 (WebCore::RenderButton::styleDidChange):
8886 * rendering/RenderButton.h:
8887 * rendering/RenderFieldset.cpp:
8888 (WebCore::RenderFieldset::styleDidChange):
8889 * rendering/RenderFieldset.h:
8890 * rendering/RenderFileUploadControl.cpp:
8891 (WebCore::RenderFileUploadControl::styleDidChange):
8892 * rendering/RenderFileUploadControl.h:
8893 * rendering/RenderInline.cpp:
8894 (WebCore::RenderInline::styleDidChange):
8895 * rendering/RenderInline.h:
8896 * rendering/RenderLayer.cpp:
8897 (WebCore::RenderLayer::styleChanged):
8898 * rendering/RenderLayer.h:
8899 * rendering/RenderListBox.cpp:
8900 (WebCore::RenderListBox::styleDidChange):
8901 * rendering/RenderListBox.h:
8902 * rendering/RenderListItem.cpp:
8903 (WebCore::RenderListItem::styleDidChange):
8904 * rendering/RenderListItem.h:
8905 * rendering/RenderListMarker.cpp:
8906 (WebCore::RenderListMarker::styleWillChange):
8907 (WebCore::RenderListMarker::styleDidChange):
8908 * rendering/RenderListMarker.h:
8909 * rendering/RenderMenuList.cpp:
8910 (WebCore::RenderMenuList::styleDidChange):
8911 * rendering/RenderMenuList.h:
8912 * rendering/RenderObject.cpp:
8913 (WebCore::RenderObject::setStyle):
8914 (WebCore::RenderObject::setStyleInternal):
8915 (WebCore::RenderObject::styleWillChange):
8916 (WebCore::RenderObject::styleDidChange):
8917 * rendering/RenderObject.h:
8918 * rendering/RenderReplaced.cpp:
8919 (WebCore::RenderReplaced::styleDidChange):
8920 * rendering/RenderReplaced.h:
8921 * rendering/RenderSVGGradientStop.cpp:
8922 (WebCore::RenderSVGGradientStop::styleDidChange):
8923 * rendering/RenderSVGGradientStop.h:
8924 * rendering/RenderScrollbarPart.cpp:
8925 (WebCore::RenderScrollbarPart::styleDidChange):
8926 * rendering/RenderScrollbarPart.h:
8927 * rendering/RenderSlider.cpp:
8928 (WebCore::RenderSlider::styleDidChange):
8929 * rendering/RenderSlider.h:
8930 * rendering/RenderTable.cpp:
8931 (WebCore::RenderTable::styleDidChange):
8932 * rendering/RenderTable.h:
8933 * rendering/RenderTableCell.cpp:
8934 (WebCore::RenderTableCell::styleWillChange):
8935 (WebCore::RenderTableCell::styleDidChange):
8936 * rendering/RenderTableCell.h:
8937 * rendering/RenderTableRow.cpp:
8938 (WebCore::RenderTableRow::styleWillChange):
8939 * rendering/RenderTableRow.h:
8940 * rendering/RenderText.cpp:
8941 (WebCore::RenderText::styleDidChange):
8942 * rendering/RenderText.h:
8943 * rendering/RenderTextControl.cpp:
8944 (WebCore::RenderTextControl::styleDidChange):
8945 * rendering/RenderTextControl.h:
8946 * rendering/RenderWidget.cpp:
8947 (WebCore::RenderWidget::styleDidChange):
8948 * rendering/RenderWidget.h:
8949
hyatt@apple.com2e4835d2008-10-10 02:33:16 +000089502008-10-09 David Hyatt <hyatt@apple.com>
8951
hyatt@apple.com1d089852008-10-10 03:25:37 +00008952 Make sure to destroy a custom scrollbar's RenderObjects before the arena goes away. When our widget
hyatt@apple.comb2063c12008-10-10 03:13:07 +00008953 parent is nulled out is a good time.
8954
8955 Reviewed by Oliver Hunt
8956
8957 * rendering/RenderScrollbar.cpp:
8958 (WebCore::RenderScrollbar::~RenderScrollbar):
8959 (WebCore::RenderScrollbar::setParent):
8960 (WebCore::RenderScrollbar::updateScrollbarPart):
8961 * rendering/RenderScrollbar.h:
8962
89632008-10-09 David Hyatt <hyatt@apple.com>
8964
hyatt@apple.com2e4835d2008-10-10 02:33:16 +00008965 https://bugs.webkit.org/show_bug.cgi?id=21446
8966
8967 This patch gets CSS scrollbars up and limping. There's no way to distinguish between states or between
8968 orientation and back vs. forward on the buttons, but it's a start.
8969
8970 Reviewed by Oliver Hunt
8971
8972 Added scrollbars/basic-scrollbar.html
8973
8974 * WebCore.xcodeproj/project.pbxproj:
8975 * css/CSSSelector.cpp:
8976 (WebCore::CSSSelector::extractPseudoType):
8977 * css/CSSSelector.h:
8978 (WebCore::CSSSelector::):
8979 * css/CSSStyleSelector.cpp:
8980 (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
8981 * platform/ScrollTypes.h:
8982 (WebCore::):
8983 * platform/Scrollbar.h:
8984 (WebCore::Scrollbar::styleChanged):
8985 * platform/ScrollbarThemeComposite.cpp:
8986 (WebCore::ScrollbarThemeComposite::paint):
8987 (WebCore::ScrollbarThemeComposite::splitTrack):
8988 * platform/ScrollbarThemeComposite.h:
8989 (WebCore::ScrollbarThemeComposite::paintScrollbarBackground):
8990 (WebCore::ScrollbarThemeComposite::paintTrackBackground):
8991 (WebCore::ScrollbarThemeComposite::paintTrackPiece):
8992 * platform/win/ScrollbarThemeSafari.cpp:
8993 (WebCore::ScrollbarThemeSafari::paintTrackBackground):
8994 * platform/win/ScrollbarThemeSafari.h:
8995 * platform/win/ScrollbarThemeWin.cpp:
8996 (WebCore::ScrollbarThemeWin::paintTrack):
8997 * platform/win/ScrollbarThemeWin.h:
8998 * rendering/RenderLayer.cpp:
8999 (WebCore::RenderLayer::createScrollbar):
9000 (WebCore::RenderLayer::styleChanged):
9001 * rendering/RenderScrollbar.cpp: Added.
9002 (WebCore::RenderScrollbar::createCustomScrollbar):
9003 (WebCore::RenderScrollbar::RenderScrollbar):
9004 (WebCore::RenderScrollbar::~RenderScrollbar):
9005 (WebCore::RenderScrollbar::getScrollbarPseudoStyle):
9006 (WebCore::RenderScrollbar::updateScrollbarParts):
9007 (WebCore::RenderScrollbar::updateScrollbarPart):
9008 (WebCore::RenderScrollbar::paintPart):
9009 (WebCore::RenderScrollbar::buttonRect):
9010 (WebCore::RenderScrollbar::minimumThumbLength):
9011 * rendering/RenderScrollbar.h: Added.
9012 (WebCore::RenderScrollbar::styleChanged):
9013 (WebCore::RenderScrollbar::owningRenderer):
9014 * rendering/RenderScrollbarPart.cpp: Added.
9015 (WebCore::RenderScrollbarPart::RenderScrollbarPart):
9016 (WebCore::RenderScrollbarPart::~RenderScrollbarPart):
9017 (WebCore::RenderScrollbarPart::layout):
9018 (WebCore::RenderScrollbarPart::layoutHorizontalPart):
9019 (WebCore::RenderScrollbarPart::layoutVerticalPart):
9020 (WebCore::calcScrollbarThicknessUsing):
9021 (WebCore::RenderScrollbarPart::computeScrollbarWidth):
9022 (WebCore::RenderScrollbarPart::computeScrollbarHeight):
9023 (WebCore::RenderScrollbarPart::calcPrefWidths):
9024 (WebCore::RenderScrollbarPart::setStyle):
9025 * rendering/RenderScrollbarPart.h: Added.
9026 (WebCore::RenderScrollbarPart::renderName):
9027 (WebCore::RenderScrollbarPart::requiresLayer):
9028 * rendering/RenderScrollbarTheme.cpp: Added.
9029 (WebCore::RenderScrollbarTheme::renderScrollbarTheme):
9030 (WebCore::RenderScrollbarTheme::buttonSizesAlongTrackAxis):
9031 (WebCore::RenderScrollbarTheme::hasButtons):
9032 (WebCore::RenderScrollbarTheme::hasThumb):
9033 (WebCore::RenderScrollbarTheme::minimumThumbLength):
9034 (WebCore::RenderScrollbarTheme::backButtonRect):
9035 (WebCore::RenderScrollbarTheme::forwardButtonRect):
9036 (WebCore::RenderScrollbarTheme::trackRect):
9037 (WebCore::RenderScrollbarTheme::paintScrollCorner):
9038 (WebCore::RenderScrollbarTheme::paintScrollbarBackground):
9039 (WebCore::RenderScrollbarTheme::paintTrackBackground):
9040 (WebCore::RenderScrollbarTheme::paintTrackPiece):
9041 (WebCore::RenderScrollbarTheme::paintButton):
9042 (WebCore::RenderScrollbarTheme::paintThumb):
9043 * rendering/RenderScrollbarTheme.h: Added.
9044 (WebCore::RenderScrollbarTheme::~RenderScrollbarTheme):
9045 (WebCore::RenderScrollbarTheme::scrollbarThickness):
9046 (WebCore::RenderScrollbarTheme::buttonsPlacement):
9047 (WebCore::RenderScrollbarTheme::supportsControlTints):
9048 (WebCore::RenderScrollbarTheme::shouldCenterOnThumb):
9049 (WebCore::RenderScrollbarTheme::initialAutoscrollTimerDelay):
9050 (WebCore::RenderScrollbarTheme::autoscrollTimerDelay):
9051 (WebCore::RenderScrollbarTheme::registerScrollbar):
9052 (WebCore::RenderScrollbarTheme::unregisterScrollbar):
9053 * rendering/style/RenderStyle.h:
9054 (WebCore::RenderStyle::):
9055
eric@webkit.org3df115d2008-10-10 00:08:44 +000090562008-10-09 Eric Seidel <eric@webkit.org>
9057
9058 Reviewed by Oliver Hunt.
eric@webkit.org25626592008-10-10 02:26:54 +00009059
9060 Fix Canvex DOOM Game
9061 Gradient clips were not getting cleared after filling the
9062 gradient, this was causing nothing to draw in Canvex
9063 https://bugs.webkit.org/show_bug.cgi?id=21498
9064
9065 Tests forthcoming.
9066
9067 * WebCore.xcodeproj/project.pbxproj:
9068 * platform/graphics/cg/GraphicsContextCG.cpp:
9069 (WebCore::GraphicsContext::fillPath):
9070 (WebCore::GraphicsContext::strokePath):
9071 (WebCore::GraphicsContext::fillRect):
9072
90732008-10-09 Eric Seidel <eric@webkit.org>
9074
9075 Reviewed by Oliver Hunt.
eric@webkit.org3df115d2008-10-10 00:08:44 +00009076
9077 Fix transformed patterns
9078 https://bugs.webkit.org/show_bug.cgi?id=21498
9079
9080 Test: fast/canvas/patternfill-repeat.html
9081
9082 * WebCore.xcodeproj/project.pbxproj:
9083 * platform/graphics/GraphicsContext.cpp:
9084 (WebCore::GraphicsContext::setStrokePattern):
9085 (WebCore::GraphicsContext::setFillPattern):
9086 (WebCore::GraphicsContext::setStrokeGradient):
9087 (WebCore::GraphicsContext::setFillGradient):
9088 * platform/graphics/GraphicsContext.h:
9089 * platform/graphics/cairo/GraphicsContextCairo.cpp:
9090 * platform/graphics/cg/GraphicsContextCG.cpp:
9091 (WebCore::applyStrokePattern):
9092 (WebCore::applyFillPattern):
9093 (WebCore::GraphicsContext::drawPath):
9094 (WebCore::GraphicsContext::fillPath):
9095 (WebCore::GraphicsContext::strokePath):
9096 (WebCore::GraphicsContext::fillRect):
9097 * platform/graphics/qt/GraphicsContextQt.cpp:
9098 * platform/graphics/wx/GraphicsContextWx.cpp:
9099
mrowe@apple.coma2e784f2008-10-12 01:38:08 +000091002008-10-09 Kevin Ollivier <kevino@theolliviers.com>
kevino@webkit.org458871b2008-10-09 23:44:40 +00009101
9102 wx build fixes.
9103
9104 * platform/wx/WidgetWx.cpp:
9105 * plugins/wx/PluginViewWx.cpp:
9106 (WebCore::PluginView::invalidateRect):
9107 * webcore-base.bkl:
9108
cmarrin@apple.comfe914d22008-10-09 23:04:07 +000091092008-10-09 Chris Marrin <cmarrin@apple.com>
9110
cmarrin@apple.com8a901162008-10-09 23:59:49 +00009111 Reviewed by Darin Adler.
9112
9113 Fix for https://bugs.webkit.org/show_bug.cgi?id=21217
9114 Animations assert when navigating from page
9115
9116 Changed assertions to test the right flag for the paused state
9117
9118 * page/animation/AnimationBase.cpp:
9119 (WebCore::AnimationBase::updateStateMachine):
9120
91212008-10-09 Chris Marrin <cmarrin@apple.com>
9122
cmarrin@apple.comfe914d22008-10-09 23:04:07 +00009123 Reviewed by Dan Bernstein.
9124
9125 Fixed > 180 degree rotation bug
9126 Ensure that validateTransformFunctionList() is called after updating keyframe styles
9127
9128 https://bugs.webkit.org/show_bug.cgi?id=21420
9129
9130 Test: animations/big-rotation.html
9131
9132 * page/animation/KeyframeAnimation.cpp:
9133 (WebCore::KeyframeAnimation::KeyframeAnimation):
9134
beidson@apple.comc90a4422008-10-09 20:43:24 +000091352008-10-09 Brady Eidson <beidson@apple.com>
9136
9137 Reviewed by Anders
9138
9139 <rdar://problem/6250856> - Calling [WebView close] from within a redirection callback can cause bad things
9140
9141 The API usage to reveal this crash was so particular that a layout test is not possible with our current infrastructure.
9142
9143 * loader/FrameLoader.cpp:
9144 (WebCore::FrameLoader::changeLocation): Protect the Frame from deletion
9145 (WebCore::FrameLoader::continueLoadAfterNavigationPolicy): stopAllLoaders() might clear the Frame's page,
9146 so perform a second null check on the page. Bail if it has been cleared.
9147
alp@webkit.org81906422008-10-09 16:21:43 +000091482008-10-09 Alp Toker <alp@nuanti.com>
9149
9150 Build fix for recent DOM generation Makefile changes when custom
9151 CFLAGS/CXXFLAGS are passed in.
9152
9153 * GNUmakefile.am:
9154
alp@webkit.orgbedd8d82008-10-09 16:13:53 +000091552008-10-09 Jan Michael Alonzo <jmalonzo@webkit.org>
9156
9157 Reviewed by Alp Toker.
9158
9159 https://bugs.webkit.org/show_bug.cgi?id=21390
9160 [Gtk] Linux/Gtk: GtkLauncher crashes on Acid3 (but after test 80 this time)
9161
9162 * platform/gtk/ScrollViewGtk.cpp:
9163 (WebCore::ScrollView::platformRemoveChild):
9164
darin@apple.com2d343692008-10-09 08:37:04 +000091652008-10-09 Darin Adler <darin@apple.com>
9166
9167 - try to fix Qt build
9168
9169 * bridge/qt/qt_runtime.cpp:
9170 (JSC::Bindings::convertQVariantToValue): Pass JSGlobalData instead of ExecState to RegExp constructor.
9171
zimmermann@webkit.orgabd88452008-10-09 03:34:43 +000091722008-10-08 Nikolas Zimmermann <zimmermann@kde.org>
9173
zimmermann@webkit.orge8c220e2008-10-09 03:54:25 +00009174 Reviewed by Oliver Hunt & Sam Weinig.
zimmermann@webkit.orgabd88452008-10-09 03:34:43 +00009175
9176 Fixes: https://bugs.webkit.org/show_bug.cgi?id=15413 (SVGElementInstance does not implement EventTarget)
9177 Fixes: https://bugs.webkit.org/show_bug.cgi?id=15430 (SVGElementInstances should rebuild themselves lazily)
9178 Fixes: https://bugs.webkit.org/show_bug.cgi?id=20550 (SVGUseElement.setAttribute crashes Safari)
9179
9180 Rebuild SVG use element shadow tree lazily. Mark SVGElementInstance with the "needsUpdate" flag.
9181 Next time SVGUseElement::recalcStyle is invoked (ie. via Document::updateDocumentsRendering()) the
9182 use tree is rebuild.
9183
9184 Make SVGElementInstance a real EventTarget, as the SVG specification demands.
9185 When dispatching events to a shadow tree element of a use element, the associated SVGElementInstance
9186 is used as event target. The SVGElementInstance, the shadow tree element and the corresponding element
9187 share an event listener list. Every event listener change on the SVGElementInstance object is forwared
9188 to the corresponding element. Each change marks the SVGElementInstance tree dirty, and causes a reclone.
9189 Each event listener defined via attributes (onclick/onkeydown/...) is copied from the correspondingElement
9190 to the shadow tree element - through the cloneNode calls - if the use element's shadow tree gets rebuild.
9191 Each listener, dynamically created using addEventListener, gets copied to the corersponding element as well.
9192
9193 Now that the target/currentTarget properties of the Events are correct, event bubbling works as expected,
9194 see resources/use-instanceRoot-event-bubbling.js for details.
9195
9196 Tests: svg/custom/use-elementInstance-event-target.svg (reenabled)
9197 svg/custom/use-elementInstance-methods.svg (reenabled)
9198 svg/custom/use-setAttribute-crash.svg (covers bug 20550)
9199 svg/custom/use-instanceRoot-as-event-target.xhtml (covers bug 15413)
9200 svg/custom/use-instanceRoot-event-bubbling.xhtml (covers bug 15413)
9201 svg/custom/use-instanceRoot-event-listeners.xhtml (covers bug 15413 & 15430)
9202
9203 * DerivedSources.make:
9204 * GNUmakefile.am:
9205 * WebCore.pro:
9206 * WebCore.vcproj/WebCore.vcproj:
9207 * WebCore.xcodeproj/project.pbxproj:
9208 * bindings/js/JSEventListener.h:
9209 (WebCore::JSLazyEventListener::wasCreatedFromMarkup):
9210 * bindings/js/JSEventTarget.cpp:
9211 * bindings/js/JSEventTargetSVGElementInstance.cpp: Removed.
9212 * bindings/js/JSEventTargetSVGElementInstance.h: Removed.
9213 * bindings/js/JSSVGElementInstanceCustom.cpp:
9214 (WebCore::JSSVGElementInstance::addEventListener):
9215 (WebCore::JSSVGElementInstance::removeEventListener):
9216 (WebCore::JSSVGElementInstance::pushEventHandlerScope):
9217 * bindings/scripts/CodeGeneratorJS.pm:
9218 * bindings/scripts/CodeGeneratorObjC.pm:
9219 * dom/EventListener.h:
9220 (WebCore::EventListener::wasCreatedFromMarkup):
9221 * dom/EventTargetNode.cpp:
9222 (WebCore::updateSVGElementInstancesAfterEventListenerChange):
9223 (WebCore::EventTargetNode::addEventListener):
9224 (WebCore::EventTargetNode::removeEventListener):
9225 (WebCore::eventTargetAsSVGElementInstance):
9226 (WebCore::eventTargetRespectingSVGTargetRules):
9227 (WebCore::EventTargetNode::dispatchEvent):
9228 (WebCore::EventTargetNode::dispatchGenericEvent):
9229 (WebCore::EventTargetNode::removeEventListenerForType):
9230 * page/EventHandler.cpp:
9231 (WebCore::EventHandler::clear):
9232 (WebCore::instanceAssociatedWithShadowTreeElement):
9233 (WebCore::EventHandler::updateMouseEventTargetNode):
9234 * page/EventHandler.h:
9235 * svg/EventTargetSVGElementInstance.cpp: Removed.
9236 * svg/EventTargetSVGElementInstance.h: Removed.
9237 * svg/SVGElementInstance.cpp:
9238 (WebCore::SVGElementInstance::SVGElementInstance):
9239 (WebCore::SVGElementInstance::~SVGElementInstance):
9240 (WebCore::SVGElementInstance::childNodes):
9241 (WebCore::SVGElementInstance::setShadowTreeElement):
9242 (WebCore::SVGElementInstance::forgetWrapper):
9243 (WebCore::SVGElementInstance::appendChild):
9244 (WebCore::SVGElementInstance::invalidateAllInstancesOfElement):
9245 (WebCore::SVGElementInstance::setNeedsUpdate):
9246 (WebCore::SVGElementInstance::associatedFrame):
9247 (WebCore::SVGElementInstance::addEventListener):
9248 (WebCore::SVGElementInstance::removeEventListener):
9249 (WebCore::SVGElementInstance::dispatchEvent):
9250 (WebCore::SVGElementInstance::onabort):
9251 (WebCore::SVGElementInstance::setOnabort):
9252 (WebCore::SVGElementInstance::onblur):
9253 (WebCore::SVGElementInstance::setOnblur):
9254 (WebCore::SVGElementInstance::onchange):
9255 (WebCore::SVGElementInstance::setOnchange):
9256 (WebCore::SVGElementInstance::onclick):
9257 (WebCore::SVGElementInstance::setOnclick):
9258 (WebCore::SVGElementInstance::oncontextmenu):
9259 (WebCore::SVGElementInstance::setOncontextmenu):
9260 (WebCore::SVGElementInstance::ondblclick):
9261 (WebCore::SVGElementInstance::setOndblclick):
9262 (WebCore::SVGElementInstance::onerror):
9263 (WebCore::SVGElementInstance::setOnerror):
9264 (WebCore::SVGElementInstance::onfocus):
9265 (WebCore::SVGElementInstance::setOnfocus):
9266 (WebCore::SVGElementInstance::oninput):
9267 (WebCore::SVGElementInstance::setOninput):
9268 (WebCore::SVGElementInstance::onkeydown):
9269 (WebCore::SVGElementInstance::setOnkeydown):
9270 (WebCore::SVGElementInstance::onkeypress):
9271 (WebCore::SVGElementInstance::setOnkeypress):
9272 (WebCore::SVGElementInstance::onkeyup):
9273 (WebCore::SVGElementInstance::setOnkeyup):
9274 (WebCore::SVGElementInstance::onload):
9275 (WebCore::SVGElementInstance::setOnload):
9276 (WebCore::SVGElementInstance::onmousedown):
9277 (WebCore::SVGElementInstance::setOnmousedown):
9278 (WebCore::SVGElementInstance::onmousemove):
9279 (WebCore::SVGElementInstance::setOnmousemove):
9280 (WebCore::SVGElementInstance::onmouseout):
9281 (WebCore::SVGElementInstance::setOnmouseout):
9282 (WebCore::SVGElementInstance::onmouseover):
9283 (WebCore::SVGElementInstance::setOnmouseover):
9284 (WebCore::SVGElementInstance::onmouseup):
9285 (WebCore::SVGElementInstance::setOnmouseup):
9286 (WebCore::SVGElementInstance::onmousewheel):
9287 (WebCore::SVGElementInstance::setOnmousewheel):
9288 (WebCore::SVGElementInstance::onbeforecut):
9289 (WebCore::SVGElementInstance::setOnbeforecut):
9290 (WebCore::SVGElementInstance::oncut):
9291 (WebCore::SVGElementInstance::setOncut):
9292 (WebCore::SVGElementInstance::onbeforecopy):
9293 (WebCore::SVGElementInstance::setOnbeforecopy):
9294 (WebCore::SVGElementInstance::oncopy):
9295 (WebCore::SVGElementInstance::setOncopy):
9296 (WebCore::SVGElementInstance::onbeforepaste):
9297 (WebCore::SVGElementInstance::setOnbeforepaste):
9298 (WebCore::SVGElementInstance::onpaste):
9299 (WebCore::SVGElementInstance::setOnpaste):
9300 (WebCore::SVGElementInstance::ondragenter):
9301 (WebCore::SVGElementInstance::setOndragenter):
9302 (WebCore::SVGElementInstance::ondragover):
9303 (WebCore::SVGElementInstance::setOndragover):
9304 (WebCore::SVGElementInstance::ondragleave):
9305 (WebCore::SVGElementInstance::setOndragleave):
9306 (WebCore::SVGElementInstance::ondrop):
9307 (WebCore::SVGElementInstance::setOndrop):
9308 (WebCore::SVGElementInstance::ondragstart):
9309 (WebCore::SVGElementInstance::setOndragstart):
9310 (WebCore::SVGElementInstance::ondrag):
9311 (WebCore::SVGElementInstance::setOndrag):
9312 (WebCore::SVGElementInstance::ondragend):
9313 (WebCore::SVGElementInstance::setOndragend):
9314 (WebCore::SVGElementInstance::onreset):
9315 (WebCore::SVGElementInstance::setOnreset):
9316 (WebCore::SVGElementInstance::onresize):
9317 (WebCore::SVGElementInstance::setOnresize):
9318 (WebCore::SVGElementInstance::onscroll):
9319 (WebCore::SVGElementInstance::setOnscroll):
9320 (WebCore::SVGElementInstance::onsearch):
9321 (WebCore::SVGElementInstance::setOnsearch):
9322 (WebCore::SVGElementInstance::onselect):
9323 (WebCore::SVGElementInstance::setOnselect):
9324 (WebCore::SVGElementInstance::onselectstart):
9325 (WebCore::SVGElementInstance::setOnselectstart):
9326 (WebCore::SVGElementInstance::onsubmit):
9327 (WebCore::SVGElementInstance::setOnsubmit):
9328 (WebCore::SVGElementInstance::onunload):
9329 (WebCore::SVGElementInstance::setOnunload):
9330 * svg/SVGElementInstance.h:
9331 (WebCore::SVGElementInstance::needsUpdate):
9332 (WebCore::SVGElementInstance::toNode):
9333 (WebCore::SVGElementInstance::toSVGElementInstance):
9334 (WebCore::SVGElementInstance::correspondingElement):
9335 (WebCore::SVGElementInstance::correspondingUseElement):
9336 (WebCore::SVGElementInstance::shadowTreeElement):
9337 (WebCore::SVGElementInstance::parentNode):
9338 (WebCore::SVGElementInstance::previousSibling):
9339 (WebCore::SVGElementInstance::nextSibling):
9340 (WebCore::SVGElementInstance::firstChild):
9341 (WebCore::SVGElementInstance::lastChild):
9342 (WebCore::SVGElementInstance::ownerDocument):
9343 (WebCore::SVGElementInstance::hasChildNodes):
9344 (WebCore::SVGElementInstance::setFirstChild):
9345 (WebCore::SVGElementInstance::setLastChild):
9346 (WebCore::SVGElementInstance::setNextSibling):
9347 (WebCore::SVGElementInstance::setPreviousSibling):
9348 (WebCore::SVGElementInstance::refEventTarget):
9349 (WebCore::SVGElementInstance::derefEventTarget):
9350 * svg/SVGElementInstance.idl:
9351 * svg/SVGStyledElement.cpp:
9352 (WebCore::SVGStyledElement::svgAttributeChanged):
9353 (WebCore::SVGStyledElement::childrenChanged):
9354 * svg/SVGUseElement.cpp:
9355 (WebCore::SVGUseElement::svgAttributeChanged):
9356 (WebCore::shadowTreeContainsChangedNodes):
9357 (WebCore::SVGUseElement::recalcStyle):
9358 (WebCore::dumpInstanceTree):
9359 (WebCore::SVGUseElement::buildPendingResource):
9360 (WebCore::SVGUseElement::buildInstanceTree):
9361 (WebCore::SVGUseElement::transferEventListenersToShadowTree):
9362 * svg/SVGUseElement.h:
9363
weinig@apple.com25cef102008-10-09 00:14:50 +000093642008-10-08 Sam Weinig <sam@webkit.org>
9365
9366 Reviewed by Cameron Zwarich.
9367
9368 Fix for https://bugs.webkit.org/show_bug.cgi?id=21241
9369 REGRESSION (r36977): getRGBColorValue().red returning incorrect value
9370
9371 Update JSRGBColor to use the new static function per getter approach.
9372
9373 Test: fast/dom/css-RGBValue.html
9374
9375 * bindings/js/JSRGBColor.cpp:
9376 (WebCore::):
9377 (jsRGBColorRed):
9378 (jsRGBColorGreen):
9379 (jsRGBColorBlue):
9380 * bindings/js/JSRGBColor.h:
9381
eric@webkit.org4966e4a2008-10-08 22:48:55 +000093822008-10-08 Eric Seidel <eric@webkit.org>
9383
9384 Reviewed by Darin Adler, Nikolas Zimmermann and Dave Hyatt.
9385
9386 svgElement.className.baseValue = "foo" does not work
9387 https://bugs.webkit.org/show_bug.cgi?id=20651
9388
9389 * dom/StyledElement.cpp:
9390 (WebCore::StyledElement::classAttributeChanged):
9391 (WebCore::StyledElement::parseMappedAttribute):
9392 * dom/StyledElement.h:
9393 * svg/SVGStyledElement.cpp:
9394 (WebCore::SVGStyledElement::svgAttributeChanged):
9395
timothy@apple.com08664892008-10-08 16:41:15 +000093962008-10-08 Anthony Ricaud <rik24d@gmail.com>
9397
9398 Make the toolbar label text-shadow not disappear when clicking on the
9399 search result count or around the search field.
9400
9401 Reviewed by Timothy Hatcher.
9402
9403 * inspector/front-end/inspector.css:
9404 (.toolbar-item:active .toolbar-label): Make this rule also require the
9405 toggleable class with the toolbar-item class.
9406
hausmann@webkit.orgd6d65cb2008-10-08 13:13:24 +000094072008-10-08 Tor Arne Vestbø <tavestbo@trolltech.com>
9408
9409 Reviewed by Simon.
9410
9411 Updated the qrc file for the Web Inspector to contain the current set
9412 of images.
9413
9414 * inspector/front-end/WebKit.qrc:
9415
hausmann@webkit.org49650de2008-10-08 12:43:13 +000094162008-10-08 Prasanth Ullattil <pullatti@trolltech.com>
9417
9418 Reviewed by Simon.
9419
9420 Fix the linking of applications against WebKit on Qt/Windows.
9421
9422 The prl files that qmake creates are buggy on Unix, but we they're
9423 fine on Windows and we have to have them there in order to get the
9424 dependencies correct.
9425
9426 * WebCore.pro:
9427
hausmann@webkit.org96f013f2008-10-08 12:11:44 +000094282008-10-08 Ariya Hidayat <ariya.hidayat@trolltech.com>
9429
9430 Reviewed by Simon.
9431
9432 Speed up rectangle filling by not re-creating a QBrush all the time.
9433
9434 This triggers faster path in QPainter where the brush is reused.
9435
9436 * platform/graphics/qt/GraphicsContextQt.cpp:
9437 (WebCore::GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate):
9438 (WebCore::GraphicsContext::fillRect):
9439
hausmann@webkit.orgaf2f03e2008-10-08 09:10:44 +000094402008-10-08 Thiago Macieira <thiago.macieira@nokia.com>
9441
9442 Reviewed by Simon.
9443
9444 Fixes: Encoding of Qt URLs
9445
9446 This encoding was added by Simon and I because QUrl's
9447 tolerant parser wasn't tolerant enough. Now it is, so we don't need
9448 this anymore.
9449
9450 * platform/qt/KURLQt.cpp:
9451 (WebCore::KURL::operator QUrl):
9452
hausmann@webkit.orgc4b79f02008-10-08 09:10:32 +000094532008-10-08 Marius Storm-Olsen <marius@trolltech.com>
9454
9455 Reviewed by Simon.
9456
9457 Fixes dependencies in qmake generated visual studio projects.
9458
9459 Only add debug lib name if we're in the debug build_pass, else the release version.
9460 The MSVC solution generator would pick up the debug javascriptcore lib as a dependency.
9461
9462 * WebCore.pro:
9463
hausmann@webkit.org40df3c32008-10-08 09:10:04 +000094642008-10-08 Prasanth Ullattil <pullatti@trolltech.com>
9465
9466 Reviewed by Simon.
9467
9468 Fix compilation errors on VS2008 64Bit
9469
9470 * platform/text/TextStream.cpp:
9471 (WebCore::TextStream::operator<<):
9472 * platform/text/TextStream.h:
9473 * plugins/win/PluginViewWin.cpp:
9474 (WebCore::PluginView::init):
9475
alp@webkit.org76e7f9a2008-10-08 00:42:37 +000094762008-10-07 Alp Toker <alp@nuanti.com>
9477
9478 GTK+ build fix for older automake versions (1.7). Discussed in bug
9479 #21392.
9480
9481 * GNUmakefile.am:
9482
andersca@apple.comdca58502008-10-07 23:31:34 +000094832008-10-07 Anders Carlsson <andersca@apple.com>
9484
9485 Reviewed by Antti Koivisto.
9486
9487 <rdar://problem/6273887> Crash in ApplicationCacheGroup
9488
9489 Make sure to stop loading even before a cache update is in progress so that the
9490 manifest load will be stopped.
9491
9492 * loader/appcache/ApplicationCacheGroup.cpp:
9493 (WebCore::ApplicationCacheGroup::~ApplicationCacheGroup):
9494 (WebCore::ApplicationCacheGroup::stopLoading):
9495 (WebCore::ApplicationCacheGroup::cacheUpdateFailed):
9496
timothy@apple.com59a87132008-10-07 21:49:43 +000094972008-10-07 Timothy Hatcher <timothy@apple.com>
9498
timothy@apple.com754474e2008-10-07 21:49:55 +00009499 Auto-generate DOMDocument's createNodeIterator: and createTreeWalker: methods.
9500
9501 https://bugs.webkit.org/show_bug.cgi?id=21433
9502
9503 Reviewed by Sam Weinig.
9504
9505 * WebCore.xcodeproj/project.pbxproj: Add ObjCNodeFilterCondition.{mm,h}.
9506 * bindings/objc/DOM.mm: Remove previous category implementations
9507 on DOMDocument for createNodeIterator: and createTreeWalker:. Also
9508 moves ObjCNodeFilterCondition to its own file.
9509 * bindings/objc/DOMTraversal.h: Remove the category methods that added
9510 createNodeIterator: and createTreeWalker: to DOMDocument. This is fine
9511 to do since DOmDocument.h is included still, and has these methods.
9512 * bindings/objc/DOMUtility.mm:
9513 (JSC::createDOMWrapper): Remove special case for JSNodeIterator and
9514 JSTreeWalker now that the ObjC binding conforms to the standard wrap.
9515 * bindings/objc/ObjCNodeFilterCondition.h: Split out from DOM.mm.
9516 (WebCore::ObjCNodeFilterCondition::create): Moved from DOM.mm.
9517 (WebCore::ObjCNodeFilterCondition::ObjCNodeFilterCondition): Ditto.
9518 * bindings/objc/ObjCNodeFilterCondition.mm: Split out from DOM.mm.
9519 (WebCore::ObjCNodeFilterCondition::acceptNode): Moved from DOM.mm.
9520 * bindings/objc/PublicDOMInterfaces.h: Add the createNodeIterator: and
9521 createTreeWalker: methods to DOMDocument.
9522 * bindings/scripts/CodeGeneratorObjC.pm:
9523 (GetObjCTypeGetter): Add a case for NodeFilter.
9524 (AddIncludesForType): Include ObjCNodeFilterCondition.h for NodeFilter.
9525 (GenerateImplementation): Remove existing NodeFilter special case that
9526 used the m_filter member variable. Add a new special getter for protocol
9527 types that aren't EventTarget, so the right class is used for NodeFilter.
9528 Add a special case for NodeFilter where it creates an ObjCNodeFilterCondition.
9529 * dom/Document.idl: Remove the #ifdef LANGUAGE_OBJECTIVE_C. Add the
9530 OldStyleObjC extended attribute to createNodeIterator and createTreeWalker.
9531 Rename the entityReferenceExpansion parameter to expandEntityReferences to
9532 match the previous ObjC API.
9533 * dom/NodeIterator.idl: Remove ObjCIvar from the filter attribute. The
9534 m_filter member variable was never used in practice, it was always nil!
9535 We can remove it and not pad the object because this can't be subclassed.
9536 * dom/TreeWalker.idl: Ditto.
9537
95382008-10-07 Timothy Hatcher <timothy@apple.com>
9539
timothy@apple.com59a87132008-10-07 21:49:43 +00009540 Auto-generate the DOMEventTarget protocol implementation for
9541 DOMNode and DOMSVGElementInstance.
9542
9543 https://bugs.webkit.org/show_bug.cgi?id=21432
9544
9545 Reviewed by Darin Adler.
9546
9547 * WebCore.xcodeproj/project.pbxproj: Add ObjCEventListener.{mm,h}.
9548 * bindings/objc/DOM.mm: Remove many unneeded header includes. Move
9549 ObjCEventListener to it's own file. Remove the manual impelmentations
9550 of the DOMEventTarget protocol for DOMNode and DOMSVGElementInstance.
9551 * bindings/objc/DOMEvents.h: Remove the categories that defined
9552 DOMEventTarget for DOMNode and DOMSVGElementInstance.
9553 * bindings/objc/ObjCEventListener.h: Split out from DOM.mm.
9554 * bindings/objc/ObjCEventListener.mm: Split out from DOM.mm.
9555 (WebCore::ObjCEventListener::find): Moved from DOM.mm.
9556 (WebCore::ObjCEventListener::wrap): Use PassRefPtr to prevent the
9557 callers from doing a manual deref.
9558 (WebCore::ObjCEventListener::ObjCEventListener): Moved from DOM.mm.
9559 (WebCore::ObjCEventListener::~ObjCEventListener): Ditto.
9560 * bindings/scripts/CodeGeneratorObjC.pm:
9561 (GetObjCTypeGetter): Add a case for EventListener and use WTF::getPtr.
9562 (AddIncludesForType): Include ObjCEventListener.h for EventListener.
9563 And include EventTargetSVGElementInstance.h for SVGElementInstance.
9564 (GenerateHeader): Remove the check for multiple parents.
9565 (GenerateImplementation): Remove the check for multiple parents. Remove
9566 the @deprecatedFunctions array since deprecated methods get generated
9567 into the main @interface now to work with protocols. Add support
9568 for the EventTargetNodeCast extended attribute. Add support for
9569 EventListener parameters.
9570 * dom/Node.idl: Define superclasses for ObjC so the implementation
9571 and interface implement the DOMEventTarget protocol. Explicitly
9572 specify Object as a superclass to use DOMEventTarget. Object will turn
9573 into DOMObject. This is needed to take the code generator down the right
9574 path of multiple super-classes as protocols. It is ObjC only for legacy
9575 reasons. The event target methods are normally on NodeEventTarget, a
9576 subclass of Node. But the ObjC API has never has this subclass and
9577 they are on DOMNode.
9578 * svg/SVGElementInstance.idl: Ditto.
9579
hyatt@apple.com5c9a9f72008-10-07 21:36:39 +000095802008-10-07 David Hyatt <hyatt@apple.com>
9581
9582 Add new pseudo-elements and pseudo-classes that will enable scrollbars to be styled by CSS.
9583
9584 The new pseudo-elements are:
9585 scrollbar
9586 scrollbar-button
9587 scrollbar-corner
9588 scrollbar-thumb
9589 scrollbar-track
9590
9591 These elements will work with all the usual pseudo-classes (:hover, :active, :enabled, :disabled, etc.) and with
9592 the following new pseudo-classes:
9593 scrollbar-active
9594 scrollbar-back
9595 scrollbar-forward
9596 scrollbar-horizontal
9597 scrollbar-vertical
9598
9599 Reviewed by Adele
9600
9601 * css/CSSSelector.cpp:
9602 (WebCore::CSSSelector::extractPseudoType):
9603 * css/CSSSelector.h:
9604 (WebCore::CSSSelector::):
9605
timothy@apple.com920feccc2008-10-07 21:08:29 +000096062008-10-06 Timothy Hatcher <timothy@apple.com>
9607
9608 Add support to the Resources panel for queries like "#123", "foo #123",
9609 "line: 123" and "foo line: 123". These will match the query limiting
9610 the search only to the line specified. If only a line is specified,
9611 the whole line is matched.
9612
9613 https://bugs.webkit.org/show_bug.cgi?id=21422
9614
9615 Reviewed by Darin Adler.
9616
9617 * inspector/front-end/SourceFrame.js:
9618 (WebInspector.SourceFrame.prototype.sourceRow): Don't return the last
9619 row if the index is greater than the rows collection. Let it return
9620 undefined by indexing out-of-bounds.
9621 * inspector/front-end/SourceView.js:
9622 (WebInspector.SourceView.prototype.performSearch): Add support for
9623 queries like "#123", "foo #123", "line: 123" and "foo line: 123".
9624 Also match the whole query to the whole document in case there are
9625 colors like "#333".
9626
alp@webkit.orge1244662008-10-07 18:28:43 +000096272008-10-07 Alp Toker <alp@nuanti.com>
9628
9629 Reviewed by Mark Rowe.
9630
9631 https://bugs.webkit.org/show_bug.cgi?id=21392
9632 [GTK] Auto-generate JS DOM binding sources list
9633
9634 Remove the huge lists of generated DOM binding sources and headers in
9635 the build system. These are difficult to maintain and can be derived
9636 automatically.
9637
9638 The new strategy is to re-use the existing lists of IDL sources (which
9639 are needed for dist support anyway). This will also ease the addition
9640 of new language bindings.
9641
9642 * GNUmakefile.am:
9643
vestbo@webkit.org0bed2b22008-10-07 16:30:40 +000096442008-10-07 Tor Arne Vestbø <tavestbo@trolltech.com>
9645
9646 Reviewed by Simon.
9647
9648 Don't attempt to paint when updating control tints
9649
9650 We don't have a valid PlatformGraphicsContext so schedule
9651 the dirty scrollbar/scrollview area for repaint instead.
9652
9653 * platform/qt/ScrollbarThemeQt.cpp:
9654 (WebCore::ScrollbarThemeQt::paint):
9655 (WebCore::ScrollbarThemeQt::paintScrollCorner):
9656
zecke@webkit.org270bdd02008-10-07 07:54:06 +000096572008-10-07 Holger Hans Peter Freyther <zecke@selfish.org>
9658
9659 [qt] Build fix after Scrollbar.h and Widget.h changes.
9660
9661 * plugins/qt/PluginViewQt.cpp:
9662 (WebCore::PluginView::getValue):
9663 (WebCore::PluginView::init):
9664
hyatt@apple.com3cb50a82008-10-07 06:58:08 +000096652008-10-06 David Hyatt <hyatt@apple.com>
9666
9667 Enable viewless Mac WebKit to (kinda sorta) paint basic pages (with no frames on them).
9668
9669 Reviewed by Sam Weinig
9670
9671 * WebCore.base.exp:
9672 * WebCore.xcodeproj/project.pbxproj:
9673 * loader/EmptyClients.h:
9674 (WebCore::EmptyFrameLoaderClient::hasWebView):
9675 * loader/FrameLoader.cpp:
9676 (WebCore::FrameLoader::loadWithDocumentLoader):
9677 (WebCore::FrameLoader::transitionToCommitted):
9678 * loader/FrameLoaderClient.h:
9679 * page/FocusController.cpp:
9680 (WebCore::FocusController::setActive):
9681 * page/FrameView.cpp:
9682 (WebCore::FrameView::FrameView):
9683 (WebCore::FrameView::init):
9684 (WebCore::FrameView::layoutIfNeededRecursive):
9685 * page/FrameView.h:
9686
mitz@apple.com869c6692b2008-10-07 04:42:51 +000096872008-10-06 Dan Bernstein <mitz@apple.com>
9688
9689 - build fix
9690
9691 * bindings/objc/DOMEvents.h:
9692
eric@webkit.org1d0ef8e2008-10-07 01:11:38 +000096932008-10-06 Mark Mentovai <mark@moxienet.com>
9694
eric@webkit.org9e0b3b52008-10-07 01:14:05 +00009695 Reviewed by Tim Hatcher.
9696
9697 Use #if ENABLE(feature) where possible, and #if ENABLE_feature where
9698 Platform.h is not available, in preference to #ifdef ENABLE_feature.
9699 #ifdef is wrong now that features are disabled by #defining
9700 ENABLE_feature to 0.
9701
9702 https://bugs.webkit.org/show_bug.cgi?id=21338
9703
9704 * bindings/objc/DOMEvents.h:
9705 * bindings/objc/PublicDOMInterfaces.h:
9706 * dom/Document.idl:
9707 * page/DOMWindow.idl:
9708 * svg/svgtags.in:
9709
97102008-10-06 Mark Mentovai <mark@moxienet.com>
9711
eric@webkit.org1d0ef8e2008-10-07 01:11:38 +00009712 Reviewed by Sam Weinig.
9713
9714 * platform/network/mac/FormDataStreamMac.mm: #import <wtf/Threading.h>
9715 to get the declaration for isMainThread().
9716
eric@webkit.org569e8092008-10-07 01:05:34 +000097172008-10-06 Jeremy Moskovich <jeremy@chromium.org>
9718
eric@webkit.orge8585df2008-10-07 01:09:23 +00009719 Reviewed by Tim Hatcher.
9720
9721 WebCoreObjCExtras.c is actually an obj-c++ file, so change its name
9722 to reflect that.
9723
9724 * WebCore.xcodeproj/project.pbxproj:
9725 * platform/mac/WebCoreObjCExtras.c: Removed.
9726 * platform/mac/WebCoreObjCExtras.mm: Copied from WebCore/platform/mac/WebCoreObjCExtras.c.
9727
97282008-10-06 Jeremy Moskovich <jeremy@chromium.org>
9729
eric@webkit.org569e8092008-10-07 01:05:34 +00009730 Reviewed by Dan Bernstein.
9731
9732 Added C++ forward declaration for the NSURLAuthenticationChallenge class
9733 so that the m_currentMacChallenge variable doesn't cause a
9734 compilation error when ResourceHandleInternal.h is included from a C++ file.
9735 Fixes: https://bugs.webkit.org/show_bug.cgi?id=21411
9736
9737 * platform/network/ResourceHandleInternal.h:
9738
sfalken@apple.com01dbee12008-10-06 23:47:08 +000097392008-10-06 Steve Falkenburg <sfalken@apple.com>
9740
sfalken@apple.come897fd92008-10-07 00:17:26 +00009741 Windows build fix.
9742
9743 * WebCore.vcproj/WebCore.vcproj:
9744
97452008-10-06 Steve Falkenburg <sfalken@apple.com>
9746
sfalken@apple.com01dbee12008-10-06 23:47:08 +00009747 https://bugs.webkit.org/show_bug.cgi?id=21416
9748 Add missing null checks identified by Application Verifier.
9749
9750 Reviewed by Darin Adler.
9751
9752 * platform/win/SharedTimerWin.cpp:
9753 (WebCore::clearTimer):
9754
kmccullough@apple.com45a36da2008-10-06 23:08:16 +000097552008-10-06 Kevin McCullough <kmccullough@apple.com>
9756
kmccullough@apple.com3094b9b2008-10-06 23:15:11 +00009757 Reviewed by Tim Hatcher.
9758
9759 Removed accidentally left in debugging statement.
9760
9761 * inspector/front-end/inspector.js:
9762
97632008-10-06 Kevin McCullough <kmccullough@apple.com>
9764
kmccullough@apple.com47002eb2008-10-06 23:10:09 +00009765 Reviewed by Tim Hatcher and Oliver Hunt.
kmccullough@apple.com45a36da2008-10-06 23:08:16 +00009766
9767 https://bugs.webkit.org/show_bug.cgi?id=21412
9768 Bug 21412: Refactor user initiated profile count to be more stable
9769
9770 * inspector/InspectorController.cpp: Keep track of the user-initiated
9771 profiles here now.
9772 (WebCore::InspectorController::InspectorController):
9773 (WebCore::InspectorController::startUserInitiatedProfiling):
9774 (WebCore::InspectorController::stopUserInitiatedProfiling):
9775 * inspector/InspectorController.h:
9776 The front end will now need to check for the existence of the user-
9777 initiated profile title and use its count instead of keeping its own.
9778 * inspector/front-end/ProfilesPanel.js:
9779
mitz@apple.com1d60e5c2008-10-06 20:25:46 +000097802008-10-06 Dan Bernstein <mitz@apple.com>
9781
9782 Reviewed by Sam Weinig.
9783
9784 - separate GDI text drawing into its own function
9785
9786 * platform/graphics/win/FontCGWin.cpp:
9787 (WebCore::drawGDIGlyphs):
9788 (WebCore::Font::drawGlyphs):
9789
sfalken@apple.com593331e2008-10-06 19:55:09 +000097902008-10-03 Steve Falkenburg <sfalken@apple.com>
9791
9792 <rdar://problem/6249833> Fix default button appearance
9793
9794 Reviewed by Adele Peterson.
9795
9796 * rendering/RenderThemeWin.cpp:
9797 (WebCore::RenderThemeWin::supportsFocus):
9798 (WebCore::RenderThemeWin::determineClassicState):
9799 (WebCore::RenderThemeWin::determineButtonState):
9800 (WebCore::RenderThemeWin::getClassicThemeData):
9801 (WebCore::RenderThemeWin::getThemeData):
9802 (WebCore::drawControl):
9803 * rendering/RenderThemeWin.h:
9804
vestbo@webkit.orge4b1d4f2008-10-06 17:46:52 +000098052008-10-06 Tor Arne Vestbø <tavestbo@trolltech.com>
9806
9807 Reviewed by Simon.
9808
vestbo@webkit.orgc5067902008-10-06 18:11:31 +00009809 Add native virtual keycode to PlatformKeyboardEvent
9810
9811 * platform/PlatformKeyboardEvent.h:
9812 * platform/gtk/KeyEventGtk.cpp:
9813 (WebCore::PlatformKeyboardEvent::PlatformKeyboardEvent):
9814 * platform/mac/KeyEventMac.mm:
9815 (WebCore::PlatformKeyboardEvent::PlatformKeyboardEvent):
9816 * platform/qt/PlatformKeyboardEventQt.cpp:
9817 (WebCore::PlatformKeyboardEvent::PlatformKeyboardEvent):
9818 * platform/win/KeyEventWin.cpp:
9819 (WebCore::PlatformKeyboardEvent::PlatformKeyboardEvent):
9820 * platform/wx/KeyboardEventWx.cpp:
9821 (WebCore::PlatformKeyboardEvent::PlatformKeyboardEvent):
9822
98232008-10-06 Tor Arne Vestbø <tavestbo@trolltech.com>
9824
9825 Reviewed by Simon.
9826
vestbo@webkit.org89d13712008-10-06 17:51:39 +00009827 Enable WebCore::String <> CFStringRef conversion functions for QtWebKit/Mac
9828
9829 * platform/text/PlatformString.h:
9830 * platform/text/StringImpl.h:
9831 * platform/text/cf/StringCF.cpp:
9832 * platform/text/cf/StringImplCF.cpp:
9833
98342008-10-06 Tor Arne Vestbø <tavestbo@trolltech.com>
9835
9836 Reviewed by Simon.
9837
vestbo@webkit.orge4b1d4f2008-10-06 17:46:52 +00009838 Use bundles on QtWebKit/Mac for platform modules
9839
9840 * platform/FileSystem.h:
9841 * platform/qt/FileSystemQt.cpp:
9842 (WebCore::unloadModule):
9843
hausmann@webkit.org33791a82008-10-06 17:00:48 +000098442008-10-06 Ariya Hidayat <ariya.hidayat@trolltech.com>
9845
9846 Reviewed by Simon.
9847
9848 Build fix for MinGW.
9849
9850 * platform/win/SystemTimeWin.cpp:
9851 * plugins/win/PluginViewWin.cpp:
9852 (WebCore::PluginView::invalidateRect):
9853
aroben@apple.com5613e512008-10-06 15:39:39 +000098542008-10-06 Adam Roben <aroben@apple.com>
9855
aroben@apple.combf38ff12008-10-06 15:44:16 +00009856 Mimic the inspector/ directory structure in WebCore.vcproj
9857
9858 * WebCore.vcproj/WebCore.vcproj:
9859
98602008-10-06 Adam Roben <aroben@apple.com>
9861
aroben@apple.com5613e512008-10-06 15:39:39 +00009862 Windows build fix
9863
9864 * WebCore.vcproj/WebCore.vcproj: Update the Include path for all
9865 configurations to include WebCore/inspector.
9866
eric@webkit.org15e92962008-10-06 08:23:37 +000098672008-10-04 Eric Seidel <eric@webkit.org>
9868
9869 Reviewed by Darin Adler.
9870
9871 SVG should support ascent and descent properties <font-face> instead of <font>!
9872 https://bugs.webkit.org/show_bug.cgi?id=21365
9873
9874 Tested by many many existing SVG tests.
9875
9876 * svg/SVGFontFaceElement.cpp:
9877 (WebCore::SVGFontFaceElement::ascent):
9878 (WebCore::SVGFontFaceElement::descent):
9879
mjs@apple.com64662c82008-10-06 06:44:03 +000098802008-10-05 Darin Fisher <darin@chromium.org>
9881
9882 Reviewed by Eric Seidel.
9883
9884 REGRESSION: crash in ScriptElement::notifyFinished
9885 Fixes https://bugs.webkit.org/show_bug.cgi?id=21329
9886
9887 * dom/ScriptElement.cpp:
9888 (WebCore::ScriptElementData::notifyFinished): Revert part of r35744 to
9889 ensure that the ScriptElementData object is not destroyed prematurely.
9890
jmalonzo@webkit.org7cfb4ca2008-10-06 01:43:07 +000098912008-10-05 Chris Lord <chris@openedhand.com>
9892
9893 Reviewed by Alp Toker. Landed by Jan Alonzo.
9894
9895 https://bugs.webkit.org/show_bug.cgi?id=20624
9896 WebKit-gtk uses deprecated GtkType/GtkObject
9897
9898 * plugins/gtk/gtk2xtbin.c:
9899 (gtk_xtbin_get_type):
9900 * plugins/gtk/gtk2xtbin.h:
9901
jmalonzo@webkit.org1285b2a2008-10-05 21:57:05 +000099022008-10-05 Luke Kenneth Casson Leighton <lkcl@lkcl.net>
9903
9904 Reviewed by David Hyatt.
9905
9906 GTK_WINDOW_HWND not GTK_WINDOWING_HWND
9907 https://bugs.webkit.org/show_bug.cgi?id=20725
9908
9909 Updated to ToT by Jan Alonzo.
9910
9911 * plugins/gtk/PluginViewGtk.cpp:
9912 (WebCore::PluginView::getValue):
9913
jmalonzo@webkit.org2b465832008-10-05 21:50:12 +000099142008-10-05 Jan Michael Alonzo <jmalonzo@webkit.org>
9915
9916 Reviewed by Darin Adler.
9917
9918 Invalid cast from GdkWindow to GtkWidget
9919 https://bugs.webkit.org/show_bug.cgi?id=21391
9920
9921 Fix a misplaced closing parenthesis to actually cast the widget, not the window
9922
9923 * platform/gtk/PlatformScreenGtk.cpp:
9924 (WebCore::screenDepth):
9925
abarth@webkit.orgfb074382008-10-05 19:12:30 +000099262008-10-05 Adam Barth <abarth@webkit.org>
9927
9928 Reviewed by Darin Alder.
9929
9930 Attach the Origin header to POST requests to help defend against
9931 cross-site request forgery.
9932
9933 https://bugs.webkit.org/show_bug.cgi?id=20792
9934
9935 Collin Jackson <collinj@webkit.org> also contributed to this patch.
9936
9937 Tests: http/tests/security/originHeader/origin-header-for-data.html
9938 http/tests/security/originHeader/origin-header-for-empty.html
9939 http/tests/security/originHeader/origin-header-for-get.html
9940 http/tests/security/originHeader/origin-header-for-https.html
9941 http/tests/security/originHeader/origin-header-for-post.html
9942
9943 * bindings/js/JSDOMWindowBase.cpp:
9944 (WebCore::createWindow):
9945 * loader/FrameLoader.cpp:
9946 (WebCore::FrameLoader::createWindow):
9947 (WebCore::FrameLoader::urlSelected):
9948 (WebCore::FrameLoader::submitForm):
9949 (WebCore::FrameLoader::outgoingOrigin):
9950 (WebCore::FrameLoader::loadURL):
9951 (WebCore::FrameLoader::addExtraFieldsToRequest):
9952 (WebCore::FrameLoader::loadPostRequest):
9953 (WebCore::FrameLoader::loadResourceSynchronously):
9954 (WebCore::FrameLoader::loadItem):
9955 * loader/FrameLoader.h:
9956 * loader/SubresourceLoader.cpp:
9957 (WebCore::SubresourceLoader::create):
9958 * loader/loader.cpp:
9959 (WebCore::Loader::Host::servePendingRequests):
9960 * platform/SecurityOrigin.cpp:
9961 (WebCore::SecurityOrigin::toHTTPOrigin):
9962 * platform/SecurityOrigin.h:
9963 * platform/network/ResourceRequestBase.h:
9964 (WebCore::ResourceRequestBase::httpOrigin):
9965 (WebCore::ResourceRequestBase::setHTTPOrigin):
9966 (WebCore::ResourceRequestBase::clearHTTPOrigin):
9967 * xml/XMLHttpRequest.cpp:
9968 (WebCore::XMLHttpRequest::makeSimpleCrossSiteAccessRequest):
9969 (WebCore::XMLHttpRequest::makeCrossSiteAccessRequestWithPreflight):
9970 (WebCore::XMLHttpRequest::handleAsynchronousPreflightResult):
9971 (WebCore::XMLHttpRequest::didReceiveResponsePreflight):
9972
oliver@apple.com12c92c92008-10-05 08:28:51 +000099732008-10-04 Oliver Hunt <oliver@apple.com>
9974
9975 Reviewed by Tim Hatcher.
9976
9977 Bug 21381: Incremental parsing of html causes bogus line numbers in some cases
9978 <https://bugs.webkit.org/show_bug.cgi?id=21381>
9979
9980 If we hit a parsing boundary (end of a packet, etc) in the middle of a
9981 <script> element when we are doing an incremental parse, we exit the
9982 parser, and reenter later when more data is available. During this
9983 reentry we incorrectly reset the scriptStartLineno to the current line
9984 in the parser, which is now part way through the script element.
9985
9986 The solution is to track whether we are entering or reentering the parsing
9987 of a script element. We do this simply by 0 checking scriptStartLineno,
9988 and resetting it after we complete parsing of each script element.
9989
9990 Test: http/tests/incremental/pause-in-script-element.pl
9991
9992 * ChangeLog:
9993 * html/HTMLTokenizer.cpp:
9994 (WebCore::HTMLTokenizer::parseSpecial):
9995 (WebCore::HTMLTokenizer::scriptHandler):
9996
jmalonzo@webkit.orgcc0c46e2008-10-05 06:13:28 +000099972008-10-04 Alp Toker <alp@nuanti.com>
9998
9999 Reviewed by David Hyatt. Landed by Jan Alonzo.
10000
10001 https://bugs.webkit.org/show_bug.cgi?id=20924
10002 [Gtk] Linux/Gtk: Recent tree revisions fail Acid2 and Acid3
10003
10004 https://bugs.webkit.org/show_bug.cgi?id=19578
10005 [CURL] problem in parseDataUrl
10006
10007 De-obfuscate parseDataUrl() and fix regressions introduced in r35954.
10008 This patch also fixes encoding support in escaped (non-Base64) data
10009 URLs. All manual data URL tests now pass in both GLib and non-GLib
10010 code paths.
10011
10012 * platform/network/curl/ResourceHandleManager.cpp:
10013 (WebCore::parseDataUrl):
10014
timothy@apple.com5c58fb12008-10-05 04:12:40 +0000100152008-10-04 Timothy Hatcher <timothy@apple.com>
10016
10017 Makes breakpoints and debugging code during page load work in the
10018 Web Inspector's debugger. Specifically, this makes the source
10019 code for loading resources show up in the Scripts panel.
10020
10021 https://bugs.webkit.org/show_bug.cgi?id=19053
10022 rdar://problem/5933408
10023
10024 Reviewed by Mark Rowe.
10025
10026 * WebCore.xcodeproj/project.pbxproj: Mark the inspector group as
10027 not using tabs and a tab width of 8.
10028 * inspector/InspectorController.cpp:
10029 (WebCore::addResourceSourceToFrame): Return a bool to report if the
10030 source was added successfully or not.
10031 (WebCore::addSourceToFrame): Ditto.
10032 * inspector/front-end/ScriptView.js:
10033 (WebInspector.ScriptView.prototype.setupSourceFrameIfNeeded):
10034 Return early if the InspectorController.addSourceToFrame fails.
10035 Moved the delete of the _frameNeedsSetup property after that call so
10036 if the source wasn't added it will be attempted again.
10037 * inspector/front-end/SourceView.js:
10038 (WebInspector.SourceView.prototype.detach): Move a comment.
10039 (WebInspector.SourceView.prototype.setupSourceFrameIfNeeded):
10040 Don't check if the resource is finished or failed, just attempt
10041 to add the source to the frame. WebCore has the source, but the
10042 finished property hasn't been set yet. Return early if the
10043 InspectorController.addSourceToFrame fails. Moved the delete
10044 of the _frameNeedsSetup property after that call so if the source
10045 wasn't added it will be attempted again.
10046 (WebInspector.SourceView.prototype._resourceLoadingFinished):
10047 Clear the _frameNeedsSetup and _sourceFrameSetup properties so
10048 the source frame will we populated again now that the resource
10049 load has finished.
10050 * manual-tests/inspector/debugger-pause-during-load.html: Added.
10051
mrowe@apple.comb3214652008-10-05 03:04:18 +0000100522008-10-04 Mark Rowe <mrowe@apple.com>
10053
10054 Reviewed by Tim Hatcher.
10055
10056 Add a 'Check For Weak VTables' build phase to catch weak vtables as early as possible.
10057
10058 * WebCore.xcodeproj/project.pbxproj:
10059
hyatt@apple.coma4a9e252008-10-05 00:55:01 +0000100602008-10-04 David Hyatt <hyatt@apple.com>
10061
10062 https://bugs.webkit.org/show_bug.cgi?id=21373
10063
10064 Tear down scrollbars in FrameView rather than ScrollView so that the connection to the hostWindow()
10065 is still present.
10066
10067 Reviewed by Mark Rowe
10068
10069 * page/FrameView.cpp:
10070 (WebCore::FrameView::~FrameView):
10071
weinig@apple.com3b7e4b12008-10-04 22:52:19 +0000100722008-10-04 Sam Weinig <sam@webkit.org>
10073
10074 Reviewed by Dan Bernstein.
10075
10076 Avoid copying a Vector when using getSupportedKeySizes.
10077
10078 * html/HTMLKeygenElement.cpp:
10079 (WebCore::HTMLKeygenElement::HTMLKeygenElement):
10080 * platform/SSLKeyGenerator.h:
10081 * platform/gtk/TemporaryLinkStubs.cpp:
10082 (WebCore::getSupportedKeySizes):
10083 * platform/mac/SSLKeyGeneratorMac.mm:
10084 (WebCore::getSupportedKeySizes):
10085 * platform/qt/TemporaryLinkStubs.cpp:
10086 (WebCore::getSupportedKeySizes):
10087 * platform/win/TemporaryLinkStubs.cpp:
10088 (WebCore::getSupportedKeySizes):
10089 * platform/wx/TemporaryLinkStubs.cpp:
10090 (WebCore::getSupportedKeySizes):
10091
darin@apple.com28f84fc2008-10-04 21:10:00 +0000100922008-10-04 Darin Adler <darin@apple.com>
10093
10094 Reviewed by Cameron Zwarich.
10095
10096 - prepare for https://bugs.webkit.org/show_bug.cgi?id=21295
10097 Bug 21295: Replace ExecState with a call frame Register pointer
10098
10099 * bindings/js/JSQuarantinedObjectWrapper.cpp:
10100 (WebCore::JSQuarantinedObjectWrapper::allowsUnwrappedAccessFrom):
10101 Remove bogus "const".
10102 * bindings/js/JSQuarantinedObjectWrapper.h: Ditto.
10103
hyatt@apple.comb17c7752008-10-04 21:03:11 +0000101042008-10-04 David Hyatt <hyatt@apple.com>
10105
10106 Make PopupMenuClient obey the platform abstraction. Remove any connection to Document and RenderStyle.
10107
10108 Reviewed by Darin Adler
10109
10110 * WebCore.xcodeproj/project.pbxproj:
10111 * platform/PopupMenuClient.h:
10112 * platform/gtk/PopupMenuGtk.cpp:
10113 (WebCore::PopupMenu::show):
10114 * platform/mac/PopupMenuMac.mm:
10115 (WebCore::PopupMenu::populate):
10116 (WebCore::PopupMenu::show):
10117 * platform/qt/PopupMenuQt.cpp:
10118 (WebCore::PopupMenu::populate):
10119 * platform/win/PopupMenuWin.cpp:
10120 (WebCore::PopupMenu::calculatePositionAndSize):
10121 (WebCore::PopupMenu::paint):
10122 (WebCore::PopupWndProc):
10123 * rendering/RenderMenuList.cpp:
10124 (WebCore::RenderMenuList::itemStyle):
10125 (WebCore::RenderMenuList::menuStyle):
10126 (WebCore::RenderMenuList::hostWindow):
10127 * rendering/RenderMenuList.h:
10128 * rendering/RenderTextControl.cpp:
10129 (WebCore::RenderTextControl::itemStyle):
10130 (WebCore::RenderTextControl::menuStyle):
10131 (WebCore::RenderTextControl::hostWindow):
10132 * rendering/RenderTextControl.h:
10133
pewtermoose@webkit.orgd75c0152008-10-04 18:41:03 +0000101342008-10-04 Matt Lilek <webkit@mattlilek.com>
10135
10136 Build fix - restore Private role to headers that had it before the move.
10137
10138 * WebCore.xcodeproj/project.pbxproj:
10139
darin@apple.com2f394342008-10-04 18:37:11 +0000101402008-10-04 Darin Adler <darin@apple.com>
10141
10142 - try to fix build
10143
10144 * DerivedSources.make: Add new inspector directory to VPATH.
darin@apple.com35f35322008-10-04 18:37:22 +000010145 * GNUmakefile.am: Add new inspector directory to includes.
10146 Re-sort the IDL_BINDINGS list. Add new inspector directory
10147 to VPATH.
darin@apple.com2f394342008-10-04 18:37:11 +000010148
pewtermoose@webkit.org54177d02008-10-04 17:28:44 +0000101492008-10-04 Matt Lilek <webkit@mattlilek.com>
10150
10151 Not reviewed, attempt to fix Gtk build.
10152
10153 * GNUmakefile.am:
10154
timothy@apple.comf51a3aa2008-10-04 08:09:41 +0000101552008-10-03 Timothy Hatcher <timothy@apple.com>
10156
timothy@apple.com9c94f6b2008-10-04 08:10:54 +000010157 Move the Web Inspector files into a top-level "inspector" folder.
10158
10159 https://bugs.webkit.org/show_bug.cgi?id=21359
10160
10161 Reviewed by Dave Hyatt.
10162
10163 * GNUmakefile.am:
10164 * WebCore.pro:
10165 * WebCore.vcproj/WebCore.vcproj:
10166 * WebCore.xcodeproj/project.pbxproj:
10167 * WebCoreSources.bkl:
10168 * inspector/InspectorClient.h: Renamed from WebCore/page/InspectorClient.h.
10169 * inspector/InspectorController.cpp: Renamed from WebCore/page/InspectorController.cpp.
10170 * inspector/InspectorController.h: Renamed from WebCore/page/InspectorController.h.
10171 * inspector/JavaScriptCallFrame.cpp: Renamed from WebCore/page/JavaScriptCallFrame.cpp.
10172 * inspector/JavaScriptCallFrame.h: Renamed from WebCore/page/JavaScriptCallFrame.h.
10173 * inspector/JavaScriptCallFrame.idl: Renamed from WebCore/page/JavaScriptCallFrame.idl.
10174 * inspector/JavaScriptDebugListener.h: Renamed from WebCore/page/JavaScriptDebugListener.h.
10175 * inspector/JavaScriptDebugServer.cpp: Renamed from WebCore/page/JavaScriptDebugServer.cpp.
10176 * inspector/JavaScriptDebugServer.h: Renamed from WebCore/page/JavaScriptDebugServer.h.
10177 * inspector/JavaScriptProfile.cpp: Renamed from WebCore/page/JavaScriptProfile.cpp.
10178 * inspector/JavaScriptProfile.h: Renamed from WebCore/page/JavaScriptProfile.h.
10179 * inspector/JavaScriptProfileNode.cpp: Renamed from WebCore/page/JavaScriptProfileNode.cpp.
10180 * inspector/JavaScriptProfileNode.h: Renamed from WebCore/page/JavaScriptProfileNode.h.
10181 * inspector/front-end/Breakpoint.js: Renamed from WebCore/page/inspector/Breakpoint.js.
10182 * inspector/front-end/BreakpointsSidebarPane.js: Renamed from WebCore/page/inspector/BreakpointsSidebarPane.js.
10183 * inspector/front-end/CallStackSidebarPane.js: Renamed from WebCore/page/inspector/CallStackSidebarPane.js.
10184 * inspector/front-end/Console.js: Renamed from WebCore/page/inspector/Console.js.
10185 * inspector/front-end/DataGrid.js: Renamed from WebCore/page/inspector/DataGrid.js.
10186 * inspector/front-end/Database.js: Renamed from WebCore/page/inspector/Database.js.
10187 * inspector/front-end/DatabaseQueryView.js: Renamed from WebCore/page/inspector/DatabaseQueryView.js.
10188 * inspector/front-end/DatabaseTableView.js: Renamed from WebCore/page/inspector/DatabaseTableView.js.
10189 * inspector/front-end/DatabasesPanel.js: Renamed from WebCore/page/inspector/DatabasesPanel.js.
10190 * inspector/front-end/ElementsPanel.js: Renamed from WebCore/page/inspector/ElementsPanel.js.
10191 * inspector/front-end/ElementsTreeOutline.js: Renamed from WebCore/page/inspector/ElementsTreeOutline.js.
10192 * inspector/front-end/FontView.js: Renamed from WebCore/page/inspector/FontView.js.
10193 * inspector/front-end/ImageView.js: Renamed from WebCore/page/inspector/ImageView.js.
10194 * inspector/front-end/Images/back.png: Renamed from WebCore/page/inspector/Images/back.png.
10195 * inspector/front-end/Images/checker.png: Renamed from WebCore/page/inspector/Images/checker.png.
10196 * inspector/front-end/Images/clearConsoleButtons.png: Renamed from WebCore/page/inspector/Images/clearConsoleButtons.png.
10197 * inspector/front-end/Images/closeButtons.png: Renamed from WebCore/page/inspector/Images/closeButtons.png.
10198 * inspector/front-end/Images/consoleButtons.png: Renamed from WebCore/page/inspector/Images/consoleButtons.png.
10199 * inspector/front-end/Images/database.png: Renamed from WebCore/page/inspector/Images/database.png.
10200 * inspector/front-end/Images/databaseTable.png: Renamed from WebCore/page/inspector/Images/databaseTable.png.
10201 * inspector/front-end/Images/databasesIcon.png: Renamed from WebCore/page/inspector/Images/databasesIcon.png.
10202 * inspector/front-end/Images/debuggerContinue.png: Renamed from WebCore/page/inspector/Images/debuggerContinue.png.
10203 * inspector/front-end/Images/debuggerPause.png: Renamed from WebCore/page/inspector/Images/debuggerPause.png.
10204 * inspector/front-end/Images/debuggerStepInto.png: Renamed from WebCore/page/inspector/Images/debuggerStepInto.png.
10205 * inspector/front-end/Images/debuggerStepOut.png: Renamed from WebCore/page/inspector/Images/debuggerStepOut.png.
10206 * inspector/front-end/Images/debuggerStepOver.png: Renamed from WebCore/page/inspector/Images/debuggerStepOver.png.
10207 * inspector/front-end/Images/debuggingButtons.png: Renamed from WebCore/page/inspector/Images/debuggingButtons.png.
10208 * inspector/front-end/Images/disclosureTriangleSmallDown.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallDown.png.
10209 * inspector/front-end/Images/disclosureTriangleSmallDownBlack.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallDownBlack.png.
10210 * inspector/front-end/Images/disclosureTriangleSmallDownWhite.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallDownWhite.png.
10211 * inspector/front-end/Images/disclosureTriangleSmallRight.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallRight.png.
10212 * inspector/front-end/Images/disclosureTriangleSmallRightBlack.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallRightBlack.png.
10213 * inspector/front-end/Images/disclosureTriangleSmallRightDown.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallRightDown.png.
10214 * inspector/front-end/Images/disclosureTriangleSmallRightDownBlack.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallRightDownBlack.png.
10215 * inspector/front-end/Images/disclosureTriangleSmallRightDownWhite.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallRightDownWhite.png.
10216 * inspector/front-end/Images/disclosureTriangleSmallRightWhite.png: Renamed from WebCore/page/inspector/Images/disclosureTriangleSmallRightWhite.png.
10217 * inspector/front-end/Images/dockButtons.png: Renamed from WebCore/page/inspector/Images/dockButtons.png.
10218 * inspector/front-end/Images/elementsIcon.png: Renamed from WebCore/page/inspector/Images/elementsIcon.png.
10219 * inspector/front-end/Images/errorIcon.png: Renamed from WebCore/page/inspector/Images/errorIcon.png.
10220 * inspector/front-end/Images/errorMediumIcon.png: Renamed from WebCore/page/inspector/Images/errorMediumIcon.png.
10221 * inspector/front-end/Images/excludeButtons.png: Renamed from WebCore/page/inspector/Images/excludeButtons.png.
10222 * inspector/front-end/Images/focusButtons.png: Renamed from WebCore/page/inspector/Images/focusButtons.png.
10223 * inspector/front-end/Images/forward.png: Renamed from WebCore/page/inspector/Images/forward.png.
10224 * inspector/front-end/Images/glossyHeader.png: Renamed from WebCore/page/inspector/Images/glossyHeader.png.
10225 * inspector/front-end/Images/glossyHeaderPressed.png: Renamed from WebCore/page/inspector/Images/glossyHeaderPressed.png.
10226 * inspector/front-end/Images/glossyHeaderSelected.png: Renamed from WebCore/page/inspector/Images/glossyHeaderSelected.png.
10227 * inspector/front-end/Images/glossyHeaderSelectedPressed.png: Renamed from WebCore/page/inspector/Images/glossyHeaderSelectedPressed.png.
10228 * inspector/front-end/Images/goArrow.png: Renamed from WebCore/page/inspector/Images/goArrow.png.
10229 * inspector/front-end/Images/largerResourcesButtons.png: Renamed from WebCore/page/inspector/Images/largerResourcesButtons.png.
10230 * inspector/front-end/Images/nodeSearchButtons.png: Renamed from WebCore/page/inspector/Images/nodeSearchButtons.png.
10231 * inspector/front-end/Images/paneBottomGrow.png: Renamed from WebCore/page/inspector/Images/paneBottomGrow.png.
10232 * inspector/front-end/Images/paneBottomGrowActive.png: Renamed from WebCore/page/inspector/Images/paneBottomGrowActive.png.
10233 * inspector/front-end/Images/paneGrowHandleLine.png: Renamed from WebCore/page/inspector/Images/paneGrowHandleLine.png.
10234 * inspector/front-end/Images/pauseOnExceptionButtons.png: Renamed from WebCore/page/inspector/Images/pauseOnExceptionButtons.png.
10235 * inspector/front-end/Images/percentButtons.png: Renamed from WebCore/page/inspector/Images/percentButtons.png.
10236 * inspector/front-end/Images/profileGroupIcon.png: Renamed from WebCore/page/inspector/Images/profileGroupIcon.png.
10237 * inspector/front-end/Images/profileIcon.png: Renamed from WebCore/page/inspector/Images/profileIcon.png.
10238 * inspector/front-end/Images/profileSmallIcon.png: Renamed from WebCore/page/inspector/Images/profileSmallIcon.png.
10239 * inspector/front-end/Images/profilesIcon.png: Renamed from WebCore/page/inspector/Images/profilesIcon.png.
10240 * inspector/front-end/Images/recordButtons.png: Renamed from WebCore/page/inspector/Images/recordButtons.png.
10241 * inspector/front-end/Images/reloadButtons.png: Renamed from WebCore/page/inspector/Images/reloadButtons.png.
10242 * inspector/front-end/Images/resourceCSSIcon.png: Renamed from WebCore/page/inspector/Images/resourceCSSIcon.png.
10243 * inspector/front-end/Images/resourceDocumentIcon.png: Renamed from WebCore/page/inspector/Images/resourceDocumentIcon.png.
10244 * inspector/front-end/Images/resourceDocumentIconSmall.png: Renamed from WebCore/page/inspector/Images/resourceDocumentIconSmall.png.
10245 * inspector/front-end/Images/resourceJSIcon.png: Renamed from WebCore/page/inspector/Images/resourceJSIcon.png.
10246 * inspector/front-end/Images/resourcePlainIcon.png: Renamed from WebCore/page/inspector/Images/resourcePlainIcon.png.
10247 * inspector/front-end/Images/resourcePlainIconSmall.png: Renamed from WebCore/page/inspector/Images/resourcePlainIconSmall.png.
10248 * inspector/front-end/Images/resourcesIcon.png: Renamed from WebCore/page/inspector/Images/resourcesIcon.png.
10249 * inspector/front-end/Images/resourcesSizeGraphIcon.png: Renamed from WebCore/page/inspector/Images/resourcesSizeGraphIcon.png.
10250 * inspector/front-end/Images/resourcesTimeGraphIcon.png: Renamed from WebCore/page/inspector/Images/resourcesTimeGraphIcon.png.
10251 * inspector/front-end/Images/scriptsIcon.png: Renamed from WebCore/page/inspector/Images/scriptsIcon.png.
10252 * inspector/front-end/Images/searchSmallBlue.png: Renamed from WebCore/page/inspector/Images/searchSmallBlue.png.
10253 * inspector/front-end/Images/searchSmallBrightBlue.png: Renamed from WebCore/page/inspector/Images/searchSmallBrightBlue.png.
10254 * inspector/front-end/Images/searchSmallGray.png: Renamed from WebCore/page/inspector/Images/searchSmallGray.png.
10255 * inspector/front-end/Images/searchSmallWhite.png: Renamed from WebCore/page/inspector/Images/searchSmallWhite.png.
10256 * inspector/front-end/Images/segment.png: Renamed from WebCore/page/inspector/Images/segment.png.
10257 * inspector/front-end/Images/segmentEnd.png: Renamed from WebCore/page/inspector/Images/segmentEnd.png.
10258 * inspector/front-end/Images/segmentHover.png: Renamed from WebCore/page/inspector/Images/segmentHover.png.
10259 * inspector/front-end/Images/segmentHoverEnd.png: Renamed from WebCore/page/inspector/Images/segmentHoverEnd.png.
10260 * inspector/front-end/Images/segmentSelected.png: Renamed from WebCore/page/inspector/Images/segmentSelected.png.
10261 * inspector/front-end/Images/segmentSelectedEnd.png: Renamed from WebCore/page/inspector/Images/segmentSelectedEnd.png.
10262 * inspector/front-end/Images/splitviewDimple.png: Renamed from WebCore/page/inspector/Images/splitviewDimple.png.
10263 * inspector/front-end/Images/splitviewDividerBackground.png: Renamed from WebCore/page/inspector/Images/splitviewDividerBackground.png.
10264 * inspector/front-end/Images/statusbarBackground.png: Renamed from WebCore/page/inspector/Images/statusbarBackground.png.
10265 * inspector/front-end/Images/statusbarBottomBackground.png: Renamed from WebCore/page/inspector/Images/statusbarBottomBackground.png.
10266 * inspector/front-end/Images/statusbarButtons.png: Renamed from WebCore/page/inspector/Images/statusbarButtons.png.
10267 * inspector/front-end/Images/statusbarMenuButton.png: Renamed from WebCore/page/inspector/Images/statusbarMenuButton.png.
10268 * inspector/front-end/Images/statusbarMenuButtonSelected.png: Renamed from WebCore/page/inspector/Images/statusbarMenuButtonSelected.png.
10269 * inspector/front-end/Images/statusbarResizerHorizontal.png: Renamed from WebCore/page/inspector/Images/statusbarResizerHorizontal.png.
10270 * inspector/front-end/Images/statusbarResizerVertical.png: Renamed from WebCore/page/inspector/Images/statusbarResizerVertical.png.
10271 * inspector/front-end/Images/timelinePillBlue.png: Renamed from WebCore/page/inspector/Images/timelinePillBlue.png.
10272 * inspector/front-end/Images/timelinePillGray.png: Renamed from WebCore/page/inspector/Images/timelinePillGray.png.
10273 * inspector/front-end/Images/timelinePillGreen.png: Renamed from WebCore/page/inspector/Images/timelinePillGreen.png.
10274 * inspector/front-end/Images/timelinePillOrange.png: Renamed from WebCore/page/inspector/Images/timelinePillOrange.png.
10275 * inspector/front-end/Images/timelinePillPurple.png: Renamed from WebCore/page/inspector/Images/timelinePillPurple.png.
10276 * inspector/front-end/Images/timelinePillRed.png: Renamed from WebCore/page/inspector/Images/timelinePillRed.png.
10277 * inspector/front-end/Images/timelinePillYellow.png: Renamed from WebCore/page/inspector/Images/timelinePillYellow.png.
10278 * inspector/front-end/Images/tipBalloon.png: Renamed from WebCore/page/inspector/Images/tipBalloon.png.
10279 * inspector/front-end/Images/tipBalloonBottom.png: Renamed from WebCore/page/inspector/Images/tipBalloonBottom.png.
10280 * inspector/front-end/Images/tipIcon.png: Renamed from WebCore/page/inspector/Images/tipIcon.png.
10281 * inspector/front-end/Images/tipIconPressed.png: Renamed from WebCore/page/inspector/Images/tipIconPressed.png.
10282 * inspector/front-end/Images/toolbarItemSelected.png: Renamed from WebCore/page/inspector/Images/toolbarItemSelected.png.
10283 * inspector/front-end/Images/treeDownTriangleBlack.png: Renamed from WebCore/page/inspector/Images/treeDownTriangleBlack.png.
10284 * inspector/front-end/Images/treeDownTriangleWhite.png: Renamed from WebCore/page/inspector/Images/treeDownTriangleWhite.png.
10285 * inspector/front-end/Images/treeRightTriangleBlack.png: Renamed from WebCore/page/inspector/Images/treeRightTriangleBlack.png.
10286 * inspector/front-end/Images/treeRightTriangleWhite.png: Renamed from WebCore/page/inspector/Images/treeRightTriangleWhite.png.
10287 * inspector/front-end/Images/treeUpTriangleBlack.png: Renamed from WebCore/page/inspector/Images/treeUpTriangleBlack.png.
10288 * inspector/front-end/Images/treeUpTriangleWhite.png: Renamed from WebCore/page/inspector/Images/treeUpTriangleWhite.png.
10289 * inspector/front-end/Images/userInputIcon.png: Renamed from WebCore/page/inspector/Images/userInputIcon.png.
10290 * inspector/front-end/Images/userInputPreviousIcon.png: Renamed from WebCore/page/inspector/Images/userInputPreviousIcon.png.
10291 * inspector/front-end/Images/warningIcon.png: Renamed from WebCore/page/inspector/Images/warningIcon.png.
10292 * inspector/front-end/Images/warningMediumIcon.png: Renamed from WebCore/page/inspector/Images/warningMediumIcon.png.
10293 * inspector/front-end/Images/warningsErrors.png: Renamed from WebCore/page/inspector/Images/warningsErrors.png.
10294 * inspector/front-end/MetricsSidebarPane.js: Renamed from WebCore/page/inspector/MetricsSidebarPane.js.
10295 * inspector/front-end/Object.js: Renamed from WebCore/page/inspector/Object.js.
10296 * inspector/front-end/ObjectPropertiesSection.js: Renamed from WebCore/page/inspector/ObjectPropertiesSection.js.
10297 * inspector/front-end/Panel.js: Renamed from WebCore/page/inspector/Panel.js.
10298 * inspector/front-end/Placard.js: Renamed from WebCore/page/inspector/Placard.js.
10299 * inspector/front-end/ProfileView.js: Renamed from WebCore/page/inspector/ProfileView.js.
10300 * inspector/front-end/ProfilesPanel.js: Renamed from WebCore/page/inspector/ProfilesPanel.js.
10301 * inspector/front-end/PropertiesSection.js: Renamed from WebCore/page/inspector/PropertiesSection.js.
10302 * inspector/front-end/PropertiesSidebarPane.js: Renamed from WebCore/page/inspector/PropertiesSidebarPane.js.
10303 * inspector/front-end/Resource.js: Renamed from WebCore/page/inspector/Resource.js.
10304 * inspector/front-end/ResourceCategory.js: Renamed from WebCore/page/inspector/ResourceCategory.js.
10305 * inspector/front-end/ResourceView.js: Renamed from WebCore/page/inspector/ResourceView.js.
10306 * inspector/front-end/ResourcesPanel.js: Renamed from WebCore/page/inspector/ResourcesPanel.js.
10307 * inspector/front-end/ScopeChainSidebarPane.js: Renamed from WebCore/page/inspector/ScopeChainSidebarPane.js.
10308 * inspector/front-end/Script.js: Renamed from WebCore/page/inspector/Script.js.
10309 * inspector/front-end/ScriptView.js: Renamed from WebCore/page/inspector/ScriptView.js.
10310 * inspector/front-end/ScriptsPanel.js: Renamed from WebCore/page/inspector/ScriptsPanel.js.
10311 * inspector/front-end/SidebarPane.js: Renamed from WebCore/page/inspector/SidebarPane.js.
10312 * inspector/front-end/SidebarTreeElement.js: Renamed from WebCore/page/inspector/SidebarTreeElement.js.
10313 * inspector/front-end/SourceFrame.js: Renamed from WebCore/page/inspector/SourceFrame.js.
10314 * inspector/front-end/SourceView.js: Renamed from WebCore/page/inspector/SourceView.js.
10315 * inspector/front-end/StylesSidebarPane.js: Renamed from WebCore/page/inspector/StylesSidebarPane.js.
10316 * inspector/front-end/TextPrompt.js: Renamed from WebCore/page/inspector/TextPrompt.js.
10317 * inspector/front-end/View.js: Renamed from WebCore/page/inspector/View.js.
10318 * inspector/front-end/WebKit.qrc: Renamed from WebCore/page/inspector/WebKit.qrc.
10319 * inspector/front-end/inspector.css: Renamed from WebCore/page/inspector/inspector.css.
10320 * inspector/front-end/inspector.html: Renamed from WebCore/page/inspector/inspector.html.
10321 * inspector/front-end/inspector.js: Renamed from WebCore/page/inspector/inspector.js.
10322 * inspector/front-end/treeoutline.js: Renamed from WebCore/page/inspector/treeoutline.js.
10323 * inspector/front-end/utilities.js: Renamed from WebCore/page/inspector/utilities.js.
10324
103252008-10-03 Timothy Hatcher <timothy@apple.com>
10326
timothy@apple.com11eb1a32008-10-04 08:09:52 +000010327 Adds support to the Web Inspector's Elements panel for fast tag name,
10328 class name, id and attribute name searching. The panel first tries
10329 using getElementById, getElementsByClassName and getElementsByTagName
10330 with the search query. Then does a slower search using XPath for partial
10331 matches, text and comment matches.
10332
10333 Adds support for search queries like "<div>", "<h" and "frame>".
10334 These forms limit the search to tag names, text and comment matches.
10335
10336 https://bugs.webkit.org/show_bug.cgi?id=21353
10337
10338 Reviewed by Maciej Stachowiak.
10339
10340 * page/inspector/ElementsPanel.js:
10341 (WebInspector.ElementsPanel.prototype.performSearch): Add tag syntax
10342 support. Add new search functions that try exact matches first.
10343
103442008-10-03 Timothy Hatcher <timothy@apple.com>
10345
timothy@apple.comf51a3aa2008-10-04 08:09:41 +000010346 Changes how searching works in the Web Inspector's Elements
10347 panel. The search tasks are divided into chunks that are small
10348 units of work that are performed at a time interval. This
10349 change also prevents queries that will select all elements,
10350 since that isn't useful.
10351
10352 https://bugs.webkit.org/show_bug.cgi?id=21285
10353
10354 Reviewed by Oliver Hunt.
10355
10356 * page/inspector/ElementsPanel.js:
10357 (WebInspector.ElementsPanel.prototype.searchCancled):
10358 Remove the searchResultsProperty form results since there might
10359 be an unfinished search.
10360 (WebInspector.ElementsPanel.prototype.performSearch): Divide the
10361 documents and search functions into chunks that are performed on
10362 a interval of 25ms. Prevent searches for "//*" and "*".
10363
mjs@apple.com8b246d62008-10-04 07:15:33 +0000103642008-10-03 Maciej Stachowiak <mjs@apple.com>
10365
10366 Reviewed by Cameron Zwarich.
10367
10368 - "this" object in methods called on primitives should be wrapper object
10369 https://bugs.webkit.org/show_bug.cgi?id=21362
10370
10371 Updated so toThis conversion for the split window is handled properly.
10372
10373 * bindings/scripts/CodeGeneratorJS.pm:
10374
weinig@apple.com1b4545c2008-10-04 05:16:40 +0000103752008-10-03 Sam Weinig <sam@webkit.org>
10376
10377 Reviewed by David "The Motivator" Hyatt.
10378
10379 Patch for https://bugs.webkit.org/show_bug.cgi?id=21355
10380 Move SecurityOrigin out of platform/ to page/.
10381
10382 It was a layering violation for SecurityOrigin to be in platform
10383 as it depended on FrameLoader.
10384
10385 * GNUmakefile.am:
10386 * WebCore.pro:
10387 * WebCore.vcproj/WebCore.vcproj:
10388 * WebCore.xcodeproj/project.pbxproj:
10389 * WebCoreSources.bkl:
10390 * page/SecurityOrigin.cpp: Copied from platform/SecurityOrigin.cpp.
10391 * page/SecurityOrigin.h: Copied from platform/SecurityOrigin.h.
10392 * page/SecurityOriginHash.h: Copied from platform/SecurityOriginHash.h.
10393 * platform/SecurityOrigin.cpp: Removed.
10394 * platform/SecurityOrigin.h: Removed.
10395 * platform/SecurityOriginHash.h: Removed.
10396
jmalonzo@webkit.org22d7ed12008-10-04 04:24:23 +0000103972008-10-03 Marco Barisione <marco.barisione@collabora.co.uk>
10398
10399 Reviewed by Alp Toker.
10400
10401 http://bugs.webkit.org/show_bug.cgi?id=18832
10402 [curl] file upload does not work
10403
10404 The curl_off_t integer type has a different size depending if large
10405 file support is enabled or not. There is no different public API for
10406 the two cases, so the same function accepts a different type based on
10407 a compilation option the could be different in WebKit and libcurl.
10408 To fix the bug we query libcurl at runtime for large file support and
10409 pass the right type based on that.
10410
10411 * platform/network/curl/ResourceHandleManager.cpp:
10412 (WebCore::ResourceHandleManager::setupPOST):
10413
jmalonzo@webkit.org047c3402008-10-04 04:02:30 +0000104142008-10-03 Jan Michael Alonzo <jmalonzo@webkit.org>
10415
10416 Reviewed by David Hyatt.
10417
10418 Gtk build fixes.
10419
10420 * platform/gtk/FileChooserGtk.cpp:
10421 (WebCore::FileChooser::openFileChooser):
10422 * platform/gtk/PlatformScreenGtk.cpp:
10423 (WebCore::screenDepth):
10424 (WebCore::screenDepthPerComponent):
10425 (WebCore::screenAvailableRect):
10426 * platform/gtk/PopupMenuGtk.cpp:
10427 (WebCore::PopupMenu::show):
10428 * platform/gtk/ScrollViewGtk.cpp:
10429 (WebCore::ScrollView::platformAddChild):
10430 (WebCore::ScrollView::platformRemoveChild):
10431 * platform/gtk/WidgetGtk.cpp:
10432 (WebCore::Widget::setCursor):
10433 * plugins/gtk/PluginViewGtk.cpp:
10434 (WebCore::PluginView::getValue):
10435 (WebCore::PluginView::forceRedraw):
10436 (WebCore::PluginView::init):
10437
hyatt@apple.com4d1cacb2008-10-04 01:07:31 +0000104382008-10-03 David Hyatt <hyatt@apple.com>
10439
hyatt@apple.com55377bb2008-10-04 01:09:37 +000010440 Fix Qt bustage from missing include.
10441
10442 * platform/qt/PlatformScreenQt.cpp:
10443
104442008-10-03 David Hyatt <hyatt@apple.com>
10445
hyatt@apple.comeff53462008-10-04 01:08:35 +000010446 Fix Windows scrollbar bustage in popup menus.
10447
10448 * platform/win/PopupMenuWin.cpp:
10449 (WebCore::PopupWndProc):
10450
104512008-10-03 David Hyatt <hyatt@apple.com>
10452
hyatt@apple.com4d1cacb2008-10-04 01:07:31 +000010453 Fix Windows bustage.
10454
10455 * platform/win/FileChooserWin.cpp:
10456 (WebCore::FileChooser::openFileChooser):
10457 * platform/win/PlatformScreenWin.cpp:
10458 (WebCore::monitorInfoForWidget):
10459 * platform/win/WidgetWin.cpp:
10460 * plugins/win/PluginViewWin.cpp:
10461 (WebCore::PluginView::getValue):
10462 (WebCore::PluginView::forceRedraw):
10463 (WebCore::PluginView::init):
10464
darin@apple.com3d73fee2008-10-03 21:39:16 +0000104652008-10-03 Darin Adler <darin@apple.com>
10466
darin@apple.comc1e2d312008-10-03 22:55:04 +000010467 * bindings/js/JSInspectedObjectWrapper.cpp: Try to fix a build failure
10468 seen on some machines but not others by adding an include.
10469
104702008-10-03 Darin Adler <darin@apple.com>
10471
darin@apple.com682a07e2008-10-03 22:41:30 +000010472 - Qt build fix
10473
10474 * bridge/qt/qt_runtime.cpp: Remove long-obsolete codeType and
10475 execute functions. Declarations for these relied on the CodeType
10476 enumeration, which used to be in ExecState.h; but the functions
10477 aren't needed at all.
10478 * bridge/qt/qt_runtime.h: Ditto.
10479
104802008-10-03 Darin Adler <darin@apple.com>
10481
darin@apple.com3d73fee2008-10-03 21:39:16 +000010482 Reviewed by Geoff Garen.
10483
10484 - next step of https://bugs.webkit.org/show_bug.cgi?id=21295
10485 Turn ExecState into a call frame pointer.
10486
10487 Remove m_globalObject and m_globalData from ExecState.
10488
10489 * bindings/js/JSDOMWindowBase.cpp:
10490 (WebCore::JSDOMWindowBase::JSDOMWindowBaseData::JSDOMWindowBaseData):
10491 Removed an argument now that JSGlobalObject doesn't need it any more.
10492 (WebCore::JSDOMWindowBase::JSDOMWindowBase): Removed the argument from
10493 the JSDOMWindowBaseData constructor, and added the this argument to the
10494 JSGlobalObject constructor. This is because a couple key bits of
10495 initialization moved from the data constructor to the JSGlobalObject
10496 constructor.
10497 * bindings/js/JSDOMWindowBase.h: Ditto.
10498
10499 * bridge/qt/qt_runtime.cpp:
10500 (JSC::Bindings::QtRuntimeMethod::QtRuntimeMethod):
10501 * bridge/runtime_method.cpp:
10502 (JSC::RuntimeMethod::RuntimeMethod):
10503 Pass JSGlobalData* instead of ExecState* to the InternalFunction
10504 constructor.
10505
hyatt@apple.com0e7921d2008-10-03 21:16:13 +0000105062008-10-03 David Hyatt <hyatt@apple.com>
10507
10508 Fix Windows/Qt build bustage.
10509
10510 Reviewed by ggaren
10511
10512 * loader/EmptyClients.h:
10513 (WebCore::EmptyChromeClient::platformWindow):
10514 * page/Chrome.cpp:
10515 (WebCore::Chrome::platformWindow):
10516 * page/Chrome.h:
10517 * page/ChromeClient.h:
10518 * platform/HostWindow.h:
10519 * platform/qt/PlatformScreenQt.cpp:
10520 (WebCore::screenDepth):
10521 (WebCore::screenDepthPerComponent):
10522 (WebCore::screenIsMonochrome):
10523 (WebCore::screenRect):
10524 (WebCore::screenAvailableRect):
10525 * platform/qt/PopupMenuQt.cpp:
10526 (WebCore::PopupMenu::show):
10527 * platform/win/PopupMenuWin.cpp:
10528 (WebCore::PopupMenu::show):
10529 (WebCore::PopupMenu::calculatePositionAndSize):
10530 (WebCore::PopupWndProc):
10531
simon.fraser@apple.comed87cd22008-10-03 20:20:01 +0000105322008-10-03 Simon Fraser <simon.fraser@apple.com>
10533
10534 Reviewed by Dave Hyatt
10535
10536 Make setStyle() take a const RenderStyle, to ensure that an
10537 earlier RenderStyle::diff() remains valid.
10538
10539 * rendering/RenderBR.cpp:
10540 * rendering/RenderBR.h:
10541 * rendering/RenderBlock.cpp:
10542 * rendering/RenderBlock.h:
10543 * rendering/RenderBox.cpp:
10544 * rendering/RenderBox.h:
10545 * rendering/RenderButton.cpp:
10546 * rendering/RenderButton.h:
10547 * rendering/RenderFieldset.cpp:
10548 * rendering/RenderFieldset.h:
10549 * rendering/RenderFileUploadControl.cpp:
10550 * rendering/RenderFileUploadControl.h:
10551 * rendering/RenderInline.cpp:
10552 * rendering/RenderInline.h:
10553 * rendering/RenderListBox.cpp:
10554 * rendering/RenderListBox.h:
10555 * rendering/RenderListItem.cpp:
10556 * rendering/RenderListItem.h:
10557 * rendering/RenderListMarker.cpp:
10558 * rendering/RenderListMarker.h:
10559 * rendering/RenderMenuList.cpp:
10560 * rendering/RenderMenuList.h:
10561 * rendering/RenderObject.cpp:
10562 (WebCore::RenderObject::setStyle):
10563 * rendering/RenderObject.h:
10564 * rendering/RenderReplaced.cpp:
10565 * rendering/RenderReplaced.h:
10566 * rendering/RenderSVGBlock.cpp:
10567 (WebCore::RenderSVGBlock::setStyle):
10568 * rendering/RenderSVGBlock.h:
10569 * rendering/RenderSVGGradientStop.cpp:
10570 * rendering/RenderSVGGradientStop.h:
10571 * rendering/RenderSlider.cpp:
10572 * rendering/RenderSlider.h:
10573 * rendering/RenderTable.cpp:
10574 * rendering/RenderTable.h:
10575 * rendering/RenderTableCell.cpp:
10576 * rendering/RenderTableCell.h:
10577 * rendering/RenderTableRow.cpp:
10578 * rendering/RenderTableRow.h:
10579 * rendering/RenderText.cpp:
10580 * rendering/RenderText.h:
10581 * rendering/RenderTextControl.cpp:
10582 * rendering/RenderTextControl.h:
10583 * rendering/RenderWidget.cpp:
10584 * rendering/RenderWidget.h:
10585 * rendering/style/RenderStyle.h:
10586 (WebCore::RenderStyle::isDisplayReplacedType):
10587 (WebCore::RenderStyle::isDisplayInlineType):
10588
hyatt@apple.com1ae34462008-10-03 19:17:35 +0000105892008-10-03 David Hyatt <hyatt@apple.com>
10590
hyatt@apple.com938a55f2008-10-03 20:10:32 +000010591 Preparation for enabling scrollbars to hit test properly inside transforms. Clean up the scrollbar
10592 event handlers to no longer be virtual. Don't pass a mouse event where none is needed. Add a new
10593 method on Scrollbars called transformEvent that will apply all of the transforms to make a new event
10594 that will work properly for hit testing. This patch just stubs out that method to return the same
10595 event untransformed.
10596
10597 Reviewed by Darin Adler
10598
10599 * page/EventHandler.cpp:
10600 (WebCore::EventHandler::handleMouseDoubleClickEvent):
10601 (WebCore::EventHandler::handleMouseMoveEvent):
10602 (WebCore::EventHandler::handleMouseReleaseEvent):
10603 (WebCore::EventHandler::passMousePressEventToScrollbar):
10604 * page/gtk/EventHandlerGtk.cpp:
10605 * page/mac/EventHandlerMac.mm:
10606 * page/qt/EventHandlerQt.cpp:
10607 * page/win/EventHandlerWin.cpp:
10608 * page/wx/EventHandlerWx.cpp:
10609 * platform/Scrollbar.cpp:
10610 (WebCore::Scrollbar::mouseMoved):
10611 (WebCore::Scrollbar::mouseExited):
10612 (WebCore::Scrollbar::mouseUp):
10613 (WebCore::Scrollbar::mouseDown):
10614 (WebCore::Scrollbar::transformEvent):
10615 * platform/Scrollbar.h:
10616
106172008-10-03 David Hyatt <hyatt@apple.com>
10618
hyatt@apple.com1ae34462008-10-03 19:17:35 +000010619 https://bugs.webkit.org/show_bug.cgi?id=21340
10620
10621 Remove "containingWindow()/setContainingWindow()" from Widget. HostWindow covers this now.
10622
10623 Reviewed by Dan Bernstein & Darin Adler
10624
10625 * platform/ScrollView.cpp:
10626 (WebCore::ScrollView::addChild):
10627 * platform/Widget.cpp:
10628 (WebCore::Widget::init):
10629 * platform/Widget.h:
10630 * platform/mac/WidgetMac.mm:
10631 * platform/win/PopupMenuWin.cpp:
10632 (WebCore::PopupMenu::show):
10633
adele@apple.come31aa912008-10-03 19:06:28 +0000106342008-10-03 Adele Peterson <adele@apple.com>
10635
10636 Reviewed by Sam Weinig.
10637
10638 * css/CSSFontSelector.cpp: (WebCore::fontDataForGenericFamily):
10639 Return early if settings is nil.
10640
rwlbuis@webkit.orgeba93012008-10-03 19:00:22 +0000106412008-10-03 Rob Buis <buis@kde.org>
10642
10643 Reviewed by Darin.
10644
10645 https://bugs.webkit.org/show_bug.cgi?id=20134
10646 REGRESSION (2.0.4-3.0.4): No default value set for <input type=range> with an even difference of (max - min)
10647
10648 Make sure the input element gets the right default value when no value is set.
10649
10650 Test: fast/forms/range-default-value.html
10651
10652 * rendering/RenderSlider.cpp:
10653 (WebCore::RenderSlider::setPositionFromValue):
10654
hyatt@apple.com8de3eb72008-10-03 18:29:28 +0000106552008-10-03 David Hyatt <hyatt@apple.com>
10656
10657 Instead of a cross-platform init/destroy that forces every ScrollView platform to have a constructor/
10658 destructor that calls them, switch to having a cross-platform constructor/destructor that calls
10659 platform-specific init/destroy methods.
10660
10661 With this change, ScrollViewWin.cpp can be removed from the build (yay!).
10662
10663 Reviewed by Darin Adler
10664
10665 * WebCore.vcproj/WebCore.vcproj:
10666 * platform/ScrollView.cpp:
10667 (WebCore::ScrollView::ScrollView):
10668 (WebCore::ScrollView::~ScrollView):
10669 (WebCore::ScrollView::platformInit):
10670 (WebCore::ScrollView::platformDestroy):
10671 (WebCore::ScrollView::platformAddChild):
10672 (WebCore::ScrollView::platformRemoveChild):
10673 * platform/ScrollView.h:
10674 * platform/gtk/ScrollViewGtk.cpp:
10675 (WebCore::ScrollView::platformInit):
10676 (WebCore::ScrollView::platformDestroy):
10677 * platform/mac/ScrollViewMac.mm:
10678 * platform/qt/ScrollViewQt.cpp:
10679 (WebCore::ScrollView::platformInit):
10680 (WebCore::ScrollView::platformDestroy):
10681 * platform/win/ScrollViewWin.cpp: Removed.
10682 * platform/wx/ScrollViewWx.cpp:
10683 (WebCore::ScrollView::platformInit):
10684 (WebCore::ScrollView::platformDestroy):
10685 (WebCore::ScrollView::setPlatformWidget):
10686
adele@apple.comb1dd0a62008-10-03 18:13:28 +0000106872008-10-03 Adele Peterson <adele@apple.com>
10688
10689 Reviewed by Dan Bernstein.
10690
10691 Fix for <rdar://problem/6012018>
10692 https://bugs.webkit.org/show_bug.cgi?id=21335
10693 CrashTracer: [USER] 4959 crashes in Safari at com.apple.WebCore: WebCore::Frame::settings const + 8
10694
10695 * css/CSSFontSelector.cpp: (WebCore::fontDataForGenericFamily): Return early if the frame is nil.
10696
hausmann@webkit.org2497ae82008-10-03 16:02:54 +0000106972008-10-03 Ariya Hidayat <ariya.hidayat@trolltech.com>
10698
10699 Build fix.
10700
10701 * platform/qt/WidgetQt.cpp:
10702 (WebCore::Widget::invalidateRect):
10703
alp@webkit.org2122a042008-10-03 12:38:12 +0000107042008-10-03 Alp Toker <alp@nuanti.com>
10705
alp@webkit.orgabc5b712008-10-03 13:36:23 +000010706 Remove some left-over GTK+ includes. No change in functionality.
10707
10708 * platform/Cursor.h:
10709 * platform/graphics/Icon.h:
10710 * platform/gtk/RenderThemeGtk.h:
10711
107122008-10-03 Alp Toker <alp@nuanti.com>
10713
alp@webkit.org2122a042008-10-03 12:38:12 +000010714 Build fix for trailing comment after #endif
10715
10716 * dom/ElementRareData.h:
10717
hyatt@apple.comd664bd52008-10-03 09:03:43 +0000107182008-10-03 David Hyatt <hyatt@apple.com>
10719
10720 Remove addToDirtyRegion.
10721
10722 Reviewed by Oliver Hunt
10723
10724 * page/Chrome.cpp:
10725 * page/Chrome.h:
10726 * page/ChromeClient.h:
10727 * platform/ScrollView.h:
10728 * platform/gtk/ScrollViewGtk.cpp:
10729 * platform/qt/ScrollViewQt.cpp:
10730 * platform/win/ScrollViewWin.cpp:
10731
mitz@apple.com810de662008-10-03 09:00:08 +0000107322008-10-03 Dan Bernstein <mitz@apple.com>
10733
10734 Reviewed by Maciej Stachowiak.
10735
10736 - fix a CachedResource leak introduced in r37176
10737
10738 Undo r37176 and instead allow pruneDeadResources() to be re-entered, but
10739 afterwards bail out of the outer pruneDeadResources().
10740
10741 * loader/Cache.cpp:
10742 (WebCore::Cache::Cache):
10743 (WebCore::Cache::pruneDeadResources):
10744 (WebCore::Cache::remove):
10745 * loader/Cache.h:
10746
hyatt@apple.com38d8a8a2008-10-03 08:50:33 +0000107472008-10-03 David Hyatt <hyatt@apple.com>
10748
10749 https://bugs.webkit.org/show_bug.cgi?id=21330
10750
10751 Fix Gtk adjustments so that they are properly checked again before creating horizontal/vertical
10752 scrollbars.
10753
10754 Reviewed by Oliver Hunt
10755
10756 * platform/ScrollView.cpp:
10757 (WebCore::ScrollView::setHasHorizontalScrollbar):
10758 (WebCore::ScrollView::setHasVerticalScrollbar):
10759 (WebCore::ScrollView::platformHasHorizontalAdjustment):
10760 (WebCore::ScrollView::platformHasVerticalAdjustment):
10761 * platform/ScrollView.h:
10762 * platform/gtk/ScrollViewGtk.cpp:
10763 (WebCore::ScrollView::adjustmentChanged):
10764 (WebCore::ScrollView::ScrollView):
10765 (WebCore::ScrollView::~ScrollView):
10766 (WebCore::ScrollView::setGtkAdjustments):
10767 (WebCore::ScrollView::platformHandleHorizontalAdjustment):
10768 (WebCore::ScrollView::platformHandleVerticalAdjustment):
10769
jchaffraix@webkit.org8241c5e2008-10-03 08:15:36 +0000107702008-10-03 Julien Chaffraix <jchaffraix@webkit.org>
10771
10772 Reviewed by Maciej Stachowiak.
10773
10774 Bug 21106: .in format discussed changes
10775 https://bugs.webkit.org/show_bug.cgi?id=21106
10776
10777 Change "upperCase" to "interfaceName" per-tag parameter as
10778 discussed on the mailing list. Removed the per-attribute version
10779 as it was not used.
10780
10781 Also add the "Element" suffix to all interfaceName parameter to match
10782 the class name (and thus remove it from make_names.pl).
10783
10784 * dom/make_names.pl:
10785 * html/HTMLTagNames.in:
10786 * svg/svgtags.in:
10787
hyatt@apple.comf0a13272008-10-03 07:38:27 +0000107882008-10-03 David Hyatt <hyatt@apple.com>
10789
10790 Preserve Qt's disabling of blitting when any native widgets are present anywhere on the page (ick).
10791 Hopefully this is a temporary hack that could eventually be removed.
10792
10793 Reviewed by Sam Weinig
10794
10795 * platform/ScrollView.cpp:
10796 (WebCore::ScrollView::scrollContents):
10797 * platform/ScrollView.h:
10798 (WebCore::ScrollView::rootPreventsBlitting):
10799 * platform/qt/ScrollViewQt.cpp:
10800 (WebCore::ScrollView::ScrollView):
10801 (WebCore::ScrollView::~ScrollView):
10802 (WebCore::ScrollView::platformAddChild):
10803 (WebCore::ScrollView::platformRemoveChild):
10804
hyatt@apple.com6fa40c52008-10-03 07:06:28 +0000108052008-10-02 David Hyatt <hyatt@apple.com>
10806
10807 https://bugs.webkit.org/show_bug.cgi?id=21328
10808
10809 Make widget invalidation more cross-platform.
10810
10811 (1) Make invalidateRect a pure virtual function on Widget. All leaf widgets must now implement this function.
10812
10813 (2) Scrollbars now send invalidations through the ScrollbarClient. windowClipRect on ScrollbarClient has been removed and replaced with this invalidation call.
10814 This allows all scrollbar invalidations to go through the render tree so that transforms and reflections will be respected.
10815
10816 (3) Plugins now have the native window invalidation code for windowed plugins. Windowless plugins do a repaintRectangle on the plugin's renderer.
10817
10818 (4) FrameViews now do a repaintRectangle on their owner element's renderer.
10819
10820 Reviewed by Sam Weinig
10821
10822 * WebCore.base.exp:
10823 * page/FrameView.cpp:
10824 (WebCore::FrameView::invalidateRect):
10825 (WebCore::FrameView::invalidateScrollbarRect):
10826 * page/FrameView.h:
10827 * platform/PopupMenu.h:
10828 * platform/ScrollView.cpp:
10829 (WebCore::ScrollView::scrollContents):
10830 * platform/ScrollView.h:
10831 * platform/Scrollbar.cpp:
10832 (WebCore::Scrollbar::setEnabled):
10833 (WebCore::Scrollbar::invalidateRect):
10834 * platform/Scrollbar.h:
10835 * platform/ScrollbarClient.h:
10836 * platform/Widget.h:
10837 * platform/gtk/WidgetGtk.cpp:
10838 * platform/mac/WidgetMac.mm:
10839 * platform/win/PopupMenuWin.cpp:
10840 (WebCore::PopupMenu::invalidateScrollbarRect):
10841 * platform/win/WidgetWin.cpp:
10842 * plugins/PluginView.cpp:
10843 (WebCore::PluginView::invalidateTimerFired):
10844 (WebCore::PluginView::invalidateWindowlessPluginRect):
10845 * plugins/PluginView.h:
10846 * plugins/gtk/PluginViewGtk.cpp:
10847 (WebCore::PluginView::invalidateRect):
10848 * plugins/qt/PluginViewQt.cpp:
10849 (WebCore::PluginView::invalidateRect):
10850 * plugins/win/PluginViewWin.cpp:
10851 (WebCore::PluginView::invalidateRect):
10852 (WebCore::PluginView::invalidateRegion):
10853 * rendering/RenderLayer.cpp:
10854 (WebCore::RenderLayer::invalidateScrollbarRect):
10855 * rendering/RenderLayer.h:
10856 * rendering/RenderListBox.cpp:
10857 (WebCore::RenderListBox::paintObject):
10858 (WebCore::RenderListBox::paintScrollbar):
10859 (WebCore::RenderListBox::invalidateScrollbarRect):
10860 * rendering/RenderListBox.h:
10861
mitz@apple.com0203bbe2008-10-03 06:20:41 +0000108622008-10-02 Dan Bernstein <mitz@apple.com>
10863
10864 Reviewed by Geoffrey Garen and Sam Weinig.
10865
10866 - fix SVGFontFaceElement leaks seen in Acid3
10867 - make font-face elements take effect only when they are in the document tree
10868
10869 Test: svg/custom/font-face-not-in-document.svg
10870
10871 * svg/SVGFontData.h: Changed the m_svgFontFaceElement member from a
10872 RefPtr to a plain pointer to break a ref cycle.
10873 (WebCore::SVGFontData::svgFontFaceElement):
10874
10875 * svg/SVGFontFaceElement.cpp: Changed to insert and remove the
10876 @font-face rule from the document's mapped element sheet when the
10877 element is inserted and removed from the document, and to update it
10878 only when the element is in the document.
10879 (WebCore::SVGFontFaceElement::SVGFontFaceElement):
10880 (WebCore::SVGFontFaceElement::parseMappedAttribute):
10881 (WebCore::SVGFontFaceElement::rebuildFontFace):
10882 (WebCore::SVGFontFaceElement::insertedIntoDocument):
10883 (WebCore::SVGFontFaceElement::removedFromDocument):
10884 (WebCore::SVGFontFaceElement::childrenChanged):
10885 (WebCore::SVGFontFaceElement::removeFromMappedElementSheet):
10886 * svg/SVGFontFaceElement.h:
10887
simon.fraser@apple.com50e860f2008-10-03 00:41:29 +0000108882008-10-01 Simon Fraser <simon.fraser@apple.com>
10889
10890 Reviewed by Dave Hyatt
10891
simon.fraser@apple.com397ffb032008-10-03 00:43:39 +000010892 Fix RenderFileUploadControl::setStyle() and
10893 RenderMenuList::setStyle() to not touch the style; replace
10894 with html4.css and CSSStyleSelector changes.
10895
10896 https://bugs.webkit.org/show_bug.cgi?id=21287
10897
10898 * css/CSSStyleSelector.cpp:
10899 (WebCore::CSSStyleSelector::adjustRenderStyle):
10900 * css/html4.css:
10901 * rendering/RenderBlock.cpp:
10902 (WebCore::RenderBlock::setStyle):
10903 * rendering/RenderFileUploadControl.cpp:
10904 * rendering/RenderMenuList.cpp:
10905 (WebCore::RenderMenuList::setStyle):
10906
109072008-10-01 Simon Fraser <simon.fraser@apple.com>
10908
10909 Reviewed by Dave Hyatt
10910
simon.fraser@apple.com50e860f2008-10-03 00:41:29 +000010911 Clean up code that changes the RenderStyle passed in to
10912 table renderer setStyle() methods.
10913
10914 https://bugs.webkit.org/show_bug.cgi?id=21287
10915
10916 Tests: fast/table/floating-th.html
10917 fast/table/table-display-types-strict.html
10918 fast/table/table-display-types.html
10919
10920 * css/CSSStyleSelector.cpp:
10921 (WebCore::CSSStyleSelector::adjustRenderStyle):
10922 * rendering/RenderTableCell.cpp:
10923 (WebCore::RenderTableCell::setStyle):
10924 * rendering/RenderTableRow.cpp:
10925 (WebCore::RenderTableRow::setStyle):
10926 * rendering/RenderTableSection.cpp:
10927 (WebCore::RenderTableSection::setStyle):
10928
darin@apple.comcb1ab082008-10-03 00:28:54 +0000109292008-10-02 Darin Adler <darin@apple.com>
10930
10931 - fix build
10932
10933 * bindings/scripts/CodeGeneratorJS.pm: Need to replace the -> with a . here too.
10934 Not just locally in my generated file!
10935
adele@apple.comf0225902008-10-03 00:25:37 +0000109362008-10-02 Adele Peterson <adele@apple.com>
10937
10938 Reviewed by Dan Bernstein.
10939
10940 Fix for https://bugs.webkit.org/show_bug.cgi?id=21299
10941 REGRESSION: <input> color specified in inline style applies to placeholder
10942
10943 I recently added a pseudo-class for the placeholder, but that can be overridden by inline style changes. A pseudo-element
10944 is more appropriate. This change adds "-webkit-input-placeholder".
10945
10946 * css/CSSSelector.cpp: (WebCore::CSSSelector::extractPseudoType):
10947 Added definition for "-webkit-input-placeholder" pseudo element.
10948 * css/CSSSelector.h: (WebCore::CSSSelector::): Added PseudoInputPlaceholder.
10949 * css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
10950 Added case for PseudoInputPlaceholder.
10951 * css/html4.css: Added rule for -webkit-input-placeholder pseudo-element.
10952 * rendering/style/RenderStyle.h: (WebCore::RenderStyle::): Added INPUT_PLACEHOLDER.
10953
10954 * html/HTMLInputElement.cpp:
10955 (WebCore::HTMLInputElement::setValue): Check that its a text field before calling updatePlaceholderVisibility.
10956 (WebCore::HTMLInputElement::setValueFromRenderer): ditto.
10957 (WebCore::HTMLInputElement::updatePlaceholderVisibility): Instead of calling setChanged(), call updatePlaceholderVisibility on the renderer.
10958 setChanged wouldn't actually trigger setStyle since the style for the input element won't actually change.
10959 * rendering/RenderTextControl.cpp:
10960 (WebCore::RenderTextControl::createInnerTextStyle): Get the pseudoStyle when the placeholder is visible.
10961 (WebCore::RenderTextControl::updatePlaceholderVisibility): Sets the style on the inner text block, and calls updateFromElement so
10962 the text will be updated correctly.
10963 * rendering/RenderTextControl.h:
10964
cfleizach@apple.comd6bc1e72008-10-02 23:59:49 +0000109652008-10-02 Chris Fleizach <cfleizach@apple.com>
10966
10967 Reviewed by Darin Adler.
10968
10969 https://bugs.webkit.org/show_bug.cgi?id=21280
10970 <rdar://problem/6227690> There are a bunch of tables on this page that don't seem to be real tables
10971
10972 Updated AXTable detection to be more robust to false-positives. Specifically, added checks
10973 to ensure that there is more than one valid table cell, and that at least half of the cells
10974 have borders or have specific background colors. Modified the table detection layout test
10975 to test for the tables mentioned in the bug
10976
10977 * page/AccessibilityTable.cpp:
10978 (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
10979
darin@apple.comb6295d42008-10-02 23:48:47 +0000109802008-10-02 Darin Adler <darin@apple.com>
10981
10982 Reviewed by Geoff Garen.
10983
10984 - https://bugs.webkit.org/show_bug.cgi?id=21321
10985 Bug 21321: speed up JavaScriptCore by inlining Heap in JSGlobalData
10986
10987 * bindings/js/GCController.cpp:
10988 (WebCore::collect): Use heap. instead of heap-> to work with the heap.
10989 (WebCore::GCController::gcTimerFired): Ditto.
10990 (WebCore::GCController::garbageCollectNow): Ditto.
10991 * bindings/js/JSDOMWindowShell.cpp:
10992 (WebCore::JSDOMWindowShell::operator new): Ditto.
10993 * storage/Database.cpp:
10994 (WebCore::Database::Database): Ditto.
10995
mitz@apple.com833a6e72008-10-02 20:46:35 +0000109962008-10-02 Dan Bernstein <mitz@apple.com>
10997
10998 Reviewed by Alexey Proskuryakov.
10999
11000 - fix a Database leak that resulted in Document leaks
11001
11002 * storage/Database.cpp:
11003 (WebCore::Database::openDatabase): Account for the fact that RefCounted
11004 objects start out with a ref count of 1.
11005
weinig@apple.com77b7a0a2008-10-02 20:29:19 +0000110062008-10-02 Sam Weinig <sam@webkit.org>
11007
11008 Reviewed by Mr. Geoffrey Garen.
11009
11010 Always mark your parent before marking members.
11011
11012 * bindings/js/JSDOMWindowCustom.cpp:
11013 (WebCore::JSDOMWindow::mark):
11014
hyatt@apple.com98682b32008-10-02 20:17:08 +0000110152008-10-02 David Hyatt <hyatt@apple.com>
11016
11017 https://bugs.webkit.org/show_bug.cgi?id=21314
11018
11019 Make scrollBackingStore cross-platform.
11020
11021 Reviewed by Sam Weinig
11022
11023 * loader/EmptyClients.h:
11024 (WebCore::EmptyChromeClient::repaint):
11025 (WebCore::EmptyChromeClient::scroll):
11026 * page/Chrome.cpp:
11027 (WebCore::Chrome::repaint):
11028 (WebCore::Chrome::scroll):
11029 * page/Chrome.h:
11030 * page/ChromeClient.h:
11031 * page/EventHandler.cpp:
11032 (WebCore::EventHandler::handleAutoscroll):
11033 * platform/HostWindow.h:
11034 * platform/ScrollView.cpp:
11035 (WebCore::ScrollView::scrollContents):
11036 (WebCore::ScrollView::addPanScrollIcon):
11037 (WebCore::ScrollView::removePanScrollIcon):
11038 * platform/ScrollView.h:
11039 * platform/gtk/ScrollViewGtk.cpp:
11040 * platform/qt/ScrollViewQt.cpp:
11041 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
11042 (WebCore::ScrollView::~ScrollView):
11043 * platform/win/ScrollViewWin.cpp:
11044 (WebCore::ScrollView::ScrollView):
11045 (WebCore::ScrollView::~ScrollView):
11046
kevino@webkit.org8ca54f22008-10-02 19:59:35 +0000110472008-10-02 Kevin Ollivier <kevino@theolliviers.com>
11048
11049 wx build fixes after Frame/ScrollView changes.
11050
11051 * WebCoreSources.bkl:
11052 * platform/wx/ScrollViewWx.cpp:
11053 (WebCore::ScrollView::platformContentsToScreen):
11054 (WebCore::ScrollView::platformScreenToContents):
11055 (WebCore::ScrollView::platformIsOffscreen):
11056
brettw@chromium.org83eadcc2008-10-02 19:33:42 +0000110572008-10-02 Brett Wilson <brettw@chromium.org>
11058
11059 Reviewed by Sam Weinig
11060
11061 https://bugs.webkit.org/show_bug.cgi?id=21292
11062
11063 Revert the changes to enclosingIntRect made in r12530 since the new code
11064 doesn't round correctly.
11065
11066 * ChangeLog:
11067 * platform/graphics/FloatRect.cpp:
11068 (WebCore::enclosingIntRect):
11069
mitz@apple.com92dc01a2008-10-02 18:48:33 +0000110702008-10-02 Dan Bernstein <mitz@apple.com>
11071
11072 Reviewed by Anders Carlsson and Eric Seidel.
11073
11074 - fix HTMLCanvaseElement leak from -webkit-canvas() values
11075
11076 Changed the m_element member of CSSCanvasValue from a RefPtr to a plain
11077 pointer, as the document owns the canvas elements. Added code to release
11078 those elements in Document::removedLastRef() because they reference
11079 the document.
11080
11081 * css/CSSCanvasValue.cpp:
11082 (WebCore::CSSCanvasValue::element):
11083 * css/CSSCanvasValue.h:
11084 (WebCore::CSSCanvasValue::CSSCanvasValue):
11085 * dom/Document.cpp:
11086 (WebCore::Document::removedLastRef):
11087
ap@webkit.org44e40e42008-10-02 18:39:34 +0000110882008-10-02 Alexey Proskuryakov <ap@webkit.org>
11089
11090 Reviewed by Maciej Stachowiak.
11091
ap@webkit.orgdffca802008-10-02 18:40:40 +000011092 Build fix for platforms that don't implement WTF::ThreadSpecific.
ap@webkit.org44e40e42008-10-02 18:39:34 +000011093
11094 * bindings/js/JSDOMBinding.cpp: (WebCore::wrapperSet):
11095 Guard ThreadSpecific use with #if ENABLE(WORKERS). No platform defines this yet, but this
11096 code is only needed for JS bindings in worker threads.
11097
hyatt@apple.comf1ffabf2008-10-02 18:23:32 +0000110982008-10-01 David Hyatt <hyatt@apple.com>
11099
11100 https://bugs.webkit.org/show_bug.cgi?id=21298
11101
11102 Make updateScrollbars cross-platform. For now a stubbed out scrollContents function is invoked to do the scrolling of the backing store. Next patch
11103 will make that cross-platform.
11104
11105 The ScrollView now implements ScrollbarClient, which means that there was a clash of windowClipRect methods from the
11106 multiple inheritance. For now I solved this by adding a Scrollbar* to the ScrollbarClient version of the method, but longer term
11107 windowClipRect is going to be removed from ScrollbarClient (when Widget invalidation gets rewritten).
11108
11109 Reviewed by Sam Weinig
11110
11111 * page/FrameView.cpp:
11112 (WebCore::FrameView::windowClipRect):
11113 (WebCore::FrameView::isActive):
11114 * page/FrameView.h:
11115 (WebCore::FrameView::visibleContentsResized):
11116 * platform/PopupMenu.h:
11117 * platform/ScrollView.cpp:
11118 (WebCore::ScrollView::init):
11119 (WebCore::ScrollView::destroy):
11120 (WebCore::ScrollView::setHasHorizontalScrollbar):
11121 (WebCore::ScrollView::setHasVerticalScrollbar):
11122 (WebCore::ScrollView::valueChanged):
11123 (WebCore::ScrollView::updateScrollbars):
11124 (WebCore::ScrollView::scrollContents):
11125 (WebCore::ScrollView::platformHandleHorizontalAdjustment):
11126 (WebCore::ScrollView::platformHandleVerticalAdjustment):
11127 * platform/ScrollView.h:
11128 * platform/Scrollbar.cpp:
11129 (WebCore::Scrollbar::windowClipRect):
11130 * platform/ScrollbarClient.h:
11131 * platform/gtk/ScrollViewGtk.cpp:
11132 (WebCore::ScrollView::platformHandleHorizontalAdjustment):
11133 (WebCore::ScrollView::platformHandleVerticalAdjustment):
11134 * platform/qt/ScrollViewQt.cpp:
11135 (WebCore::ScrollView::scrollContents):
11136 * platform/win/PopupMenuWin.cpp:
11137 (WebCore::PopupMenu::windowClipRect):
11138 * platform/win/ScrollViewWin.cpp:
11139 (WebCore::ScrollView::scrollContents):
11140 * rendering/RenderLayer.cpp:
11141 (WebCore::RenderLayer::windowClipRect):
11142 * rendering/RenderLayer.h:
11143 * rendering/RenderListBox.cpp:
11144 (WebCore::RenderListBox::panScroll):
11145 (WebCore::RenderListBox::windowClipRect):
11146 * rendering/RenderListBox.h:
11147
ap@webkit.org03710832008-10-02 16:18:56 +0000111482008-10-02 Alexey Proskuryakov <ap@webkit.org>
11149
11150 Reviewed by Darin Adler.
11151
11152 https://bugs.webkit.org/show_bug.cgi?id=21304
11153 Stop using a static wrapper map for WebCore JS bindings
11154
11155 The static domObjects map was not thread safe.
11156
11157 * dom/Document.h:
11158 (WebCore::Document::messagePorts): Added an accessor for JSDocument to iterate over message
11159 ports.
11160 (WebCore::Document::xmlHttpRequests): Ditto for XMLHttpRequests.
11161
11162 * dom/Document.cpp:
11163 (WebCore::Document::createdXMLHttpRequest):
11164 (WebCore::Document::destroyedXMLHttpRequest):
11165 Moved XMLHttpRequest tracking from a global map to Document.
11166
11167 * GNUmakefile.am:
11168 * WebCore.pro:
11169 * WebCore.vcproj/WebCore.vcproj:
11170 * WebCore.xcodeproj/project.pbxproj:
11171 * WebCoreSources.bkl:
11172 * webcore-base.bkl:
11173 * bindings/DOMProtect.cpp: Removed.
11174 * bindings/DOMProtect.h: Removed.
11175 Removed gcProtect(Unprotect)DOMObject - its callers do not have a JSGlobalData reference,
11176 so they can no longer protect bindings objects.
11177
11178 * dom/MessagePort.cpp:
11179 (WebCore::CloseMessagePortTimer::CloseMessagePortTimer):
11180 (WebCore::CloseMessagePortTimer::fired):
11181 (WebCore::MessagePort::MessagePort):
11182 (WebCore::MessagePort::queueCloseEvent):
11183 (WebCore::MessagePort::setPendingActivity):
11184 (WebCore::MessagePort::unsetPendingActivity):
11185 * dom/MessagePort.h:
11186 (WebCore::MessagePort::hasPendingActivity):
11187 MessagePort now counts outstanding async events, so JSDocument::mark can decide whether
11188 to protect it.
11189
11190 * xml/XMLHttpRequest.h:
11191 (WebCore::XMLHttpRequest::hasPendingActivity):
11192 * xml/XMLHttpRequest.cpp:
11193 (WebCore::XMLHttpRequest::XMLHttpRequest):
11194 (WebCore::XMLHttpRequest::~XMLHttpRequest):
11195 (WebCore::XMLHttpRequest::loadRequestAsynchronously):
11196 (WebCore::XMLHttpRequest::dropProtection):
11197 (WebCore::XMLHttpRequest::didFinishLoadingPreflight):
11198 (WebCore::XMLHttpRequest::cancelRequests):
11199 (WebCore::XMLHttpRequest::detachRequests):
11200 (WebCore::XMLHttpRequest::setPendingActivity):
11201 (WebCore::XMLHttpRequest::unsetPendingActivity):
11202 Moved XMLHttpRequest tracking from a global map to Document.
11203
11204 * bindings/js/JSDOMBinding.cpp:
11205 (WebCore::wrapperSet):
11206 (WebCore::DOMObjectWrapperMap::mapFor):
11207 (WebCore::DOMObjectWrapperMap::get):
11208 (WebCore::DOMObjectWrapperMap::set):
11209 (WebCore::DOMObjectWrapperMap::remove):
11210 (WebCore::getCachedDOMObjectWrapper):
11211 (WebCore::cacheDOMObjectWrapper):
11212 (WebCore::forgetDOMObject):
11213 (WebCore::getCachedDOMNodeWrapper):
11214 (WebCore::forgetDOMNode):
11215 (WebCore::cacheDOMNodeWrapper):
11216 (WebCore::markActiveObjectsForDocument):
11217 * bindings/js/JSDOMBinding.h:
11218 (WebCore::createDOMObjectWrapper):
11219 (WebCore::getDOMObjectWrapper):
11220 Wrapper map is now kept as JSGlobalData::clientData. Also changed debug-only wrapperSet
11221 to be per-thread (this is slower than going to JSGlobalData, but fast enough for debug).
11222 WebCore objects can never migrate between threads.
11223
11224 * bindings/js/JSDocumentCustom.cpp:
11225 (WebCore::JSDocument::mark):
11226 Call markActiveObjectsForDocument() from JSDOMBinding.
11227
11228 * bindings/js/JSCSSRuleCustom.cpp:
11229 (WebCore::toJS):
11230 * bindings/js/JSCSSValueCustom.cpp:
11231 (WebCore::toJS):
11232 * bindings/js/JSDOMWindowCustom.cpp:
11233 (WebCore::markDOMObjectWrapper):
11234 (WebCore::JSDOMWindow::mark):
11235 * bindings/js/JSEventCustom.cpp:
11236 (WebCore::toJS):
11237 * bindings/js/JSEventTarget.cpp:
11238 (WebCore::toJS):
11239 * bindings/js/JSHTMLCollectionCustom.cpp:
11240 (WebCore::toJS):
11241 * bindings/js/JSImageDataCustom.cpp:
11242 (WebCore::toJS):
11243 * bindings/js/JSMessageChannelCustom.cpp:
11244 (WebCore::JSMessageChannel::mark):
11245 * bindings/js/JSMessagePortCustom.cpp:
11246 (WebCore::JSMessagePort::mark):
11247 * bindings/js/JSNodeCustom.cpp:
11248 (WebCore::JSNode::mark):
11249 * bindings/js/JSSVGPathSegCustom.cpp:
11250 (WebCore::toJS):
11251 * bindings/js/JSStyleSheetCustom.cpp:
11252 (WebCore::toJS):
11253 * bindings/js/JSXMLHttpRequestCustom.cpp:
11254 (WebCore::JSXMLHttpRequest::mark):
11255 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
11256 (WebCore::JSXMLHttpRequestUpload::mark):
11257 * bindings/js/ScriptController.cpp:
11258 (WebCore::ScriptController::finishedWithEvent):
11259 * bindings/scripts/CodeGeneratorJS.pm:
11260 Pass a JSGlobalData reference to functions that track JS wrapper objects.
11261
mitz@apple.coma2b6b112008-10-02 07:52:29 +0000112622008-10-02 Dan Bernstein <mitz@apple.com>
11263
11264 - build fix
11265
11266 * page/JavaScriptCallFrame.idl:
11267
oliver@apple.com619d60b92008-10-02 07:35:21 +0000112682008-10-02 Oliver Hunt <oliver@apple.com>
11269
11270 Reviewed by NOBODY (Build fix).
11271
11272 Add new file to project files
11273
11274 * GNUmakefile.am:
11275 * WebCore.pro:
11276 * WebCore.vcproj/WebCore.vcproj:
11277
ggaren@apple.comdf2fda82008-10-02 07:13:43 +0000112782008-10-02 Geoffrey Garen <ggaren@apple.com>
11279
11280 Not reviewed.
ggaren@apple.com14a8dbd2008-10-02 07:15:12 +000011281
11282 Try to fix some more builds.
11283
11284 * GNUmakefile.am:
11285 * WebCore.pro:
11286
112872008-10-02 Geoffrey Garen <ggaren@apple.com>
11288
11289 Not reviewed.
ggaren@apple.comdf2fda82008-10-02 07:13:43 +000011290
11291 Try to fix Windows build.
11292
11293 * WebCore.vcproj/WebCore.vcproj:
11294
ggaren@apple.com69e9ccf2008-10-02 06:44:37 +0000112952008-10-01 Geoffrey Garen <ggaren@apple.com>
11296
11297 Reviewed by Darin Adler and Cameron Zwarich.
11298
11299 Updated for JavaScriptCore API changes: use a SourceCode instead of
11300 broken out parameters; treat sourceId as intptr_t.
11301
11302 * ForwardingHeaders/kjs/SourceRange.h: Copied from ForwardingHeaders/kjs/SourceProvider.h.
11303 * bindings/js/JSXMLHttpRequestCustom.cpp:
11304 (WebCore::JSXMLHttpRequest::send):
11305 * bindings/js/ScriptController.cpp:
11306 (WebCore::ScriptController::evaluate):
11307 * bindings/js/StringSourceProvider.h:
11308 (WebCore::StringSourceProvider::create):
11309 (WebCore::StringSourceProvider::StringSourceProvider):
11310
11311 (WebCore::makeSource): Added a makeSource function for convenience.
11312
11313 * bindings/objc/WebScriptObject.mm:
11314 (-[WebScriptObject evaluateWebScript:]):
11315 * bridge/NP_jsobject.cpp:
11316 (_NPN_Evaluate):
11317 * bridge/jni/jni_jsobject.mm:
11318 (JavaJSObject::call):
11319 (JavaJSObject::eval):
11320 (JavaJSObject::getMember):
11321 (JavaJSObject::setMember):
11322 (JavaJSObject::removeMember):
11323
11324 * bridge/jni/jni_runtime.h:
11325 (JSC::Bindings::JavaString::operator UString): Replaced the explicit
11326 ustring() function with an implicit operator because this class already
11327 holds a UString::rep.
11328
11329 * page/Console.cpp:
11330 (WebCore::retrieveLastCaller):
11331 (WebCore::Console::trace):
11332 * page/InspectorController.cpp:
11333 (WebCore::jsStringRef):
11334 (WebCore::InspectorController::addBreakpoint):
11335 (WebCore::InspectorController::removeBreakpoint):
11336 (WebCore::InspectorController::didParseSource):
11337 (WebCore::InspectorController::failedToParseSource):
11338 * page/InspectorController.h:
11339 * page/JavaScriptCallFrame.cpp:
11340 (WebCore::JavaScriptCallFrame::JavaScriptCallFrame):
11341 * page/JavaScriptCallFrame.h:
11342 (WebCore::JavaScriptCallFrame::create):
11343 (WebCore::JavaScriptCallFrame::sourceIdentifier):
11344 (WebCore::JavaScriptCallFrame::update):
11345 * page/JavaScriptDebugListener.h:
11346 * page/JavaScriptDebugServer.cpp:
11347 (WebCore::JavaScriptDebugServer::addBreakpoint):
11348 (WebCore::JavaScriptDebugServer::removeBreakpoint):
11349 (WebCore::JavaScriptDebugServer::hasBreakpoint):
11350 (WebCore::dispatchDidParseSource):
11351 (WebCore::dispatchFailedToParseSource):
11352 (WebCore::JavaScriptDebugServer::sourceParsed):
11353 (WebCore::JavaScriptDebugServer::callEvent):
11354 (WebCore::JavaScriptDebugServer::atStatement):
11355 (WebCore::JavaScriptDebugServer::returnEvent):
11356 (WebCore::JavaScriptDebugServer::exception):
11357 (WebCore::JavaScriptDebugServer::willExecuteProgram):
11358 (WebCore::JavaScriptDebugServer::didExecuteProgram):
11359 (WebCore::JavaScriptDebugServer::didReachBreakpoint):
11360 * page/JavaScriptDebugServer.h:
11361 * page/inspector/ScriptsPanel.js: Renamed internal uses of sourceId and
11362 sourceIdentifier to sourceID.
11363
mitz@apple.com7a7f3142008-10-02 06:08:15 +0000113642008-10-01 Dan Bernstein <mitz@apple.com>
11365
11366 Reviewed by Geoffrey Garen.
11367
11368 - fix SVGFontFaceElement leak seen on svg/custom/acid3-test-77.html
11369
11370 Broke a ref cycle by changing the m_svgFontFaceElement members of
11371 CSSFontFaceSource and CSSFontFaceSrcValue from RefPtrs to plain
11372 pointers. Also made sure that the @font-face rule added by
11373 SVGFontFaceElement to the document's mapped element sheet is removed
11374 when the font-face element is deleted or moved to another document.
11375
11376 * css/CSSFontFaceSource.cpp:
11377 (WebCore::CSSFontFaceSource::CSSFontFaceSource):
11378 (WebCore::CSSFontFaceSource::getFontData):
11379 * css/CSSFontFaceSource.h:
11380 (WebCore::CSSFontFaceSource::svgFontFaceElement):
11381 * css/CSSFontFaceSrcValue.h:
11382 (WebCore::CSSFontFaceSrcValue::svgFontFaceElement):
11383 (WebCore::CSSFontFaceSrcValue::CSSFontFaceSrcValue):
11384 * svg/SVGFontFaceElement.cpp:
11385 (WebCore::SVGFontFaceElement::~SVGFontFaceElement):
11386 (WebCore::SVGFontFaceElement::willMoveToNewOwnerDocument):
11387 (WebCore::SVGFontFaceElement::didMoveToNewOwnerDocument):
11388 (WebCore::SVGFontFaceElement::removeFromMappedElementSheet):
11389 * svg/SVGFontFaceElement.h:
11390
oliver@apple.comd3de8f32008-10-02 05:02:00 +0000113912008-10-01 Oliver Hunt <oliver@apple.com>
11392
11393 Reviewed by Maciej Stachowiak.
11394
11395 Bug 20315: Memory leak with Canvas getImageData
11396 <https://bugs.webkit.org/show_bug.cgi?id=20315>
11397
11398 This wasn't a leak, the issue was that we were reporting the cost
11399 of the CanvasPixelArray when creating the JSCanvasPixelArray wrapper
11400 and we should have been reporting the cost when we create the
11401 JSImageData wrapper.
11402
11403 * WebCore.xcodeproj/project.pbxproj:
11404 * bindings/js/JSCanvasPixelArrayCustom.cpp: Removed.
11405 This was only needed to report the extra memory cost
11406 of the CPA.
11407 * bindings/js/JSImageDataCustom.cpp:
11408 (WebCore::toJS):
11409 We need a custom toJS function now so that we can report
11410 the extra memory cost.
11411 * bindings/scripts/CodeGeneratorJS.pm:
11412 Need to replace the reference to CanvasPixelArray with ImageData
11413 to be able to create the custom toJS implementation.
11414 * html/CanvasPixelArray.idl:
11415 * html/ImageData.idl:
11416
mitz@apple.come0642ce2008-10-02 04:54:06 +0000114172008-10-01 Dan Bernstein <mitz@apple.com>
11418
11419 Reviewed by Mark Rowe.
11420
11421 - https://bugs.webkit.org/show_bug.cgi?id=21293
11422 REGRESSION: Crash beneath RenderSVGViewportContainer::viewportTransform() during SVGSVGElement destruction
11423
11424 * svg/SVGMarkerElement.cpp:
11425 (WebCore::SVGMarkerElement::~SVGMarkerElement): Call detach() here so
11426 that renderer destruction happens before the SVGMarkerElement is
11427 destroyed.
11428 * svg/SVGSVGElement.cpp:
11429 (WebCore::SVGSVGElement::~SVGSVGElement): Ditto for SVGSVGElement.
11430
eric@webkit.orgbe40b812008-10-02 01:43:16 +0000114312008-10-01 Evan Martin <evan@chromium.org>
11432
11433 Reviewed by Eric Seidel.
eric@webkit.org194cb362008-10-02 01:47:44 +000011434
11435 https://bugs.webkit.org/show_bug.cgi?id=20669
11436
11437 * css/makeprop.pl:
11438 Die if gperf fails.
11439
114402008-10-01 Evan Martin <evan@chromium.org>
11441
11442 Reviewed by Eric Seidel.
eric@webkit.orgbe40b812008-10-02 01:43:16 +000011443
11444 * loader/icon/IconDatabase.h:
11445 IconDatabase uses HashMap, so it needs to #include the header.
11446
mitz@apple.com0ff2a012008-10-02 00:48:54 +0000114472008-10-01 Dan Bernstein <mitz@apple.com>
11448
11449 Reviewed by Mark Rowe.
11450
mitz@apple.comca0080b2008-10-02 01:35:05 +000011451 - fix an assertion failure in http/tests/security/canvas-remote-read-svg-image.html due to re-entry into Cache::pruneDeadResources()
11452
11453 * loader/Cache.cpp:
11454 (WebCore::Cache::remove): Disable pruning temporarily during
11455 CachedResource deletion.
11456
114572008-10-01 Dan Bernstein <mitz@apple.com>
11458
11459 Reviewed by Mark Rowe.
11460
mitz@apple.com0ff2a012008-10-02 00:48:54 +000011461 - fix SVGFontElement leaks seen on buildbot by breaking a ref cycle
11462
11463 * svg/SVGFontFaceElement.cpp:
11464 (WebCore::SVGFontFaceElement::rebuildFontFace):
11465 * svg/SVGFontFaceElement.h:
11466 (WebCore::SVGFontFaceElement::associatedFontElement):
11467
brettw@chromium.org87b0e122008-10-01 22:34:16 +0000114682008-10-01 Brett Wilson <brettw@chromium.org>
11469
11470 Reviewed by Maciej Stachowiak.
11471
11472 Document the rounding behavior of the mapRect(IntRect) function in
11473 AffineTransform.h.
11474
11475 * platform/graphics/AffineTransform.h:
11476
hyatt@apple.comdeb39ee2008-10-01 22:30:56 +0000114772008-10-01 David Hyatt <hyatt@apple.com>
11478
11479 Move prohibitsScrolling from the Frame to the ScrollView.
11480
11481 Reviewed by Sam Weinig
11482
11483 * WebCore.base.exp:
11484 * page/Frame.cpp:
11485 (WebCore::FramePrivate::FramePrivate):
11486 * page/Frame.h:
11487 * page/FramePrivate.h:
11488 * page/FrameView.cpp:
11489 (WebCore::FrameView::scrollRectIntoViewRecursively):
11490 (WebCore::FrameView::setScrollPosition):
11491 * platform/ScrollView.cpp:
11492 (WebCore::ScrollView::init):
11493 (WebCore::ScrollView::scrollRectIntoViewRecursively):
11494 (WebCore::ScrollView::setScrollPosition):
11495 * platform/ScrollView.h:
11496 (WebCore::ScrollView::setProhibitsScrolling):
11497 (WebCore::ScrollView::prohibitsScrolling):
11498 * platform/gtk/ScrollViewGtk.cpp:
11499 (WebCore::ScrollView::updateScrollbars):
11500 * platform/qt/ScrollViewQt.cpp:
11501 (WebCore::ScrollView::updateScrollbars):
11502 * platform/win/ScrollViewWin.cpp:
11503 (WebCore::ScrollView::updateScrollbars):
11504
mrowe@apple.combffe15d2008-10-01 22:24:37 +0000115052008-10-01 Mark Rowe <mrowe@apple.com>
11506
11507 Reviewed by Geoff Garen.
11508
11509 Fix leaks seen during http/tests/xmlhttprequest/access-control-basic-non-simple-allow.html.
11510
11511 * xml/XMLHttpRequest.cpp:
11512 (WebCore::XMLHttpRequest::didFinishLoadingPreflight): Balance the ref and GC protect
11513 that we do during the loadRequestAsynchronously of the preflight request with a deref and
11514 GC unprotect.
11515
hyatt@apple.com2f029122008-10-01 22:12:23 +0000115162008-10-01 David Hyatt <hyatt@apple.com>
11517
11518 Rename allowsScrolling/setAllowsScrolling to canHaveScrollbars/setCanHaveScrollbars to make it more
11519 clear that the boolean doesn't actually stop all scrolling. It just gets rid of scrollbars.
11520
11521 Reviewed by Tim Hatcher
11522
11523 * WebCore.base.exp:
11524 * page/FrameView.cpp:
11525 (WebCore::FrameView::setCanHaveScrollbars):
11526 * page/FrameView.h:
11527 * platform/ScrollView.cpp:
11528 (WebCore::ScrollView::setCanHaveScrollbars):
11529 (WebCore::ScrollView::wheelEvent):
11530 * platform/ScrollView.h:
11531 (WebCore::ScrollView::canHaveScrollbars):
11532
mitz@apple.combebfaae2008-10-01 21:19:41 +0000115332008-10-01 Dan Bernstein <mitz@apple.com>
11534
11535 Reviewed by Mark Rowe.
11536
11537 - fix some CachedResource leaks seen on buildbot
11538
11539 The issue here was that emptying the cache was a no-op when it only
11540 contained resources with no data. Changed to go after those
11541 resources when the desired cache capacity is zero.
11542
11543 * loader/Cache.cpp:
11544 (WebCore::Cache::pruneLiveResources):
11545 (WebCore::Cache::pruneDeadResources):
11546 * loader/Cache.h:
11547 (WebCore::Cache::prune):
11548
hyatt@apple.come72b16e2008-10-01 20:58:19 +0000115492008-10-01 David Hyatt <hyatt@apple.com>
11550
hyatt@apple.com08ef1ea2008-10-01 21:11:07 +000011551 Make isOffscreen cross-platform. Only Mac implements this method, so hold off on adding API to the
11552 HostWindow object until other platforms decide they want this method. (We need it for Win though at some point.)
11553
11554 Reviewed by Adam Roben
11555
11556 * platform/ScrollView.cpp:
11557 (WebCore::ScrollView::isOffscreen):
11558 (WebCore::ScrollView::platformIsOffscreen):
11559 * platform/ScrollView.h:
11560 * platform/gtk/ScrollViewGtk.cpp:
11561 * platform/mac/ScrollViewMac.mm:
11562 (WebCore::ScrollView::platformIsOffscreen):
11563 * platform/qt/ScrollViewQt.cpp:
11564 * platform/wx/ScrollViewWx.cpp:
11565
115662008-10-01 David Hyatt <hyatt@apple.com>
11567
hyatt@apple.come72b16e2008-10-01 20:58:19 +000011568 Make show/hide/setParentVisible cross-platform on ScrollView.
11569
11570 Reviewed by Adam Roben
11571
11572 * platform/ScrollView.cpp:
11573 (WebCore::ScrollView::setParentVisible):
11574 (WebCore::ScrollView::show):
11575 (WebCore::ScrollView::hide):
11576 * platform/ScrollView.h:
11577 * platform/win/ScrollViewWin.cpp:
11578
kmccullough@apple.com5e00f5c2008-10-01 20:41:56 +0000115792008-10-01 Kevin McCullough <kmccullough@apple.com>
11580
11581 Reviewed by Dan Bernstein.
11582
11583 https://bugs.webkit.org/show_bug.cgi?id=21284
11584 Bug 21284: Max height affects max width
11585 - Looks like a cut and paste bug
11586 - Added layout test fast/css/max-height-and-max-width.html
11587
11588 * css/CSSComputedStyleDeclaration.cpp:
11589 (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
11590
hyatt@apple.comfe9c1302008-10-01 20:34:07 +0000115912008-10-01 David Hyatt <hyatt@apple.com>
11592
11593 https://bugs.webkit.org/show_bug.cgi?id=21282
11594
11595 Make contentsToScreen/screenToContents cross-platform. Only implemented by Mac/Win right now.
11596
11597 Reviewed by Adam Roben
11598
11599 * loader/EmptyClients.h:
11600 (WebCore::EmptyChromeClient::screenToWindow):
11601 (WebCore::EmptyChromeClient::windowToScreen):
11602 * page/Chrome.cpp:
11603 (WebCore::Chrome::screenToWindow):
11604 (WebCore::Chrome::windowToScreen):
11605 * page/Chrome.h:
11606 * page/ChromeClient.h:
11607 * platform/HostWindow.h:
11608 * platform/ScrollView.cpp:
11609 (WebCore::ScrollView::contentsToScreen):
11610 (WebCore::ScrollView::screenToContents):
11611 (WebCore::ScrollView::platformContentsToScreen):
11612 (WebCore::ScrollView::platformScreenToContents):
11613 * platform/ScrollView.h:
11614 * platform/mac/ScrollViewMac.mm:
11615 (WebCore::ScrollView::platformContentsToScreen):
11616 (WebCore::ScrollView::platformScreenToContents):
11617 * platform/win/ScrollViewWin.cpp:
11618
mitz@apple.comf2ee2052008-10-01 20:31:19 +0000116192008-10-01 Dan Bernstein <mitz@apple.com>
11620
11621 Reviewed by Darin Adler.
11622
11623 - fix <rdar://problem/6255862> domfuzz: null deref in WebCore::HTMLParser::handleResidualStyleCloseTagAcrossBlocks(WebCore::HTMLStackElem*)
11624
11625 Test: fast/parser/residual-style-close-across-removed-block.html
11626
11627 * html/HTMLParser.cpp:
11628 (WebCore::HTMLParser::handleResidualStyleCloseTagAcrossBlocks): Removed
11629 an assertion that turned out to be wrong in this case, and changed to
11630 terminate the algorithm at the first empty block.
11631
hyatt@apple.comc5a54f42008-10-01 19:23:05 +0000116322008-10-01 David Hyatt <hyatt@apple.com>
11633
11634 Make setFrameRect on ScrollView cross-platform.
11635
11636 Reviewed by Sam Weinig
11637
11638 * page/FrameView.h:
11639 (WebCore::FrameView::contentsResized):
11640 * platform/ScrollView.cpp:
11641 (WebCore::ScrollView::setFrameRect):
11642 * platform/ScrollView.h:
11643 * platform/gtk/ScrollViewGtk.cpp:
11644 * platform/qt/ScrollViewQt.cpp:
11645 * platform/win/ScrollViewWin.cpp:
11646
weinig@apple.comab5c0172008-10-01 19:17:01 +0000116472008-10-01 Sam Weinig <sam@webkit.org>
11648
11649 Reviewed by Adele Peterson.
11650
11651 Move setTimeout, clearTimeout, setInterval, clearInterval, atob and btoa
11652 to JSDOMWindow from JSDOMWindowBase.
11653
11654 * WebCore.xcodeproj/project.pbxproj:
11655 * bindings/js/JSDOMWindowBase.cpp:
11656 (WebCore::JSDOMWindowBase::removeTimeout):
11657 * bindings/js/JSDOMWindowBase.h:
11658 * bindings/js/JSDOMWindowCustom.cpp:
11659 (WebCore::setTimeoutOrInterval):
11660 (WebCore::JSDOMWindow::setTimeout):
11661 (WebCore::JSDOMWindow::clearTimeout):
11662 (WebCore::JSDOMWindow::setInterval):
11663 (WebCore::JSDOMWindow::clearInterval):
11664 (WebCore::JSDOMWindow::atob):
11665 (WebCore::JSDOMWindow::btoa):
11666 * page/DOMWindow.idl:
11667
mitz@apple.comd9e6f4e2008-10-01 18:12:45 +0000116682008-10-01 Dan Bernstein <mitz@apple.com>
11669
11670 - Mac build fix
11671
11672 * WebCore.base.exp:
11673
timothy@apple.comd2bf1cb2008-10-01 17:33:37 +0000116742008-10-01 Timothy Hatcher <timothy@apple.com>
11675
11676 Prevent stealing focus from the search field when focusing a DOM node.
11677
11678 https://bugs.webkit.org/show_bug.cgi?id=21275
11679
11680 Reviewed by Kevin McCullough.
11681
11682 * page/inspector/ElementsPanel.js:
11683 (WebInspector.ElementsPanel.treeOutline.focusedNodeChanged):
11684 Don't steal focus if the current focus element is the search field.
11685
weinig@apple.com841594d2008-10-01 07:27:49 +0000116862008-09-30 Sam Weinig <sam@webkit.org>
11687
11688 Reviewed by Nikolas Zimmermann and Alexey Proskuryakov.
11689
11690 Final patch for https://bugs.webkit.org/show_bug.cgi?id=21122
11691 Autogenerate JS event listeners
11692
11693 - Generate getting/setting of EventListeners.
11694
11695 - Adding a new named EventListener now has the same process as adding any other DOM
11696 attribute. (Add a method with the same name in the c++ file).
11697
11698 (The EventListeners for MessagePort have been intentionally left custom so that we
11699 can continue to experiment with making those EventListeners work in a frame-less world.)
11700
11701 * bindings/js/JSDOMApplicationCacheCustom.cpp: Remove custom methods.
11702 * bindings/js/JSDOMWindowCustom.cpp: ditto.
11703 * bindings/js/JSEventTargetNodeCustom.cpp: ditto.
11704 * bindings/js/JSXMLHttpRequestCustom.cpp: ditto.
11705 * bindings/js/JSXMLHttpRequestUploadCustom.cpp: ditto.
11706 * bindings/scripts/CodeGeneratorJS.pm: Add code to generate EventListener
11707 getter/setters
11708 * dom/EventTargetNode.cpp: Add getter/setters for named EventListener.
11709 * dom/EventTargetNode.h: ditto.
11710 * dom/EventTargetNode.idl: Mark EventListeners as Protected so that the codegenerator
11711 will use JSEventListerner instead of JSUnprotectedEventListener.
11712 * loader/appcache/DOMApplicationCache.idl: Remove custom attributes..
11713 * page/DOMWindow.cpp: Add getter/setters for named EventListener
11714 * page/DOMWindow.h: ditto.
11715 * page/DOMWindow.idl: Mark EventListeners as Protected so that the codegenerator
11716 will use JSEventListerner instead of JSUnprotectedEventListener.
11717 * xml/XMLHttpRequest.idl: Remove custom attributes.
11718 * xml/XMLHttpRequestUpload.idl: ditto.
11719
mrowe@apple.comfed78312008-10-01 06:53:49 +0000117202008-09-30 Mark Rowe <mrowe@apple.com>
11721
11722 Reviewed by Dan Bernstein.
11723
11724 Add a leak counter for CachedResources since we've had two recent leaks involving them.
11725
11726 * loader/CachedResource.cpp:
11727 (WebCore::CachedResource::CachedResource):
11728 (WebCore::CachedResource::~CachedResource):
11729
mitz@apple.com19b93112008-10-01 06:25:17 +0000117302008-09-30 Dan Bernstein <mitz@apple.com>
11731
11732 Reviewed by Dave Hyatt.
11733
11734 - fix https://bugs.webkit.org/show_bug.cgi?id=21127
11735 <rdar://problem/6259134> REGRESSION: CFF format fonts fail to load
11736
11737 If TTLoadEmbeddedFont fails, use AddFontMemResourceEx after changing
11738 the font name in memory.
11739
11740 * WebCore.vcproj/WebCore.vcproj: Renamed GetEOTHeader.* to
11741 OpenTypeUtilities.*.
11742
11743 * platform/graphics/win/FontCustomPlatformData.cpp:
11744 (WebCore::FontCustomPlatformData::~FontCustomPlatformData): Added a call
11745 to RemoveFontMemResourceEx to match AddFontMemResourceEx when it is
11746 used.
11747 (WebCore::FontCustomPlatformData::fontPlatformData): Added a code path
11748 for fonts loaded using AddFontMemResourceEx.
11749 (WebCore::createFontCustomPlatformData): Added a call to
11750 renameAndActivateFont() if TTLoadEmbeddedFont fails. If
11751 TTLoadEmbeddedFont succeeds, set the font name to the null string, as
11752 fontPlatformData() will retrieve the name from the font reference.
11753
11754 * platform/graphics/win/FontCustomPlatformData.h:
11755 (WebCore::FontCustomPlatformData::FontCustomPlatformData): Added a
11756 font name member.
11757
11758 * platform/graphics/win/GetEOTHeader.cpp: Renamed.
11759 * platform/graphics/win/GetEOTHeader.h: Renamed.
11760
11761 * platform/graphics/win/OpenTypeUtilities.cpp: Copied from platform/graphics/win/GetEOTHeader.cpp.
11762 (WebCore::BigEndianUShort::BigEndianUShort): Added a constructor.
11763 (WebCore::BigEndianULong::BigEndianULong): Ditto.
11764 (WebCore::renameAndActivateFont): Added. Creates an in-memory copy of
11765 the font data and modifies it to have the given name, then activates
11766 it using AddFontMemResourceEx.
11767
11768 * platform/graphics/win/OpenTypeUtilities.h: Copied from platform/graphics/win/GetEOTHeader.h.
11769
mrowe@apple.com12cb8c22008-10-01 06:09:28 +0000117702008-09-30 Mark Rowe <mrowe@apple.com>
11771
11772 Reviewed by Dan Bernstein.
11773
11774 Fix many leaks seen on fast/backgrounds/svg-as-mask.html.
11775
11776 * rendering/RenderObject.cpp:
11777 (WebCore::RenderObject::arenaDelete): Balance the calls to addClient on maskLayer's images
11778 with calls to removeClient when we're being destroyed.
11779
eric.carlson@apple.comb9d8cc52008-10-01 05:45:01 +0000117802008-09-30 Eric Carlson <eric.carlson@apple.com>
11781
mrowe@apple.com12cb8c22008-10-01 06:09:28 +000011782 Reviewed by Antti Koivisto.
eric.carlson@apple.comb9d8cc52008-10-01 05:45:01 +000011783
11784 https://bugs.webkit.org/show_bug.cgi?id=21243
11785
11786 Fix loopstart and loopend default values.
11787
11788 Tests: media/loopend-limits.html
11789 media/loopstart-limits.html
11790
11791 * html/HTMLMediaElement.cpp:
11792 (WebCore::HTMLMediaElement::loopStart): the spec says start() is the default value
11793 (WebCore::HTMLMediaElement::loopEnd): the spec says end() is the default value
11794
kevino@webkit.orgbfd4cab2008-10-01 05:04:18 +0000117952008-09-30 Kevin Ollivier <kevino@theolliviers.com>
11796
11797 wx build fixes. Add file to build and remove call to (now gone) ScrollView::update.
11798
11799 * WebCoreSources.bkl:
11800 * platform/wx/ScrollViewWx.cpp:
11801 (WebCore::ScrollView::ScrollViewPrivate::OnScrollWinEvents):
11802
mitz@apple.com17145582008-10-01 04:43:07 +0000118032008-09-30 Dan Bernstein <mitz@apple.com>
11804
11805 Reviewed by Sam Weinig.
11806
11807 - fix HTMLViewSourceDocument leaks by breaking a ref cycle which
11808 was fixed in r17249 and re-introduced in r31435.
11809
11810 * html/HTMLViewSourceDocument.cpp:
11811 (WebCore::HTMLViewSourceDocument::HTMLViewSourceDocument):
11812 (WebCore::HTMLViewSourceDocument::addSpanWithClassName):
11813 (WebCore::HTMLViewSourceDocument::addLine):
11814 (WebCore::HTMLViewSourceDocument::addLink):
11815 * html/HTMLViewSourceDocument.h:
11816
weinig@apple.com42d87a62008-10-01 00:39:19 +0000118172008-09-30 Sam Weinig <sam@webkit.org>
11818
11819 Reviewed by Eric Seidel.
11820
11821 More for https://bugs.webkit.org/show_bug.cgi?id=21122
11822 Autogenerate JS event listeners
11823
11824 - Make EventListener getter/setters names in c++ files match those in
11825 JS (ie. onLoadListener -> onload).
11826 - Add standard way to access the frame associated with the EventTarget
11827 for EventListener lookup.
11828 - Autogenerate dispatchEvent, it wasn't doing anything custom.
11829
11830 * bindings/js/JSDOMApplicationCacheCustom.cpp:
11831 (WebCore::JSDOMApplicationCache::mark):
11832 (WebCore::JSDOMApplicationCache::addEventListener):
11833 (WebCore::JSDOMApplicationCache::removeEventListener):
11834 (WebCore::JSDOMApplicationCache::setOnchecking):
11835 (WebCore::JSDOMApplicationCache::onchecking):
11836 (WebCore::JSDOMApplicationCache::setOnerror):
11837 (WebCore::JSDOMApplicationCache::onerror):
11838 (WebCore::JSDOMApplicationCache::setOnnoupdate):
11839 (WebCore::JSDOMApplicationCache::onnoupdate):
11840 (WebCore::JSDOMApplicationCache::setOndownloading):
11841 (WebCore::JSDOMApplicationCache::ondownloading):
11842 (WebCore::JSDOMApplicationCache::setOnprogress):
11843 (WebCore::JSDOMApplicationCache::onprogress):
11844 (WebCore::JSDOMApplicationCache::setOnupdateready):
11845 (WebCore::JSDOMApplicationCache::onupdateready):
11846 (WebCore::JSDOMApplicationCache::setOncached):
11847 (WebCore::JSDOMApplicationCache::oncached):
11848 * bindings/js/JSEventTargetNodeCustom.cpp:
11849 (WebCore::JSEventTargetNode::addEventListener):
11850 (WebCore::JSEventTargetNode::removeEventListener):
11851 (WebCore::JSEventTargetNode::getListener):
11852 (WebCore::JSEventTargetNode::setListener):
11853 * bindings/js/JSMessagePortCustom.cpp:
11854 (WebCore::JSMessagePort::mark):
11855 (WebCore::JSMessagePort::addEventListener):
11856 (WebCore::JSMessagePort::removeEventListener):
11857 (WebCore::JSMessagePort::setOnmessage):
11858 (WebCore::JSMessagePort::onmessage):
11859 (WebCore::JSMessagePort::setOnclose):
11860 (WebCore::JSMessagePort::onclose):
11861 * bindings/js/JSXMLHttpRequestCustom.cpp:
11862 (WebCore::JSXMLHttpRequest::mark):
11863 (WebCore::JSXMLHttpRequest::onreadystatechange):
11864 (WebCore::JSXMLHttpRequest::setOnreadystatechange):
11865 (WebCore::JSXMLHttpRequest::onabort):
11866 (WebCore::JSXMLHttpRequest::setOnabort):
11867 (WebCore::JSXMLHttpRequest::onerror):
11868 (WebCore::JSXMLHttpRequest::setOnerror):
11869 (WebCore::JSXMLHttpRequest::onload):
11870 (WebCore::JSXMLHttpRequest::setOnload):
11871 (WebCore::JSXMLHttpRequest::onloadstart):
11872 (WebCore::JSXMLHttpRequest::setOnloadstart):
11873 (WebCore::JSXMLHttpRequest::onprogress):
11874 (WebCore::JSXMLHttpRequest::setOnprogress):
11875 (WebCore::JSXMLHttpRequest::addEventListener):
11876 (WebCore::JSXMLHttpRequest::removeEventListener):
11877 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
11878 (WebCore::JSXMLHttpRequestUpload::mark):
11879 (WebCore::JSXMLHttpRequestUpload::onabort):
11880 (WebCore::JSXMLHttpRequestUpload::setOnabort):
11881 (WebCore::JSXMLHttpRequestUpload::onerror):
11882 (WebCore::JSXMLHttpRequestUpload::setOnerror):
11883 (WebCore::JSXMLHttpRequestUpload::onload):
11884 (WebCore::JSXMLHttpRequestUpload::setOnload):
11885 (WebCore::JSXMLHttpRequestUpload::onloadstart):
11886 (WebCore::JSXMLHttpRequestUpload::setOnloadstart):
11887 (WebCore::JSXMLHttpRequestUpload::onprogress):
11888 (WebCore::JSXMLHttpRequestUpload::setOnprogress):
11889 (WebCore::JSXMLHttpRequestUpload::addEventListener):
11890 (WebCore::JSXMLHttpRequestUpload::removeEventListener):
11891 * bindings/scripts/CodeGeneratorJS.pm:
11892 * dom/EventTarget.h:
11893 * dom/EventTargetNode.cpp:
11894 (WebCore::EventTargetNode::associatedFrame):
11895 * dom/EventTargetNode.h:
11896 * dom/EventTargetNode.idl:
11897 * dom/MessagePort.cpp:
11898 (WebCore::MessagePort::associatedFrame):
11899 * dom/MessagePort.h:
11900 (WebCore::MessagePort::setOnmessage):
11901 (WebCore::MessagePort::onmessage):
11902 (WebCore::MessagePort::setOnclose):
11903 (WebCore::MessagePort::onclose):
11904 * dom/MessagePort.idl:
11905 * loader/appcache/DOMApplicationCache.h:
11906 (WebCore::DOMApplicationCache::setOnchecking):
11907 (WebCore::DOMApplicationCache::onchecking):
11908 (WebCore::DOMApplicationCache::setOnerror):
11909 (WebCore::DOMApplicationCache::onerror):
11910 (WebCore::DOMApplicationCache::setOnnoupdate):
11911 (WebCore::DOMApplicationCache::onnoupdate):
11912 (WebCore::DOMApplicationCache::setOndownloading):
11913 (WebCore::DOMApplicationCache::ondownloading):
11914 (WebCore::DOMApplicationCache::setOnprogress):
11915 (WebCore::DOMApplicationCache::onprogress):
11916 (WebCore::DOMApplicationCache::setOnupdateready):
11917 (WebCore::DOMApplicationCache::onupdateready):
11918 (WebCore::DOMApplicationCache::setOncached):
11919 (WebCore::DOMApplicationCache::oncached):
11920 (WebCore::DOMApplicationCache::associatedFrame):
11921 * loader/appcache/DOMApplicationCache.idl:
11922 * svg/EventTargetSVGElementInstance.cpp:
11923 (WebCore::EventTargetSVGElementInstance::associatedFrame):
11924 (WebCore::EventTargetSVGElementInstance::addEventListener):
11925 (WebCore::EventTargetSVGElementInstance::removeEventListener):
11926 (WebCore::EventTargetSVGElementInstance::dispatchEvent):
11927 * svg/EventTargetSVGElementInstance.h:
11928 * xml/XMLHttpRequest.cpp:
11929 (WebCore::XMLHttpRequest::associatedFrame):
11930 * xml/XMLHttpRequest.h:
11931 (WebCore::XMLHttpRequest::setOnreadystatechange):
11932 (WebCore::XMLHttpRequest::onreadystatechange):
11933 (WebCore::XMLHttpRequest::setOnabort):
11934 (WebCore::XMLHttpRequest::onabort):
11935 (WebCore::XMLHttpRequest::setOnerror):
11936 (WebCore::XMLHttpRequest::onerror):
11937 (WebCore::XMLHttpRequest::setOnload):
11938 (WebCore::XMLHttpRequest::onload):
11939 (WebCore::XMLHttpRequest::setOnloadstart):
11940 (WebCore::XMLHttpRequest::onloadstart):
11941 (WebCore::XMLHttpRequest::setOnprogress):
11942 (WebCore::XMLHttpRequest::onprogress):
11943 * xml/XMLHttpRequest.idl:
11944 * xml/XMLHttpRequestUpload.cpp:
11945 (WebCore::XMLHttpRequestUpload::associatedFrame):
11946 * xml/XMLHttpRequestUpload.h:
11947 (WebCore::XMLHttpRequestUpload::setOnabort):
11948 (WebCore::XMLHttpRequestUpload::onabort):
11949 (WebCore::XMLHttpRequestUpload::setOnerror):
11950 (WebCore::XMLHttpRequestUpload::onerror):
11951 (WebCore::XMLHttpRequestUpload::setOnload):
11952 (WebCore::XMLHttpRequestUpload::onload):
11953 (WebCore::XMLHttpRequestUpload::setOnloadstart):
11954 (WebCore::XMLHttpRequestUpload::onloadstart):
11955 (WebCore::XMLHttpRequestUpload::setOnprogress):
11956 (WebCore::XMLHttpRequestUpload::onprogress):
11957 * xml/XMLHttpRequestUpload.idl:
11958
darin@apple.com9451b7f2008-10-01 00:38:06 +0000119592008-09-30 Darin Adler <darin@apple.com>
11960
11961 - roll out assertion breaking regression tests
11962
11963 * platform/ScrollView.cpp:
11964 (WebCore::ScrollView::repaintContentRectangle): Temporarily remove assertion
11965 that fires in regression tests. Hyatt can add it back later. The assertion
11966 fires in the regression test because of layout that triggers repaint occuring
11967 during the process of removing a frame.
11968
adele@apple.comed74a6e2008-09-30 23:21:50 +0000119692008-09-30 Adele Peterson <adele@apple.com>
11970
11971 Reviewed by Darin Adler.
11972
11973 Fix for https://bugs.webkit.org/show_bug.cgi?id=21227
11974 <rdar://problem/6222134> add a way to set color for input placeholder text
11975
11976 Test: fast/forms/placeholder-pseudo-style.html
11977
11978 This change adds "-webkit-input-placeholder-mode" as a pseudo class that can be used to style
11979 input elements when they are displaying the placeholder text.
11980
11981 * css/CSSSelector.cpp: (WebCore::CSSSelector::extractPseudoType): Add case for inputPlaceholderMode.
11982 * css/CSSSelector.h: (WebCore::CSSSelector::): Add PseudoInputPlaceholderMode.
11983 * css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
11984 Add check for PseudoInputPlaceholderMode that asks the node if placeholderShouldBeVisible is true.
11985 * css/html4.css: Add rule to make placeholder text default to darkGray.
11986
11987 * html/HTMLInputElement.cpp:
11988 (WebCore::HTMLInputElement::init): Initialize m_placeholderShouldBeVisible.
11989 (WebCore::HTMLInputElement::dispatchFocusEvent): Call updatePlaceholderVisibility.
11990 (WebCore::HTMLInputElement::dispatchBlurEvent): ditto.
11991 (WebCore::HTMLInputElement::parseMappedAttribute): ditto.
11992 (WebCore::HTMLInputElement::setValue): ditto.
11993 (WebCore::HTMLInputElement::setValueFromRenderer): ditto.
11994 (WebCore::HTMLInputElement::updatePlaceholderVisibility): Sets m_placeholderShouldBeVisible based on the current value and the focus state.
11995 This calculation used to be done in the renderer, but since the node knows everything about the state, it can make that decision, and the
11996 renderer will just ask the node if it should draw the placeholder.
11997 * html/HTMLInputElement.h: (WebCore::HTMLInputElement::placeholderShouldBeVisible):
11998
11999 * rendering/RenderTextControl.cpp:
12000 (WebCore::disabledTextColor): Moved to the top of the file. If there's not very much contrast between the disabled color and the background color,
12001 just leave the text color alone. We don't want to change a good contrast color scheme so that it has really bad contrast.
12002 If the the contrast was already poor, then it doesn't do any good to change it to a different poor contrast color scheme.
12003 (WebCore::RenderTextControl::createInnerTextStyle): If the node says the placeholder should be visible, prepare by overriding the text security to be "none".
12004 This can only happen as a result of either a setStyle call (which will be followed by a call to updateFromElement) or from createSubtreeIfNeeded, which
12005 is called directly from updateFromElement. updateFromElement will immediately update the text displayed.
12006 (WebCore::RenderTextControl::updateFromElement): If the placeholder visibility has changed, update the text that is displayed.
12007 (WebCore::RenderTextControl::forwardEvent): Remove calls to update the placeholder state. This is now done in HTMLInputElement.
12008 * rendering/RenderTextControl.h:
12009
bdakin@apple.com31845c52008-09-30 23:19:53 +0000120102008-09-30 Beth Dakin <bdakin@apple.com>
12011
12012 Reviewed by Darin Adler.
12013
12014 Fix for https://bugs.webkit.org/show_bug.cgi?id=20396 Abort caused
12015 by failed allocation due to invalid counter/attr
12016 and corresponding: <rdar://problem/6152371>
12017
12018 * css/CSSParser.cpp:
12019 (WebCore::CSSParser::parseCounterContent): The spec indicates that
12020 only identifiers should be accepted here.
12021
kmccullough@apple.com86834eb2008-09-30 22:31:46 +0000120222008-09-30 Kevin McCullough <kmccullough@apple.com>
12023
kmccullough@apple.com88219342008-09-30 22:33:30 +000012024 Reviewed by Oliver Hunt.
12025
12026 Bug 21255: console.profileEnd() without a console.profile() crashes the
12027 web inspector
12028
12029 * page/Console.cpp:
12030 (WebCore::Console::profileEnd):
12031
120322008-09-30 Kevin McCullough <kmccullough@apple.com>
12033
kmccullough@apple.com86834eb2008-09-30 22:31:46 +000012034 Reviewed by Tim Hatcher.
12035
12036 Bug 21252: calling console.profile() with a title that is 2 chars or
12037 shorter does not linkify it
12038
12039 - Previously we tried to not linkify very short URLs but since profile
12040 titles can be any length this is not always true.
12041
12042 * page/inspector/inspector.js:
12043
hyatt@apple.comda9b3072008-09-30 21:30:56 +0000120442008-09-30 Dave Hyatt <hyatt@apple.com>
12045
12046 Remove the update() method on ScrollView. This method was only called in one place, and its purpose
12047 was to cause a display/flush to happen. Here is a breakdown of the method use on each platform:
12048 (1) Not used on Mac
12049 (2) Used on Windows
12050 (3) Used on Qt, but implemented incorrectly to cause a full repaint for no reason.
12051 (4) Used on Gtk, but implemented incorrectly to cause a full repaint for no reason.
12052 (5) Used on wx, but probably not needed (since wx has platform widgets like Mac).
12053
12054 There is now a paint method on HostWindow that does an immediate mode repaint of an empty rect to
12055 cause the display/flush to happen if needed (thus saving an extra method on ChromeClient).
12056 With the changes to this method, the new behavior is as follows:
12057 (1) Not used on Mac
12058 (2) Used on Windows
12059 (3) Nothing happens on Qt, but only because they have not implemented immediate mode updating.
12060 (4) Gtk now behaves like Windows and will process updates but not do any incorrect additional invalidation.
12061 (5) Not used on wx
12062
12063 This method was originally added for Windows. It's not clear the display/flush is really even necessary on the other
12064 platforms. At the very least stopping unnecessary full invalidations on Qt/Gtk is a good thing. :)
12065
12066 Reviewed by Sam Weinig
12067
12068 * ChangeLog:
12069 * dom/Document.cpp:
12070 (WebCore::Document::implicitClose):
12071 * platform/HostWindow.h:
12072 (WebCore::HostWindow::paint):
12073 * platform/ScrollView.h:
12074 * platform/gtk/ScrollViewGtk.cpp:
12075 * platform/mac/ScrollViewMac.mm:
12076 * platform/qt/ScrollViewQt.cpp:
12077 * platform/win/ScrollViewWin.cpp:
12078 * platform/wx/ScrollViewWx.cpp:
12079
timothy@apple.com92560da2008-09-30 20:57:49 +0000120802008-09-30 Timothy Hatcher <timothy@apple.com>
12081
timothy@apple.com26fefbf2008-09-30 20:57:55 +000012082 Focus the DOM tree in the Web Inspector when a node is inspected.
12083 So when the search field has focus, the focus moves to the tree,
12084 allowing the arrow keys work. This can happen when using the new
12085 find in page feature.
12086
12087 https://bugs.webkit.org/show_bug.cgi?id=21251
12088
12089 Reviewed by Geoff Garen.
12090
12091 * page/inspector/ElementsPanel.js:
12092 (WebInspector.ElementsPanel): Set currentFocusElement to
12093 the main-panels element if the panel is visible.
12094 (WebInspector.ElementsPanel.prototype.updateBreadcrumb):
12095 Remove a set of currentFocusElement since this moved.
12096 * page/inspector/inspector.js:
12097 (WebInspector.set currentFocusElement): Always focus the element.
12098 This ensures that when focus changes in the page and we don't
12099 catch it, we will still focus the elements even if we think it
12100 was already focused.
12101
121022008-09-30 Timothy Hatcher <timothy@apple.com>
12103
timothy@apple.com92560da2008-09-30 20:57:49 +000012104 Make the Web Inspector's toolbar icons darker when the mouse is
12105 pressed on them. This matches the standard NSToolbar look.
12106
12107 https://bugs.webkit.org/show_bug.cgi?id=21249
12108 rdar://problem/6033752
12109
12110 Reviewed by Adam Roben.
12111
12112 * page/inspector/Images/databasesIcon.png:
12113 * page/inspector/Images/elementsIcon.png:
12114 * page/inspector/Images/profilesIcon.png:
12115 * page/inspector/Images/resourcesIcon.png:
12116 * page/inspector/Images/scriptsIcon.png:
12117 * page/inspector/Panel.js:
12118 * page/inspector/inspector.css:
12119
kmccullough@apple.com622724e2008-09-30 20:26:29 +0000121202008-09-30 Kevin McCullough <kmccullough@apple.com>
12121
12122 Reviewed by Tim Hatcher.
12123
12124 Bug 21139: Profiler log message is wrong
12125 - Correctly fix =(
12126 Don't call _format twice.
12127
12128 * page/Page.h:
12129 * page/inspector/Console.js:
12130 * page/inspector/ProfilesPanel.js:
12131 * page/inspector/inspector.js:
12132
hyatt@apple.com70936b52008-09-30 20:09:42 +0000121332008-09-30 Dave Hyatt <hyatt@apple.com>
12134
12135 http://bugs.webkit.org/show_bug.cgi?id=21250
12136
12137 Rename updateContents to repaintContentRectangle and make it cross-platform by always sending
12138 repaints up through the ChromeClient.
12139
12140 Reviewed by Darin Adler
12141
12142 * loader/EmptyClients.h:
12143 (WebCore::EmptyChromeClient::repaint):
12144 * page/Chrome.cpp:
12145 (WebCore::Chrome::repaint):
12146 * page/Chrome.h:
12147 * page/ChromeClient.h:
12148 * page/FrameView.cpp:
12149 (WebCore::FrameView::hostWindow):
12150 (WebCore::FrameView::repaintContentRectangle):
12151 * page/FrameView.h:
12152 * platform/HostWindow.h:
12153 * platform/ScrollView.cpp:
12154 (WebCore::ScrollView::repaintContentRectangle):
12155 (WebCore::ScrollView::platformRepaintContentRectangle):
12156 * platform/ScrollView.h:
12157 * platform/gtk/ScrollViewGtk.cpp:
12158 * platform/mac/ScrollViewMac.mm:
12159 (WebCore::ScrollView::platformRepaintContentRectangle):
12160 * platform/qt/ScrollViewQt.cpp:
12161 * platform/win/ScrollViewWin.cpp:
12162 * platform/wx/ScrollViewWx.cpp:
12163 (WebCore::ScrollView::platformRepaintContentRectangle):
12164
ap@webkit.org8b67da02008-09-30 17:58:10 +0000121652008-09-30 Alexey Proskuryakov <ap@webkit.org>
12166
12167 Non-Mac build fixes.
12168
12169 * GNUmakefile.am:
12170 * WebCore.pro:
12171 * WebCore.vcproj/WebCore.vcproj:
12172 * WebCoreSources.bkl:
12173 * webcore-base.bkl:
12174 Added DOMProtect.{cpp,h}.
12175
kdecker@apple.comdafe5102008-09-30 17:40:02 +0000121762008-09-39 Kevin Decker <kdecker@apple.com>
12177
12178 Reviewed by John Sullivan.
12179
12180 * bridge/npapi.h: Added skeleton for a new plug-in drawing model, the NPCoreAnimationDrawingModel. This model will eventually pave the way
12181 for hardware accelerated drawing in plug-ins and out of process plug-in rendering.
12182
jchaffraix@webkit.org70abf6f2008-09-30 17:05:20 +0000121832008-09-29 Julien Chaffraix <jchaffraix@webkit.org>
12184
12185 Reviewed by Maciej Stachowiak.
12186
12187 Bug 21106: .in format discussed changes
12188 https://bugs.webkit.org/show_bug.cgi?id=21106
12189
12190 - Removed "cppNamespace" global parameter and hard-coded "WebCore" as it
12191 is the only namespace used.
12192
12193 - Removed "generateFactory" and "generateWrapperFactory" parameters and
12194 re-introduced the command line options.
12195
12196 - Cleaned up the output of make_names.pl (removed unneeded new line).
12197
12198 * DerivedSources.make: Added factories command line options.
12199 * GNUmakefile.am: Ditto.
12200 * WebCore.pro: Ditto and removed some arguments that were migrated to
12201 the .in files.
12202
12203 * dom/make_names.pl: Clean up (see above).
12204
12205 * html/HTMLAttributeNames.in: Removed "cppNamespace", "generateFactory"
12206 and "generateWrapperFactory" occurences.
12207 * html/HTMLTagNames.in: Ditto.
12208 * svg/svgattrs.in: Ditto.
12209 * svg/svgtags.in: Ditto.
12210 * svg/xlinkattrs.in: Ditto.
12211 * xml/xmlattrs.in: Ditto.
12212
cfleizach@apple.com576ca0a2008-09-30 16:19:01 +0000122132008-09-29 Chris Fleizach <cfleizach@apple.com>
12214
12215 Reviewed by John Sullivan.
12216
12217 <rdar://problem/6255456> AX: <file> input button shouldn't have children exposed
12218 Make sure that certain types of elements do not return children and, moreover, do not waste their
12219 energy trying to return children
12220
12221 Test: accessibility/nochildren-elements.html
12222
12223 * page/AccessibilityObject.h:
12224 (WebCore::AccessibilityObject::canHaveChildren):
12225 * page/AccessibilityRenderObject.cpp:
12226 (WebCore::AccessibilityRenderObject::canHaveChildren):
12227 (WebCore::AccessibilityRenderObject::addChildren):
12228 * page/AccessibilityRenderObject.h:
12229
ap@webkit.orga0c037c2008-09-30 15:52:06 +0000122302008-09-30 Alexey Proskuryakov <ap@webkit.org>
12231
12232 Reviewed by Sam Weinig.
12233
12234 https://bugs.webkit.org/show_bug.cgi?id=21213
12235 MessagePort crash when GC collects an object with a pending close event
12236
12237 Test: fast/events/message-channel-gc-2.html
12238 fast/events/message-channel-listener-circular-ownership.html
12239
12240 * bindings/DOMProtect.cpp: Added.
12241 (WebCore::gcProtectDOMObject):
12242 (WebCore::gcUnprotectDOMObject):
12243 * bindings/DOMProtect.h: Added.
12244 Added an abstraction for GC protection to avoid the need to call JS bindings code from
12245 DOM objects directly.
12246
12247 * dom/MessagePort.cpp:
12248 (WebCore::CloseMessagePortTimer::fired):
12249 (WebCore::MessagePort::queueCloseEvent):
12250 GC protect MessagePort wrapper while there is a pending close event.
12251 This may be necessary for message events, too, but that case is not a crasher, and actually
12252 behaves to the letter of the current HTML5 text, so I'll consider it later.
12253
12254 * xml/XMLHttpRequest.cpp:
12255 (WebCore::XMLHttpRequest::loadRequestAsynchronously):
12256 (WebCore::XMLHttpRequest::dropProtection):
12257 Use gcProtectDOMObject here, too. Unfortunately, XMLHttpRequest has more dependencies on JSC.
12258
12259 * bindings/js/JSMessagePortCustom.cpp:
12260 (WebCore::JSMessagePort::addEventListener):
12261 (WebCore::JSMessagePort::removeEventListener):
12262 (WebCore::JSMessagePort::setOnmessage):
12263 (WebCore::JSMessagePort::setOnclose):
12264 Don't tell DOMWindowBase that MessagePort is a NodeEventTarget, this is not true. I do not
12265 know if this was causing any real issues, but we shouldn't lie to DOMWindowBase.
12266
12267 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
12268 (WebCore::JSXMLHttpRequestUpload::mark):
12269 While at it, changed to use a typedef for event listeners from XMLHttpRequestUpload, not
12270 from XMLHttpRequest.
12271
aroben@apple.comd2272012008-09-30 14:17:28 +0000122722008-09-30 Adam Roben <aroben@apple.com>
12273
12274 Windows build fix
12275
12276 * DerivedSources.cpp: Add JSEventTargetNode.cpp.
12277
weinig@apple.comd516a572008-09-30 07:01:45 +0000122782008-09-29 Sam Weinig <sam@webkit.org>
12279
12280 Reviewed by Tim Hatcher.
12281
12282 Patch for https://bugs.webkit.org/show_bug.cgi?id=21122
12283 Autogenerate JS event listeners
12284
12285 - Generate EventTargetNode.
12286
12287 * DerivedSources.make:
12288 * GNUmakefile.am:
12289 * WebCore.pro:
12290 * WebCore.vcproj/WebCore.vcproj:
12291 * WebCore.xcodeproj/project.pbxproj:
12292 * WebCoreSources.bkl:
12293 * bindings/js/JSEventListener.cpp:
12294 * bindings/js/JSEventTarget.cpp: Added.
12295 (WebCore::toJS):
12296 * bindings/js/JSEventTarget.h: Added.
12297 * bindings/js/JSEventTargetBase.cpp: Removed.
12298 * bindings/js/JSEventTargetBase.h:
12299 * bindings/js/JSEventTargetNode.cpp: Removed.
12300 * bindings/js/JSEventTargetNode.h: Removed.
12301 * bindings/js/JSEventTargetNodeCustom.cpp: Added.
12302 (WebCore::JSEventTargetNode::addEventListener):
12303 (WebCore::JSEventTargetNode::removeEventListener):
12304 (WebCore::JSEventTargetNode::dispatchEvent):
12305 (WebCore::JSEventTargetNode::getListener):
12306 (WebCore::JSEventTargetNode::setListener):
12307 (WebCore::JSEventTargetNode::pushEventHandlerScope):
12308 * bindings/js/JSEventTargetSVGElementInstance.cpp:
12309 (WebCore::):
12310 (WebCore::JSEventTargetSVGElementInstancePrototype::self):
12311 (WebCore::JSEventTargetSVGElementInstancePrototype::getOwnPropertySlot):
12312 (jsEventTargetAddEventListener):
12313 (jsEventTargetRemoveEventListener):
12314 (jsEventTargetDispatchEvent):
12315 * bindings/js/JSEventTargetSVGElementInstance.h:
12316 (WebCore::JSEventTargetSVGElementInstancePrototype::JSEventTargetSVGElementInstancePrototype):
12317 (WebCore::JSEventTargetSVGElementInstancePrototype::classInfo):
12318 * bindings/scripts/CodeGeneratorJS.pm:
12319 * dom/EventTargetNode.idl: Added.
12320
darin@apple.com8d35fe02008-09-30 01:14:26 +0000123212008-09-29 Darin Adler <darin@apple.com>
12322
12323 Reviewed by Sam Weinig.
12324
12325 - https://bugs.webkit.org/show_bug.cgi?id=21214
12326 work on getting rid of ExecState
12327
12328 * bindings/js/JSDOMWindowBase.cpp:
12329 (WebCore::JSDOMWindowBase::JSDOMWindowBase): Removed globalThisValue argument
12330 for base class constructor.
12331
hyatt@apple.com4ba85692008-09-30 00:42:25 +0000123322008-09-29 David Hyatt <hyatt@apple.com>
12333
12334 Add the new HostWindow base class. A HostWindow hosts a hierarchy of Widgets. The Chrome object on Page
12335 now subclasses from HostWindow. The new class will allow objects in platform/ like Widgets, Scrollbars
12336 and ScrollViews to talk to the HostWindow object in order to do backing store operations and invalidations.
12337 (Right now the platform layering is simply being violated by ScrollViews going directly to the ChromeClient.)
12338
12339 Reviewed by Sam Weinig
12340
12341 * WebCore.xcodeproj/project.pbxproj:
12342 * page/Chrome.h:
12343 * platform/HostWindow.h: Added.
12344 (WebCore::HostWindow::HostWindow):
12345 (WebCore::HostWindow::~HostWindow):
12346
kdecker@apple.com0a129d72008-09-30 00:17:15 +0000123472008-09-29 Kevin Decker <kdecker@apple.com>
12348
12349 Reviewed by Anders Carlsson.
12350
12351 * bridge/npapi.h: Tweaked NPNVariable enum. NPNVsupportsCocoaBool, NPNVsupportsCarbonBool are now in the 3000 range instead of
12352 2000.
12353
mitz@apple.comd58d8382008-09-29 23:42:38 +0000123542008-09-29 Dan Bernstein <mitz@apple.com>
12355
12356 Reviewed by Adam Roben.
12357
12358 - WebCore part of fixing <rdar://problem/6247906> REGRESSION (r19500): Crash on quit beneath CloseThemeData
12359
12360 * rendering/RenderThemeWin.cpp:
12361 (WebCore::RenderThemeWin::setWebKitIsBeingUnloaded): Added.
12362 (WebCore::RenderThemeWin::~RenderThemeWin): Check if WebKit is being
12363 unloaded, to avoid calling uxtheme.dll functions after that library has
12364 been unloaded.
12365 * rendering/RenderThemeWin.h:
12366
cfleizach@apple.comb136d2c2008-09-29 23:10:03 +0000123672008-09-29 Chris Fleizach <cfleizach@apple.com>
12368
12369 Reviewed by John Sullivan
12370
12371 <rdar://problem/6240743> AXLoadComplete is sent for non-top level web areas and bogus web areas
12372
12373 Sends AXLoadComplete only when the top level web area is finished loading
12374
12375 * dom/Document.cpp:
12376 (WebCore::Document::implicitClose):
12377
timothy@apple.com96fff242008-09-29 22:34:10 +0000123782008-09-29 Timothy Hatcher <timothy@apple.com>
12379
12380 Makes the node highlight always show up when hovering a node in
12381 the Web Inspector now that the highlight does not scroll to reveal
12382 the node. Also adds a hover effect in the inspector when hovering
12383 causes a highlight in the page. This ties the user hovering action
12384 to the highlight so it is clear what causes the highlight to appear.
12385
12386 Also the highlight now temporarily shows up for 2 seconds after
12387 selecting a node in the DOM tree. So arrowing around in the tree
12388 will show the node on the page, providing feedback to the user.
12389
12390 Plus fixes an issue where quickly moving away from hovering
12391 a node would keep showing the page highlight. This was happening
12392 in breadcrumbs and the DOM tree.
12393
12394 https://bugs.webkit.org/show_bug.cgi?id=21220
12395
12396 Reviewed by Kevin McCullough.
12397
12398 * page/inspector/Console.js:
12399 (WebInspector.Console.prototype._mouseOverNode): Added. Used for
12400 hovering DOM nodes in the console.
12401 (WebInspector.Console.prototype._mouseOutOfNode): Ditto.
12402 (WebInspector.Console.prototype._formatnode): Use the new event
12403 listeners and add a class name to the anchor element.
12404 * page/inspector/ElementsPanel.js:
12405 (WebInspector.ElementsPanel): Add new event listeners to the
12406 crumbs element to do the node hovering highlight.
12407 (WebInspector.ElementsPanel.prototype.hide):
12408 (WebInspector.ElementsPanel.prototype.reset):
12409 (WebInspector.ElementsPanel.prototype._mouseMovedInCrumbs):
12410 (WebInspector.ElementsPanel.prototype._mouseMovedOutOfCrumbs):
12411 (WebInspector.ElementsPanel.prototype.updateBreadcrumb):
12412 * page/inspector/ElementsTreeOutline.js:
12413 (WebInspector.ElementsTreeOutline.prototype.set focusedDOMNode):
12414 Show the node hishlight for 2 seconds then restore the highlight
12415 to the current hovered node.
12416 (WebInspector.ElementsTreeOutline.prototype._onmousemove): Set the
12417 hovered node and set the hovered state on the tree element.
12418 (WebInspector.ElementsTreeOutline.prototype._onmouseout): Set the
12419 hovered node to null and removed the hovered state from the previous
12420 hovered tree element.
12421 (WebInspector.ElementsTreeElement.prototype.set/get hovered): Adds
12422 the hovered class to the list item.
12423 (WebInspector.ElementsTreeElement.prototype.onattach): Ditto.
12424 * page/inspector/inspector.css:
12425 * page/inspector/inspector.js:
12426 (WebInspector.set hoveredDOMNode): Pass a delay to _updateHoverHighlightSoon
12427 based on the showingDOMNodeHighlight property of 50ms or 500ms. This
12428 causes the highlight to change sooner if there is one already showing
12429 and appear later if there isn't one showing. This is like tooltips,
12430 hovering a node for 500ms will cause highlight then mousing between nodes
12431 will keep the highlight and change to the new node.
12432 (WebInspector._updateHoverHighlightSoon): Take a delay being passed in and
12433 always reset the timeout so continuous mousing does not keep flasshing
12434 the highlight on the screen.
12435 (WebInspector._updateHoverHighlight): Removed the alt key check and added
12436 the showingDOMNodeHighlight property.
12437 (WebInspector.documentKeyDown): Removed the alt key check.
12438 (WebInspector.documentKeyUp): Ditto.
12439 (WebInspector.reset): Clear the hoveredDOMNode.
12440
simon.fraser@apple.com8a565532008-09-29 22:04:38 +0000124412008-09-29 Simon Fraser <simon.fraser@apple.com>
12442
12443 Reviewed by Anders Carlsson
12444
12445 Fix RenderStyle leak in animation code, and assert that
12446 keyframe resolution in CSSStyleSelector is not going to clobber
12447 m_style.
12448
12449 * css/CSSStyleSelector.cpp:
12450 (WebCore::CSSStyleSelector::keyframeStylesForAnimation):
12451 * page/animation/KeyframeAnimation.cpp:
12452 (WebCore::KeyframeAnimation::~KeyframeAnimation):
12453
simon.fraser@apple.comfd48da22008-09-29 21:18:07 +0000124542008-09-29 Chris Marrin <cmarrin@apple.com>
12455
simon.fraser@apple.come979de02008-09-29 21:31:26 +000012456 Reviewed by Dave Hyatt
12457
12458 Fixed https://bugs.webkit.org/show_bug.cgi?id=20995
12459 Rewrite keyframe resolution to be like styleForElement()
12460
12461 Test: animations/lineheight-animation.html
12462
12463 * css/CSSStyleSelector.cpp:
12464 (WebCore::CSSStyleSelector::addKeyframeStyle):
12465 (WebCore::CSSStyleSelector::~CSSStyleSelector):
12466 (WebCore::CSSStyleSelector::keyframeStylesForAnimation):
12467 (WebCore::CSSRuleSet::addRulesFromSheet):
12468 (WebCore::CSSStyleSelector::mapAnimationName):
12469 * css/CSSStyleSelector.h:
12470 * page/animation/CompositeAnimation.cpp:
12471 (WebCore::CompositeAnimation::updateKeyframeAnimations):
12472 * page/animation/KeyframeAnimation.cpp:
12473 (WebCore::KeyframeAnimation::KeyframeAnimation):
12474 (WebCore::KeyframeAnimation::animate):
12475 (WebCore::KeyframeAnimation::hasAnimationForProperty):
12476 (WebCore::KeyframeAnimation::sendAnimationEvent):
12477 (WebCore::KeyframeAnimation::overrideAnimations):
12478 (WebCore::KeyframeAnimation::resumeOverriddenAnimations):
12479 (WebCore::KeyframeAnimation::affectsProperty):
12480 (WebCore::KeyframeAnimation::validateTransformFunctionList):
12481 * page/animation/KeyframeAnimation.h:
12482 * rendering/style/Animation.cpp:
12483 (WebCore::Animation::animationsMatch):
12484 * rendering/style/Animation.h:
12485 * rendering/style/KeyframeList.cpp:
12486 (WebCore::KeyframeList::~KeyframeList):
12487 (WebCore::KeyframeList::clear):
12488 (WebCore::KeyframeList::insert):
12489 * rendering/style/KeyframeList.h:
12490 (WebCore::KeyframeValue::KeyframeValue):
12491 (WebCore::KeyframeList::KeyframeList):
12492 (WebCore::KeyframeList::operator!=):
12493 (WebCore::KeyframeList::animationName):
12494 (WebCore::KeyframeList::addProperty):
12495 (WebCore::KeyframeList::containsProperty):
12496 (WebCore::KeyframeList::beginProperties):
12497 (WebCore::KeyframeList::endProperties):
12498 (WebCore::KeyframeList::isEmpty):
12499 (WebCore::KeyframeList::size):
12500 (WebCore::KeyframeList::beginKeyframes):
12501 (WebCore::KeyframeList::endKeyframes):
12502 * rendering/style/RenderStyle.h:
12503 * rendering/style/StyleRareNonInheritedData.cpp:
12504 * rendering/style/StyleRareNonInheritedData.h:
12505
125062008-09-29 Chris Marrin <cmarrin@apple.com>
12507
simon.fraser@apple.comd63ba9a2008-09-29 21:21:38 +000012508 Reviewed by Eric Seidel
12509
simon.fraser@apple.comff913022008-09-29 21:24:52 +000012510 Clean up fix in PropertyWrapperGetter::equals
12511 https://bugs.webkit.org/show_bug.cgi?id=21011
12512
12513 Test: transitions/override-transition-crash.html
12514
12515 * page/animation/AnimationBase.cpp:
12516 (WebCore::PropertyWrapperGetter::equals):
12517 * page/animation/CompositeAnimation.cpp:
12518 (WebCore::CompositeAnimation::updateTransitions):
12519
125202008-09-29 Chris Marrin <cmarrin@apple.com>
12521
12522 Reviewed by Eric Seidel
12523
simon.fraser@apple.comd63ba9a2008-09-29 21:21:38 +000012524 https://bugs.webkit.org/show_bug.cgi?id=21001
12525 Starting transition after animation, when animation
12526 is finished, transition is wrong.
12527
12528 Test: animations/transition-and-animation-2.html
12529
12530 * page/animation/AnimationBase.h:
12531 * page/animation/CompositeAnimation.cpp:
12532 (WebCore::CompositeAnimation::updateTransitions):
12533 (WebCore::CompositeAnimation::updateKeyframeAnimations):
12534 (WebCore::CompositeAnimation::resetTransitions):
12535 (WebCore::CompositeAnimation::cleanupFinishedAnimations):
12536 * page/animation/ImplicitAnimation.cpp:
12537 (WebCore::ImplicitAnimation::ImplicitAnimation):
12538 (WebCore::ImplicitAnimation::~ImplicitAnimation):
12539 (WebCore::ImplicitAnimation::animate):
12540 (WebCore::ImplicitAnimation::reset):
12541 * page/animation/ImplicitAnimation.h:
12542
125432008-09-29 Chris Marrin <cmarrin@apple.com>
12544
simon.fraser@apple.comfd48da22008-09-29 21:18:07 +000012545 Reviewed by Sam Weinig
12546
12547 https://bugs.webkit.org/show_bug.cgi?id=20921
12548 -webkit-animation-timing-function: inside of keyframes is ignored
12549
12550 Test: animations/keyframe-timing-functions.html
12551
12552 * page/animation/AnimationBase.cpp:
12553 (WebCore::AnimationBase::progress):
12554 * page/animation/AnimationBase.h:
12555 * page/animation/ImplicitAnimation.cpp:
12556 (WebCore::ImplicitAnimation::animate):
12557 * page/animation/KeyframeAnimation.cpp:
12558 (WebCore::KeyframeAnimation::animate):
12559
mitz@apple.com2449a052008-09-29 20:57:33 +0000125602008-09-29 Dan Bernstein <mitz@apple.com>
12561
mitz@apple.com9a3e3c82008-09-29 21:04:54 +000012562 - Windows build fix
12563
12564 * platform/ScrollView.cpp:
12565 (WebCore::ScrollView::platformScroll):
12566
125672008-09-29 Dan Bernstein <mitz@apple.com>
12568
mitz@apple.com2449a052008-09-29 20:57:33 +000012569 - another attempt at a Windows build fix
12570
12571 * platform/ScrollView.cpp:
12572 (WebCore::platformScroll):
12573
125742008-09-29 Dan Bernstein <mitz@apple.com>
mitz@apple.comad171f12008-09-29 20:52:19 +000012575
12576 - Windows build fix
12577
12578 * platform/ScrollView.cpp:
12579 (WebCore::ScrollView::platformSetScrollPosition):
12580
hyatt@apple.com90abd562008-09-29 19:46:37 +0000125812008-09-29 David Hyatt <hyatt@apple.com>
12582
hyatt@apple.com4ce2a1d2008-09-29 20:09:59 +000012583 https://bugs.webkit.org/show_bug.cgi?id=21218
12584
12585 Accidentally removed a check to see if the scrollbar modes were equal. This caused a crash on Windows.
12586 It's silly that the code was this fragile, but for now just put the check back in.
12587
12588 Reviewed by Dan Bernstein
12589
12590 * platform/ScrollView.cpp:
12591 (WebCore::ScrollView::setScrollbarModes):
12592
125932008-09-29 David Hyatt <hyatt@apple.com>
12594
hyatt@apple.com90abd562008-09-29 19:46:37 +000012595 https://bugs.webkit.org/show_bug.cgi?id=21216
12596
12597 Make setScrollPosition and scroll() cross-platform.
12598
12599 Reviewed by Anders
12600
12601 * platform/ScrollView.cpp:
12602 (WebCore::ScrollView::setScrollPosition):
12603 (WebCore::ScrollView::scroll):
12604 * platform/ScrollView.h:
12605 * platform/gtk/ScrollViewGtk.cpp:
12606 * platform/mac/ScrollViewMac.mm:
12607 (WebCore::ScrollView::platformSetScrollPosition):
12608 (WebCore::ScrollView::platformScroll):
12609 * platform/qt/ScrollViewQt.cpp:
12610 * platform/win/ScrollViewWin.cpp:
12611 * platform/wx/ScrollViewWx.cpp:
12612 (WebCore::ScrollView::platformSetScrollPosition):
12613 (WebCore::ScrollView::platformScroll):
12614
kmccullough@apple.comed371682008-09-29 19:09:44 +0000126152008-09-29 Kevin McCullough <kmccullough@apple.com>
12616
12617 Reviewed by Oliver.
12618
12619 Bug 21139: Profiler log message is wrong
12620 - Because _format was called twice the number in the log was incremented
12621 too many times, but we were passing it around in the link the whole time
12622
12623 * page/inspector/ProfilesPanel.js:
12624 * page/inspector/inspector.js:
12625
weinig@apple.com7f3f95f2008-09-29 19:09:02 +0000126262008-09-29 Sam Weinig <sam@webkit.org>
12627
12628 Reviewed by Cameron Zwarich.
12629
12630 Autogenerate EventListeners, addEventListener and removeEventListener
12631 for JSDOMWindow.
12632
12633 * bindings/js/JSDOMWindowBase.cpp:
12634 * bindings/js/JSDOMWindowBase.h:
12635 * bindings/js/JSDOMWindowCustom.cpp:
12636 (WebCore::JSDOMWindow::onwebkitanimationstart):
12637 (WebCore::JSDOMWindow::setOnwebkitanimationstart):
12638 (WebCore::JSDOMWindow::onwebkitanimationiteration):
12639 (WebCore::JSDOMWindow::setOnwebkitanimationiteration):
12640 (WebCore::JSDOMWindow::onwebkitanimationend):
12641 (WebCore::JSDOMWindow::setOnwebkitanimationend):
12642 (WebCore::JSDOMWindow::onwebkittransitionend):
12643 (WebCore::JSDOMWindow::setOnwebkittransitionend):
12644 (WebCore::JSDOMWindow::addEventListener):
12645 (WebCore::JSDOMWindow::removeEventListener):
12646 (WebCore::JSDOMWindow::setListener):
12647 (WebCore::JSDOMWindow::getListener):
12648 * bindings/scripts/CodeGeneratorJS.pm:
12649 * page/DOMWindow.idl:
12650
hausmann@webkit.orgf6964472008-09-29 12:47:08 +0000126512008-09-29 Thiago Macieira <thiago.macieira@nokia.com>
12652
12653 Reviewed by Simon.
12654
12655 Changed copyright from Trolltech ASA to Nokia.
12656
12657 Nokia acquired Trolltech ASA, assets were transferred on September 26th 2008.
12658
12659 * bindings/js/JSMimeTypeArrayCustom.cpp:
12660 * bindings/js/JSNavigatorCustom.cpp:
12661 * bindings/js/JSPluginArrayCustom.cpp:
12662 * bindings/js/JSPluginCustom.cpp:
12663 * bindings/js/ScriptControllerMac.mm:
12664 * bindings/js/ScriptControllerQt.cpp:
12665 * bridge/qt/qt_class.cpp:
12666 * bridge/qt/qt_class.h:
12667 * bridge/qt/qt_instance.cpp:
12668 * bridge/qt/qt_instance.h:
12669 * bridge/qt/qt_runtime.cpp:
12670 * bridge/qt/qt_runtime.h:
12671 * bridge/testqtbindings.cpp:
12672 * css/makegrammar.pl:
12673 * css/makeprop.pl:
12674 * css/makevalues.pl:
12675 * dom/Node.cpp:
12676 * dom/TagNodeList.cpp:
12677 * dom/TagNodeList.h:
12678 * dom/XMLTokenizer.cpp:
12679 * dom/XMLTokenizer.h:
12680 * dom/XMLTokenizerLibxml2.cpp:
12681 * dom/XMLTokenizerQt.cpp:
12682 * editing/Editor.cpp:
12683 * editing/EditorCommand.cpp:
12684 * html/CanvasRenderingContext2D.cpp:
12685 * html/CanvasStyle.cpp:
12686 * html/HTMLAppletElement.cpp:
12687 * html/HTMLEmbedElement.cpp:
12688 * html/HTMLObjectElement.cpp:
12689 * loader/FrameLoader.cpp:
12690 * page/Chrome.cpp:
12691 * page/EditorClient.h:
12692 * page/Frame.cpp:
12693 * page/Frame.h:
12694 * page/FramePrivate.h:
12695 * page/Navigator.cpp:
12696 * page/Navigator.h:
12697 * page/Navigator.idl:
12698 * page/mac/FrameMac.mm:
12699 * page/qt/EventHandlerQt.cpp:
12700 * platform/graphics/qt/FontCacheQt.cpp:
12701 * platform/graphics/qt/FontCustomPlatformData.cpp:
12702 * platform/graphics/qt/FontCustomPlatformData.h:
12703 * platform/graphics/qt/FontPlatformData.h:
12704 * platform/graphics/qt/FontQt.cpp:
12705 * platform/graphics/qt/GlyphPageTreeNodeQt.cpp:
12706 * platform/graphics/qt/GraphicsContextQt.cpp:
12707 * platform/graphics/qt/ImageDecoderQt.cpp:
12708 * platform/graphics/qt/ImageDecoderQt.h:
12709 * platform/graphics/qt/ImageSourceQt.cpp:
12710 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
12711 * platform/graphics/qt/MediaPlayerPrivatePhonon.h:
12712 * platform/graphics/qt/SimpleFontDataQt.cpp:
12713 * platform/gtk/MIMETypeRegistryGtk.cpp:
12714 * platform/mac/MIMETypeRegistryMac.mm:
12715 * platform/network/qt/QNetworkReplyHandler.cpp:
12716 * platform/network/qt/QNetworkReplyHandler.h:
12717 * platform/network/qt/ResourceHandleQt.cpp:
12718 * platform/network/qt/ResourceRequestQt.cpp:
12719 * platform/qt/ClipboardQt.cpp:
12720 * platform/qt/EventLoopQt.cpp:
12721 * platform/qt/KURLQt.cpp:
12722 * platform/qt/LoggingQt.cpp:
12723 * platform/qt/MIMETypeRegistryQt.cpp:
12724 * platform/qt/PasteboardQt.cpp:
12725 * platform/qt/PlatformScreenQt.cpp:
12726 * platform/qt/PopupMenuQt.cpp:
12727 * platform/qt/QWebPopup.cpp:
12728 * platform/qt/QWebPopup.h:
12729 * platform/qt/RenderThemeQt.cpp:
12730 * platform/qt/ScrollbarQt.cpp:
12731 * platform/qt/ScrollbarThemeQt.cpp:
12732 * platform/qt/WheelEventQt.cpp:
12733 * platform/qt/html4-adjustments-qt.css:
12734 * platform/wx/MimeTypeRegistryWx.cpp:
12735 * plugins/MimeType.cpp:
12736 * plugins/MimeType.h:
12737 * plugins/MimeType.idl:
12738 * plugins/MimeTypeArray.cpp:
12739 * plugins/MimeTypeArray.h:
12740 * plugins/MimeTypeArray.idl:
12741 * plugins/Plugin.cpp:
12742 * plugins/Plugin.h:
12743 * plugins/Plugin.idl:
12744 * plugins/PluginArray.cpp:
12745 * plugins/PluginArray.h:
12746 * plugins/PluginArray.idl:
12747 * plugins/PluginData.cpp:
12748 * plugins/PluginData.h:
12749 * plugins/gtk/PluginDataGtk.cpp:
12750 * plugins/mac/PluginDataMac.mm:
12751 * plugins/qt/PluginDataQt.cpp:
12752 * plugins/win/PluginDataWin.cpp:
12753 * rendering/RenderTableCol.cpp:
12754 * rendering/RenderTableCol.h:
12755
hausmann@webkit.org37374992008-09-29 09:03:09 +0000127562008-09-29 Thiago Macieira <thiago.macieira@trolltech.com>
12757
12758 Reviewed by Simon
12759
12760 Fix compilation with gcc 4.3
12761
12762 gcc 4.3 is stricter and ctype.h isn't getting included
12763 automatically here by dependencies. So do it directly.
12764
12765 * platform/qt/PlatformKeyboardEventQt.cpp:
12766
hausmann@webkit.org48d7bb52008-09-29 09:02:56 +0000127672008-09-29 Morten Sørvig <msorvig@trolltech.com>
12768
12769 Reviewed by Simon.
12770
12771 Fix compilation with Qt/Mac without plugins.
12772
12773 * platform/qt/TemporaryLinkStubs.cpp:
12774
mrowe@apple.com2c478db2008-09-29 08:20:37 +0000127752008-09-29 Mark Rowe <mrowe@apple.com>
12776
12777 Reviewed by Sam Weinig.
12778
12779 Apply the ASCII fast path optimization from StringImpl::lower to StringImpl::upper.
12780 In the few places that we call .upper() in WebCore the strings represent things like
12781 tag and attribute names, which are nearly always going to be ASCII.
12782
12783 * platform/text/StringImpl.cpp:
12784 (WebCore::StringImpl::lower): If we have to resize the buffer, be sure to pass the new length
12785 in to Unicode::toLower the second time.
12786 (WebCore::StringImpl::upper):
12787
mrowe@apple.com512eca02008-09-29 08:19:09 +0000127882008-09-28 Mark Rowe <mrowe@apple.com>
12789
mrowe@apple.com49797322008-09-29 08:19:14 +000012790 Reviewed by Sam Weinig.
12791
12792 Speed up getPropertyValue('clip') by 25% by using a Vector<UChar> for building a string,
12793 rather than String::operator+=.
12794
12795 * css/CSSPrimitiveValue.cpp:
12796 (WebCore::CSSPrimitiveValue::cssText):
12797
127982008-09-28 Mark Rowe <mrowe@apple.com>
12799
mrowe@apple.com512eca02008-09-29 08:19:09 +000012800 Reviewed by Oliver Hunt.
12801
12802 Speed up computedStyle.getPropertyValue('color') by 4.5x.
12803
12804 Using a Vector<UChar> while building up the property's cssText is substantially cheaper than using String::operator+=
12805 as it avoids many memory reallocations.
12806
12807 This also speeds up the jQuery .offset() benchmark at <http://dev.jquery.com/~john/speed/1.2.6/offset-1.2.6.html>
12808 by 20% due to jQuery's strange need to call getPropertyValue('color') when retrieving the computed styles for
12809 unrelated properties on an element.
12810
12811 * css/CSSPrimitiveValue.cpp:
12812 (WebCore::CSSPrimitiveValue::cssText): Build the result for the color types into a Vector<UChar>
12813 and use appendNumber rather than the String::number in order to cut down on memory allocations.
12814 * platform/text/PlatformString.h:
12815 (WebCore::appendNumber): A helper function for formatting an unsigned character as a number
12816 into a Vector<UChar>.
12817
weinig@apple.com4df73d92008-09-29 03:41:35 +0000128182008-09-28 Sam Weinig <sam@webkit.org>
12819
weinig@apple.com9af39ef2008-09-29 04:16:15 +000012820 Reviewed by Anders Carlsson.
12821
12822 Remove spurious call to lower().
12823
12824 * css/MediaQueryEvaluator.cpp:
12825 (WebCore::MediaQueryEvaluator):
12826
128272008-09-28 Sam Weinig <sam@webkit.org>
12828
weinig@apple.com4df73d92008-09-29 03:41:35 +000012829 Reviewed by Dan Bernstein.
12830
12831 Use a CaseFoldingHash instead of calling lower on family strings.
12832
12833 * css/CSSFontSelector.cpp:
12834 (WebCore::CSSFontSelector::addFontFaceRule):
12835 (WebCore::CSSFontSelector::getFontData):
12836 * css/CSSFontSelector.h:
12837
timothy@apple.com810c9892008-09-28 23:31:25 +0000128382008-09-28 Timothy Hatcher <timothy@apple.com>
12839
12840 Remove the scrollIntoViewIfNeeded() call when drawing the
12841 Inspector node highlight.
12842
12843 <rdar://problem/6115804> Don't scroll when highlighting (21000)
12844 https://bugs.webkit.org/show_bug.cgi?id=21000
12845
12846 Reviewed by Dan Bernstein.
12847
12848 * page/InspectorController.cpp:
12849 (WebCore::InspectorController::drawNodeHighlight):
12850
hyatt@apple.come6ebc992008-09-28 19:58:14 +0000128512008-09-28 David Hyatt <hyatt@apple.com>
12852
12853 Fix crash when WebKit has no instantiated Scrollbars and the appearance prefs for scrollbars are
12854 changed.
12855
12856 Reviewed by Dan Bernstein
12857
12858 * platform/mac/ScrollbarThemeMac.mm:
12859 (+[ScrollbarPrefsObserver appearancePrefsChanged:]):
12860
timothy@apple.com47a6d492008-09-28 19:52:30 +0000128612008-09-28 Timothy Hatcher <timothy@apple.com>
12862
12863 Clear the current search results in the Inspector when
12864 the search query is less than 3 characters long. Incremental
12865 searches only occur for 3 characters or longer, but deleting
12866 under this limit would not clear the results unless the whole
12867 query was deleted.
12868
12869 https://bugs.webkit.org/show_bug.cgi?id=21196
12870
12871 Reviewed by Dan Bernstein.
12872
12873 * page/inspector/inspector.js:
12874 (WebInspector.performSearch): Check for short queries in the
12875 if statement that triggers the clear.
12876
mitz@apple.comc7980632008-09-28 19:38:50 +0000128772008-09-28 Dan Bernstein <mitz@apple.com>
12878
12879 Reviewed by Dave Hyatt.
12880
12881 - fix <rdar://problem/6202962> "Tibetan Machine Uni" font does not work as a web font on Windows because TTLoadEmbeddedFont fails with E_NAMECHANGEFAILED
12882
12883 * platform/graphics/win/FontCustomPlatformData.cpp:
12884 (WebCore::EOTStream::EOTStream): Added overlayDst, overlaySrc and
12885 overlayLength parameters.
mitz@apple.com20ac00b2008-09-28 19:41:30 +000012886 (WebCore::EOTStream::read): Added code to overlay the
mitz@apple.comc7980632008-09-28 19:38:50 +000012887 m_overlayLength bytes starting at m_overlayDst with the same number of
12888 bytes from m_overlaySrc.
12889 (WebCore::createFontCustomPlatformData): Changed to get overlay
12890 parameters from getEOTHeader.
12891 * platform/graphics/win/GetEOTHeader.cpp:
12892 (WebCore::getEOTHeader): Added code to specify overlaying of the
12893 family name with the prefix of the full name if they differ, because
12894 that such a difference causes TTLoadEmbeddedFont to fail.
12895 * platform/graphics/win/GetEOTHeader.h:
12896
ap@webkit.orgdf67f132008-09-28 13:23:51 +0000128972008-09-28 Alexey Proskuryakov <ap@webkit.org>
12898
12899 Reviewed by Eric Seidel.
12900
12901 https://bugs.webkit.org/show_bug.cgi?id=20366
12902 Reproducible test failure for editing/undo/undo-iframe-location-change.html
12903
12904 * ChangeLog-2006-05-10: Added bug URLs for a fix that included this test.
12905
darin@apple.com80c76ce2008-09-28 09:35:06 +0000129062008-09-28 Darin Adler <darin@apple.com>
12907
12908 Reviewed by Sam Weinig (except for a few comment and header tweaks).
12909
12910 - https://bugs.webkit.org/show_bug.cgi?id=21158
12911 reduce use of virtual functions in Node for speed
12912
12913 Speeds up Dromaeo a bit less than 1%.
12914
12915 * bindings/js/JSNamedNodesCollection.cpp: Include Element.h instead of
12916 Node.h now that some inlines are in there.
12917
12918 * dom/Attr.h: Override both the virtual and non-virtual name functions.
12919
12920 * dom/ChildNodeList.cpp:
12921 (WebCore::ChildNodeList::nodeMatches): Updated to take an Element.
12922 * dom/ChildNodeList.h: Ditto.
12923 * dom/ClassNodeList.cpp:
12924 (WebCore::ClassNodeList::nodeMatches): Ditto.
12925 * dom/ClassNodeList.h: Ditto.
12926
12927 * dom/Document.h: Put the Node::isDocumentNode() function's inline
12928 definition here where it can see the Document class definition.
12929
12930 * dom/DynamicNodeList.cpp:
12931 (WebCore::DynamicNodeList::length): Changed to pass an Element.
12932 (WebCore::DynamicNodeList::itemForwardsFromCurrent): Ditto.
12933 (WebCore::DynamicNodeList::itemBackwardsFromCurrent): Ditto.
12934 (WebCore::DynamicNodeList::itemWithName): Ditto.
12935 * dom/DynamicNodeList.h: Ditto.
12936
12937 * dom/Element.cpp: Removed virtualHasTagName.
12938 * dom/Element.h: Made localName, prefix, namespaceURI, and
12939 styleForRenderer non-virtual. Added virtualPrefix, virtualLocalName,
12940 virtualNamespaceURI, and removed virtualHasTagName. Put the
12941 Node::hasTagName, Node::hasAttributes, and Node::attributes
12942 functions' inline definitions here where they can see the Element
12943 class definition.
12944
12945 * dom/NameNodeList.cpp:
12946 (WebCore::NameNodeList::nodeMatches): Updated to take an Element.
12947 * dom/NameNodeList.h: Ditto.
12948
12949 * dom/Node.cpp:
12950 (WebCore::Node::virtualPrefix): Renamed from prefix.
12951 (WebCore::Node::virtualLocalName): Renamed from localName.
12952 (WebCore::Node::virtualNamespaceURI): Renamed from namespaceURI.
12953 (WebCore::Node::styleForRenderer): Handle the Element case here.
12954
12955 * dom/Node.h: Removed definition of hasTagName that calls virtual,
12956 since we now have a non-virtual version. Made hasAttributes,
12957 attributes, remove, localName, namespaceURI, prefix, isDocumentNode,
12958 and styleForRenderer non-virtual. Added virtualPrefix,
12959 virtualLocalName, and virtualNamespaceURI. Removed isMalformed
12960 and setMalformed, which are used only on HTMLFormElement objects.
12961
12962 * dom/TagNodeList.cpp:
12963 (WebCore::TagNodeList::nodeMatches): Updated to take an Element.
12964 * dom/TagNodeList.h: Ditto.
12965
12966 * html/HTMLAnchorElement.cpp: Added a comment.
12967 * html/HTMLFormControlElement.cpp: Ditto.
12968
12969 * html/HTMLAnchorElement.h: Removed unused, unimplemented setTabIndex
12970 function. Marked tabIndex function virtual explicitly for clarity.
12971
12972 * html/HTMLAreaElement.h: Removed unused, unimplemented setTabIndex
12973 function. Marked isFocusable function virtual explicitly for clarity.
12974
12975 * html/HTMLElement.h: Marked tabIndex function virtual explicitly for
12976 clarity.
12977 * html/HTMLFormControlElement.h: Ditto.
12978
12979 * html/HTMLFormElement.h: Made isMalformed non-virtual.
12980
12981 * html/HTMLParser.cpp:
12982 (WebCore::HTMLParser::handleError): Use the already-cast-to-HTMLElement
12983 pointer to call localName since that one does not need to call a virtual
12984 function.
12985
12986 * rendering/RenderBlock.cpp:
12987 (WebCore::RenderBlock::layoutBlock): Cast to HTMLFormElement before
12988 calling isMalformed. We already did a tag name check so we know it's
12989 an HTMLFormELement.
12990
12991 * xml/XPathUtil.cpp:
12992 (WebCore::XPath::isValidContextNode): Rewrote to not make so many calls
12993 to nodeType(), since it's a virtual function.
12994
hyatt@apple.com2225aef2008-09-28 08:52:26 +0000129952008-09-28 David Hyatt <hyatt@apple.com>
12996
12997 Make frameRectsChanged() cross-platform on ScrollView.
12998
12999 Reviewed by Oliver Hunt
13000
13001 * platform/ScrollView.cpp:
13002 (WebCore::ScrollView::frameRectsChanged):
13003 * platform/ScrollView.h:
13004 * platform/gtk/ScrollViewGtk.cpp:
13005 * platform/qt/ScrollViewQt.cpp:
13006 * platform/win/ScrollViewWin.cpp:
13007 * platform/wx/ScrollViewWx.cpp:
13008
oliver@apple.combec35402008-09-28 08:36:39 +0000130092008-09-28 Oliver Hunt <oliver@apple.com>
13010
13011 Reviewed by Maciej Stachowiak.
13012
13013 Bug 21141: REGRESSION: Exception messages for user entered commands are poor
13014 <https://bugs.webkit.org/show_bug.cgi?id=21141>
13015
13016 The bug repsonsible for this was the the JSInspectedObjectWrapper instances
13017 were not initialising their StructureID's to indicate that the wrapper
13018 overrides hasInstance, etc. The solution is simply to use the createStructureID
13019 helper on JSQuarantinedObjectWrapper to create a correct StructureID.
13020
13021 * bindings/js/JSInspectedObjectWrapper.cpp:
13022 (WebCore::JSInspectedObjectWrapper::wrap):
13023
hyatt@apple.comaede3de2008-09-28 08:21:09 +0000130242008-09-28 David Hyatt <hyatt@apple.com>
13025
hyatt@apple.com8fdb58c2008-09-28 08:29:47 +000013026 Make sure pixel wheel scrolls (formerly "continuous" wheel events) send deltas to DOM wheel events in
13027 terms of lines.
13028
13029 Reviewed by Oliver Hunt
13030
13031 * dom/EventTargetNode.cpp:
13032 (WebCore::EventTargetNode::dispatchWheelEvent):
13033
130342008-09-28 David Hyatt <hyatt@apple.com>
13035
hyatt@apple.comaede3de2008-09-28 08:21:09 +000013036 https://bugs.webkit.org/show_bug.cgi?id=21191
13037
13038 Rework mouse wheeling significantly to make the platform event less messy and to enable wheelEvent
13039 on ScrollView to be cross-platform.
13040
13041 Give the wheel event a concept of granularity (pixel, line or page). What used to be called continuous
13042 events are now pixel wheel events.
13043
13044 Page scrolling as implemented in bug 17589 was completely broken. It had the following problems:
13045 (1) Page scrolling has been corrected to be properly detected (on Windows
13046 page wheeling is only done in the vertical direction and it is keyed off a special return value of -1). The
13047 old code had some bizarre incorrect heuristic for "guessing" that you should page scroll and also thought
13048 you could page scroll horizontally.
13049 (2) Page scrolling a layer used the enclosing ScrollView's width/height instead of the layer's width/height.
13050 This caused the scroll amount for page scrolling to be way too large on layers.
13051
13052 Bug 17589 got the default horizontal scrolling value wrong. It assumed 1, when the Vista default is 3.
13053
13054 Incorporate WebCore's line multiplier right into the deltas of the event. This eliminates the need
13055 for separate multiplier fields (or for the need to ask if you're looking for line sensitivity).
13056
13057 Reviewed by Oliver Hunt
13058
13059 * editing/EditorCommand.cpp:
13060 (WebCore::verticalScrollDistance):
13061 * page/EventHandler.cpp:
13062 (WebCore::scrollAndAcceptEvent):
13063 (WebCore::EventHandler::handleWheelEvent):
13064 * platform/PlatformWheelEvent.h:
13065 (WebCore::):
13066 (WebCore::PlatformWheelEvent::pos):
13067 (WebCore::PlatformWheelEvent::globalPos):
13068 (WebCore::PlatformWheelEvent::deltaX):
13069 (WebCore::PlatformWheelEvent::deltaY):
13070 (WebCore::PlatformWheelEvent::granularity):
13071 (WebCore::PlatformWheelEvent::x):
13072 (WebCore::PlatformWheelEvent::globalX):
13073 (WebCore::PlatformWheelEvent::ignore):
13074 (WebCore::PlatformWheelEvent::horizontalLineMultiplier):
13075 (WebCore::PlatformWheelEvent::verticalLineMultiplier):
13076 * platform/ScrollView.cpp:
13077 (WebCore::ScrollView::wheelEvent):
13078 * platform/Scrollbar.h:
13079 * platform/gtk/ScrollViewGtk.cpp:
13080 (WebCore::ScrollView::updateScrollbars):
13081 * platform/gtk/WheelEventGtk.cpp:
13082 (WebCore::PlatformWheelEvent::PlatformWheelEvent):
13083 * platform/mac/ScrollViewMac.mm:
13084 * platform/mac/WheelEventMac.mm:
13085 (WebCore::PlatformWheelEvent::PlatformWheelEvent):
13086 * platform/qt/ScrollViewQt.cpp:
13087 (WebCore::ScrollView::updateScrollbars):
13088 * platform/qt/WheelEventQt.cpp:
13089 * platform/win/ScrollViewWin.cpp:
13090 (WebCore::ScrollView::updateScrollbars):
13091 * platform/win/WheelEventWin.cpp:
13092 (WebCore::PlatformWheelEvent::horizontalLineMultiplier):
13093 (WebCore::PlatformWheelEvent::verticalLineMultiplier):
13094 (WebCore::PlatformWheelEvent::PlatformWheelEvent):
13095 * platform/wx/ScrollViewWx.cpp:
13096 (WebCore::ScrollView::ScrollViewPrivate::OnScrollWinEvents):
13097 (WebCore::ScrollView::wheelEvent):
13098 * rendering/RenderLayer.cpp:
13099 (WebCore::RenderLayer::updateScrollInfoAfterLayout):
13100
eric.carlson@apple.comebb3e442008-09-28 05:38:57 +0000131012008-09-27 Eric Carlson <eric.carlson@apple.com>
13102
13103 Reviewed by Sam Weinig.
13104
13105 fix https://bugs.webkit.org/show_bug.cgi?id=20994
13106 <rdar://problem/6171023> HTMLVideoElement width and height attributes are now unsigned
13107
13108 HTML5 spec says HTMLVideoElement width and height attributes should be unsigned. Convert
13109 all unsigned media attributes from string with toUInt() instead of toInt().
13110
13111 * html/HTMLMediaElement.cpp:
13112 (WebCore::HTMLMediaElement::playCount): convert from attribute with toUInt().
13113
13114 * html/HTMLVideoElement.cpp:
13115 (WebCore::HTMLVideoElement::videoWidth):
13116 (WebCore::HTMLVideoElement::videoHeight): return unsigned to match idl.
13117 (WebCore::HTMLVideoElement::width): convert from attribute with toUInt() and return
13118 unsigned value.
13119 (WebCore::HTMLVideoElement::height): Ditto.
13120 (WebCore::HTMLVideoElement::setWidth): take unsigned value.
13121 (WebCore::HTMLVideoElement::setHeight): Ditto.
13122
13123 * html/HTMLVideoElement.h: width, height, videoWidth, and videoHeight are unsigned.
13124
13125 * html/HTMLVideoElement.idl: make width and height unsigned to match HTML5 spec.
13126
timothy@apple.coma8215632008-09-28 04:40:53 +0000131272008-09-27 Timothy Hatcher <timothy@apple.com>
13128
timothy@apple.combe91da22008-09-28 04:40:58 +000013129 Fixes an exception when typing a command in the Console.
13130
13131 Reviewed by Oliver Hunt.
13132
13133 * page/inspector/Console.js:
13134 (WebInspector.Console.prototype.addMessage): Null check
13135 this.previosMessage.
13136
131372008-09-27 Timothy Hatcher <timothy@apple.com>
13138
timothy@apple.coma8215632008-09-28 04:40:53 +000013139 Fixes a bug where the Profiles panel sidebar would be empty
13140 after closing and reopening the Web Inspector.
13141
13142 https://bugs.webkit.org/show_bug.cgi?id=21179
13143
13144 Reviewed by Sam Weinig.
13145
13146 * page/inspector/ProfilesPanel.js:
13147 (WebInspector.ProfilesPanel.prototype.reset): Don't call
13148 populateInterface, it is called automatically.
13149 (WebInspector.ProfilesPanel.prototype._populateProfiles):
13150 Return early if the sidebar is already populated.
13151
hyatt@apple.com81664322008-09-28 04:38:21 +0000131522008-09-27 Dave Hyatt <hyatt@apple.com>
13153
13154 Bug 21190. The line scroll amount on Windows is way too small. A patch for bug 17589 for wheel sensitivity
13155 incorrectly applied the tinier wheel step delta (unmultiplied) to line scrolling. Line scrolling with the
13156 scrollbar has nothing to do with mouse wheeling. This patch reverts the scrollbars to use the same line
13157 step as other platforms while leaving the wheel delta alone for use with wheel scrolling.
13158
13159 There was a lot wrong with 17589, so more patches will be coming to deal with the fallout of this patch
13160 (which should never have landed in the first place).
13161
13162 Reviewed by Tim Hatcher, Sam Weinig
13163
13164 * platform/win/ScrollViewWin.cpp:
13165 (WebCore::adjustDeltaForPageScrollMode):
13166 (WebCore::ScrollView::updateScrollbars):
13167 (WebCore::ScrollView::wheelEvent):
13168
hyatt@apple.com880cbb12008-09-28 03:51:41 +0000131692008-09-27 David Hyatt <hyatt@apple.com>
13170
13171 Make the scrollbarUnderMouse method cross-platform.
13172
13173 Reviewed by Sam Weinig
13174
13175 * platform/ScrollView.cpp:
13176 (WebCore::ScrollView::scrollbarUnderMouse):
13177 * platform/gtk/ScrollViewGtk.cpp:
13178 * platform/mac/ScrollViewMac.mm:
13179 * platform/qt/ScrollViewQt.cpp:
13180 * platform/win/ScrollViewWin.cpp:
13181 * platform/wx/ScrollViewWx.cpp:
13182
zecke@webkit.org7bf12c62008-09-28 01:50:42 +0000131832008-09-27 Holger Hans Peter Freyther <zecke@selfish.org>
13184
13185 Gtk+ build fix.
13186
13187 * platform/gtk/ScrollViewGtk.cpp:
13188 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
13189
zecke@webkit.org202af282008-09-28 01:49:45 +0000131902008-09-27 Jan Michael Alonzo <jmalonzo@webkit.org>
13191
13192 Reviewed by Holger Freyther.
13193
13194 https://bugs.webkit.org/show_bug.cgi?id=20287
13195 [Gtk] disable plugins for gtk/directfb target
13196
13197 Introduce WTF_PLATFORM_X11 for X11 builds.
13198 Also use target-specific packages when building the port
13199
13200 * platform/gtk/PlatformScreenGtk.cpp:
13201 * plugins/gtk/PluginViewGtk.cpp:
13202 (WebCore::PluginView::updatePluginWidget):
13203 (WebCore::PluginView::getValueStatic):
13204 (WebCore::PluginView::getValue):
13205 (WebCore::PluginView::init):
13206
hyatt@apple.come6f04e52008-09-28 01:07:05 +0000132072008-09-27 David Hyatt <hyatt@apple.com>
13208
13209 https://bugs.webkit.org/show_bug.cgi?id=21188
13210
13211 Make scrollbar suppression and resizer avoidance cross-platform.
13212
13213 Reviewed by Anders
13214
13215 * loader/FrameLoader.cpp:
13216 (WebCore::FrameLoader::transitionToCommitted):
13217 * page/FrameView.cpp:
13218 (WebCore::FrameView::resetScrollbars):
13219 (WebCore::FrameView::clear):
13220 (WebCore::FrameView::layout):
13221 (WebCore::FrameView::restoreScrollbar):
13222 (WebCore::FrameView::windowResizerRect):
13223 * page/FrameView.h:
13224 * platform/ScrollView.cpp:
13225 (WebCore::ScrollView::init):
13226 (WebCore::ScrollView::resizerOverlapsContent):
13227 (WebCore::ScrollView::adjustScrollbarsAvoidingResizerCount):
13228 (WebCore::ScrollView::setParent):
13229 (WebCore::ScrollView::setScrollbarsSuppressed):
13230 (WebCore::ScrollView::platformSetScrollbarsSuppressed):
13231 * platform/ScrollView.h:
13232 (WebCore::ScrollView::scrollbarsSuppressed):
13233 (WebCore::ScrollView::windowResizerRect):
13234 * platform/Scrollbar.cpp:
13235 (WebCore::Scrollbar::setFrameRect):
13236 (WebCore::Scrollbar::setParent):
13237 * platform/gtk/ScrollViewGtk.cpp:
13238 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
13239 (WebCore::ScrollView::ScrollViewPrivate::adjustmentChanged):
13240 (WebCore::ScrollView::updateScrollbars):
13241 (WebCore::ScrollView::paint):
13242 * platform/mac/ScrollViewMac.mm:
13243 (WebCore::ScrollView::ScrollView):
13244 (WebCore::ScrollView::~ScrollView):
13245 (WebCore::ScrollView::platformSetScrollbarsSuppressed):
13246 (WebCore::ScrollView::setScrollPosition):
13247 * platform/qt/ScrollViewQt.cpp:
13248 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
13249 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
13250 (WebCore::ScrollView::frameRectsChanged):
13251 (WebCore::ScrollView::updateScrollbars):
13252 (WebCore::ScrollView::paint):
13253 * platform/win/ScrollViewWin.cpp:
13254 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
13255 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
13256 (WebCore::ScrollView::updateScrollbars):
13257 (WebCore::ScrollView::paint):
13258 * platform/wx/ScrollViewWx.cpp:
13259 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
13260
zecke@webkit.org0034c712008-09-27 23:46:50 +0000132612008-09-27 Holger Hans Peter Freyther <zecke@selfish.org>
13262
13263 Rubber-stamped by Anders Carlsson.
13264
13265 Compile fix.
13266
13267 * plugins/PluginView.cpp:
13268 (WebCore::PluginView::load):
13269
mrowe@apple.com0f9c3da9d2008-09-27 23:23:24 +0000132702008-09-27 Mark Rowe <mrowe@apple.com>
13271
13272 Rubber-stamped by Sam Weinig.
13273
13274 Fix <https://bugs.webkit.org/show_bug.cgi?id=21184>.
13275 Bug 21184: REGRESSION: Reproducible crash below StringImpl::hash while running editing/deleting/5408255.html
13276
13277 Remove an assertion that was incorrect and that if made correct would have duplicated a check that occurred earlier in the function.
13278
13279 * loader/CachedResource.cpp:
13280 (WebCore::CachedResource::~CachedResource):
13281
zecke@webkit.org47132852008-09-27 22:45:21 +0000132822008-09-27 Holger Hans Peter Freyther <zecke@selfish.org>
13283
13284 Reviewed by Simon Hausmann.
13285
zecke@webkit.orgfe2082a2008-09-27 22:46:55 +000013286 [qt] Use QImageReader to figure out which image formats are supported
13287 - Qt can have many different plugins for different image formats. Instead
13288 of checking only for a few in WebCore use Qt to determine if this data
13289 can be treated as an image.
13290
13291 * platform/graphics/qt/ImageSourceQt.cpp:
13292 (WebCore::canHandleImage):
13293 (WebCore::createDecoder):
13294
132952008-09-27 Holger Hans Peter Freyther <zecke@selfish.org>
13296
13297
zecke@webkit.org47132852008-09-27 22:45:21 +000013298 [qt] Clean the pattern code
13299 - Use save/restore on the painter after manipulating the
13300 pen/brush
13301 - Make the context and object null checking consistent. CG is using
13302 the object unconditionally so the Qt webkit platform can do the
13303 same.
13304 - Move code below the early exit. Only use the m_ownerElement before
13305 the early exit as the CG code is doing it.
13306
13307 * svg/graphics/SVGPaintServerPattern.h:
13308 * svg/graphics/qt/SVGPaintServerPatternQt.cpp:
13309 (WebCore::SVGPaintServerPattern::setup):
13310 (WebCore::SVGPaintServerPattern::teardown):
13311
timothy@apple.com345f1af2008-09-27 22:18:35 +0000133122008-09-27 Keishi Hattori <casey.hattori@gmail.com>
13313
13314 Added support for console.trace.
13315
13316 https://bugs.webkit.org/show_bug.cgi?id=19157
13317
13318 Reviewed by Kevin McCullough and Tim Hatcher.
13319
13320 * bindings/js/JSConsoleCustom.cpp:
13321 (WebCore::JSConsole::trace):
13322 * page/Console.cpp:
13323 (WebCore::Console::trace): Calls Machine::retrieveCaller to
13324 get a stack trace.
13325 * page/Console.h:
13326 (WebCore::): Added TraceMessageLevel.
13327 * page/Console.idl: Added console.trace.
13328 * page/inspector/Console.js:
13329 (ConsoleMessage): Added case for TraceMessageLevel.
13330
andersca@apple.com6b8e0a22008-09-27 21:28:40 +0000133312008-09-27 Anders Carlsson <andersca@apple.com>
13332
13333 Reviewed by Sam Weinig.
13334
13335 https://bugs.webkit.org/show_bug.cgi?id=21178
13336 <rdar://problem/6248651>
13337
13338 Check if the plug-in is allowed to load the resource. This matches Firefox.
13339
13340 Test: http/tests/plugins/local-geturl-from-remote.html
13341
13342 * plugins/PluginView.cpp:
13343 (WebCore::PluginView::load):
13344
zecke@webkit.org91ee65a2008-09-27 21:06:35 +0000133452008-09-22 Dirk Schulze <vbs85@gmx.de>
13346
13347 Reviewed by Eric Seidel.
13348
13349 Added SVG pattern support to Qt.
13350
13351 [Qt] SVG patterns are missing
13352 https://bugs.webkit.org/show_bug.cgi?id=20973
13353
13354 * svg/graphics/qt/SVGPaintServerPatternQt.cpp:
13355 (WebCore::SVGPaintServerPattern::setup):
13356
timothy@apple.com5fb1f7e2008-09-27 20:18:08 +0000133572008-09-27 Keishi Hattori <casey.hattori@gmail.com>
13358
13359 Fixed a bug in the JS syntax highlighter with multiple line tokens.
13360
13361 https://bugs.webkit.org/show_bug.cgi?id=21171
13362
13363 Reviewed by Tim Hatcher.
13364
13365 * page/inspector/SourceFrame.js:
13366 (syntaxHighlightJavascriptLine): Initialize previousMatchLength.
13367
timothy@apple.com5b4b3d02008-09-27 20:18:03 +0000133682008-09-27 Timothy Hatcher <timothy@apple.com>
13369
13370 Change searching in the Profiles panel to not match the
13371 Self and Total columns when there are no units. The only
13372 column that is matched for unitless number searches is
13373 now the Calls column.
13374
13375 https://bugs.webkit.org/show_bug.cgi?id=21169
13376
13377 Reviewed by Sam Weinig.
13378
13379 * page/inspector/ProfileView.js:
13380 (WebInspector.ProfileView.prototype.performSearch):
13381
hyatt@apple.com0fd13952008-09-27 19:56:56 +0000133822008-09-27 David Hyatt <hyatt@apple.com>
13383
13384 Rename boundsGeometry -> boundsRect. Rename geometryChanged -> frameRectsChanged.
13385
13386 Reviewed by Sam Weinig
13387
13388 * platform/ScrollView.h:
13389 * platform/Widget.h:
13390 (WebCore::Widget::boundsRect):
13391 (WebCore::Widget::invalidate):
13392 (WebCore::Widget::frameRectsChanged):
13393 * platform/gtk/ScrollViewGtk.cpp:
13394 (WebCore::ScrollViewScrollbar::frameRectsChanged):
13395 (WebCore::ScrollView::ScrollViewPrivate::scrollBackingStore):
13396 (WebCore::ScrollView::setFrameRect):
13397 (WebCore::ScrollView::updateScrollbars):
13398 (WebCore::ScrollView::frameRectsChanged):
13399 * platform/gtk/ScrollbarGtk.cpp:
13400 (ScrollbarGtk::setFrameRect):
13401 (ScrollbarGtk::frameRectsChanged):
13402 * platform/gtk/ScrollbarGtk.h:
13403 * platform/gtk/WidgetGtk.cpp:
13404 * platform/qt/ScrollViewQt.cpp:
13405 (WebCore::ScrollView::ScrollViewPrivate::scrollBackingStore):
13406 (WebCore::ScrollView::setFrameRect):
13407 (WebCore::ScrollView::frameRectsChanged):
13408 (WebCore::ScrollView::updateScrollbars):
13409 * platform/win/ScrollViewWin.cpp:
13410 (WebCore::ScrollView::ScrollViewPrivate::scrollBackingStore):
13411 (WebCore::ScrollView::setFrameRect):
13412 (WebCore::ScrollView::updateScrollbars):
13413 (WebCore::ScrollView::frameRectsChanged):
13414 * plugins/PluginView.cpp:
13415 (WebCore::PluginView::frameRectsChanged):
13416 * plugins/PluginView.h:
13417
hausmann@webkit.orgc4fb5d92008-09-27 19:15:15 +0000134182008-09-27 Simon Hausmann <hausmann@webkit.org>
13419
hausmann@webkit.orge49722f2008-09-27 19:49:01 +000013420 Refix the previous build fix to compile on non-Qt platforms, too.
13421
13422 * WebCore.pro: Don't pass -i to create_hashtable, added missing -n
13423 WebCore to generate the PrototypeTable in the WebCore namespace
13424 * bindings/js/JSEventTargetBase.h: Revert previous fix, the Prototype
13425 table remains in the Webcore namespace
13426 (WebCore::JSEventTargetBasePrototype::getOwnPropertySlot):
13427
134282008-09-27 Simon Hausmann <hausmann@webkit.org>
13429
hausmann@webkit.orgc4fb5d92008-09-27 19:15:15 +000013430 Fix compilation with gcc 4.3 (probably > 4.0)
13431
13432 * bindings/js/JSDOMWindowBase.cpp: Don't define static property
13433 get/put functions inside the WebCore namespace.
13434 * bindings/js/JSEventTargetBase.cpp: Ditto.
13435 * bindings/js/JSEventTargetNode.cpp: Ditto.
13436 * bindings/js/JSEventTargetSVGElementInstance.cpp: Ditto.
13437 * bindings/js/JSEventTargetBase.h: Forward declare
13438 JSEventTargetPrototypeTable in the JSC namespace as the lut.h file
13439 defines it in the JSC namespace.
13440 (WebCore::JSEventTargetBasePrototype::getOwnPropertySlot): Add JSC::
13441 prefix for PrototypeTable symbol.
13442
hyatt@apple.come7c12342008-09-27 07:43:38 +0000134432008-09-27 David Hyatt <hyatt@apple.com>
13444
hyatt@apple.com53634ac2008-09-27 08:01:26 +000013445 Rename frameGeometry to frameRect. Rename setFrameGeometry to setFrameRect.
13446
13447 Reviewed by Dan Bernstein
13448
13449 * WebCore.base.exp:
13450 * page/FrameView.cpp:
13451 (WebCore::FrameView::FrameView):
13452 (WebCore::FrameView::updateControlTints):
13453 * platform/ScrollView.h:
13454 * platform/Scrollbar.cpp:
13455 (WebCore::Scrollbar::Scrollbar):
13456 (WebCore::Scrollbar::paint):
13457 (WebCore::Scrollbar::setFrameRect):
13458 * platform/Scrollbar.h:
13459 * platform/ScrollbarThemeComposite.cpp:
13460 (WebCore::ScrollbarThemeComposite::paint):
13461 * platform/Widget.h:
13462 (WebCore::Widget::x):
13463 (WebCore::Widget::y):
13464 (WebCore::Widget::width):
13465 (WebCore::Widget::height):
13466 (WebCore::Widget::size):
13467 (WebCore::Widget::pos):
13468 (WebCore::Widget::resize):
13469 (WebCore::Widget::move):
13470 * platform/gtk/ScrollViewGtk.cpp:
13471 (WebCore::ScrollViewScrollbar::geometryChanged):
13472 (WebCore::ScrollView::update):
13473 (WebCore::ScrollView::setFrameRect):
13474 (WebCore::ScrollView::updateScrollbars):
13475 (WebCore::ScrollView::scrollbarUnderMouse):
13476 (WebCore::ScrollView::paint):
13477 * platform/gtk/ScrollbarGtk.cpp:
13478 (ScrollbarGtk::setFrameRect):
13479 (ScrollbarGtk::geometryChanged):
13480 * platform/gtk/ScrollbarGtk.h:
13481 * platform/gtk/WidgetGtk.cpp:
13482 (WebCore::Widget::frameRect):
13483 (WebCore::Widget::setFrameRect):
13484 * platform/mac/ScrollbarThemeMac.mm:
13485 (WebCore::ScrollbarThemeMac::trackRect):
13486 (WebCore::ScrollbarThemeMac::paint):
13487 * platform/mac/WidgetMac.mm:
13488 (WebCore::Widget::frameRect):
13489 (WebCore::Widget::setFrameRect):
13490 * platform/qt/ScrollViewQt.cpp:
13491 (WebCore::ScrollView::setFrameRect):
13492 (WebCore::ScrollView::updateScrollbars):
13493 (WebCore::ScrollView::scrollbarUnderMouse):
13494 (WebCore::ScrollView::paint):
13495 * platform/qt/ScrollbarThemeQt.cpp:
13496 (WebCore::styleOptionSlider):
13497 * platform/qt/WidgetQt.cpp:
13498 (WebCore::Widget::frameRect):
13499 (WebCore::Widget::setFrameRect):
13500 * platform/win/PopupMenuWin.cpp:
13501 (WebCore::PopupMenu::invalidateItem):
13502 (WebCore::PopupMenu::valueChanged):
13503 (WebCore::PopupWndProc):
13504 * platform/win/ScrollViewWin.cpp:
13505 (WebCore::ScrollView::setFrameRect):
13506 (WebCore::ScrollView::updateScrollbars):
13507 (WebCore::ScrollView::scrollbarUnderMouse):
13508 (WebCore::ScrollView::paint):
13509 * platform/win/ScrollbarThemeSafari.cpp:
13510 (WebCore::ScrollbarThemeSafari::trackRect):
13511 * platform/win/WidgetWin.cpp:
13512 (WebCore::Widget::frameRect):
13513 (WebCore::Widget::setFrameRect):
13514 * platform/wx/WidgetWx.cpp:
13515 (WebCore::Widget::frameRect):
13516 (WebCore::Widget::setFrameRect):
13517 * plugins/PluginView.cpp:
13518 (WebCore::PluginView::setFrameRect):
13519 * plugins/PluginView.h:
13520 * plugins/gtk/PluginViewGtk.cpp:
13521 (WebCore::PluginView::updatePluginWidget):
13522 (WebCore::PluginView::paint):
13523 (WebCore::PluginView::init):
13524 * plugins/qt/PluginViewQt.cpp:
13525 (WebCore::PluginView::updatePluginWidget):
13526 (WebCore::PluginView::init):
13527 * plugins/win/PluginViewWin.cpp:
13528 (WebCore::PluginView::updatePluginWidget):
13529 (WebCore::PluginView::paintMissingPluginIcon):
13530 (WebCore::PluginView::paint):
13531 (WebCore::PluginView::init):
13532 * rendering/RenderLayer.cpp:
13533 (WebCore::RenderLayer::positionOverflowControls):
13534 * rendering/RenderListBox.cpp:
13535 (WebCore::RenderListBox::paintScrollbar):
13536 * rendering/RenderPart.cpp:
13537 (WebCore::RenderPart::updateWidgetPosition):
13538 * rendering/RenderWidget.cpp:
13539 (WebCore::RenderWidget::setWidgetGeometry):
13540 (WebCore::RenderWidget::updateWidgetPosition):
13541
135422008-09-27 David Hyatt <hyatt@apple.com>
13543
hyatt@apple.come7c12342008-09-27 07:43:38 +000013544 <rdar://problem/6252041> REGRESSION (4dp-TOT): Crash in Widget::platformWidget() when closing a PDF
13545
13546 This crash was lurking for a while and basically got exposed by my changes to visibleContentRect() to
13547 access an actual member variable.
13548
13549 Reviewed by Dan Bernstein
13550
13551 * page/FocusController.cpp:
13552 (WebCore::FocusController::setFocusedFrame):
13553
jmalonzo@webkit.orge927a612008-09-27 07:38:30 +0000135542008-09-27 Jan Michael Alonzo <jmalonzo@webkit.org>
13555
13556 Attempt to fix QT Build. Not reviewed.
13557
13558 * WebCore.pro: add -n WebCore parameter to create_hash_table
13559
jmalonzo@webkit.org134654a2008-09-27 06:48:23 +0000135602008-09-26 Gwenole Beauchesne <gbeauchesne@splitted-desktop.org>
13561
13562 Reviewed by Eric Seidel.
13563
13564 http://bugs.webkit.org/show_bug.cgi?id=18905
13565 [GTK] Fix build with older pango (1.14.8)
13566
13567 * platform/graphics/gtk/FontGtk.cpp:
13568 * platform/gtk/Language.cpp:
13569 (_pango_get_lc_ctype):
13570 (pango_language_get_default):
13571
hyatt@apple.com0315e532008-09-27 06:23:58 +0000135722008-09-26 David Hyatt <hyatt@apple.com>
13573
13574 https://bugs.webkit.org/show_bug.cgi?id=21168
13575
13576 Make contentsToWindow/windowToContents cross-platform.
13577
13578 Reviewed by Oliver Hunt
13579
13580 * platform/ScrollView.cpp:
13581 (WebCore::ScrollView::windowToContents):
13582 (WebCore::ScrollView::contentsToWindow):
13583 * platform/ScrollView.h:
13584 * platform/gtk/ScrollViewGtk.cpp:
13585 * platform/mac/ScrollViewMac.mm:
13586 * platform/qt/ScrollViewQt.cpp:
13587 * platform/win/ScrollViewWin.cpp:
13588 * platform/wx/ScrollViewWx.cpp:
13589
weinig@apple.com0e6acf62008-09-27 06:15:45 +0000135902008-09-26 Sam Weinig <sam@webkit.org>
13591
13592 GTK build fix.
13593
13594 * GNUmakefile.am:
13595
hyatt@apple.comb37db692008-09-27 04:43:00 +0000135962008-09-26 David Hyatt <hyatt@apple.com>
13597
hyatt@apple.com8d329412008-09-27 05:26:38 +000013598 Eliminate shouldUpdateWhileOffscreen from ScrollView. Make the concept of not invalidating while
13599 offscreen cross-platform. Rename the inWindow method to isOffscreen (which flips the boolean), since that
13600 more clearly conveys the intent of the method. Make isOffscreen also check NSWindow visibility on Mac.
13601
13602 Reviewed by Oliver Hunt
13603
13604 * page/FrameView.cpp:
13605 (WebCore::FrameView::repaintContentRectangle):
13606 * page/FrameView.h:
13607 * platform/ScrollView.h:
13608 * platform/gtk/ScrollViewGtk.cpp:
13609 (WebCore::ScrollView::isOffscreen):
13610 * platform/mac/ScrollViewMac.mm:
13611 (WebCore::ScrollView::updateContents):
13612 (WebCore::ScrollView::isOffscreen):
13613 * platform/qt/ScrollViewQt.cpp:
13614 (WebCore::ScrollView::isOffscreen):
13615 * platform/win/ScrollViewWin.cpp:
13616 (WebCore::ScrollView::isOffscreen):
13617 * platform/wx/ScrollViewWx.cpp:
13618 (WebCore::ScrollView::isOffscreen):
13619 * rendering/RenderObject.cpp:
13620 (WebCore::RenderObject::willRenderImage):
13621
136222008-09-26 David Hyatt <hyatt@apple.com>
13623
hyatt@apple.comb37db692008-09-27 04:43:00 +000013624 https://bugs.webkit.org/show_bug.cgi?id=21164
13625
13626 Rework concept of allowsScrolling/setAllowsScrolling to be cross-platform.
13627
13628 Reviewed by Sam Weinig
13629
13630 * WebCore.base.exp:
13631 * page/FrameView.cpp:
13632 (WebCore::FrameView::setAllowsScrolling):
13633 * page/FrameView.h:
13634 * platform/ScrollView.cpp:
13635 (WebCore::ScrollView::setAllowsScrolling):
13636 * platform/ScrollView.h:
13637 (WebCore::ScrollView::allowsScrolling):
13638 * platform/win/ScrollViewWin.cpp:
13639 (WebCore::ScrollView::wheelEvent):
13640
kevino@webkit.orgb6e7c7b2008-09-27 03:22:11 +0000136412008-09-26 Kevin Ollivier <kevino@theolliviers.com>
13642
13643 wx build fixes after Widget/ScrollView changes.
13644
13645 * platform/wx/PopupMenuWx.cpp:
13646 (WebCore::PopupMenu::show):
13647 * platform/wx/ScrollViewWx.cpp:
13648 (WebCore::ScrollView::platformSetContentsSize):
13649 (WebCore::ScrollView::platformSetScrollbarModes):
13650 (WebCore::ScrollView::wheelEvent):
13651 * platform/wx/TemporaryLinkStubs.cpp:
13652 * platform/wx/WidgetWx.cpp:
13653 (WebCore::Widget::containingWindow):
13654
timothy@apple.com9b486082008-09-27 02:44:05 +0000136552008-09-26 Timothy Hatcher <timothy@apple.com>
13656
13657 Allow searching for paths by always performing the
13658 three search methods in the Elements panel and not
13659 assume a search with a "/" is a XPath query.
13660
13661 https://bugs.webkit.org/show_bug.cgi?id=21159
13662
13663 Reviewed by Geoff Garen.
13664
13665 * page/inspector/ElementsPanel.js:
13666 (WebInspector.ElementsPanel.prototype.performSearch):
13667
weinig@apple.comcaf5e3b2008-09-27 02:36:15 +0000136682008-09-26 Sam Weinig <sam@webkit.org>
13669
13670 Reviewed by Darin Adler.
13671
13672 Patch for https://bugs.webkit.org/show_bug.cgi?id=21152
13673 Speedup static property get/put
13674
13675 * DerivedSources.make:
13676 * GNUmakefile.am:
13677 * WebCore.pro:
13678 * WebCore.vcproj/WebCore.vcproj:
13679 * WebCore.xcodeproj/project.pbxproj:
13680 * bindings/js/JSDOMBinding.cpp:
13681 * bindings/js/JSDOMBinding.h:
13682 * bindings/js/JSDOMWindowBase.cpp:
13683 (WebCore::getDOMConstructor):
13684 (WebCore::jsDOMWindowBaseCrypto):
13685 (WebCore::jsDOMWindowBaseEvent):
13686 (WebCore::jsDOMWindowBaseImage):
13687 (WebCore::jsDOMWindowBaseMessageChannel):
13688 (WebCore::jsDOMWindowBaseOption):
13689 (WebCore::jsDOMWindowBaseXMLHttpRequest):
13690 (WebCore::jsDOMWindowBaseAudio):
13691 (WebCore::jsDOMWindowBaseXSLTProcessor):
13692 (WebCore::jsDOMWindowBaseOnabort):
13693 (WebCore::jsDOMWindowBaseOnblur):
13694 (WebCore::jsDOMWindowBaseOnchange):
13695 (WebCore::jsDOMWindowBaseOnclick):
13696 (WebCore::jsDOMWindowBaseOndblclick):
13697 (WebCore::jsDOMWindowBaseOnerror):
13698 (WebCore::jsDOMWindowBaseOnfocus):
13699 (WebCore::jsDOMWindowBaseOnkeydown):
13700 (WebCore::jsDOMWindowBaseOnkeypress):
13701 (WebCore::jsDOMWindowBaseOnkeyup):
13702 (WebCore::jsDOMWindowBaseOnload):
13703 (WebCore::jsDOMWindowBaseOnmousedown):
13704 (WebCore::jsDOMWindowBaseOnmousemove):
13705 (WebCore::jsDOMWindowBaseOnmouseout):
13706 (WebCore::jsDOMWindowBaseOnmouseover):
13707 (WebCore::jsDOMWindowBaseOnmouseup):
13708 (WebCore::jsDOMWindowBaseOnMouseWheel):
13709 (WebCore::jsDOMWindowBaseOnreset):
13710 (WebCore::jsDOMWindowBaseOnresize):
13711 (WebCore::jsDOMWindowBaseOnscroll):
13712 (WebCore::jsDOMWindowBaseOnsearch):
13713 (WebCore::jsDOMWindowBaseOnselect):
13714 (WebCore::jsDOMWindowBaseOnsubmit):
13715 (WebCore::jsDOMWindowBaseOnbeforeunload):
13716 (WebCore::jsDOMWindowBaseOnunload):
13717 (WebCore::jsDOMWindowBaseOnWebKitAnimationStart):
13718 (WebCore::jsDOMWindowBaseOnWebKitAnimationIteration):
13719 (WebCore::jsDOMWindowBaseOnWebKitAnimationEnd):
13720 (WebCore::jsDOMWindowBaseOnWebKitTransitionEnd):
13721 (WebCore::JSDOMWindowBase::getOwnPropertySlot):
13722 (WebCore::JSDOMWindowBase::put):
13723 (WebCore::setJSDOMWindowBaseOnabort):
13724 (WebCore::setJSDOMWindowBaseOnblur):
13725 (WebCore::setJSDOMWindowBaseOnchange):
13726 (WebCore::setJSDOMWindowBaseOnclick):
13727 (WebCore::setJSDOMWindowBaseOndblclick):
13728 (WebCore::setJSDOMWindowBaseOnerror):
13729 (WebCore::setJSDOMWindowBaseOnfocus):
13730 (WebCore::setJSDOMWindowBaseOnkeydown):
13731 (WebCore::setJSDOMWindowBaseOnkeypress):
13732 (WebCore::setJSDOMWindowBaseOnkeyup):
13733 (WebCore::setJSDOMWindowBaseOnload):
13734 (WebCore::setJSDOMWindowBaseOnmousedown):
13735 (WebCore::setJSDOMWindowBaseOnmousemove):
13736 (WebCore::setJSDOMWindowBaseOnmouseout):
13737 (WebCore::setJSDOMWindowBaseOnmouseover):
13738 (WebCore::setJSDOMWindowBaseOnmouseup):
13739 (WebCore::setJSDOMWindowBaseOnMouseWheel):
13740 (WebCore::setJSDOMWindowBaseOnreset):
13741 (WebCore::setJSDOMWindowBaseOnresize):
13742 (WebCore::setJSDOMWindowBaseOnscroll):
13743 (WebCore::setJSDOMWindowBaseOnsearch):
13744 (WebCore::setJSDOMWindowBaseOnselect):
13745 (WebCore::setJSDOMWindowBaseOnsubmit):
13746 (WebCore::setJSDOMWindowBaseOnbeforeunload):
13747 (WebCore::setJSDOMWindowBaseOnunload):
13748 (WebCore::setJSDOMWindowBaseOnWebKitAnimationStart):
13749 (WebCore::setJSDOMWindowBaseOnWebKitAnimationIteration):
13750 (WebCore::setJSDOMWindowBaseOnWebKitAnimationEnd):
13751 (WebCore::setJSDOMWindowBaseOnWebKitTransitionEnd):
13752 (WebCore::setJSDOMWindowBaseEvent):
13753 (WebCore::setJSDOMWindowBaseAudio):
13754 (WebCore::setJSDOMWindowBaseImage):
13755 (WebCore::setJSDOMWindowBaseMessageChannel):
13756 (WebCore::setJSDOMWindowBaseOption):
13757 (WebCore::setJSDOMWindowBaseXMLHttpRequest):
13758 (WebCore::setJSDOMWindowBaseXSLTProcessor):
13759 * bindings/js/JSDOMWindowBase.h:
13760 * bindings/js/JSDOMWindowCustom.cpp:
13761 (WebCore::nonCachingStaticCloseFunctionGetter):
13762 (WebCore::nonCachingStaticBlurFunctionGetter):
13763 (WebCore::nonCachingStaticFocusFunctionGetter):
13764 (WebCore::nonCachingStaticPostMessageFunctionGetter):
13765 * bindings/js/JSDOMWindowCustom.h:
13766 (WebCore::JSDOMWindow::customGetOwnPropertySlot):
13767 * bindings/js/JSEventTargetBase.cpp:
13768 * bindings/js/JSEventTargetBase.h:
13769 (WebCore::JSEventTargetBasePrototype::getOwnPropertySlot):
13770 (WebCore::JSEventTargetBasePrototype::classInfo):
13771 * bindings/js/JSEventTargetNode.cpp:
13772 (WebCore::):
13773 (WebCore::JSEventTargetNode::getOwnPropertySlot):
13774 (WebCore::JSEventTargetNode::put):
13775 * bindings/js/JSEventTargetNode.h:
13776 (WebCore::JSEventTargetNode::classInfo):
13777 (WebCore::JSEventTargetNode::prototypeClassName):
13778 * bindings/js/JSEventTargetSVGElementInstance.cpp:
13779 (WebCore::):
13780 (WebCore::JSEventTargetSVGElementInstance::getOwnPropertySlot):
13781 (WebCore::JSEventTargetSVGElementInstance::put):
13782 * bindings/js/JSEventTargetSVGElementInstance.h:
13783 (WebCore::JSEventTargetSVGElementInstance::classInfo):
13784 (WebCore::JSEventTargetSVGElementInstance::prototypeClassName):
13785 * bindings/js/JSHTMLInputElementCustom.cpp:
13786 (WebCore::JSHTMLInputElement::customGetOwnPropertySlot):
13787 * bindings/js/JSHistoryCustom.cpp:
13788 (WebCore::nonCachingStaticBackFunctionGetter):
13789 (WebCore::nonCachingStaticForwardFunctionGetter):
13790 (WebCore::nonCachingStaticGoFunctionGetter):
13791 (WebCore::JSHistory::customGetOwnPropertySlot):
13792 * bindings/js/JSLocationCustom.cpp:
13793 (WebCore::nonCachingStaticReplaceFunctionGetter):
13794 (WebCore::nonCachingStaticReloadFunctionGetter):
13795 (WebCore::nonCachingStaticAssignFunctionGetter):
13796 (WebCore::JSLocation::customGetOwnPropertySlot):
13797 (WebCore::JSLocation::customPut):
13798 * bindings/scripts/CodeGeneratorJS.pm:
13799
hyatt@apple.com01adde82008-09-26 20:49:34 +0000138002008-09-26 David Hyatt <hyatt@apple.com>
13801
13802 https://bugs.webkit.org/show_bug.cgi?id=21149
13803
13804 Make the concept of scroll modes cross-platform. Move the scrollbars up into ScrollView as well.
13805 Eliminate the unused isScrollable() method.
13806
13807 Reviewed by Sam Weinig
13808
13809 * WebCore.base.exp:
13810 * page/FrameView.cpp:
13811 (WebCore::FrameView::resetScrollbars):
13812 (WebCore::FrameView::initScrollbars):
13813 (WebCore::FrameView::layout):
13814 * page/FrameView.h:
13815 * page/mac/WebCoreFrameView.h:
13816 * platform/ScrollView.cpp:
13817 (WebCore::ScrollView::init):
13818 (WebCore::ScrollView::setScrollbarModes):
13819 (WebCore::ScrollView::scrollbarModes):
13820 (WebCore::ScrollView::platformSetScrollbarModes):
13821 (WebCore::ScrollView::platformScrollbarModes):
13822 * platform/ScrollView.h:
13823 (WebCore::ScrollView::horizontalScrollbar):
13824 (WebCore::ScrollView::verticalScrollbar):
13825 (WebCore::ScrollView::isScrollViewScrollbar):
13826 (WebCore::ScrollView::setHorizontalScrollbarMode):
13827 (WebCore::ScrollView::setVerticalScrollbarMode):
13828 (WebCore::ScrollView::horizontalScrollbarMode):
13829 (WebCore::ScrollView::verticalScrollbarMode):
13830 (WebCore::ScrollView::convertSelfToChild):
13831 * platform/gtk/ScrollViewGtk.cpp:
13832 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
13833 (WebCore::ScrollView::ScrollViewPrivate::setHasHorizontalScrollbar):
13834 (WebCore::ScrollView::ScrollViewPrivate::setHasVerticalScrollbar):
13835 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
13836 (WebCore::ScrollView::updateScrollbars):
13837 (WebCore::ScrollView::scrollbarUnderMouse):
13838 (WebCore::ScrollView::isScrollViewScrollbar):
13839 (WebCore::ScrollView::paint):
13840 (WebCore::ScrollView::scroll):
13841 * platform/mac/ScrollViewMac.mm:
13842 (WebCore::ScrollView::platformSetScrollbarModes):
13843 (WebCore::ScrollView::platformScrollbarModes):
13844 * platform/qt/ScrollViewQt.cpp:
13845 (WebCore::ScrollView::ScrollViewPrivate::setHasHorizontalScrollbar):
13846 (WebCore::ScrollView::ScrollViewPrivate::setHasVerticalScrollbar):
13847 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
13848 (WebCore::ScrollView::horizontalScrollbar):
13849 (WebCore::ScrollView::verticalScrollbar):
13850 (WebCore::ScrollView::invalidateScrollbars):
13851 (WebCore::ScrollView::updateScrollbars):
13852 (WebCore::ScrollView::scrollbarUnderMouse):
13853 (WebCore::ScrollView::paint):
13854 (WebCore::ScrollView::scroll):
13855 * platform/win/ScrollViewWin.cpp:
13856 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
13857 (WebCore::ScrollView::ScrollViewPrivate::setHasHorizontalScrollbar):
13858 (WebCore::ScrollView::ScrollViewPrivate::setHasVerticalScrollbar):
13859 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
13860 (WebCore::ScrollView::ScrollViewPrivate::setAllowsScrolling):
13861 (WebCore::ScrollView::ScrollViewPrivate::allowsScrolling):
13862 (WebCore::ScrollView::suppressScrollbars):
13863 (WebCore::ScrollView::updateScrollbars):
13864 (WebCore::ScrollView::scrollbarUnderMouse):
13865 (WebCore::ScrollView::paint):
13866 (WebCore::ScrollView::scroll):
13867 * platform/wx/ScrollViewWx.cpp:
13868 (WebCore::ScrollView::platformSetScrollbarModes):
13869 (WebCore::ScrollView::platformScrollbarModes):
13870
ddkilzer@apple.com25e9d6e2008-09-26 20:47:58 +0000138712008-09-26 David Kilzer <ddkilzer@apple.com>
13872
13873 Fix Mac build with XPATH and XSLT disabled
13874
13875 Reviewed by Alexey.
13876
13877 * bindings/objc/DOMUtility.mm:
13878 (JSC::createDOMWrapper): Conditionalize code with ENABLE(XPATH).
13879 * dom/XMLTokenizerLibxml2.cpp:
13880 (WebCore::errorFunc): Conditionalize method with ENABLE(XSLT) to
13881 prevent an unused code warning.
13882
kmccullough@apple.comd9c02f82008-09-26 17:57:55 +0000138832008-09-26 Kevin McCullough <kmccullough@apple.com>
13884
13885 Rubber stamped by Tim Hatcher.
13886
13887 Bug 21098: Crashing under Console::log
13888 - Speculative ASSERT to help find the problem.
13889
13890 * page/InspectorController.cpp:
13891 (WebCore::ConsoleMessage::isEqual):
13892
zecke@webkit.org00c54bb2008-09-26 17:56:08 +0000138932008-09-26 Holger Hans Peter Freyther <zecke@selfish.org>
13894
13895 [gtk+] Build fix for the latest ScrollView changes
13896
13897 * platform/gtk/ScrollViewGtk.cpp:
13898 (WebCore::ScrollView::ScrollViewPrivate::adjustmentChanged):
13899 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
13900
timothy@apple.comf49116e2008-09-26 17:27:52 +0000139012008-09-26 Timothy Hatcher <timothy@apple.com>
13902
13903 Fixes a bug where the console message repeat count would be wrong
13904 when typing commands in between repeated messages.
13905
13906 https://bugs.webkit.org/show_bug.cgi?id=21145
13907
13908 Reviewed by Kevin McCullough.
13909
13910 * page/InspectorController.cpp:
13911 (WebCore::InspectorController::clearConsoleMessages): Reset m_groupLevel.
13912 (WebCore::InspectorController::didCommitLoad): Call clearConsoleMessages.
13913 * page/inspector/Console.js:
13914 (WebInspector.Console.prototype.addMessage): Remember the original repeat count
13915 for each message as totalRepeatCount, since we now modify repeatCount to mean
13916 repeats since previous console command. If repeatCountBeforeCommand is a number,
13917 subtract that value from the repeatCount.
13918 (WebInspector.Console.prototype.clearMessages): Delete the repeatCountBeforeCommand
13919 and commandSincePreviousMessage properties.
13920
eric.carlson@apple.comf6546a92008-09-26 17:26:39 +0000139212008-09-26 Eric Carlson <eric.carlson@apple.com>
13922
13923 Reviewed by Antti
13924
13925 https://bugs.webkit.org/show_bug.cgi?id=21116
13926 <rdar://problem/5726325> Audio from <video> can still be heard after navigating
13927 back to page with <video>, then closing tab
13928
13929 Rename willSaveToCache/didRestoreFromCache callbacks to documentWillBecomeInactive/
13930 documentDidBecomeActive, and post documentWillBecomeInactive when a page is marked for
13931 deletion.
13932
13933 * dom/Document.cpp:
13934 (WebCore::Document::documentWillBecomeInactive):
13935 (WebCore::Document::documentDidBecomeActive):
13936 (WebCore::Document::registerForDocumentActivationCallbacks):
13937 (WebCore::Document::unregisterForDocumentActivationCallbacks):
13938 * dom/Document.h:
13939 * dom/Element.h:
13940 (WebCore::Element::documentWillBecomeInactive):
13941 (WebCore::Element::documentDidBecomeActive):
13942 * history/CachedPage.cpp:
13943 (WebCore::CachedPage::CachedPage):
13944 * html/HTMLFormElement.cpp:
13945 (WebCore::HTMLFormElement::~HTMLFormElement):
13946 (WebCore::HTMLFormElement::parseMappedAttribute):
13947 (WebCore::HTMLFormElement::documentDidBecomeActive):
13948 (WebCore::HTMLFormElement::willMoveToNewOwnerDocument):
13949 (WebCore::HTMLFormElement::didMoveToNewOwnerDocument):
13950 * html/HTMLFormElement.h:
13951 * html/HTMLInputElement.cpp:
13952 (WebCore::HTMLInputElement::~HTMLInputElement):
13953 (WebCore::HTMLInputElement::setInputType):
13954 (WebCore::HTMLInputElement::parseMappedAttribute):
13955 (WebCore::HTMLInputElement::needsActivationCallback):
13956 (WebCore::HTMLInputElement::registerForActivationCallbackIfNeeded):
13957 (WebCore::HTMLInputElement::unregisterForActivationCallbackIfNeeded):
13958 (WebCore::HTMLInputElement::documentDidBecomeActive):
13959 (WebCore::HTMLInputElement::willMoveToNewOwnerDocument):
13960 (WebCore::HTMLInputElement::didMoveToNewOwnerDocument):
13961 * html/HTMLInputElement.h:
13962 * html/HTMLMediaElement.cpp:
13963 (WebCore::HTMLMediaElement::HTMLMediaElement):
13964 (WebCore::HTMLMediaElement::~HTMLMediaElement):
13965 (WebCore::HTMLMediaElement::documentWillBecomeInactive):
13966 (WebCore::HTMLMediaElement::documentDidBecomeActive):
13967 * html/HTMLMediaElement.h:
13968 (WebCore::HTMLMediaElement::inActiveDocument):
13969 * loader/FrameLoader.cpp:
13970 (WebCore::FrameLoader::opened):
13971 * page/Page.cpp:
13972 (WebCore::Page::~Page):
13973 * rendering/RenderMedia.cpp:
13974 (WebCore::RenderMedia::updateControls):
13975 * rendering/RenderVideo.cpp:
13976 (WebCore::RenderVideo::updatePlayer):
13977 * svg/SVGSVGElement.cpp:
13978 (WebCore::SVGSVGElement::SVGSVGElement):
13979 (WebCore::SVGSVGElement::~SVGSVGElement):
13980 (WebCore::SVGSVGElement::documentWillBecomeInactive):
13981 (WebCore::SVGSVGElement::documentDidBecomeActive):
13982 * svg/SVGSVGElement.h:
13983
hausmann@webkit.org8d07fe62008-09-26 16:30:34 +0000139842008-09-26 Ariya Hidayat <ariya.hidayat@trolltech.com>
13985
13986 Reviewed by Simon
13987
13988 Fix the build inside Qt, don't create faulty prl files for now.
13989
13990 * WebCore.pro:
13991
hausmann@webkit.org809f4242008-09-26 13:17:31 +0000139922008-09-26 Simon Hausmann <hausmann@webkit.org>
13993
13994 Fix compilation on Qt/Windows
13995
13996 * Add WebCore/ to the include path so that config.h is found that enables JSC
13997 * Link against winmm for the multimedia timer functions
13998 * Include DateMath.h instead of JavaScriptCore/DateMath.h as file is in the kjs/
13999 subdirectory
14000 * In PluginViewWin.cpp don't use setPlatformWidget with the HWND for the Qt/Windows port
14001 but set m_window directly as setPlatformWidget takes a QWidget*.
14002
14003 * WebCore.pro:
14004 * platform/win/SystemTimeWin.cpp:
14005 * plugins/win/PluginViewWin.cpp:
14006 (WebCore::PluginView::init):
14007
oliver@apple.com38feb8e2008-09-26 11:53:40 +0000140082008-09-26 Oliver Hunt <oliver@apple.com>
14009
14010 Reviewed by Maciej Stachowiak.
14011
14012 Bug 21054: Construction of certain DOM objects is heavily regressed by r36675
14013 <https://bugs.webkit.org/show_bug.cgi?id=21054>
14014
14015 This performance regression is actually just a symptom of a correctness
14016 bug. The constructor objects for a number of properties that have security
14017 checks on access were returning new objects each time. The most obvious
14018 symptom of this bug is that window.Image != window.Image, etc.
14019
14020 The solution to this is to make sure we cache these constructors
14021 in the same way as all the other DOM constructors. To achieve this
14022 without causing any refcount cycles it is necessary to replace the
14023 refcounted document pointer in the Image, MessageChannel, Option,
14024 XMLHttpRequest, and Audio constructor objects with a reference to
14025 the document's JS wrapper.
14026
14027 Tests: fast/dom/constructors-cached-navigate.html
14028 fast/dom/constructors-cached.html
14029
14030 * WebCore.xcodeproj/project.pbxproj:
14031 * bindings/js/JSAudioConstructor.cpp:
14032 (WebCore::JSAudioConstructor::mark):
14033 * bindings/js/JSAudioConstructor.h:
14034 (WebCore::JSAudioConstructor::document):
14035 * bindings/js/JSDOMWindowBase.cpp:
14036 (WebCore::getDOMConstructor):
14037 (WebCore::JSDOMWindowBase::getValueProperty):
14038 * bindings/js/JSDOMWindowBase.h:
14039 * bindings/js/JSHTMLOptionElementConstructor.cpp:
14040 (WebCore::JSHTMLOptionElementConstructor::mark):
14041 * bindings/js/JSHTMLOptionElementConstructor.h:
14042 (WebCore::JSHTMLOptionElementConstructor::document):
14043 * bindings/js/JSImageConstructor.cpp:
14044 (WebCore::JSImageConstructor::mark):
14045 * bindings/js/JSImageConstructor.h:
14046 (WebCore::JSImageConstructor::document):
14047 * bindings/js/JSXMLHttpRequestConstructor.cpp:
14048 (WebCore::JSXMLHttpRequestConstructor::mark):
14049 * bindings/js/JSXMLHttpRequestConstructor.h:
14050 (WebCore::JSXMLHttpRequestConstructor::document):
14051
hausmann@webkit.org0c5efc22008-09-26 10:55:32 +0000140522008-09-26 Simon Hausmann <hausmann@webkit.org>
14053
14054 Unreviewed one-liner build fix for the Qt/Windows build.
14055
14056 The build requires NPAPI support to be enabled, fix the condition in
14057 the .pro file for that.
14058
14059 * WebCore.pro:
14060
hausmann@webkit.org1ba35342008-09-26 10:51:33 +0000140612008-09-26 Trenton Schulz <twschulz@trolltech.com>
14062
14063 Reviewed by Simon.
14064
14065 Fix compilation with the Qt/Cocoa port.
14066
14067 * platform/qt/ScrollViewQt.cpp:
14068 (WebCore::ScrollView::updateScrollbars):
14069
hausmann@webkit.orge359dd12008-09-26 09:37:09 +0000140702008-09-26 Simon Hausmann <hausmann@webkit.org>
14071
14072 Reviewed by Holger.
14073
hausmann@webkit.org9f2ec002008-09-26 09:37:20 +000014074 Fix compilation with VC9SP1, work around bug in TR1 library by
14075 disabling it.
14076
14077 * WebCore.pro:
14078
140792008-09-26 Simon Hausmann <hausmann@webkit.org>
14080
14081 Reviewed by Holger.
14082
hausmann@webkit.orge359dd12008-09-26 09:37:09 +000014083 Fix an lupdate() warning.
14084
14085 Don't use tr() in a class that is not a QObject, use
14086 QCoreApplication::translate() directly.
14087
14088 * platform/qt/ScrollbarQt.cpp:
14089 (WebCore::Scrollbar::handleContextMenuEvent):
14090
hyatt@apple.com7eedf8f2008-09-26 05:40:50 +0000140912008-09-25 David Hyatt <hyatt@apple.com>
14092
hyatt@apple.com4c833152008-09-26 06:21:22 +000014093 Remove the scrollTo() method from FrameView, since it is not used by anyone.
14094
14095 Reviewed by Oliver Hunt
14096
14097 * page/FrameView.cpp:
14098 * page/FrameView.h:
14099
141002008-09-25 David Hyatt <hyatt@apple.com>
14101
hyatt@apple.com5c94d2e2008-09-26 06:15:54 +000014102 Make scrollRectIntoViewRecursively cross-platform.
14103
14104 Reviewed by Oliver Hunt
14105
14106 * platform/ScrollView.cpp:
14107 (WebCore::ScrollView::scrollRectIntoViewRecursively):
14108 * platform/gtk/ScrollViewGtk.cpp:
14109 * platform/mac/ScrollViewMac.mm:
14110 * platform/qt/ScrollViewQt.cpp:
14111 * platform/win/ScrollViewWin.cpp:
14112 * platform/wx/ScrollViewWx.cpp:
14113
141142008-09-25 David Hyatt <hyatt@apple.com>
14115
hyatt@apple.com25cd25e2008-09-26 06:07:14 +000014116 https://bugs.webkit.org/show_bug.cgi?id=21133
14117
14118 Rename resizeContents method on ScrollView to setContentsSize (to match contentsSize()). Make it
14119 cross-platform.
14120
14121 Reviewed by Oliver Hunt
14122
14123 * loader/FrameLoader.cpp:
14124 (WebCore::FrameLoader::begin):
14125 * page/FrameView.cpp:
14126 (WebCore::FrameView::adjustViewSize):
14127 * platform/ScrollView.cpp:
14128 (WebCore::ScrollView::setContentsSize):
14129 * platform/ScrollView.h:
14130 (WebCore::ScrollView::updateScrollbars):
14131 * platform/gtk/ScrollViewGtk.cpp:
14132 * platform/mac/ScrollViewMac.mm:
14133 (WebCore::ScrollView::platformSetContentsSize):
14134 * platform/qt/ScrollViewQt.cpp:
14135 * platform/win/ScrollViewWin.cpp:
14136 * platform/wx/ScrollViewWx.cpp:
14137 (WebCore::ScrollView::platformSetContentsSize):
14138
141392008-09-25 David Hyatt <hyatt@apple.com>
14140
hyatt@apple.com7eedf8f2008-09-26 05:40:50 +000014141 https://bugs.webkit.org/show_bug.cgi?id=21132
14142
14143 Clean up the methods that actually do the scrolling in ScrollView.
14144
14145 Reviewed by Oliver Hunt
14146
14147 * html/HTMLBodyElement.cpp:
14148 (WebCore::HTMLBodyElement::setScrollLeft):
14149 (WebCore::HTMLBodyElement::setScrollTop):
14150 * loader/FrameLoader.cpp:
14151 (WebCore::FrameLoader::restoreScrollPositionAndViewState):
14152 * loader/ImageDocument.cpp:
14153 (WebCore::ImageDocument::imageClicked):
14154 * page/DOMWindow.cpp:
14155 (WebCore::DOMWindow::scrollBy):
14156 (WebCore::DOMWindow::scrollTo):
14157 * page/FrameView.cpp:
14158 (WebCore::FrameView::scrollTo):
14159 (WebCore::FrameView::setScrollPosition):
14160 * page/FrameView.h:
14161 * platform/ScrollView.cpp:
14162 (WebCore::ScrollView::maximumScrollPosition):
14163 * platform/ScrollView.h:
14164 (WebCore::ScrollView::contentsWidth):
14165 (WebCore::ScrollView::contentsHeight):
14166 (WebCore::ScrollView::scrollBy):
14167 * platform/gtk/ScrollViewGtk.cpp:
14168 (WebCore::ScrollView::setScrollPosition):
14169 * platform/mac/ScrollViewMac.mm:
14170 (WebCore::ScrollView::setScrollPosition):
14171 * platform/qt/ScrollViewQt.cpp:
14172 (WebCore::ScrollView::setScrollPosition):
14173 (WebCore::ScrollView::scrollRectIntoViewRecursively):
14174 * platform/win/ScrollViewWin.cpp:
14175 (WebCore::ScrollView::setScrollPosition):
14176 (WebCore::ScrollView::scrollRectIntoViewRecursively):
14177 * platform/wx/ScrollViewWx.cpp:
14178 (WebCore::ScrollView::setScrollPosition):
14179 * rendering/RenderLayer.cpp:
14180 (WebCore::RenderLayer::scrollByRecursively):
14181 (WebCore::RenderLayer::scrollRectToVisible):
14182
mitz@apple.com5c920f12008-09-26 05:25:41 +0000141832008-09-25 Dan Bernstein <mitz@apple.com>
14184
14185 - attempted Windows build fix
14186
14187 * platform/win/ScrollViewWin.cpp:
14188 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
14189 (WebCore::ScrollView::setContentsPos):
14190 (WebCore::ScrollView::paint):
14191
timothy@apple.comd884aae2008-09-26 04:35:48 +0000141922008-09-25 Timothy Hatcher <timothy@apple.com>
14193
14194 Revert the padding changes done in r36905 to prevent the
14195 scrollbar from overlapping the URLs in the Console.
14196
14197 https://bugs.webkit.org/show_bug.cgi?id=21126
14198
14199 * page/inspector/inspector.css:
14200
hyatt@apple.comc01fb232008-09-26 04:28:25 +0000142012008-09-25 David Hyatt <hyatt@apple.com>
14202
14203 https://bugs.webkit.org/show_bug.cgi?id=21129
14204
14205 Refactor contents size and scroll offset to be cross-platform. Reduce further the number
14206 of platform-specific methods required of ScrollView implementations.
14207
14208 Reviewed by Tim Hatcher
14209
14210 * dom/MouseRelatedEvent.cpp:
14211 (WebCore::contentsX):
14212 (WebCore::contentsY):
14213 * html/HTMLBodyElement.cpp:
14214 (WebCore::HTMLBodyElement::scrollLeft):
14215 (WebCore::HTMLBodyElement::setScrollLeft):
14216 (WebCore::HTMLBodyElement::scrollTop):
14217 (WebCore::HTMLBodyElement::setScrollTop):
14218 * loader/FrameLoader.cpp:
14219 (WebCore::FrameLoader::saveScrollPositionAndViewStateToItem):
14220 * page/DOMWindow.cpp:
14221 (WebCore::DOMWindow::scrollX):
14222 (WebCore::DOMWindow::scrollY):
14223 * page/EventHandler.cpp:
14224 (WebCore::EventHandler::hitTestResultAtPoint):
14225 * page/FrameView.cpp:
14226 (WebCore::FrameView::scrollTo):
14227 (WebCore::FrameView::windowClipRect):
14228 * platform/ScrollView.cpp:
14229 (WebCore::ScrollView::visibleContentRect):
14230 (WebCore::ScrollView::contentsSize):
14231 (WebCore::ScrollView::platformContentsSize):
14232 * platform/ScrollView.h:
14233 (WebCore::ScrollView::scrollPosition):
14234 (WebCore::ScrollView::scrollOffset):
14235 (WebCore::ScrollView::scrollX):
14236 (WebCore::ScrollView::scrollY):
14237 (WebCore::ScrollView::contentsWidth):
14238 (WebCore::ScrollView::contentsHeight):
14239 * platform/gtk/ScrollViewGtk.cpp:
14240 (WebCore::ScrollView::ScrollViewPrivate::adjustmentChanged):
14241 (WebCore::ScrollView::setGtkAdjustments):
14242 (WebCore::ScrollView::resizeContents):
14243 (WebCore::ScrollView::contentsWidth):
14244 (WebCore::ScrollView::contentsHeight):
14245 (WebCore::ScrollView::scrollOffset):
14246 (WebCore::ScrollView::maximumScroll):
14247 (WebCore::ScrollView::scrollBy):
14248 (WebCore::ScrollView::suppressScrollbars):
14249 (WebCore::ScrollView::setHScrollbarMode):
14250 (WebCore::ScrollView::setVScrollbarMode):
14251 (WebCore::ScrollView::setScrollbarsMode):
14252 (WebCore::ScrollView::setFrameGeometry):
14253 (WebCore::ScrollView::updateScrollbars):
14254 * platform/mac/ScrollViewMac.mm:
14255 (WebCore::ScrollView::platformContentsSize):
14256 (WebCore::ScrollView::scrollBy):
14257 * platform/mac/WidgetMac.mm:
14258 (WebCore::Widget::convertFromContainingWindow):
14259 (WebCore::Widget::convertToContainingWindow):
14260 * platform/qt/ScrollViewQt.cpp:
14261 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
14262 (WebCore::ScrollView::resizeContents):
14263 (WebCore::ScrollView::setFrameGeometry):
14264 (WebCore::ScrollView::scrollOffset):
14265 (WebCore::ScrollView::maximumScroll):
14266 (WebCore::ScrollView::scrollBy):
14267 (WebCore::ScrollView::setHScrollbarMode):
14268 (WebCore::ScrollView::setVScrollbarMode):
14269 (WebCore::ScrollView::setScrollbarsMode):
14270 (WebCore::ScrollView::updateScrollbars):
14271 * platform/win/ScrollViewWin.cpp:
14272 (WebCore::ScrollView::ScrollViewPrivate::valueChanged):
14273 (WebCore::ScrollView::ScrollViewPrivate::setAllowsScrolling):
14274 (WebCore::ScrollView::resizeContents):
14275 (WebCore::ScrollView::setFrameGeometry):
14276 (WebCore::ScrollView::scrollOffset):
14277 (WebCore::ScrollView::maximumScroll):
14278 (WebCore::ScrollView::scrollBy):
14279 (WebCore::ScrollView::setHScrollbarMode):
14280 (WebCore::ScrollView::setVScrollbarMode):
14281 (WebCore::ScrollView::setScrollbarsMode):
14282 (WebCore::ScrollView::updateScrollbars):
14283 * platform/wx/ScrollViewWx.cpp:
14284 (WebCore::ScrollView::platformVisibleContentRect):
14285 (WebCore::ScrollView::platformContentsSize):
14286 * rendering/RenderBlock.cpp:
14287 (WebCore::RenderBlock::nodeAtPoint):
14288 * rendering/RenderLayer.cpp:
14289 (WebCore::RenderLayer::scrollRectToVisible):
14290 (WebCore::RenderLayer::calculateClipRects):
14291 (WebCore::RenderLayer::calculateRects):
14292 * rendering/RenderView.cpp:
14293 (WebCore::RenderView::absolutePosition):
14294 (WebCore::RenderView::computeAbsoluteRepaintRect):
14295
dsmith@webkit.orgbee65b52008-09-26 02:36:38 +0000142962008-09-25 David Smith <catfish.man@gmail.com>
14297
dsmith@webkit.org0fedb622008-09-26 04:05:57 +000014298 Reviewed by Dave Hyatt.
14299
14300 Fix a nasty regression I introduced in the previous commit, which caused infinite recursion on facebook.
14301
14302 * dom/Element.cpp:
14303 (WebCore::Element::rareData):
14304 * dom/Element.h:
14305 * dom/Node.cpp:
14306 (WebCore::Node::rareData):
14307 * dom/Node.h:
14308
143092008-09-25 David Smith <catfish.man@gmail.com>
14310
dsmith@webkit.orgbee65b52008-09-26 02:36:38 +000014311 Reviewed by Darin Adler.
14312
14313 https://bugs.webkit.org/show_bug.cgi?id=20980
14314 Split off uncommonly used data from Node similar to ElementRareData
14315
14316 Saves an OwnPtr and a short on Node, as well as providing room for an isContainer bit,
14317 which in turn allows inlining firstChild(), lastChild(), childNodeCount(), and childNode()
14318 for a 5-10+% performance win on SlickSpeed and assorted speedups on other tests.
14319
14320 * WebCore.base.exp:
14321 * WebCore.xcodeproj/project.pbxproj:
14322 * dom/ChildNodeList.cpp: Include ContainerNode to pick up its definitions for childNodeCount(), etc...
14323 * dom/ContainerNode.cpp: Set isContainer to true
14324 (WebCore::ContainerNode::ContainerNode):
14325 * dom/ContainerNode.h: These Node inlines are here to avoid including ContainerNode.h in Node.h
14326 (WebCore::Node::containerChildNodeCount): Use ContainerNode's definition, having proved that the Node is a container
14327 (WebCore::Node::containerChildNode): ditto
14328 (WebCore::Node::containerFirstChild): ditto
14329 (WebCore::Node::containerLastChild): ditto
14330 * dom/Element.cpp: Most of the changes here are moving ElementRareData to ElementRareData.h and NodeRareData.h
14331 (WebCore::Element::Element):
14332 (WebCore::Element::~Element):
14333 (WebCore::Element::rareData):
14334 (WebCore::Element::ensureRareData): Renamed from createRareData
14335 (WebCore::Element::createRareData): Used by ensureRareData to get the correct rareData type
14336 (WebCore::Element::attach): Check hasRareData rather than null-checking rareData()
14337 (WebCore::Element::detach): ditto
14338 (WebCore::Element::recalcStyle): ditto
14339 (WebCore::Element::focus):
14340 (WebCore::Element::minimumSizeForResizing): ditto
14341 (WebCore::Element::setMinimumSizeForResizing): ditto
14342 (WebCore::Element::computedStyle):
14343 (WebCore::Element::cancelFocusAppearanceUpdate): ditto
14344 * dom/Element.h:
14345 * dom/ElementRareData.h: Added; everything copied from Element.cpp
14346 (WebCore::defaultMinimumSizeForResizing):
14347 (WebCore::ElementRareData::ElementRareData):
14348 (WebCore::ElementRareData::resetComputedStyle):
14349 * dom/EventTargetNode.cpp:
14350 (WebCore::EventTargetNode::EventTargetNode): Pass the isContainer flag up the chain
14351 * dom/EventTargetNode.h:
14352 * dom/Node.cpp:
14353 (WebCore::Node::Node):
14354 (WebCore::Node::~Node): rareData cleanup code moved from Element and changed to use hasRareData
14355 (WebCore::Node::rareData):
14356 (WebCore::Node::ensureRareData):
14357 (WebCore::Node::createRareData):
14358 (WebCore::Node::tabIndex): nonzero tab indexes are now in rareData
14359 (WebCore::Node::setTabIndexExplicitly):
14360 (WebCore::Node::childNodes): NodeLists are now in rareData
14361 (WebCore::Node::setFocus):
14362 (WebCore::Node::rareDataFocused):
14363 (WebCore::Node::isFocusable):
14364 (WebCore::Node::isKeyboardFocusable):
14365 (WebCore::Node::registerDynamicNodeList): NodeLists are now in rareData
14366 (WebCore::Node::unregisterDynamicNodeList): ditto
14367 (WebCore::Node::notifyLocalNodeListsAttributeChanged): ditto
14368 (WebCore::Node::notifyLocalNodeListsChildrenChanged): ditto
14369 (WebCore::Node::getElementsByName): ditto
14370 (WebCore::Node::getElementsByClassName): ditto
14371 * dom/Node.h:
14372 (WebCore::Node::firstChild): Use isContainerNode() to devirtualize
14373 (WebCore::Node::lastChild): ditto
14374 (WebCore::Node::isContainerNode): Take advantage of a newly freed bit to store whether we're a container
14375 (WebCore::Node::focused): focus is in rareData if set
14376 (WebCore::Node::childTypeAllowed):
14377 (WebCore::Node::childNodeCount): Use isContainerNode() to devirtualize
14378 (WebCore::Node::childNode): ditto
14379 (WebCore::Node::hasRareData): Use another newly freed bit to store whether we have rare data; avoids doing hash lookups in the common case
14380 * dom/NodeRareData.h: Added. Most of this is just properties moved from Node
14381 (WebCore::NodeListsNodeData::~NodeListsNodeData): Moved from Node.cpp since we NodeRareData needs to put them in a HashTable :(
14382 (WebCore::NodeRareData::NodeRareData):
14383 (WebCore::NodeRareData::rareDataMap):
14384 (WebCore::NodeRareData::rareDataFromMap):
14385 (WebCore::NodeRareData::clearNodeLists):
14386 (WebCore::NodeRareData::setNodeLists):
14387 (WebCore::NodeRareData::nodeLists):
14388 (WebCore::NodeRareData::tabIndex):
14389 (WebCore::NodeRareData::setTabIndex):
14390 (WebCore::NodeRareData::tabIndexSetExplicitly):
14391 * dom/TreeWalker.cpp: Include ContainerNode to pick up its definitions for childNodeCount(), etc...
14392 * xml/XPathUtil.cpp: Include ContainerNode to pick up its definitions for childNodeCount(), etc...
14393
zecke@webkit.orge1370432008-09-26 01:47:30 +0000143942008-09-25 Holger Hans Peter Freyther <zecke@selfish.org>
14395
14396 Reviewed by Simon Hausmann.
14397
zecke@webkit.org9ea87f62008-09-26 01:54:04 +000014398 [qt] ImageBuffer::toDataURL implementation
14399
14400 There needs to be a Qt specific test result for the above mentioned
14401 implementation.
14402
14403 * platform/graphics/qt/ImageBufferQt.cpp:
14404 (WebCore::ImageBuffer::toDataURL):
14405
144062008-09-25 Holger Hans Peter Freyther <zecke@selfish.org>
14407
14408 Reviewed by Simon Hausmann.
14409
zecke@webkit.orge1370432008-09-26 01:47:30 +000014410 [qt] Implement SharedBuffer for Qt.
14411
14412 * WebCore.pro:
14413 * platform/qt/SharedBufferQt.cpp: Added.
14414 (WebCore::SharedBuffer::createWithContentsOfFile):
14415 * platform/qt/TemporaryLinkStubs.cpp:
14416
ddkilzer@apple.com91eae552008-09-26 00:53:18 +0000144172008-09-25 Feng Qian <feng@chromium.org>
14418
14419 Fix bug: https://bugs.webkit.org/show_bug.cgi?id=21032
14420 <rdar://problem/6243032>
14421
14422 Reviewed by Dave Hyatt.
14423
14424 Test: fast/dom/attribute-downcast-right.html
14425
14426 Add isMappedAttribute function to Attribute for checking if an object
14427 is an instance of MappedAttribute. Removed attributeItem,
14428 getAttributeItem functions from NamedMappedAttrMap, and callers
14429 expecting MappedAttribute have to check isMappedAttribute before
14430 downcasting the return value to MappedAttribute.
14431
14432 * css/CSSStyleSelector.cpp:
14433 (WebCore::CSSStyleSelector::styleForElement):
14434 * dom/Attribute.h:
14435 (WebCore::Attribute::isMappedAttribute):
14436 * dom/MappedAttribute.h:
14437 (WebCore::MappedAttribute::isMappedAttribute):
14438 * dom/NamedMappedAttrMap.cpp:
14439 (WebCore::NamedMappedAttrMap::declCount):
14440 (WebCore::NamedMappedAttrMap::mapsEquivalent):
14441 * dom/NamedMappedAttrMap.h:
14442 * dom/StyledElement.cpp:
14443 (WebCore::StyledElement::attributeChanged):
14444 * html/HTMLInputElement.cpp:
14445 (WebCore::HTMLInputElement::setInputType):
14446 * svg/SVGForeignObjectElement.cpp:
14447 (WebCore::addCSSPropertyAndNotifyAttributeMap):
14448 * svg/SVGStyledElement.cpp:
14449 (WebCore::SVGStyledElement::getPresentationAttribute):
14450
hyatt@apple.com79be62c2008-09-25 22:25:22 +0000144512008-09-25 David Hyatt <hyatt@apple.com>
14452
14453 https://bugs.webkit.org/show_bug.cgi?id=21120
14454
14455 Make visibleContentRect cross-platform. Note this does add new horizontal/verticalScrollbar accessors
14456 to a bunch of platforms. This is a temporary evil until the scrollbars get made cross-platform (and I
14457 didn't want to mix that change in with this patch).
14458
14459 Reviewed by Sam Weinig
14460
14461 * page/Frame.cpp:
14462 (WebCore::Frame::markAllMatchesForText):
14463 * page/FrameView.cpp:
14464 (WebCore::FrameView::repaintContentRectangle):
14465 (WebCore::FrameView::windowClipRect):
14466 (WebCore::FrameView::updateControlTints):
14467 * platform/ScrollView.cpp:
14468 (WebCore::ScrollView::visibleContentRect):
14469 (WebCore::ScrollView::platformVisibleContentRect):
14470 * platform/ScrollView.h:
14471 (WebCore::ScrollView::visibleWidth):
14472 (WebCore::ScrollView::visibleHeight):
14473 * platform/gtk/ScrollViewGtk.cpp:
14474 (WebCore::ScrollView::horizontalScrollbar):
14475 (WebCore::ScrollView::verticalScrollbar):
14476 * platform/mac/ScrollViewMac.mm:
14477 (WebCore::ScrollView::horizontalScrollbar):
14478 (WebCore::ScrollView::verticalScrollbar):
14479 (WebCore::ScrollView::platformVisibleContentRect):
14480 * platform/qt/ScrollViewQt.cpp:
14481 (WebCore::ScrollView::horizontalScrollbar):
14482 (WebCore::ScrollView::verticalScrollbar):
14483 * platform/win/ScrollViewWin.cpp:
14484 (WebCore::ScrollView::horizontalScrollbar):
14485 (WebCore::ScrollView::verticalScrollbar):
14486 * platform/wx/ScrollViewWx.cpp:
14487 (WebCore::ScrollView::platformVisibleContentRect):
14488 (WebCore::ScrollView::horizontalScrollbar):
14489 (WebCore::ScrollView::verticalScrollbar):
14490 * rendering/RenderLayer.cpp:
14491 (WebCore::RenderLayer::scrollRectToVisible):
14492 (WebCore::frameVisibleRect):
14493 * rendering/RenderView.cpp:
14494 (WebCore::RenderView::viewRect):
14495
dsmith@webkit.orgfbfe33a2008-09-25 20:55:31 +0000144962008-09-25 David Smith <catfish.man@gmail.com>
14497
14498 Reviewed by Timothy Hatcher
14499
14500 https://bugs.webkit.org/show_bug.cgi?id=21052
14501 Generalize id selector special case for querySelectorAll
14502
14503 By checking the element we get with getElementById against the selector, we can use the special case in many more circumstances.
14504 Changes results on http://native.khan.mozilla.org
14505 from
14506 #title: 2ms
14507 h1#title: 55ms
14508 div #title: 55ms
14509
14510 to:
14511 #title: 1ms
14512 h1#title: 2ms
14513 div #title: 5ms
14514
14515 * dom/Node.cpp:
14516 (WebCore::Node::querySelector):
14517 * dom/SelectorNodeList.cpp:
14518 (WebCore::createSelectorNodeList):
14519
hyatt@apple.com64a3be22008-09-25 20:49:17 +0000145202008-09-25 David Hyatt <hyatt@apple.com>
14521
14522 https://bugs.webkit.org/show_bug.cgi?id=21118
14523
14524 Make the concept of whether you can blit on scroll cross-platform on ScrollView.
14525
14526 Reviewed by Sam Weinig
14527
14528 * page/FrameView.cpp:
14529 (WebCore::FrameView::clear):
14530 (WebCore::FrameView::layout):
14531 (WebCore::FrameView::setUseSlowRepaints):
14532 (WebCore::FrameView::addSlowRepaintObject):
14533 (WebCore::FrameView::removeSlowRepaintObject):
14534 * platform/ScrollView.cpp:
14535 (WebCore::ScrollView::init):
14536 (WebCore::ScrollView::addChild):
14537 (WebCore::ScrollView::removeChild):
14538 (WebCore::ScrollView::setCanBlitOnScroll):
14539 * platform/ScrollView.h:
14540 (WebCore::ScrollView::canBlitOnScroll):
14541 * platform/gtk/ScrollViewGtk.cpp:
14542 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
14543 (WebCore::ScrollView::ScrollViewPrivate::scrollBackingStore):
14544 (WebCore::ScrollView::ScrollView):
14545 * platform/mac/ScrollViewMac.mm:
14546 (WebCore::ScrollView::ScrollView):
14547 (WebCore::ScrollView::platformAddChild):
14548 (WebCore::ScrollView::platformRemoveChild):
14549 (WebCore::ScrollView::platformSetCanBlitOnScroll):
14550 * platform/qt/ScrollViewQt.cpp:
14551 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
14552 (WebCore::ScrollView::ScrollViewPrivate::scrollBackingStore):
14553 (WebCore::ScrollView::ScrollView):
14554 * platform/win/ScrollViewWin.cpp:
14555 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
14556 (WebCore::ScrollView::ScrollViewPrivate::scrollBackingStore):
14557 (WebCore::ScrollView::ScrollView):
14558 * platform/wx/ScrollViewWx.cpp:
14559 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
14560 (WebCore::ScrollView::ScrollView):
14561 (WebCore::ScrollView::scrollBy):
14562
kmccullough@apple.com03b515b2008-09-25 20:29:57 +0000145632008-09-25 Kevin McCullough <kmccullough@apple.com>
14564
14565 Reviewed by Tim Hatcher.
14566
14567 Bug 21109: Console should right-align urls
14568
14569 * page/inspector/Console.js: Re-order the message elements so that when
14570 it overflows it doesn't get mixed in with the next message.
14571 * page/inspector/inspector.css:
14572
hyatt@apple.com95d18752008-09-25 20:15:44 +0000145732008-09-25 David Hyatt <hyatt@apple.com>
14574
14575 https://bugs.webkit.org/show_bug.cgi?id=21113
14576
14577 Putting r36771 back in with a fix to the addPendingSheet check in CSSImportRule::insertedIntoParent.
14578
14579 Reviewed by Darin Adler
14580
14581 * css/CSSImportRule.cpp:
14582 (WebCore::CSSImportRule::insertedIntoParent):
14583 * css/CSSRule.cpp:
14584 (WebCore::CSSRule::parentStyleSheet):
14585 (WebCore::CSSRule::parentRule):
14586 * css/CSSStyleSheet.cpp:
14587 (WebCore::CSSStyleSheet::CSSStyleSheet):
14588 * css/CSSStyleSheet.h:
14589
darin@apple.com6ca04432008-09-25 20:02:11 +0000145902008-09-25 Darin Adler <darin@apple.com>
14591
14592 Reviewed by Adele Peterson.
14593
14594 - fix https://bugs.webkit.org/show_bug.cgi?id=21115
14595 <rdar://problem/6245773> REGRESSION (r34702): Safari no longer zips
14596 bundled documents
14597
14598 * html/HTMLFormElement.cpp:
14599 (WebCore::HTMLFormElement::formData): Use files() instead of value()
14600 to get the path, since value() now returns just the basename.
14601
beidson@apple.comb9a40052008-09-25 18:37:09 +0000146022008-09-25 Brady Eidson <beidson@apple.com>
14603
14604 Rubberstamped by Mark Rowe
14605
14606 Roll out 36771 as it caused <rdar://problem/6246554>
14607 "nytimes.com doesn't display after returning to it with back/forward"
14608
14609 * css/CSSImportRule.cpp:
14610 (WebCore::CSSImportRule::insertedIntoParent):
14611 * css/CSSRule.cpp:
14612 (WebCore::CSSRule::parentStyleSheet):
14613 (WebCore::CSSRule::parentRule):
14614 * css/CSSStyleSheet.cpp:
14615 (WebCore::CSSStyleSheet::CSSStyleSheet):
14616 (WebCore::CSSStyleSheet::docLoader):
14617 * css/CSSStyleSheet.h:
14618 (WebCore::CSSStyleSheet::doc):
14619
aroben@apple.comdf5a7322008-09-25 17:47:15 +0000146202008-09-25 Adam Roben <aroben@apple.com>
14621
14622 Windows build fix
14623
14624 * WebCore.vcproj/WebCore.vcproj: Add ScrollView.cpp to the project.
14625
mitz@apple.com0565bc92008-09-25 17:27:37 +0000146262008-09-25 Dan Bernstein <mitz@apple.com>
14627
14628 - Windows build fix
14629
14630 * platform/win/ScrollViewWin.cpp:
14631 (WebCore::ScrollView::addChildPlatformWidget):
14632 (WebCore::ScrollView::removeChildPlatformWidget):
14633
timothy@apple.com7a4bf192008-09-25 17:07:43 +0000146342008-09-25 Timothy Hatcher <timothy@apple.com>
14635
14636 Fixes a leak of ConsoleMessage seen when repeated console
14637 messages occur.
14638
14639 Reviewed by Mark Rowe.
14640
14641 * page/InspectorController.cpp:
14642 (WebCore::InspectorController::addConsoleMessage): Delete the repeat
14643 since we don't add it to m_consoleMessages.
14644
kmccullough@apple.com340e7272008-09-25 16:04:20 +0000146452008-09-25 Kevin McCullough <kmccullough@apple.com>
14646
kmccullough@apple.com364f2992008-09-25 16:48:34 +000014647 Reviewed by Dan Bernstein.
14648
14649 Bug 21105: XHRs logged in the console may show the wrong URL for the
14650 source
14651 - Get the url at the time of the send() and pass it on to the XHR.
14652
14653 * bindings/js/JSXMLHttpRequestCustom.cpp:
14654 (WebCore::JSXMLHttpRequest::send):
14655 * xml/XMLHttpRequest.cpp:
14656 (WebCore::XMLHttpRequest::didFinishLoading):
14657 * xml/XMLHttpRequest.h:
14658 (WebCore::XMLHttpRequest::setLastSendURL):
14659
146602008-09-25 Kevin McCullough <kmccullough@apple.com>
14661
kmccullough@apple.com340e7272008-09-25 16:04:20 +000014662 Reviewed by Geoff and Tim.
14663
14664 Bug 20322: XHRs logged in the console do not have line numbers
14665 - Get the line number at the time of the send and pass it on to the XHR.
14666
14667 * bindings/js/JSXMLHttpRequestCustom.cpp:
14668 (WebCore::JSXMLHttpRequest::send):
14669 * xml/XMLHttpRequest.cpp:
14670 (WebCore::XMLHttpRequest::XMLHttpRequest):
14671 (WebCore::XMLHttpRequest::didFinishLoading):
14672 * xml/XMLHttpRequest.h:
14673 (WebCore::XMLHttpRequest::setLastSendLineNumber):
14674
eric.carlson@apple.comb9404142008-09-25 15:33:02 +0000146752008-09-25 Eric Carlson <eric.carlson@apple.com>
14676
14677 Reviewed by Eric Seidel.
14678
14679 <rdar://problem/6171047> HTMLMediaElement "begin" event is now "loadstart"
14680 https://bugs.webkit.org/show_bug.cgi?id=21003
14681
14682 * dom/EventNames.h: remove "begin" event
14683 * html/HTMLMediaElement.cpp:
14684 (WebCore::HTMLMediaElement::load): Post "loadstart" event instead of "begin"
14685
ap@webkit.orgcdec56d2008-09-25 11:30:02 +0000146862008-09-25 Alexey Proskuryakov <ap@webkit.org>
14687
14688 Reviewed by Eric Seidel.
14689
14690 https://bugs.webkit.org/show_bug.cgi?id=21097
14691 Calling a MessageChannel constructor from a destroyed document results in a crash
14692
14693 Test: fast/events/message-port-constructor-for-deleted-document.html
14694
14695 * bindings/js/JSMessageChannelConstructor.cpp:
14696 (WebCore::JSMessageChannelConstructor::construct):
14697 * bindings/js/JSMessageChannelConstructor.h:
14698 Made m_document a RefPtr.
14699
ap@webkit.org28b51752008-09-25 10:15:11 +0000147002008-09-24 Alexey Proskuryakov <ap@webkit.org>
14701
14702 Reviewed by Sam Weinig, Anders Carlsson, and (unofficially) Adam Barth.
14703
14704 https://bugs.webkit.org/show_bug.cgi?id=20879
14705 Implement HTML5 channel messaging
14706
14707 Tests: fast/events/message-channel-gc.html
14708 fast/events/message-port-deleted-document.html
14709 fast/events/message-port-deleted-frame.html
14710 fast/events/message-port-inactive-document.html
14711 fast/events/message-port.html
14712 http/tests/security/MessagePort/event-listener-context.html
14713
14714 * Configurations/WebCore.xcconfig:
14715 Removed unused ENABLE_CROSS_DOCUMENT_MESSAGING macro.
14716
14717 * DerivedSources.make:
14718 Added MessageChannel and MessagePort.
14719
14720 * WebCore.pro: Made MessageEvent compilation unconditional, as it could not possibly be
14721 turmed off anyway. Added new files.
14722
14723 * GNUmakefile.am:
14724 * WebCore.pro:
14725 * WebCore.vcproj/WebCore.vcproj:
14726 * WebCore.xcodeproj/project.pbxproj:
14727 * WebCoreSources.bkl:
14728 Added new files.
14729
14730 * bindings/js/JSDOMWindowBase.h:
14731 * bindings/js/JSDOMWindowBase.cpp: (WebCore::JSDOMWindowBase::getValueProperty):
14732 Added suport for window.MessageChannel constructor.
14733
14734 * bindings/js/JSDOMWindowCustom.cpp: (WebCore::JSDOMWindow::postMessage):
14735 * page/DOMWindow.cpp:
14736 (WebCore::DOMWindow::postMessage):
14737 * page/DOMWindow.h:
14738 * page/DOMWindow.idl:
14739 Added support for three-argument postMessage (that posts a MessagePort).
14740
14741 * dom/EventTarget.cpp:
14742 (WebCore::EventTarget::toMessagePort):
14743 * dom/EventTarget.h:
14744 * bindings/js/JSEventTargetBase.cpp: (WebCore::toJS): Added MessagePort as yet another
14745 EventTarget variant.
14746
14747 * bindings/js/JSMessageChannelConstructor.h:
14748 * bindings/js/JSMessageChannelConstructor.cpp: Added a custom constructor, so that it could
14749 take a browsing context (document) parameter.
14750
14751 * bindings/js/JSMessageChannelCustom.cpp: Added.
14752 (WebCore::JSMessageChannel::mark): JSMessageChannel uses a custom mark function to mark
14753 port1 and port2 that it owns.
14754
14755 * bindings/js/JSMessagePortCustom.cpp: Added.
14756 (WebCore::JSMessagePort::startConversation):
14757 (WebCore::JSMessagePort::addEventListener):
14758 (WebCore::JSMessagePort::removeEventListener):
14759 (WebCore::JSMessagePort::dispatchEvent):
14760 (WebCore::JSMessagePort::setOnmessage):
14761 (WebCore::JSMessagePort::onmessage):
14762 (WebCore::JSMessagePort::setOnclose):
14763 (WebCore::JSMessagePort::onclose):
14764 (WebCore::JSMessagePort::mark):
14765 * dom/MessagePort.cpp: Added.
14766 * dom/MessagePort.h: Added.
14767 * dom/MessagePort.idl: Added.
14768 Added a MessagePort implementation. Currently, it is not thread-safe at all, and only works
14769 with Documents as contexts, but in the future, it will be used for communication with worker
14770 threads.
14771
14772 * bindings/objc/DOMInternal.h: Include "DOMMessagePortInternal.h". The new APIs do not
14773 really have Obj-C bindings, as they are far from being final, but a MessagePort stub is
14774 needed for MessageEvent.
14775
14776 * bindings/scripts/CodeGeneratorJS.pm: Include PlatformString.h for MessagePort happiness.
14777
14778 * dom/Document.cpp:
14779 (WebCore::MessagePortTimer::MessagePortTimer):
14780 (WebCore::MessagePortTimer::fired):
14781 (WebCore::Document::processMessagePortMessagesSoon):
14782 (WebCore::Document::~Document):
14783 (WebCore::Document::dispatchMessagePortEvents):
14784 (WebCore::Document::createdMessagePort):
14785 (WebCore::Document::destroyedMessagePort):
14786 * dom/Document.h:
14787 Document keeps track of all MessagePort objects that were created when it was fully active
14788 in its context.
14789
14790 * dom/EventNames.h: Added closeEvent.
14791
14792 * dom/MessageChannel.cpp: Added.
14793 (WebCore::MessageChannel::MessageChannel):
14794 (WebCore::MessageChannel::~MessageChannel):
14795 * dom/MessageChannel.h: Added.
14796 (WebCore::MessageChannel::create):
14797 (WebCore::MessageChannel::port1):
14798 (WebCore::MessageChannel::port2):
14799 * dom/MessageChannel.idl: Added.
14800 Addded JSMessageChannel implementation.
14801
14802 * dom/MessageEvent.cpp:
14803 (WebCore::MessageEvent::MessageEvent):
14804 (WebCore::MessageEvent::initMessageEvent):
14805 * dom/MessageEvent.h:
14806 (WebCore::MessageEvent::create):
14807 (WebCore::MessageEvent::messagePort):
14808 * dom/MessageEvent.idl:
14809 MessageEvent has a MessagePort member now, making it possible to pass ports across
14810 documents.
14811
dsmith@webkit.org3e32f422008-09-25 08:57:31 +0000148122008-09-25 David Smith <catfish.man@gmail.com>
14813
14814 Reviewed by Eric Seidel
14815
14816 fix https://bugs.webkit.org/show_bug.cgi?id=21091
14817 Regression: querySelector matches tag names case sensitively
14818
14819 Tests: fast/dom/SelectorAPI/caseTag.html
14820 fast/dom/SelectorAPI/caseTagX.xhtml
14821
14822 * css/CSSParser.cpp:
14823 (WebCore::CSSParser::parseSelector): Add a Document argument, since tag case sensitivity is different for HTML documents
14824 * css/CSSParser.h:
14825 * dom/Node.cpp:
14826 (WebCore::Node::querySelector):
14827 (WebCore::Node::querySelectorAll):
14828
hyatt@apple.com912c1b12008-09-25 07:38:56 +0000148292008-09-24 David Hyatt <hyatt@apple.com>
14830
14831 https://bugs.webkit.org/show_bug.cgi?id=21084
14832
14833 Make the m_children member of ScrollView cross-platform. Consolidate children add/remove
14834 functionality. Add platform stubs for connecting/disconnecting the platform widgets.
14835
14836 Reviewed by Sam Weinig
14837
14838 * GNUmakefile.am:
14839 * WebCore.pro:
14840 * WebCore.vcproj/WebCore.vcproj:
14841 * WebCore.xcodeproj/project.pbxproj:
14842 * WebCoreSources.bkl:
14843 * platform/ScrollView.h:
14844 (WebCore::ScrollView::children):
14845 * platform/Widget.h:
14846 * platform/gtk/ScrollViewGtk.cpp:
14847 (WebCore::ScrollView::addChildPlatformWidget):
14848 (WebCore::ScrollView::removeChildPlatformWidget):
14849 (WebCore::ScrollView::geometryChanged):
14850 * platform/mac/ScrollViewMac.mm:
14851 (WebCore::ScrollView::addChildPlatformWidget):
14852 (WebCore::ScrollView::removeChildPlatformWidget):
14853 * platform/qt/ScrollViewQt.cpp:
14854 (WebCore::ScrollView::geometryChanged):
14855 (WebCore::ScrollView::addChildPlatformWidget):
14856 (WebCore::ScrollView::removeChildPlatformWidget):
14857 * platform/win/ScrollViewWin.cpp:
14858 (WebCore::ScrollView::geometryChanged):
14859 (WebCore::ScrollView::setParentVisible):
14860 (WebCore::ScrollView::show):
14861 (WebCore::ScrollView::hide):
14862 * platform/wx/ScrollViewWx.cpp:
14863 (WebCore::ScrollView::addChildPlatformWidget):
14864 (WebCore::ScrollView::removeChildPlatformWidget):
14865
mitz@apple.com982d2cc2008-09-25 07:16:05 +0000148662008-09-25 Dan Bernstein <mitz@apple.com>
14867
14868 Reviewed by Dave Hyatt.
14869
14870 - fix https://bugs.webkit.org/show_bug.cgi?id=21024
14871 <rdar://problem/6240821> Scrollbar not painted until hovered
14872
14873 * rendering/RenderWidget.cpp:
14874 (WebCore::RenderWidget::setWidgetGeometry): Replaced resizeWidget with
14875 this method, which sets both the location and the size.
14876 (WebCore::RenderWidget::setWidget): Replaced the call to resizeWidget
14877 with a call to the new method setWidgetGeometry. Positioning the
14878 widget correctly ensures that the scroll bars invalidate correctly when
14879 they are created and resized.
14880 * rendering/RenderWidget.h:
14881
mitz@apple.com61969a62008-09-25 00:50:05 +0000148822008-09-24 Dan Bernstein <mitz@apple.com>
14883
14884 Rubber-stamped by Sam Weinig.
14885
14886 - create a "style" subfolder under "rendering" and move style files to that folder
14887
14888 * WebCore.vcproj/WebCore.vcproj:
14889
weinig@apple.comacfb9e12008-09-25 00:39:11 +0000148902008-09-24 Sam Weinig <sam@webkit.org>
14891
14892 Reviewed by Maciej Stachowiak.
14893
14894 Remove staticFunctionGetter. There is only one remaining user of
14895 staticFunctionGetter and it can be converted to use setUpStaticFunctionSlot.
14896
14897 * bindings/js/JSDOMWindowBase.cpp:
14898 (WebCore::JSDOMWindowBase::getOwnPropertySlot):
14899
mitz@apple.com0cb3dff2008-09-24 23:40:29 +0000149002008-09-24 Jeremy Moskovich <jeremy@chromium.org>
14901
14902 Reviewed by Dan Bernstein.
14903
14904 Test: editing/spelling/inline_spelling_markers.html
14905
14906 - https://bugs.webkit.org/show_bug.cgi?id=20092
14907 Spelling markers positioned incorrectly in RTL text
14908
14909 Measure spelling markers with selectionRectForText() to fix RTL.
14910
14911 This patch also fixes hit-testing for spelling marker tool tips,
14912 which used to work only on the first line.
14913
14914 * rendering/InlineTextBox.cpp:
14915 (WebCore::InlineTextBox::paintSpellingOrGrammarMarker):
14916
hyatt@apple.come5925322008-09-24 21:28:08 +0000149172008-09-24 David Hyatt <hyatt@apple.com>
14918
hyatt@apple.com31cd6d62008-09-24 21:45:19 +000014919 https://bugs.webkit.org/show_bug.cgi?id=21074
14920
hyatt@apple.come5925322008-09-24 21:28:08 +000014921 Make sure the viewless scrollbar knows how to paint properly when transformed.
14922
14923 Reviewed by Sam Weinig
14924
14925 * platform/mac/ScrollbarThemeMac.mm:
14926 (WebCore::ScrollbarThemeMac::ScrollbarThemeMac):
14927 (WebCore::ScrollbarThemeMac::paint):
14928
zimmermann@webkit.orgf0935532008-09-24 21:17:14 +0000149292008-09-24 Nikolas Zimmermann <zimmermann@kde.org>
14930
14931 Not reviewed. Try to fix win build.
14932
14933 * bindings/js/JSSVGElementInstanceCustom.cpp:
14934 (WebCore::toJS):
14935 * dom/ContainerNodeAlgorithms.h:
14936 (WebCore::removeAllChildrenInContainer):
14937 (WebCore::appendChildToContainer):
14938 (WebCore::Private::addChildNodesToDeletionQueue):
14939
149402008-09-24 Nikolas Zimmermann <zimmermann@kde.org>
14941
14942 Reviewed by Oliver.
14943
14944 Add ContainerNodeAlgorithms.h, as central place to share algorithms
14945 operating on TreeShared-derived classes with a Node-style interface.
14946
14947 This allows SVGElementInstance & ContainerNode to share code.
14948
14949 * dom/ContainerNode.cpp:
14950 (WebCore::ContainerNode::removeAllChildren):
14951 (WebCore::ContainerNode::addChild):
14952 * dom/ContainerNode.h:
14953 * dom/ContainerNodeAlgorithms.h: Added.
14954 (WebCore::removeAllChildrenInContainer):
14955 (WebCore::appendChildToContainer):
14956 (WebCore::Private::NodeRemovalDispatcher::dispatch):
14957 (WebCore::Private::addChildNodesToDeletionQueue):
14958
simon.fraser@apple.com557a0472008-09-24 21:08:23 +0000149592008-09-24 Simon Fraser <simon.fraser@apple.com>
14960
14961 Reviewed by Dave Hyatt
14962
14963 Wrap up dirtying the z-order list of the stacking context
14964 RenderLayer into a method.
14965 https://bugs.webkit.org/show_bug.cgi?id=21072
14966
14967 * rendering/RenderLayer.cpp:
14968 (WebCore::RenderLayer::setHasVisibleContent):
14969 (WebCore::RenderLayer::addChild):
14970 (WebCore::RenderLayer::removeChild):
14971 (WebCore::RenderLayer::dirtyStackingContextZOrderLists):
14972 (WebCore::RenderLayer::styleChanged):
14973 * rendering/RenderLayer.h:
14974 * rendering/RenderObject.cpp:
14975 (WebCore::RenderObject::setStyle):
14976
kmccullough@apple.comaf908e62008-09-24 20:22:23 +0000149772008-09-24 Kevin McCullough <kmccullough@apple.com>
14978
14979 Reviewed by Tim.
14980
14981 Bug 21070: REGRESSION Repeated messages with arguments are not repeated
14982 or displayed multiple times
14983 - The Insepctor Controller was comparing JSValue pointers so thought the
14984 message was not a repeat, but the JS of the inspector compared the
14985 strings and so knew it was the same message and so overwrote the old
14986 message.
14987
14988 * page/InspectorController.cpp:
14989 (WebCore::ConsoleMessage::isEqual):
14990 (WebCore::InspectorController::addMessageToConsole):
14991 (WebCore::InspectorController::addConsoleMessage):
14992 (WebCore::InspectorController::startGroup):
14993 (WebCore::InspectorController::endGroup):
14994 * page/InspectorController.h:
14995
hyatt@apple.comf4c8f172008-09-24 20:19:26 +0000149962008-09-24 David Hyatt <hyatt@apple.com>
14997
14998 Make sure the viewless Mac scrollbar responds properly to system preference changes (including the
14999 arrow placement preference and the thumb jump preference).
15000
15001 Reviewed by Adam Roben
15002
15003 * platform/Scrollbar.cpp:
15004 (WebCore::Scrollbar::Scrollbar):
15005 (WebCore::Scrollbar::~Scrollbar):
15006 * platform/ScrollbarTheme.h:
15007 (WebCore::ScrollbarTheme::registerScrollbar):
15008 (WebCore::ScrollbarTheme::unregisterScrollbar):
15009 * platform/mac/ScrollbarThemeMac.h:
15010 * platform/mac/ScrollbarThemeMac.mm:
15011 (+[ScrollbarPrefsObserver appearancePrefsChanged:]):
15012 (+[ScrollbarPrefsObserver behaviorPrefsChanged:]):
15013 (+[ScrollbarPrefsObserver registerAsObserver]):
15014 (WebCore::ScrollbarThemeMac::registerScrollbar):
15015 (WebCore::ScrollbarThemeMac::unregisterScrollbar):
15016 (WebCore::ScrollbarThemeMac::ScrollbarThemeMac):
15017 (WebCore::ScrollbarThemeMac::preferencesChanged):
15018
rwlbuis@webkit.orga5dafa8d2008-09-24 19:23:54 +0000150192008-09-24 Rob Buis <buis@kde.org>
15020
15021 Reviewed by Darin.
15022
15023 https://bugs.webkit.org/show_bug.cgi?id=20557
15024 getScreenCTM() returns wrong values
15025
15026 Use the absolute position of the svg root when
15027 determining the screen ctm.
15028
15029 Test: svg/custom/getscreenctm-in-mixed-content2.xhtml
15030
15031 * svg/SVGSVGElement.cpp:
15032 (WebCore::SVGSVGElement::getScreenCTM):
15033
hyatt@apple.com40a73652008-09-24 18:15:15 +0000150342008-09-24 David Hyatt <hyatt@apple.com>
15035
hyatt@apple.come77b7d42008-09-24 18:26:51 +000015036 Turn off support for CSS variables.
15037
15038 * ChangeLog:
15039 * css/CSSParser.cpp:
15040 (WebCore::CSSParser::createVariablesRule):
15041 (WebCore::CSSParser::addVariable):
15042 (WebCore::CSSParser::addVariableDeclarationBlock):
15043
150442008-09-24 David Hyatt <hyatt@apple.com>
15045
hyatt@apple.com40a73652008-09-24 18:15:15 +000015046 Back out the alternate forms of CSS variable call syntax (leaving only the -webkit-var version).
15047
15048 * css/CSSGrammar.y:
15049 * css/CSSParserValues.cpp:
15050 (WebCore::CSSParserValue::isVariable):
15051 * css/CSSPrimitiveValue.cpp:
15052 (WebCore::CSSPrimitiveValue::cleanup):
15053 (WebCore::CSSPrimitiveValue::getStringValue):
15054 (WebCore::CSSPrimitiveValue::cssText):
15055 (WebCore::CSSPrimitiveValue::parserValue):
15056 * css/CSSPrimitiveValue.h:
15057 (WebCore::CSSPrimitiveValue::):
15058 (WebCore::CSSPrimitiveValue::isVariable):
15059
timothy@apple.com0214f092008-09-24 16:23:17 +0000150602008-09-24 Timothy Hatcher <timothy@apple.com>
15061
15062 Fixes a regression where the "incorrect MIME-type" warning would not
15063 show up correctly in the Console or the resources sidebar.
15064
15065 Reviewed by Kevin McCullough.
15066
15067 * page/inspector/Resource.js:
15068 (WebInspector.Resource.prototype._addTip): Add the repeat count argument
15069 to the WebInspector.ConsoleMessage constructor call.
15070 (WebInspector.Resource.prototype._checkWarning): Ditto.
15071
vestbo@webkit.orgb298eda2008-09-24 13:47:06 +0000150722008-09-23 Tor Arne Vestbø <tavestbo@trolltech.com>
15073
15074 Reviewed by Simon.
15075
15076 Remove deprecated JS Qt bindings object call/construct code and fix autotests
15077
15078 * bridge/qt/qt_instance.cpp:
15079 (JSC::Bindings::QtInstance::QtInstance):
15080 * bridge/qt/qt_instance.h:
15081
jmalonzo@webkit.orgbe1da352008-09-24 07:42:39 +0000150822008-09-23 Julien Chaffraix <jchaffraix@pleyo.com>
15083
15084 Reviewed by Alp Toker. Landed by Jan Alonzo.
15085
15086 Bug 20883: [CURL] Add deferred loading
15087 https://bugs.webkit.org/show_bug.cgi?id=20883
15088
15089 Implement deferred loading for the libcURL backend using curl_easy_pause.
15090 As the method was introduced in version 7.18.0, all the code checks for libcURL
15091 version.
15092
15093 * platform/network/curl/ResourceHandleCurl.cpp:
15094 (WebCore::ResourceHandle::setDefersLoading):
15095 * platform/network/curl/ResourceHandleManager.cpp:
15096 (WebCore::writeCallback): Add an assertion that deferred loading is not
15097 activated.
15098 (WebCore::headerCallback): Ditto.
15099 (WebCore::readCallback): Ditto.
15100 (WebCore::ResourceHandleManager::dispatchSynchronousJob): Force
15101 defersLoading to be false in order to avoid triggering an assertion.
15102 (WebCore::ResourceHandleManager::initializeHandle): If deferred loading is
15103 activated, pause the easy handle.
15104
pewtermoose@webkit.org0ebdfc02008-09-24 03:24:43 +0000151052008-09-23 Matt Lilek <webkit@mattlilek.com>
15106
15107 Reviewed by Tim Hatcher.
15108
15109 Inspector search field style tweaks.
15110
15111 * page/inspector/inspector.css:
15112
zimmermann@webkit.org1acc6262008-09-24 02:23:24 +0000151132008-09-23 Nikolas Zimmermann <zimmermann@kde.org>
15114
15115 Reviewed by Eric.
15116
15117 Fixes: https://bugs.webkit.org/show_bug.cgi?id=21046 (Several LayoutTests crash)
15118
15119 Fix missing negation in EventTargetNode::insertedIntoDocument.
15120 Made handleLocalEvents() virtual again, HTMLFormElement overrides it.
15121 Remove code, that wasn't supposed to go in in dispatchGenericEvent().
15122
15123 * dom/EventTargetNode.cpp:
15124 (WebCore::EventTargetNode::insertedIntoDocument):
15125 (WebCore::EventTargetNode::dispatchGenericEvent):
15126 * dom/EventTargetNode.h:
15127
timothy@apple.combffde042008-09-24 02:07:39 +0000151282008-09-23 Timothy Hatcher <timothy@apple.com>
15129
timothy@apple.com99c03532008-09-24 02:08:44 +000015130 Adds search support to the Profiles panel.
15131
15132 The Profiles panel supports a few types of queries:
15133 * Standard string matching for function names and file URLs.
15134 * Greater than and less than search for numeric columns.
15135 So a query of ">24" will match all rows that have calls
15136 greater than 24. Or "<=42" will match all 42 or less.
15137 * Percent and time units. Adding a unit of "s", "ms" or "%"
15138 is supported and will match only the Self and Total columns.
15139 So a query of ">1.25s" will match all rows that took longer
15140 than 1.25 seconds.
15141
15142 Reviewed by Oliver Hunt.
15143
15144 * page/inspector/ProfileView.js:
15145 (WebInspector.ProfileView.prototype.hide): Reset _currentSearchResultIndex to -1. So the next time
15146 it will start at the first result.
15147 (WebInspector.ProfileView.prototype.refreshShowAsPercents): Moved from the bottom of the file.
15148 (WebInspector.ProfileView.prototype.searchCanceled): Clear the search properties and refresh highlighted
15149 data grid nodes.
15150 (WebInspector.ProfileView.prototype.performSearch): Search the profile nodes.
15151 (WebInspector.ProfileView.prototype.jumpToFirstSearchResult): Does what the function says. Calls _jumpToSearchResult.
15152 (WebInspector.ProfileView.prototype.jumpToLastSearchResult): Ditto.
15153 (WebInspector.ProfileView.prototype.jumpToNextSearchResult): Ditto.
15154 (WebInspector.ProfileView.prototype.jumpToPreviousSearchResult): Ditto.
15155 (WebInspector.ProfileView.prototype.showingFirstSearchResult): Does what the function says.
15156 (WebInspector.ProfileView.prototype.showingLastSearchResult): Ditto.
15157 (WebInspector.ProfileView.prototype._jumpToSearchResult): Select and reveal the profile node.
15158 Expand all the ancestors first so the profile node will have a DataGridNode.
15159 (WebInspector.ProfileView.prototype._changeView): Perform the search again on the new tree.
15160 (WebInspector.ProfileDataGridNode.prototype.createCell): Add the highlight class to cells that
15161 have search matches.
15162 * page/inspector/ProfilesPanel.js:
15163 (WebInspector.ProfilesPanel.prototype.reset): Call searchCanceled and delete the currentQuery.
15164 (WebInspector.ProfilesPanel.prototype.showProfile): Use profileViewForProfile.
15165 (WebInspector.ProfilesPanel.prototype.showView): Call showProfile. Used by Panel to show a view.
15166 (WebInspector.ProfilesPanel.prototype.profileViewForProfile): Create the ProfileView if needed.
15167 (WebInspector.ProfilesPanel.prototype.closeVisibleView): Renamed visibleProfileView to visibleView.
15168 (WebInspector.ProfilesPanel.prototype.get searchableViews): Return all the views.
15169 (WebInspector.ProfilesPanel.prototype.searchMatchFound): Update the sidebar search matches.
15170 (WebInspector.ProfilesPanel.prototype.searchCanceled): Clear all the sidebar search matches.
15171 (WebInspector.ProfileSidebarTreeElement.prototype.set searchMatches): Set the class and bubbleText.
15172 * page/inspector/inspector.css: New style rules for the cell highlight color.
15173
151742008-09-23 Timothy Hatcher <timothy@apple.com>
15175
timothy@apple.com33c28442008-09-24 02:08:39 +000015176 Adds search support to the Resources and Scripts panels.
15177
15178 https://bugs.webkit.org/show_bug.cgi?id=21005
15179
15180 Reviewed by Oliver Hunt.
15181
15182 * page/inspector/Images/searchSmallBlue.png: Added.
15183 * page/inspector/Images/searchSmallBrightBlue.png: Added.
15184 * page/inspector/Images/searchSmallGray.png: Added.
15185 * page/inspector/Images/searchSmallWhite.png: Added.
15186 * page/inspector/ResourceView.js:
15187 (WebInspector.ResourceView.prototype.attach): Attempt to attach to "resource-views"
15188 or "script-resource-views" since one might not be created yet.
15189 * page/inspector/ResourcesPanel.js:
15190 (WebInspector.ResourcesPanel.prototype.show): Hide any views that are visible that
15191 are not this panel's current visible view. This can happen when a ResourceView is
15192 visible in the Scripts panel then switched to the this panel.
15193 (WebInspector.ResourcesPanel.prototype.get searchableViews): Return all views, with the
15194 visibleView first.
15195 (WebInspector.ResourcesPanel.prototype.searchResultsSortFunction): Return a sort function
15196 that uses the current graph search function. So cycling through results will be in the order
15197 things appear in the sidebar.
15198 (WebInspector.ResourcesPanel.prototype.searchMatchFound): Update the search matches on the
15199 resource's sidebar tree element.
15200 (WebInspector.ResourcesPanel.prototype.searchCanceled): Restore the error and warning bubbles
15201 in the sidebar. Calls the Panel prototype's searchCanceled.
15202 (WebInspector.ResourcesPanel.prototype.performSearch): Hide all the error and warning bubbles
15203 in the sidebar. Calls the Panel prototype's performSearch.
15204 (WebInspector.ResourcesPanel.prototype.reset): Call searchCanceled and delete the currentQuery.
15205 (WebInspector.ResourcesPanel.prototype.addMessageToResource): Don't call updateErrorsAndWarnings
15206 if there is a current search query.
15207 (WebInspector.ResourcesPanel.prototype.clearMessages): Ditto.
15208 (WebInspector.ResourcesPanel.prototype.recreateViewForResourceIfNeeded): Ditto.
15209 (WebInspector.ResourcesPanel.prototype.showView): Call showResource. Used by Panel to show a view.
15210 (WebInspector.ResourceSidebarTreeElement.prototype.resetBubble): Clear all the classes and content.
15211 (WebInspector.ResourceSidebarTreeElement.prototype.set searchMatches): Set the bubbleText and class.
15212 (WebInspector.ResourceSidebarTreeElement.prototype.updateErrorsAndWarnings): Call resetBubble.
15213 * page/inspector/ScriptView.js:
15214 (WebInspector.ScriptView): Set _sourceFrameSetup to flase.
15215 (WebInspector.ScriptView.prototype.hide): Reset _currentSearchResultIndex to -1. So the next time
15216 it will start at the first result.
15217 (WebInspector.ScriptView.prototype.setupSourceFrameIfNeeded): Add an event listener for "syntax
15218 highlighting complete".
15219 (WebInspector.ScriptView.prototype): Share many methods with SourceView.
15220 * page/inspector/ScriptsPanel.js:
15221 (WebInspector.ScriptsPanel.prototype.show): Hide any views that are visible that are not this
15222 This can happen when a ResourceView is visible in the Resources panel then switched to the this panel.
15223 (WebInspector.ScriptsPanel.prototype.get searchableViews): Return all views, with the visibleView first.
15224 (WebInspector.ScriptsPanel.prototype.reset): Call searchCanceled and delete the currentQuery.
15225 (WebInspector.ScriptsPanel.prototype.showView): Call _showScriptOrResource. Used by Panel to show a view.
15226 (WebInspector.ScriptsPanel.prototype._sourceViewForScriptOrResource): Added helper.
15227 * page/inspector/SourceFrame.js:
15228 (WebInspector.SourceFrame.prototype.syntaxHighlightJavascript): Dispatch a "syntax highlighting complete" event.
15229 * page/inspector/SourceView.js:
15230 (WebInspector.SourceView.prototype.hide):
15231 (WebInspector.SourceView.prototype.detach):
15232 (WebInspector.SourceView.prototype._resourceLoadingFinished): Moved from the bottom of the file.
15233 (WebInspector.SourceView.prototype._addBreakpoint): Ditto.
15234 (WebInspector.SourceView.prototype.searchCanceled): Delete search properties.
15235 (WebInspector.SourceView.prototype.performSearch): Search the frame if it is loaded, otherwise
15236 store the worker function as _delayedFindSearchMatches and call it later in _sourceFrameSetupFinished.
15237 (WebInspector.SourceView.prototype.jumpToFirstSearchResult):
15238 (WebInspector.SourceView.prototype.jumpToLastSearchResult):
15239 (WebInspector.SourceView.prototype.jumpToNextSearchResult):
15240 (WebInspector.SourceView.prototype.jumpToPreviousSearchResult):
15241 (WebInspector.SourceView.prototype.showingFirstSearchResult):
15242 (WebInspector.SourceView.prototype.showingLastSearchResult):
15243 (WebInspector.SourceView.prototype._jumpToSearchResult): Selects the found Range.
15244 (WebInspector.SourceView.prototype._sourceFrameSetupFinished): Calls _delayedFindSearchMatches.
15245 (WebInspector.SourceView.prototype._syntaxHighlightingComplete): Call _sourceFrameSetupFinished.
15246 * page/inspector/inspector.css:
15247
152482008-09-23 Timothy Hatcher <timothy@apple.com>
15249
timothy@apple.com18950ed2008-09-24 02:08:32 +000015250 Rename some properties of ResourcesPanel and ScriptsPanel to be the same,
15251 so future code can be shared.
15252
15253 https://bugs.webkit.org/show_bug.cgi?id=21005
15254
15255 Reviewed by Oliver Hunt.
15256
15257 * page/inspector/ResourcesPanel.js: Renamed resourceViews to viewsContainerElement.
15258 And visibleResourceView to visibleView.
15259 * page/inspector/ScriptsPanel.js: Renamed scriptResourceViews to viewsContainerElement.
15260
152612008-09-23 Timothy Hatcher <timothy@apple.com>
15262
timothy@apple.comcb23f4a2008-09-24 02:08:27 +000015263 Highlight all matched search results in the Elements panel DOM tree.
15264
15265 https://bugs.webkit.org/show_bug.cgi?id=21005
15266
15267 Reviewed by Oliver Hunt.
15268
15269 * page/inspector/ElementsPanel.js:
15270 (WebInspector.ElementsPanel.prototype.searchCanceled): Clear the highlight
15271 on all previous search results.
15272 (WebInspector.ElementsPanel.prototype.performSearch): Set the hihglight
15273 on all new search results.
15274 * page/inspector/ElementsTreeOutline.js:
15275 (WebInspector.ElementsTreeElement): Delay setting the title until onattach.
15276 (WebInspector.ElementsTreeElement.prototype.get/set highlighted): Sets or removes
15277 the highlighted class on the listItemElement.
15278 (WebInspector.ElementsTreeElement.prototype.onattach): Set the highlighted class
15279 if needed. Calls _updateTitle.
15280 (WebInspector.ElementsTreeElement.prototype._updateTitle): Adds a span with the highlight
15281 class so it can be styled when the highlighted class is present.
15282 * page/inspector/inspector.css: New style rules for the hihglight.
15283
152842008-09-23 Timothy Hatcher <timothy@apple.com>
15285
timothy@apple.com574c0522008-09-24 02:08:19 +000015286 Add search support to the Elements panel.
15287
15288 https://bugs.webkit.org/show_bug.cgi?id=21005
15289
15290 Reviewed by Oliver Hunt.
15291
15292 * page/inspector/ElementsPanel.js:
15293 (WebInspector.ElementsPanel.prototype.searchCanceled): Call updateSearchMatchesCount
15294 with a 0 match count to rest. Reset the other search properties.
15295 (WebInspector.ElementsPanel.prototype.performSearch): Evaluates the search as an XPath
15296 query and a CSS selector on all the Documents in the page. Remembers the found nodes
15297 and avoids duplicates. Focuses the first result.
15298 (WebInspector.ElementsPanel.prototype.jumpToNextSearchResult): Focuses the next result.
15299 (WebInspector.ElementsPanel.prototype.jumpToPreviousSearchResult): Focuses the previous result.
15300
153012008-09-23 Timothy Hatcher <timothy@apple.com>
15302
timothy@apple.com82d233c2008-09-24 02:08:15 +000015303 Add support to Panel that allows easy searching of sub-views.
15304
15305 https://bugs.webkit.org/show_bug.cgi?id=21005
15306
15307 Reviewed by Oliver Hunt.
15308
15309 * page/inspector/Panel.js:
15310 (WebInspector.Panel.prototype.searchCanceled): Call searchCanceled on all the
15311 views in the search results and delete the currentQuery property. Call
15312 WebInspector.updateSearchMatchesCount wit ha 0 match count to rest. Reset the
15313 other search properties.
15314 (WebInspector.Panel.prototype.performSearch): Call searchCanceled since it will
15315 reset everything we need before doing a new search. Get an array of searchableViews
15316 from the panel, implemented by sub-classes. Iterate over the views one-by-one
15317 with an interval to prevent blocking the UI for large lists of searchableViews.
15318 This keeps the interface really responsive. Pass a finishedCallback function to
15319 the performSearch on each view so it can notify the panel of results.
15320 (WebInspector.Panel.prototype.jumpToNextSearchResult): Finds the index in the
15321 searchResults of the visibleView, so we know where in the results we are.
15322 This is done every time incase the user manually navigates to a new view.
15323 If the view is showing the last result, jump to the next view and show it's
15324 first result. Otherwise jump to the next result in the current view.
15325 (WebInspector.Panel.prototype.jumpToPreviousSearchResult): Ditto, but in reverse.
15326
153272008-09-23 Timothy Hatcher <timothy@apple.com>
15328
timothy@apple.comc8cfd5e2008-09-24 02:08:11 +000015329 Add support for asking the current panel to perform a search, find next/previous and clear.
15330 A search is performed on the new new current panel when switching between panels. The search
15331 label/placeholder in the toolbar now includes the panel name to make it clear that panel will
15332 be searched. The search field contents are selected when Command/Control-F or Enter/Return
15333 is pressed, so the user can easily type an entirely new query. The search match count shows
15334 up in the toolbar next to the search field.
15335
15336 Also changed:
15337 * Rename lastQuery to currentQuery since it better matches the truth.
15338 * Set the search field "results" attribute to zero since results arn't saved for
15339 how we use the search field.
15340 * Make repeated presses of the Return key jump to the next search result instead
15341 of doing nothing.
15342 * Increased the search field width.
15343
15344 https://bugs.webkit.org/show_bug.cgi?id=21005
15345
15346 Reviewed by Oliver Hunt.
15347
15348 * English.lproj/localizedStrings.js: New strings.
15349 * page/inspector/inspector.css: New styles.
15350 * page/inspector/inspector.html: Add the search-results-matches element. Add the
15351 incremental attribute to the search field and set the results attribute to zero.
15352 * page/inspector/inspector.js:
15353 (WebInspector.set currentPanel): perform the search on the new panel.
15354 (WebInspector.loaded): Change the event listeners and remove code that changes
15355 the search label text.
15356 (WebInspector.documentKeyDown): Add support for Command/Control-G and
15357 Command/Control-Shift-G. To jump to the next and previous search results.
15358 (WebInspector.updateSearchLabel): Added. Update the search placeholder/label.
15359 This does different things depending on the attached state.
15360 (WebInspector.searchKeyDown): Call preventDefault since this was the Enter key.
15361 This prevents a "search" event from firing for key down. We handle the Enter key
15362 on key up in searchKeyUp. This stops performSearch from being called twice in a row.
15363 (WebInspector.searchKeyUp): Calls performSearch when it is the Enter key.
15364 (WebInspector.performSearch): Delete the currentQuery property and call searchCanceled
15365 on all the panels. Call jumpToNextSearchResult when this is the same query or a forced search.
15366 Call updateSearchMatchesCount to reset the matches count in the toolbar.
15367 (WebInspector.updateSearchMatchesCount): Added. Updates the matches count in the toolbar.
15368
153692008-09-23 Timothy Hatcher <timothy@apple.com>
15370
timothy@apple.com1d5227a2008-09-24 02:08:01 +000015371 Remove the previous Inspector search code to make room for the new stuff.
15372
15373 https://bugs.webkit.org/show_bug.cgi?id=21005
15374
15375 Reviewed by Oliver Hunt.
15376
15377 * page/inspector/inspector.css:
15378 * page/inspector/inspector.html:
15379 * page/inspector/inspector.js:
15380 (WebInspector.get/set showingSearchResults): Removed.
15381 (WebInspector.searchResultsKeyDown): Removed.
15382 (WebInspector.searchResultsResizerDragStart): Removed.
15383 (WebInspector.searchResultsResizerDragEnd): Removed.
15384 (WebInspector.searchResultsResizerDrag): Removed.
15385 (WebInspector.performSearch): Removed searching parts.
15386
153872008-09-23 Timothy Hatcher <timothy@apple.com>
15388
timothy@apple.com5e915b722008-09-24 02:07:56 +000015389 Use the Array.remove helper function in more places.
15390
15391 https://bugs.webkit.org/show_bug.cgi?id=21037
15392
15393 Reviewed by Kevin McCullough.
15394
15395 * page/inspector/ResourceCategory.js:
15396 (WebInspector.ResourceCategory.prototype.removeResource): Use Array.remove.
15397 * page/inspector/ResourcesPanel.js:
15398 (WebInspector.ResourcesPanel.prototype.removeResource): Ditto.
15399 * page/inspector/inspector.js:
15400 (WebInspector.removeResource): Ditto.
15401
154022008-09-23 Timothy Hatcher <timothy@apple.com>
15403
timothy@apple.com3e116f12008-09-24 02:07:50 +000015404 Fixes a bug where inspecting a node after reloading the page
15405 would not reveal the node in the DOM tree. The TreeOutline
15406 was not being told to forget decendants of a removed child.
15407 So old TreeElements would be found that are not in the tree.
15408
15409 https://bugs.webkit.org/show_bug.cgi?id=21036
15410
15411 Reviewed by Kevin McCullough.
15412
15413 * page/inspector/treeoutline.js:
15414 (TreeOutline._removeChildAtIndex): Call _forgetChildrenRecursive
15415 in addition to _forgetTreeElement.
15416 (TreeOutline._removeChildren): Call _forgetChildrenRecursive
15417 in addition to _forgetTreeElement.
15418 (TreeOutline._rememberTreeElement): Use Array.indexOf to quickly
15419 search for known elements.
15420 (TreeOutline._forgetTreeElement): Use Array.remove to remove elements.
15421 (TreeOutline._forgetChildrenRecursive): Recursively traverse the
15422 descendants and call _forgetTreeElement.
15423 * page/inspector/utilities.js:
15424 (Array.prototype.remove): Speed up this function by using Array.indexOf
15425 when onlyFirst is true.
15426
154272008-09-23 Timothy Hatcher <timothy@apple.com>
15428
timothy@apple.com2e9f2ff2008-09-24 02:07:45 +000015429 Fixes a bug where inspecting some short text nodes does
15430 not reveal them in the Elements panel DOM tree.
15431
15432 https://bugs.webkit.org/show_bug.cgi?id=21035
15433
15434 Reviewed by Oliver Hunt.
15435
15436 * page/inspector/ElementsTreeOutline.js:
15437 (WebInspector.ElementsTreeOutline.prototype.set focusedDOMNode):
15438 The revealAndSelectNode() method might find a different element
15439 if there is inlined text, and the select() call would change the
15440 focusedDOMNode and reenter this setter. So to avoid calling
15441 focusedNodeChanged() twice, first check if _focusedDOMNode is
15442 the same node as the one passed in.
15443 (WebInspector.ElementsTreeOutline.prototype.update): Remove use of
15444 this.treeOutline, since this is the TreeOutline.
15445 (WebInspector.ElementsTreeOutline.prototype.findTreeElement): Added.
15446 Provides default functions for isAncestor, getParet and equal.
15447 Calls the base protoype's findTreeElement. If that returns null
15448 and the node is a text node, try finding it's parent.
15449 (WebInspector.ElementsTreeOutline.prototype.revealNode): Removed.
15450 Renamed to revealAndSelectNode.
15451 (WebInspector.ElementsTreeOutline.prototype.revealAndSelectNode):
15452 Selects and reveals the node passed in. Use the simple findTreeElement.
15453 (WebInspector.ElementsTreeOutline.prototype._treeElementFromEvent):
15454 Remove use of this.treeOutline, since this is the TreeOutline.
15455
154562008-09-23 Timothy Hatcher <timothy@apple.com>
15457
timothy@apple.combffde042008-09-24 02:07:39 +000015458 Fixes an exception that happened when removing a Resource
15459 from the ResourcesPanel.
15460
15461 https://bugs.webkit.org/show_bug.cgi?id=21034
15462
15463 Reviewed by Kevin McCullough.
15464
15465 * page/inspector/ResourcesPanel.js:
15466 (WebInspctor.ResourcesPanel.prototype.removeResource):
15467 Remove the graphElement.
15468
kmccullough@apple.com70d32f22008-09-24 01:18:31 +0000154692008-09-23 Kevin McCullough <kmccullough@apple.com>
15470
15471 Fixed "Time" to "Tim"
15472
15473 * ChangeLog:
15474
zimmermann@webkit.org718a2232008-09-24 01:00:42 +0000154752008-09-23 Nikolas Zimmermann <zimmermann@kde.org>
15476
15477 Reviewed by Oliver.
15478
15479 Move mapInstanceToElement/removeInstanceMapping/instancesForElement
15480 from SVGDocumentExtensions to SVGElement. It's more useful to store
15481 the list of SVGElementInstances per SVGElement, instead of using
15482 a document-wide hash for this purpose.
15483
15484 * svg/SVGAnimateMotionElement.cpp:
15485 (WebCore::SVGAnimateMotionElement::applyResultsToTarget):
15486 * svg/SVGAnimateTransformElement.cpp:
15487 (WebCore::SVGAnimateTransformElement::applyResultsToTarget):
15488 * svg/SVGAnimationElement.cpp:
15489 (WebCore::SVGAnimationElement::setTargetAttributeAnimatedValue):
15490 * svg/SVGDocumentExtensions.cpp:
15491 (WebCore::SVGDocumentExtensions::~SVGDocumentExtensions):
15492 * svg/SVGDocumentExtensions.h:
15493 * svg/SVGElement.cpp:
15494 (WebCore::SVGElement::mapInstanceToElement):
15495 (WebCore::SVGElement::removeInstanceMapping):
15496 (WebCore::SVGElement::instancesForElement):
15497 * svg/SVGElement.h:
15498 * svg/SVGElementInstance.cpp:
15499 (WebCore::SVGElementInstance::SVGElementInstance):
15500 (WebCore::SVGElementInstance::~SVGElementInstance):
15501 (WebCore::SVGElementInstance::updateAllInstancesOfElement):
15502 * svg/SVGElementInstance.h:
15503 * svg/SVGStyledElement.cpp:
15504 (WebCore::SVGStyledElement::svgAttributeChanged):
15505 (WebCore::SVGStyledElement::childrenChanged):
15506 * svg/SVGStyledElement.h:
15507
kevino@webkit.org706ea432008-09-24 00:53:56 +0000155082008-09-23 Kevin Ollivier <kevino@theolliviers.com>
15509
15510 wx build fix.
15511
15512 * WebCoreSources.bkl:
15513
zimmermann@webkit.org97c71082008-09-24 00:23:28 +0000155142008-09-23 Nikolas Zimmermann <zimmermann@kde.org>
15515
15516 Rubber stamped by Sam.
15517
15518 Move code from EventTarget to EventTargetNode.
15519
15520 I refactored most parts to live in EventTarget, a year ago,
15521 though the implementation of EventTargetSVGElementInstance is
15522 done in another way, that obsoletes this.
15523
15524 * dom/Document.cpp:
15525 (WebCore::Document::addListenerTypeIfNeeded):
15526 * dom/Document.h:
15527 * dom/EventTarget.cpp:
15528 * dom/EventTarget.h:
15529 (WebCore::allowEventDispatch):
15530 * dom/EventTargetNode.cpp:
15531 (WebCore::EventTargetNode::insertedIntoDocument):
15532 (WebCore::EventTargetNode::removedFromDocument):
15533 (WebCore::EventTargetNode::willMoveToNewOwnerDocument):
15534 (WebCore::EventTargetNode::didMoveToNewOwnerDocument):
15535 (WebCore::EventTargetNode::addEventListener):
15536 (WebCore::EventTargetNode::removeEventListener):
15537 (WebCore::EventTargetNode::removeAllEventListeners):
15538 (WebCore::EventTargetNode::handleLocalEvents):
15539 (WebCore::setCurrentEventTargetRespectingSVGTargetRules):
15540 (WebCore::EventTargetNode::dispatchEvent):
15541 (WebCore::EventTargetNode::dispatchGenericEvent):
15542 (WebCore::EventTargetNode::dispatchWindowEvent):
15543 (WebCore::EventTargetNode::removeEventListenerForType):
15544 * dom/EventTargetNode.h:
15545 * svg/EventTargetSVGElementInstance.cpp:
15546 (WebCore::EventTargetSVGElementInstance::dispatchEvent):
15547 * svg/SVGElement.cpp:
15548 (WebCore::SVGElement::sendSVGLoadEventIfPossible):
15549 * svg/SVGElement.h:
15550 (WebCore::SVGElement::supplementalTransform):
15551
hyatt@apple.com7c9fc6f2008-09-24 00:14:42 +0000155522008-09-23 Dave Hyatt <hyatt@apple.com>
15553
15554 Fix for bug 21012. The Aqua scrollbar was returning the wrong track rect on Windows Aqua theme. Make
15555 sure to not accidentally fall into the vertical scrollbar case for horizontal scrollbars. :)
15556
15557 Reviewed by Sam Weinig
15558
15559 * platform/mac/ScrollbarThemeMac.mm:
15560 (WebCore::ScrollbarThemeMac::trackRect):
15561 * platform/win/ScrollbarThemeSafari.cpp:
15562 (WebCore::ScrollbarTheme::nativeTheme):
15563 (WebCore::ScrollbarThemeSafari::trackRect):
15564
bdakin@apple.comaab5d692008-09-24 00:09:33 +0000155652008-09-23 Beth Dakin <bdakin@apple.com>
15566
15567 Reviewed by Sam Weinig.
15568
15569 Fix for https://bugs.webkit.org/show_bug.cgi?id=21041 "Add Contact"
15570 link at gmail does not support AXPress action
15571 and corresponding: <rdar://problem/6216178>
15572
15573 I fixed this bug by making AccessibilityObject::anchorElement
15574 support ARIA links.
15575
15576 * page/AccessibilityImageMapLink.cpp:
15577 (WebCore::AccessibilityImageMapLink::anchorElement):
15578 * page/AccessibilityImageMapLink.h:
15579 * page/AccessibilityObject.cpp:
15580 (WebCore::AccessibilityObject::anchorElement):
15581 * page/AccessibilityObject.h:
15582 (WebCore::AccessibilityObject::isNativeAnchor):
15583 * page/AccessibilityRenderObject.cpp:
15584 (WebCore::AccessibilityRenderObject::isNativeAnchor):
15585 (WebCore::AccessibilityRenderObject::anchorElement):
15586 (WebCore::AccessibilityRenderObject::internalLinkElement):
15587 (WebCore::AccessibilityRenderObject::url):
15588 * page/AccessibilityRenderObject.h:
15589 * page/mac/AccessibilityObjectWrapper.mm:
15590 (AXLinkElementForNode):
15591
kmccullough@apple.com58f6b182008-09-24 00:05:34 +0000155922008-09-23 Kevin McCullough <kmccullough@apple.com>
15593
kmccullough@apple.com70d32f22008-09-24 01:18:31 +000015594 Reviewed by Tim and Oliver.
kmccullough@apple.com58f6b182008-09-24 00:05:34 +000015595
15596 Bug 20949: Catch repeated messages in Inspector Controller to limit
15597 memory usage
15598 - Store the repeat count in the Console Message object, in the
15599 Inspector Controller and JS ConsoleMessage object.
15600
15601 * page/InspectorController.cpp:
15602 (WebCore::ConsoleMessage::ConsoleMessage):
15603 (WebCore::ConsoleMessage::operator==):
15604 (WebCore::InspectorController::InspectorController):
15605 (WebCore::InspectorController::addConsoleMessage):
15606 (WebCore::InspectorController::addScriptConsoleMessage):
15607 * page/InspectorController.h:
15608 * page/inspector/Console.js:
15609 * page/inspector/Resource.js:
15610 * page/inspector/ResourcesPanel.js:
15611 * page/inspector/SourceFrame.js:
15612
zimmermann@webkit.org29d22032008-09-23 23:44:20 +0000156132008-09-23 Nikolas Zimmermann <zimmermann@kde.org>
15614
15615 Reviewed by Eric.
15616
15617 Working on proper EventTarget support for SVGElementInstance.
15618
15619 Add new EventTargetSVGElementInstance class, and it's corresponding JS wrapper.
15620 Finally JSEventTargetBase, is actually used for another class than JSEventTargetnode.
15621
15622 Remove EventTarget inheritance from SVGElementInstance, and the manual "TreeShared"
15623 implementation. Let it use TreeShared directly.
15624
15625 It's not activated so far (SVGUseElement still creating SVGElementInstance objects).
15626 The transition to EventTargetSVGElementInstance will be done in a few individual patches.
15627
15628 * GNUmakefile.am:
15629 * WebCore.pro:
15630 * WebCore.vcproj/WebCore.vcproj:
15631 * WebCore.xcodeproj/project.pbxproj:
15632 * bindings/js/JSEventTargetBase.cpp:
15633 (WebCore::retrieveEventTargetAndCorrespondingNode):
15634 (WebCore::toJS):
15635 * bindings/js/JSEventTargetBase.h:
15636 * bindings/js/JSEventTargetSVGElementInstance.cpp: Added.
15637 (WebCore::):
15638 (WebCore::JSEventTargetSVGElementInstance::JSEventTargetSVGElementInstance):
15639 (WebCore::JSEventTargetSVGElementInstance::createPrototype):
15640 (WebCore::JSEventTargetSVGElementInstance::setListener):
15641 (WebCore::JSEventTargetSVGElementInstance::getListener):
15642 (WebCore::toEventTargetSVGElementInstance):
15643 * bindings/js/JSEventTargetSVGElementInstance.h: Added.
15644 (WebCore::JSEventTargetSVGElementInstance::prototypeClassName):
15645 (WebCore::JSEventTargetSVGElementInstance::getOwnPropertySlot):
15646 (WebCore::JSEventTargetSVGElementInstance::getValueProperty):
15647 (WebCore::JSEventTargetSVGElementInstance::put):
15648 (WebCore::JSEventTargetSVGElementInstance::putValueProperty):
15649 * bindings/js/JSSVGElementInstanceCustom.cpp: Added.
15650 (WebCore::toJS):
15651 * bindings/objc/DOM.mm:
15652 (+[DOMNode _wrapEventTarget:WebCore::]):
15653 (-[DOMSVGElementInstance _initWithSVGElementInstance:WebCore::]):
15654 (+[DOMSVGElementInstance _wrapSVGElementInstance:WebCore::]):
15655 (+[DOMSVGElementInstance _wrapEventTarget:WebCore::]):
15656 (-[DOMSVGElementInstance WebCore::]):
15657 (-[DOMSVGElementInstance addEventListener:listener:useCapture:]):
15658 (-[DOMSVGElementInstance addEventListener:::]):
15659 (-[DOMSVGElementInstance removeEventListener:listener:useCapture:]):
15660 (-[DOMSVGElementInstance removeEventListener:::]):
15661 (-[DOMSVGElementInstance dispatchEvent:]):
15662 * bindings/objc/DOMEvents.h:
15663 * bindings/scripts/CodeGeneratorJS.pm:
15664 * bindings/scripts/CodeGeneratorObjC.pm:
15665 * svg/EventTargetSVGElementInstance.cpp: Added.
15666 (WebCore::EventTargetSVGElementInstance::EventTargetSVGElementInstance):
15667 (WebCore::EventTargetSVGElementInstance::~EventTargetSVGElementInstance):
15668 (WebCore::EventTargetSVGElementInstance::addEventListener):
15669 (WebCore::EventTargetSVGElementInstance::removeEventListener):
15670 (WebCore::EventTargetSVGElementInstance::dispatchEvent):
15671 * svg/EventTargetSVGElementInstance.h: Added.
15672 (WebCore::EventTargetSVGElementInstance::isEventTargetSVGElementInstance):
15673 (WebCore::EventTargetSVGElementInstance::toNode):
15674 (WebCore::EventTargetSVGElementInstance::toSVGElementInstance):
15675 (WebCore::EventTargetSVGElementInstance::refEventTarget):
15676 (WebCore::EventTargetSVGElementInstance::derefEventTarget):
15677 (WebCore::EventTargetSVGElementInstanceCast):
15678 * svg/SVGElement.cpp:
15679 (WebCore::SVGElement::dispatchEvent):
15680 * svg/SVGElementInstance.cpp:
15681 (WebCore::SVGElementInstance::SVGElementInstance):
15682 (WebCore::SVGElementInstance::~SVGElementInstance):
15683 * svg/SVGElementInstance.h:
15684 (WebCore::SVGElementInstance::isEventTargetSVGElementInstance):
15685 * svg/SVGElementInstance.idl:
15686
mitz@apple.come47c5af2008-09-23 21:47:54 +0000156872008-09-23 Dan Bernstein <mitz@apple.com>
15688
15689 Reviewed by Dave Hyatt.
15690
15691 - https://bugs.webkit.org/show_bug.cgi?id=21040
15692 Pass NULL instead of the identity matrix to CTFontCreateWithGraphicsFont()
15693
15694 * platform/graphics/mac/SimpleFontDataMac.mm:
15695 (WebCore::SimpleFontData::getCTFont):
15696
hyatt@apple.com6e6bd8e2008-09-23 21:43:37 +0000156972008-09-23 David Hyatt <hyatt@apple.com>
15698
15699 https://bugs.webkit.org/show_bug.cgi?id=21039
15700
15701 Teach the viewless Mac scrollbar how to avoid NSWindow's resizer.
15702
15703 Reviewed by Sam Weinig
15704
15705 * platform/ScrollView.h:
15706 * platform/Scrollbar.cpp:
15707 (WebCore::Scrollbar::setFrameGeometry):
15708 * platform/Scrollbar.h:
15709 * platform/Widget.cpp:
15710 (WebCore::Widget::convertFromContainingWindow):
15711 * platform/Widget.h:
15712 * platform/mac/ScrollViewMac.mm:
15713 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
15714 (WebCore::ScrollView::ScrollView):
15715 (WebCore::ScrollView::~ScrollView):
15716 (WebCore::ScrollView::windowResizerRect):
15717 (WebCore::ScrollView::resizerOverlapsContent):
15718 (WebCore::ScrollView::adjustOverlappingScrollbarCount):
15719 (WebCore::ScrollView::setParent):
15720 * platform/mac/WidgetMac.mm:
15721 (WebCore::Widget::convertFromContainingWindow):
15722
jmalonzo@webkit.orge5598ad2008-09-23 21:33:21 +0000157232008-09-23 Dirk Schulze <vbs85@gmx.de>
15724
15725 Reviewed by Darin Adler. Landed by Jan Alonzo.
15726
15727 Added support for getImageData() and putImageData()
15728 to Cairo.
15729
15730 [CAIRO] needs getImageData and putImageData support
15731 https://bugs.webkit.org/show_bug.cgi?id=20838
15732
15733 * platform/graphics/cairo/ImageBufferCairo.cpp:
15734 (WebCore::ImageBuffer::ImageBuffer):
15735 (WebCore::ImageBuffer::getImageData):
15736 (WebCore::ImageBuffer::putImageData):
15737
jmalonzo@webkit.orgfb939412008-09-23 21:07:50 +0000157382008-09-23 Marco Barisione <marco.barisione@collabora.co.uk>
15739
15740 Reviewed by Holger Freyther.
15741
15742 http://bugs.webkit.org/show_bug.cgi?id=18987
15743 [GTK] Implement SharedBuffer::createWithContentsOfFile and
15744 KURL::fileSystemPath
15745
15746 * GNUmakefile.am: Add KURLGtk.cpp and SharedBufferGtk.cpp.
15747 * platform/gtk/KURLGtk.cpp: Added.
15748 (WebCore::KURL::fileSystemPath): Implemented.
15749 * platform/gtk/SharedBufferGtk.cpp: Added.
15750 (WebCore::SharedBuffer::createWithContentsOfFile): Implemented.
15751 * platform/gtk/TemporaryLinkStubs.cpp: Remove the old stubs.
15752
ap@webkit.org198304c2008-09-23 16:34:41 +0000157532008-09-23 Alexey Proskuryakov <ap@webkit.org>
15754
ap@webkit.orgccfa60a2008-09-23 20:39:22 +000015755 Reviewed by Oliver Hunt, okayed by Darin Adler.
15756
15757 <rdar://problem/5575547> REGRESSION: ATOK has no phrase boundary on Safari/Mail.app
15758
15759 * rendering/InlineTextBox.cpp:
15760 (WebCore::InlineTextBox::paintCompositionUnderline): Add 2 pixel spacing between clauses.
15761
157622008-09-23 Alexey Proskuryakov <ap@webkit.org>
15763
ap@webkit.org198304c2008-09-23 16:34:41 +000015764 Reviewed by Darin Adler.
15765
15766 https://bugs.webkit.org/show_bug.cgi?id=21023
15767 Don't use TEC for encodings supported by ICU
15768
15769 * platform/text/mac/mac-encodings.txt: Removed x-mac-centraleurroman, x-mac-cyrillic,
15770 x-mac-greek, and x-mac-turkish.
15771
15772 * platform/text/TextCodecICU.cpp: (WebCore::TextCodecICU::registerExtendedEncodingNames):
15773 Register aliases for these encodings that are not registered automatically; updated comments.
15774
mjs@apple.coma6dc93d2008-09-23 07:46:55 +0000157752008-09-23 Maciej Stachowiak <mjs@apple.com>
15776
15777 Reviewed by Darin.
15778
15779 - speed up instanceof some more
15780 https://bugs.webkit.org/show_bug.cgi?id=20818
15781
15782 ~2% speedup on EarleyBoyer
15783
15784 (WebCore updates.)
15785
15786 * bindings/js/JSQuarantinedObjectWrapper.h:
15787 (WebCore::JSQuarantinedObjectWrapper::createStructureID):
15788
oliver@apple.combc10aae2008-09-23 07:40:49 +0000157892008-09-22 Darin Adler <darin@apple.com>
15790
15791 Reviewed by Oliver Hunt.
15792
15793 - fix https://bugs.webkit.org/show_bug.cgi?id=21008
15794 getting pixels by index from CanvasPixelArray is unnecessarily slow
15795
15796 * GNUmakefile.am: Added JSCanvasPixelArrayCustom.h.
15797 * WebCore.vcproj/WebCore.vcproj: Ditto.
15798 * WebCore.xcodeproj/project.pbxproj: Ditto.
15799
15800 * bindings/js/JSCanvasPixelArrayCustom.cpp: Removed indexGetter and
15801 indexSetter. These are now both inlined, so in the header.
15802 * bindings/js/JSCanvasPixelArrayCustom.h: Added. The getByIndex
15803 function is what's used for HasCustomIndexGetter. Also moved the
15804 indexSetter function here.
15805
15806 * bindings/scripts/CodeGeneratorJS.pm: Changed HasCustomIndexGetter
15807 to use a getByIndex member function rather than an indexGetter static
15808 member function in a property slot. This lets us avoid the property
15809 slot mechanism's rule where it turns numeric property names into
15810 strings in the identifier table, which is good because that's slow.
15811 Also added a new property CustomHeader that allows IDL files to
15812 introduce headers to be included -- useful when we have functions
15813 that we want to inline into the binding.
15814
15815 * html/CanvasPixelArray.idl: Added CustomHeader attribute.
15816
eric@webkit.org924a2d32008-09-23 07:04:11 +0000158172008-09-23 Eric Seidel <eric@webkit.org>
15818
15819 No review, build fix only.
eric@webkit.org8d2a21a2008-09-23 07:23:14 +000015820
15821 Another blind stab in the dark.
15822
15823 * svg/graphics/cg/SVGResourceClipperCg.cpp: Add missing header.
15824
158252008-09-23 Eric Seidel <eric@webkit.org>
15826
15827 No review, build fix only.
eric@webkit.org924a2d32008-09-23 07:04:11 +000015828
15829 Third time's the charm, eh? My local build is sadly still not done...
15830
15831 * platform/graphics/AffineTransform.cpp: remove extra &
15832 * platform/graphics/AffineTransform.h: remove extra &
15833
eric@webkit.orgf394f462008-09-23 06:38:10 +0000158342008-09-22 Eric Seidel <eric@webkit.org>
15835
15836 No review, build fix only.
15837
eric@webkit.orgf9212312008-09-23 06:47:51 +000015838 * platform/graphics/AffineTransform.cpp: remove extra ;
15839
158402008-09-22 Eric Seidel <eric@webkit.org>
15841
15842 No review, build fix only.
15843
eric@webkit.orgf394f462008-09-23 06:38:10 +000015844 Speculative fix for the build while I wait for my compile to finish.
15845
15846 * platform/graphics/AffineTransform.cpp:
15847
eric@webkit.org10583212008-09-23 06:05:59 +0000158482008-09-22 Dirk Schulze <vbs85@gmx.de>
15849
15850 Reviewed by eseidel. Landed by eseidel.
15851
15852 Moved makeMapBetweenRects from SVG/CG to AffineTransform
15853 Make SVGResourceClipper::applyClip more cross-platform
15854
15855 * platform/graphics/AffineTransform.cpp:
15856 * platform/graphics/AffineTransform.h:
15857 * svg/graphics/cg/CgSupport.cpp:
15858 * svg/graphics/cg/CgSupport.h:
15859 * svg/graphics/cg/SVGPaintServerGradientCg.cpp:
15860 (WebCore::SVGPaintServerGradient::handleBoundingBoxModeAndGradientTransformation):
15861 * svg/graphics/cg/SVGResourceClipperCg.cpp:
15862 (WebCore::SVGResourceClipper::applyClip):
15863
alp@webkit.orgfaa63e42008-09-23 03:08:57 +0000158642008-09-22 Alp Toker <alp@nuanti.com>
15865
15866 Reviewed by David Hyatt.
15867
15868 https://bugs.webkit.org/show_bug.cgi?id=16331
15869 [Gtk] no focus when button/checkbox/radiobutton clicked, only when tabbed
15870
15871 Obey GTK+ focusing conventions for controls and anchor elements.
15872
15873 It could be interesting to push these decisions up to Settings or
15874 ChromeClient some day but this gets things working.
15875
15876 Right and middle click events still need some work to match GTK+
15877 conventions.
15878
15879 * html/HTMLAnchorElement.cpp:
15880 (WebCore::HTMLAnchorElement::isMouseFocusable):
15881 * html/HTMLFormControlElement.cpp:
15882 (WebCore::HTMLFormControlElement::isMouseFocusable):
15883 * page/EventHandler.cpp:
15884 (WebCore::EventHandler::sendContextMenuEvent):
15885
darin@apple.com4a266462008-09-23 01:24:31 +0000158862008-09-22 Darin Adler <darin@apple.com>
15887
15888 * page/mac/FrameMac.mm:
15889 (WebCore::Frame::baseWritingDirectionForSelectionStart): Fix indentation.
15890
weinig@apple.comb6a39b72008-09-23 01:19:56 +0000158912008-09-22 Sam Weinig <sam@webkit.org>
15892
15893 Reviewed by Dan Bernstein.
15894
15895 Patch for https://bugs.webkit.org/show_bug.cgi?id=21013
15896 Match Firefox in how we hide HTMLInputElement.selectionStart, selectionEnd
15897 and setSelectionRange. This also allows us to remove the legacy JSHTMLInputElementBase
15898 class!
15899
15900 - selectionStart, selectionEnd and setSelectionRange now are visible in iteration of
15901 non-selectable input types, but return undefined when accessed.
15902
15903 * DerivedSources.make:
15904 * GNUmakefile.am:
15905 * WebCore.pro:
15906 * WebCore.vcproj/WebCore.vcproj:
15907 * WebCore.xcodeproj/project.pbxproj:
15908 * WebCoreSources.bkl:
15909 * bindings/js/JSHTMLInputElementBase.cpp: Removed.
15910 * bindings/js/JSHTMLInputElementBase.h: Removed.
15911 * bindings/js/JSHTMLInputElementCustom.cpp: Added.
15912 (WebCore::JSHTMLInputElement::customGetOwnPropertySlot):
15913 (WebCore::JSHTMLInputElement::selectionStart):
15914 (WebCore::JSHTMLInputElement::selectionEnd):
15915 * bindings/js/JSHTMLInputElementCustom.h: Added.
15916 * html/HTMLInputElement.idl:
15917
mitz@apple.com895c54c2008-09-23 00:48:17 +0000159182008-09-22 Dan Bernstein <mitz@apple.com>
15919
15920 Reviewed by Sam Weinig.
15921
15922 - fix <rdar://problem/5699571> Mail: Unable to change writing direction to LTR in an empty message
15923
15924 Not testable in DumpRenderTree or in Safari
15925
15926 * page/mac/FrameMac.mm:
15927 (WebCore::Frame::baseWritingDirectionForSelectionStart): Account for the
15928 case that the selection start node is a block.
15929
hyatt@apple.com78083552008-09-22 22:17:40 +0000159302008-09-22 David Hyatt <hyatt@apple.com>
15931
15932 https://bugs.webkit.org/show_bug.cgi?id=21007
15933
15934 Make sure that the scrollbar gets sent a release event on platforms that call handleMouseDoubleClickEvent.
15935
15936 Reviewed by Sam Weinig
15937
15938 * page/EventHandler.cpp:
15939 (WebCore::EventHandler::handleMouseDoubleClickEvent):
15940
eric@webkit.orgb57170b2008-09-22 21:44:28 +0000159412008-09-22 Eric Seidel <eric@webkit.org>
15942
15943 No review, rollback only.
15944
15945 Roll out Peter's change (per his request)
15946 http://trac.webkit.org/changeset/36069
15947 https://bugs.webkit.org/show_bug.cgi?id=19663
15948 This change has been the source of numerous regressions
15949 (several of which were latent bugs revealed by this change,
15950 others were bugs in this change)
15951
15952 * platform/graphics/BitmapImage.cpp:
15953 (WebCore::BitmapImage::BitmapImage):
15954 (WebCore::BitmapImage::startAnimation):
15955 (WebCore::BitmapImage::advanceAnimation):
15956 * platform/graphics/BitmapImage.h:
15957 * platform/graphics/cairo/ImageCairo.cpp:
15958 (WebCore::BitmapImage::draw):
15959 * platform/graphics/cg/ImageCG.cpp:
15960 (WebCore::BitmapImage::draw):
15961 * platform/graphics/qt/ImageQt.cpp:
15962 (WebCore::BitmapImage::draw):
15963 * platform/graphics/wx/ImageWx.cpp:
15964 (WebCore::BitmapImage::draw):
15965
mitz@apple.comdc318202008-09-22 21:32:14 +0000159662008-09-22 Dan Bernstein <mitz@apple.com>
15967
15968 Reviewed by Sam Weinig.
15969
15970 - fix <rdar://problem/5158514> Switch the complex text code path to Core Text
15971
15972 Tests: platform/mac-snowleopard/fast/text/myanmar-shaping.html
15973 platform/mac-snowleopard/fast/text/thai-combining-mark-positioning.html
15974
15975 * config.h: Use Core Text if not building for Leopard or Tiger.
15976
hyatt@apple.com143e97c2008-09-22 21:03:02 +0000159772008-09-22 David Hyatt <hyatt@apple.com>
15978
15979 https://bugs.webkit.org/show_bug.cgi?id=21006
15980
15981 Add code that paints an NSView-less scroller using HIThemeDrawTrack. This scrollbar is still not
15982 switched on. There are still a few more refinements to make to the rendering and behavior.
15983
15984 Reviewed by Darin Adler
15985
15986 * platform/ScrollbarThemeComposite.cpp:
15987 (WebCore::ScrollbarThemeComposite::paint):
15988 * platform/ScrollbarThemeComposite.h:
15989 (WebCore::ScrollbarThemeComposite::paintTrack):
15990 (WebCore::ScrollbarThemeComposite::paintButton):
15991 (WebCore::ScrollbarThemeComposite::paintThumb):
15992 * platform/mac/ScrollbarThemeMac.h:
15993 * platform/mac/ScrollbarThemeMac.mm:
15994 (WebCore::ScrollbarThemeMac::backButtonRect):
15995 (WebCore::ScrollbarThemeMac::forwardButtonRect):
15996 (WebCore::scrollbarPartToHIPressedState):
15997 (WebCore::ScrollbarThemeMac::paint):
15998 * platform/mac/WidgetMac.mm:
15999 (WebCore::Widget::invalidateRect):
16000
simon.fraser@apple.com0f83a512008-09-22 20:19:53 +0000160012008-09-22 Chris Marrin <cmarrin@apple.com>
16002
16003 Reviewed by Sam Weinig
16004
16005 transition end event when -webkit-transition-property: all puts wrong
16006 propertyName in event
16007 https://bugs.webkit.org/show_bug.cgi?id=20903
16008
16009 * page/animation/ImplicitAnimation.cpp:
16010 (WebCore::ImplicitAnimation::sendTransitionEvent):
16011
cfleizach@apple.com70013042008-09-22 18:30:36 +0000160122008-09-22 Chris Fleizach <cfleizach@apple.com>
16013
16014 Reviewed by Darin Adler.
16015
cfleizach@apple.comdebb8722008-09-22 18:47:16 +000016016 <rdar://problem/6230234> AXTable should probably not be exposed in there's only one cell
16017
16018 Test: accessibility/table-one-cell.html
16019
16020 * page/AccessibilityTable.cpp:
16021 (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
16022
160232008-09-22 Chris Fleizach <cfleizach@apple.com>
16024
16025 Reviewed by Darin Adler.
16026
cfleizach@apple.com70013042008-09-22 18:30:36 +000016027 <rdar://problem/6167779> Setting AXSelectedTextRange for TextAreas in a WebView behaves incorrectly
16028
16029 Test: accessibility/textarea-selected-text-range.html
16030
16031 * page/AccessibilityRenderObject.cpp:
16032 (WebCore::AccessibilityRenderObject::setSelectedTextRange):
16033
hyatt@apple.com4139b152008-09-22 18:21:37 +0000160342008-09-22 David Hyatt <hyatt@apple.com>
16035
16036 Clean up some parent relationships in the back end stylesheet code. Make sure parentStyleSheet
16037 properly walks up nested rule blocks to reach the parent sheet instead of giving up at the immediate
16038 parent. Also fix the doc() method so that it is properly set when the parent of the sheet is an import
16039 rule.
16040
16041 Reviewed by Sam Weinig
16042
16043 Added fast/css/nested-rule-parent-sheet.html
16044
16045 * css/CSSImportRule.cpp:
16046 (WebCore::CSSImportRule::insertedIntoParent):
16047 * css/CSSRule.cpp:
16048 (WebCore::CSSRule::parentStyleSheet):
16049 (WebCore::CSSRule::parentRule):
16050 * css/CSSStyleSheet.cpp:
16051 (WebCore::CSSStyleSheet::CSSStyleSheet):
16052 * css/CSSStyleSheet.h:
16053
mitz@apple.comd409a262008-09-22 18:17:57 +0000160542008-09-22 Dan Bernstein <mitz@apple.com>
16055
16056 Reviewed by Sam Weinig.
16057
16058 - fix https://bugs.webkit.org/show_bug.cgi?id=21002
16059 Make the ATSUI code path respect spacingDisabled()
16060
16061 Fixes svg/text/text-spacing-01-b.svg in run-webkit-tests --complex-text
16062
16063 * platform/graphics/mac/FontMacATSUI.mm:
16064 (WebCore::overrideLayoutOperation):
16065
mjs@apple.com221b4752008-09-22 15:03:52 +0000160662008-09-22 Maciej Stachowiak <mjs@apple.com>
16067
16068 Reviewed by Cameron Zwarich.
16069
16070 - speed up instanceof operator by replacing implementsHasInstance method with a TypeInfo flag
16071
16072 Partial work towards <https://bugs.webkit.org/show_bug.cgi?id=20818>
16073
16074 2.2% speedup on EarleyBoyer benchmark.
16075
16076 * bindings/js/JSQuarantinedObjectWrapper.cpp:
16077 * bindings/js/JSQuarantinedObjectWrapper.h:
16078 (WebCore::JSQuarantinedObjectWrapper::createStructureID):
16079 * bindings/scripts/CodeGeneratorJS.pm:
16080
aroben@apple.comd5cbddc2008-09-22 14:31:08 +0000160812008-09-22 Adam Roben <aroben@apple.com>
16082
16083 Windows build fix
16084
16085 * WebCore.vcproj/WebCore.vcproj: Add a missing </File> tag.
16086
mjs@apple.coma173abd2008-09-22 13:59:06 +0000160872008-09-22 Maciej Stachowiak <mjs@apple.com>
16088
16089 Reviewed by Dave Hyatt.
16090
16091 Based on initial work by Darin Adler.
16092
16093 - replace masqueradesAsUndefined virtual method with a flag in TypeInfo
16094 - use this to JIT inline code for eq_null and neq_null
16095 https://bugs.webkit.org/show_bug.cgi?id=20823
16096
16097 * WebCore.xcodeproj/project.pbxproj:
16098 * WebCore.vcproj/WebCore.vcproj:
16099 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
16100 (WebCore::JSCSSStyleDeclaration::nameGetter):
16101 * bindings/js/JSHTMLAllCollection.cpp: Added.
16102 (WebCore::):
16103 * bindings/js/JSHTMLAllCollection.h:
16104 (WebCore::JSHTMLAllCollection::createStructureID):
16105 (WebCore::JSHTMLAllCollection::toBoolean):
16106
vestbo@webkit.orgab848362008-09-22 13:27:06 +0000161072008-09-22 Tor Arne Vestbø <tavestbo@trolltech.com>
16108
16109 Reviewed by Simon.
16110
16111 Fix the QtWebKit build
16112
16113 * bridge/qt/qt_instance.cpp:
16114 (JSC::Bindings::QtRuntimeObjectImp::construct):
16115 * bridge/qt/qt_runtime.cpp:
16116
alp@webkit.orgcc9b0812008-09-22 08:53:06 +0000161172008-09-22 Alp Toker <alp@nuanti.com>
16118
16119 Suggested by David Hyatt.
16120
16121 Build fix: ScrollView::update() is still used by Document.cpp on !MAC
16122 so make it public.
16123
16124 * platform/ScrollView.h:
16125
hyatt@apple.com7cb18562008-09-22 07:57:52 +0000161262008-09-22 David Hyatt <hyatt@apple.com>
16127
hyatt@apple.combac66582008-09-22 08:36:44 +000016128 Fix a regression in Windows scrollbar painting. (Also fix the same
16129 bug in my new viewless Mac scrollbar painting code). The track rect
16130 was being improperly inflated when painting resulting in the scrollbar
16131 being too tall and painting in the border of overflow sections.
16132
16133 Reviewed by Oliver Hunt
16134
16135 * platform/mac/ScrollbarThemeMac.mm:
16136 (WebCore::ScrollbarThemeMac::trackRect):
16137 * platform/win/ScrollbarThemeSafari.cpp:
16138 (WebCore::ScrollbarThemeSafari::trackRect):
16139
161402008-09-22 David Hyatt <hyatt@apple.com>
16141
hyatt@apple.com7cb18562008-09-22 07:57:52 +000016142 Fix a hit testing bug where events are mistakenly passed to subframes
16143 if the mouse is over the border or padding area of the frame. Add
16144 a boolean flag, isOverWidget(), to hit test results so that EventHandler
16145 can check it to tell if the mouse is really over the content box of a
16146 RenderWidget and not just in the border/padding area.
16147
16148 This is not testable, since the old code properly recovered when it detected
16149 that the mouse was outside the bounds of the view, but this prevents
16150 the extra passdown from even occurring (and is basically a nice cleanup).
16151
16152 Reviewed by Oliver Hunt
16153
16154 * page/EventHandler.cpp:
16155 (WebCore::EventHandler::handleMousePressEvent):
16156 (WebCore::EventHandler::hitTestResultAtPoint):
16157 (WebCore::subframeForHitTestResult):
16158 (WebCore::EventHandler::handleMouseDoubleClickEvent):
16159 (WebCore::EventHandler::handleMouseMoveEvent):
16160 (WebCore::EventHandler::handleMouseReleaseEvent):
16161 (WebCore::EventHandler::handleWheelEvent):
16162 * page/MouseEventWithHitTestResults.h:
16163 (WebCore::MouseEventWithHitTestResults::isOverWidget):
16164 * rendering/HitTestResult.cpp:
16165 (WebCore::HitTestResult::HitTestResult):
16166 (WebCore::HitTestResult::operator=):
16167 * rendering/HitTestResult.h:
16168 (WebCore::HitTestResult::isOverWidget):
16169 (WebCore::HitTestResult::setIsOverWidget):
16170 * rendering/RenderWidget.cpp:
16171 (WebCore::RenderWidget::nodeAtPoint):
16172 * rendering/RenderWidget.h:
16173
hyatt@apple.comb2bf5272008-09-22 05:54:40 +0000161742008-09-21 David Hyatt <hyatt@apple.com>
16175
16176 Rename FrameView's repaintRectangle method to repaintContentRectangle. Make
16177 both it and ScrollView's updateContents method be off-limits to everyone in
16178 WebCore except for RenderView.
16179
16180 Make repaintViewRectangle the only possible method for WebCore code to do
16181 an invalidation. This ensures that all invalidates triggered by WebCore
16182 cross-platform code that cross ownerElement() boundaries are transform-aware.
16183
16184 Make sure that iframes/frames contained inside objects that have transforms
16185 or reflections are not allowed to blit (this was already true for transparency).
16186
16187 It is not possible to make a test for any of this, since iframe scrolling
16188 still doesn't work on Mac (since the invalidates are not being done
16189 through WebCore's cross-platform invalidation code but are instead going
16190 through NSScrollView's setNeedsDisplay still).
16191
16192 Reviewed by Oliver Hunt
16193
16194 * editing/SelectionController.cpp:
16195 (WebCore::SelectionController::recomputeCaretRect):
16196 (WebCore::SelectionController::invalidateCaretRect):
16197 (WebCore::SelectionController::focusedOrActiveStateChanged):
16198 * page/FrameView.cpp:
16199 (WebCore::FrameView::repaintContentRectangle):
16200 (WebCore::FrameView::endDeferredRepaints):
16201 * page/FrameView.h:
16202 * platform/ScrollView.h:
16203 * rendering/RenderBox.cpp:
16204 (WebCore::RenderBox::paintFillLayerExtended):
16205 * rendering/RenderLayer.cpp:
16206 (WebCore::RenderLayer::enclosingPositionedAncestor):
16207 (WebCore::RenderLayer::requiresSlowRepaints):
16208 * rendering/RenderLayer.h:
16209 (WebCore::RenderLayer::hasTransform):
16210 * rendering/RenderView.cpp:
16211 (WebCore::RenderView::paintBoxDecorations):
16212 (WebCore::RenderView::repaintViewRectangle):
16213 (WebCore::RenderView::setSelection):
16214
mjs@apple.com52b67602008-09-22 03:15:52 +0000162152008-09-21 Maciej Stachowiak <mjs@apple.com>
16216
16217 Reviewed by Darin.
16218
16219 - introduce a TypeInfo class, for holding per-type (in the C++ class sense) date in StructureID
16220 https://bugs.webkit.org/show_bug.cgi?id=20981
16221
16222 * bindings/js/JSAudioConstructor.cpp:
16223 (WebCore::JSAudioConstructor::JSAudioConstructor):
16224 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
16225 (WebCore::JSCSSStyleDeclaration::nameGetter):
16226 * bindings/js/JSDOMBinding.cpp:
16227 (WebCore::createDOMStructure):
16228 * bindings/js/JSDOMBinding.h:
16229 (WebCore::getDOMStructure):
16230 * bindings/js/JSDOMWindowShell.cpp:
16231 (WebCore::JSDOMWindowShell::JSDOMWindowShell):
16232 (WebCore::JSDOMWindowShell::setWindow):
16233 * bindings/js/JSEventTargetNode.cpp:
16234 (WebCore::JSEventTargetNode::createPrototype):
16235 * bindings/js/JSHTMLOptionElementConstructor.cpp:
16236 (WebCore::JSHTMLOptionElementConstructor::JSHTMLOptionElementConstructor):
16237 * bindings/js/JSImageConstructor.cpp:
16238 (WebCore::JSImageConstructor::JSImageConstructor):
16239 * bindings/js/JSXMLHttpRequestConstructor.cpp:
16240 (WebCore::JSXMLHttpRequestConstructor::JSXMLHttpRequestConstructor):
16241 * bindings/js/JSXSLTProcessorConstructor.cpp:
16242 (WebCore::JSXSLTProcessorConstructor::JSXSLTProcessorConstructor):
16243 * bindings/scripts/CodeGeneratorJS.pm:
16244
darin@apple.comad89d662008-09-22 02:12:57 +0000162452008-09-21 Darin Adler <darin@apple.com>
16246
16247 Reviewed by Maciej Stachowiak.
16248
16249 - fix problem Maciej noticed where every JSNamedNodesCollection
16250 gets its own StructureID
16251
16252 * bindings/js/JSNamedNodesCollection.cpp:
16253 (WebCore::JSNamedNodesCollection::JSNamedNodesCollection): Use
16254 getDOMStructure to get the structure.
16255 * bindings/js/JSNamedNodesCollection.h:
16256 (WebCore::JSNamedNodesCollection::createPrototype): Return the
16257 object prototype.
16258
hyatt@apple.com1f2ad1e2008-09-22 00:33:19 +0000162592008-09-20 David Hyatt <hyatt@apple.com>
16260
16261 Make sure transformed scrollbars in overflow sections position
16262 properly. This patch mimics the same behavior that works for
16263 iframes, namely making sure that the same code that dynamically
16264 adjusts iframe widget positions at paint time for fixed positioning
16265 and transforms also applies to scrollbars. (This is as simple as passing
16266 in the current translation factor at paint time rather than crawling
16267 up the layer tree to compute a "false" absolute position.)
16268
16269 An existing transform test covers this (although only a pixel result
16270 reveals the correct rendering).
16271
16272 Reviewed by Darin Adler
16273
16274 * rendering/RenderLayer.cpp:
16275 (WebCore::RenderLayer::updateLayerPositions):
16276 (WebCore::RenderLayer::positionOverflowControls):
16277 (WebCore::RenderLayer::paintOverflowControls):
16278 (WebCore::RenderLayer::paintLayer):
16279 * rendering/RenderLayer.h:
16280
sfalken@apple.comd0274692008-09-22 00:08:30 +0000162812008-09-21 Steve Falkenburg <sfalken@apple.com>
16282
sfalken@apple.com4fe10f92008-09-22 00:12:28 +000016283 Removed unnecessary nested timer check.
16284
16285 Rubber-stamped by Dan Bernstein.
16286
16287 * platform/win/SharedTimerWin.cpp:
16288 (WebCore::TimerWindowWndProc):
16289
162902008-09-21 Steve Falkenburg <sfalken@apple.com>
16291
sfalken@apple.comd0274692008-09-22 00:08:30 +000016292 Improve timer resolution on WinXP.
16293 https://bugs.webkit.org/show_bug.cgi?id=20979
16294
16295 Removed last-chance timer. It should not be necessary.
16296 Change timeEndPeriod timer to fire in 300ms instead of 20ms. Calling timeBeginPeriod/timeEndPeriod too often throws off accuracy.
16297 Remove Vista checks. We now run the same code on both XP and Vista.
16298
16299 Call through to JSC::getCurrentUTCTimeWithMicroseconds from WebCore::currentTime.
16300 The code previously called GetSystemTimeAsFileTime, which is always low-resolution on XP, even within timeBeginPeriod(1).
16301
16302 Reviewed by Maciej Stachowiak.
16303
16304 * platform/win/SharedTimerWin.cpp:
16305 (WebCore::):
16306 (WebCore::TimerWindowWndProc):
16307 (WebCore::setSharedTimerFireTime):
16308 * platform/win/SystemTimeWin.cpp:
16309 (WebCore::currentTime):
16310
eric@webkit.org3e96c482008-09-21 07:59:58 +0000163112008-09-21 Dirk Schulze <vbs85@gmx.de>
16312
16313 Reviewed by eseidel. Landed by eseidel.
16314
eric@webkit.orgc3431282008-09-21 10:37:37 +000016315 All platforms use the DashArray in the GraphicsContext.
16316
16317 * svg/graphics/SVGPaintServer.h:
16318 * svg/graphics/cairo/SVGPaintServerGradientCairo.cpp:
16319 (WebCore::SVGPaintServerGradient::setup):
16320 * svg/graphics/cairo/SVGPaintServerPatternCairo.cpp:
16321 (WebCore::SVGPaintServerPattern::setup):
16322 * svg/graphics/cairo/SVGPaintServerSolidCairo.cpp:
16323 (WebCore::SVGPaintServerSolid::setup):
16324 * svg/graphics/qt/SVGPaintServerGradientQt.cpp:
16325 (WebCore::SVGPaintServerGradient::setup):
16326 * svg/graphics/qt/SVGPaintServerQt.cpp:
16327 * svg/graphics/qt/SVGPaintServerSolidQt.cpp:
16328 (WebCore::SVGPaintServerSolid::setup):
16329
163302008-09-21 Dirk Schulze <vbs85@gmx.de>
16331
16332 Reviewed by eseidel. Landed by eseidel.
16333
eric@webkit.org3e96c482008-09-21 07:59:58 +000016334 Moved DashArray to GraphicsContext.
16335
16336 * GNUmakefile.am:
16337 * WebCore.vcproj/WebCore.vcproj:
16338 * WebCore.xcodeproj/project.pbxproj:
16339 * platform/graphics/DashArray.h: Added.
16340 * platform/graphics/GraphicsContext.h:
16341 * platform/graphics/cairo/GraphicsContextCairo.cpp:
16342 (WebCore::GraphicsContext::setLineDash):
16343 * platform/graphics/cg/GraphicsContextCG.cpp:
16344 (WebCore::GraphicsContext::setLineDash):
16345 * platform/graphics/qt/GraphicsContextQt.cpp:
16346 (WebCore::GraphicsContext::setLineDash):
16347 * svg/graphics/SVGPaintServer.cpp:
16348 (WebCore::applyStrokeStyleToContext):
16349 * svg/graphics/SVGPaintServer.h:
16350 * svg/graphics/cg/CgSupport.cpp:
16351 * svg/graphics/cg/CgSupport.h:
16352
mitz@apple.com9138eca2008-09-21 07:16:29 +0000163532008-09-21 Dan Bernstein <mitz@apple.com>
16354
16355 Reviewed by Mark Rowe.
16356
16357 - fix linker warnings
16358
16359 * WebCore.base.exp:
16360
darin@apple.comb1491772008-09-21 06:34:40 +0000163612008-09-20 Darin Adler <darin@apple.com>
16362
darin@apple.comc3215132008-09-21 06:50:35 +000016363 - another try at fixing Qt
16364
16365 * bridge/qt/qt_runtime.cpp: "using namespce WebCore"
16366
163672008-09-20 Darin Adler <darin@apple.com>
16368
darin@apple.comb1491772008-09-21 06:34:40 +000016369 - blind attempt to fix Qt build
16370
16371 * bridge/qt/qt_runtime.cpp:
16372 (JSC::Bindings::convertQVariantToValue): Use regExpStructure instead
16373 of regExpPrototype to make a RegExpObject. There should really be
16374 some sort of public helper function for this. Same thing for
16375 DateInstance and dateStructure. For JSObject, use constructEmptyObject.
16376 (JSC::Bindings::):
16377 (JSC::Bindings::QtRuntimeMethod::QtRuntimeMethod): Use getDOMStructure.
16378 It is not correct to do this inside the constructor because it could
16379 cause a garbage collect while the QtRuntimeMethod object is half-
16380 allocated, which could lead to a crash; note that RuntimeMethod,
16381 QtRuntimeObjectImp, and RuntimeObjectImp have the same bug.
16382 * bridge/qt/qt_runtime.h: Add s_info and createPrototype.
16383
collinj@webkit.org8e01a432008-09-21 06:26:54 +0000163842008-09-20 Collin Jackson <collinj@webkit.org>
16385
16386 Prefetch DNS for hyperlinks that the user mouses over.
16387
16388 https://bugs.webkit.org/show_bug.cgi?id=20931
16389
16390 Reviewed by Sam Weinig.
16391
16392 * page/Chrome.cpp:
16393 (WebCore::Chrome::mouseDidMoveOverElement):
16394
darin@apple.com8281d832008-09-21 02:29:12 +0000163952008-09-20 Darin Adler <darin@apple.com>
16396
16397 Reviewed by Maciej Stachowiak.
16398
16399 - finish https://bugs.webkit.org/show_bug.cgi?id=20858
16400 make each distinct C++ class get a distinct JSC::Structure
16401
16402 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
16403 (WebCore::JSCSSStyleDeclaration::nameGetter): Pass in a structure
16404 ID. Note that this makes a new structure every time -- we could
16405 optimize this slightly be caching and reusing a single one.
16406
16407 * bridge/runtime_method.cpp:
16408 (JSC::RuntimeMethod::RuntimeMethod): Create a unique structure using
16409 getDOMStructure.
16410 * bridge/runtime_method.h:
16411 (JSC::RuntimeMethod::createPrototype): Added createPrototype so
16412 getDOMStructure will work.
16413
16414 * bindings/js/JSDOMWindowShell.cpp:
16415 (WebCore::JSDOMWindowShell::JSDOMWindowShell): Initialize m_window to
16416 0; needed in case garbage collection happens while creating the
16417 JSDOMWindow.
16418
mitz@apple.com9b3ac792008-09-21 00:42:30 +0000164192008-09-20 Dan Bernstein <mitz@apple.com>
16420
mitz@apple.comf674f4f2008-09-21 00:49:49 +000016421 Reviewed by Eric Seidel.
16422
16423 - fix https://bugs.webkit.org/show_bug.cgi?id=20950
mitz@apple.comc3dfbac2008-09-21 00:52:41 +000016424 <rdar://problem/6234059> Reproducible assertion failure running svg/custom/acid3-test-77.html multiple times under guard malloc
mitz@apple.comf674f4f2008-09-21 00:49:49 +000016425
16426 * svg/SVGTextContentElement.cpp:
16427 (WebCore::SVGInlineTextBoxQueryWalker::chunkPortionCallback): Changed to
16428 not include the first character in the extraCharsAvailable count.
16429
kevino@webkit.org2bc0d822008-09-20 22:31:24 +0000164302008-09-20 Kevin Ollivier <kevino@theolliviers.com>
16431
kevino@webkit.orge66435f2008-09-20 23:39:25 +000016432 Reviewed by Dan Bernstein.
16433
16434 Fix memory leak.
kevino@webkit.org6f86cbb2008-09-20 23:56:57 +000016435
16436 https://bugs.webkit.org/show_bug.cgi?id=20505
kevino@webkit.orge66435f2008-09-20 23:39:25 +000016437
16438 * platform/wx/wxcode/mac/carbon/fontprops.cpp:
16439 (GetTextExtent):
16440
164412008-09-20 Kevin Ollivier <kevino@theolliviers.com>
16442
kevino@webkit.org2bc0d822008-09-20 22:31:24 +000016443 wx build fixes. Added/removed build sources, and nativeWindow->platformWidget updates.
16444
16445 * WebCoreSources.bkl:
16446 * platform/ScrollView.h:
16447 * platform/wx/PopupMenuWx.cpp:
16448 (WebCore::PopupMenu::show):
16449 * platform/wx/RenderThemeWx.cpp:
16450 (WebCore::RenderThemeWx::paintButton):
16451 (WebCore::RenderThemeWx::paintTextField):
16452 (WebCore::RenderThemeWx::paintMenuList):
16453 (WebCore::RenderThemeWx::paintMenuListButton):
16454 * platform/wx/ScrollViewWx.cpp:
16455 (WebCore::ScrollView::setPlatformWidget):
16456 (WebCore::ScrollView::updateContents):
16457 (WebCore::ScrollView::update):
16458 (WebCore::ScrollView::visibleWidth):
16459 (WebCore::ScrollView::visibleHeight):
16460 (WebCore::ScrollView::scrollBy):
16461 (WebCore::ScrollView::resizeContents):
16462 (WebCore::ScrollView::contentsWidth):
16463 (WebCore::ScrollView::contentsHeight):
16464 (WebCore::ScrollView::isScrollViewScrollbar):
16465 (WebCore::ScrollView::adjustScrollbars):
16466 (WebCore::ScrollView::inWindow):
16467 (WebCore::ScrollView::removeChild):
16468 * platform/wx/WidgetWx.cpp:
16469 * plugins/wx/PluginViewWx.cpp:
16470 (WebCore::PluginView::setParentVisible):
16471 (WebCore::PluginView::updatePluginWidget):
16472
timothy@apple.comb697f272008-09-20 22:21:59 +0000164732008-09-20 Timothy Hatcher <timothy@apple.com>
16474
16475 Fix the new Node Search button image to not be blurry.
16476
16477 * page/inspector/Images/nodeSearchButtons.png:
16478
pewtermoose@webkit.org4cc99202008-09-20 21:30:43 +0000164792008-09-20 Matt Lilek <webkit@mattlilek.com>
16480
16481 Reviewed by Tim Hatcher.
16482
pewtermoose@webkit.orge1fc4462008-09-20 21:53:43 +000016483 Cut down some of the inspector javascript -> InspectorController glue code
16484 with two new macros. Also rearrange the exposed function list to be grouped
16485 by implementation and to all explicitly use the WebCore namespace.
16486
16487 * page/InspectorController.cpp:
16488 (WebCore::InspectorController::windowScriptObjectAvailable):
16489
164902008-09-20 Matt Lilek <webkit@mattlilek.com>
16491
16492 Reviewed by Tim Hatcher.
16493
pewtermoose@webkit.org4cc99202008-09-20 21:30:43 +000016494 Fix regression from my previous patch where the breadcrumbs bar was not displayed.
16495
16496 * page/inspector/inspector.css:
16497
zimmermann@webkit.org953b7442008-09-20 20:19:45 +0000164982008-09-20 Nikolas Zimmermann <zimmermann@kde.org>
16499
16500 Reviewed by Eric.
16501
16502 Refactor HTMLImageLoader/SVGImageLoader code.
16503 Move html/HTMLImageLoader.* to loader/ImageLoader.*
16504
16505 Let HTMLImageLoader & SVGImageLoader inherit from the new base class.
16506 SVGImageLoader used to inherit from HTMLImageLoader which is awkward.
16507
16508 * GNUmakefile.am:
16509 * WebCore.pro:
16510 * WebCore.vcproj/WebCore.vcproj:
16511 * WebCore.xcodeproj/project.pbxproj:
16512 * WebCoreSources.bkl:
16513 * dom/Document.cpp:
16514 (WebCore::Document::dispatchImageLoadEventSoon):
16515 (WebCore::Document::removeImage):
16516 (WebCore::Document::dispatchImageLoadEventsNow):
16517 * dom/Document.h:
16518 * html/HTMLImageLoader.cpp:
16519 (WebCore::HTMLImageLoader::HTMLImageLoader):
16520 (WebCore::HTMLImageLoader::~HTMLImageLoader):
16521 (WebCore::HTMLImageLoader::sourceURI):
16522 (WebCore::HTMLImageLoader::notifyFinished):
16523 * html/HTMLImageLoader.h:
16524 * loader/DocLoader.h:
16525 * loader/ImageLoader.cpp: Copied from html/HTMLImageLoader.cpp.
16526 (WebCore::ImageLoader::ImageLoader):
16527 (WebCore::ImageLoader::~ImageLoader):
16528 (WebCore::ImageLoader::setImage):
16529 (WebCore::ImageLoader::setLoadingImage):
16530 (WebCore::ImageLoader::updateFromElement):
16531 (WebCore::ImageLoader::notifyFinished):
16532 * loader/ImageLoader.h: Copied from html/HTMLImageLoader.h.
16533 * svg/SVGImageElement.cpp:
16534 (WebCore::SVGImageElement::attach):
16535 (WebCore::SVGImageElement::insertedIntoDocument):
16536 (WebCore::SVGImageElement::imageSourceAttributeName):
16537 * svg/SVGImageElement.h:
16538 * svg/SVGImageLoader.cpp:
16539 (WebCore::SVGImageLoader::SVGImageLoader):
16540 (WebCore::SVGImageLoader::dispatchLoadEvent):
16541 (WebCore::SVGImageLoader::sourceURI):
16542 * svg/SVGImageLoader.h:
16543
zecke@webkit.orgf3834492008-09-20 14:23:55 +0000165442008-09-20 Holger Hans Peter Freyther <zecke@selfish.org>
16545
zecke@webkit.org7a15a532008-09-20 14:24:27 +000016546 Build fix.
16547
zecke@webkit.orga832cca2008-09-20 14:24:45 +000016548 [qtwebkit] ScrollBar build fix after r36684.
16549 BackButtonPart was split into Start and End Part
16550 ForwardButtonPart was split into Start and End Part
16551
zecke@webkit.orga832cca2008-09-20 14:24:45 +000016552 * platform/qt/ScrollbarThemeQt.cpp:
16553 (WebCore::scPart):
16554 (WebCore::scrollbarPart):
16555 (WebCore::styleOptionSlider):
16556
165572008-09-20 Holger Hans Peter Freyther <zecke@selfish.org>
16558
16559 Build fix.
16560
zecke@webkit.org7a15a532008-09-20 14:24:27 +000016561 [qtwebkit] Make qt_instance.cpp compile.
16562 Revision of 36675 introduced getDOMStructure to give unique
16563 structure id's to C++ classes. Catch up. RuntimeObjectImp assigns
16564 the the StructureID inside the c'tor, do the same in QtRuntimeObjectImp
16565
16566 * bridge/qt/qt_instance.cpp:
16567 (JSC::Bindings::QtInstance::getRuntimeObject):
16568
165692008-09-20 Holger Hans Peter Freyther <zecke@selfish.org>
16570
zecke@webkit.orgf3834492008-09-20 14:23:55 +000016571 Reviewed by Nikolas Zimmermann.
16572
zecke@webkit.org95ff1412008-09-20 14:24:10 +000016573 [svg] Change SVGLocatable to deal with a plain SVGElement
16574 There is no requirement in the code that we have to have a
16575 SVGStyledElement. Remove that artificial limitation and compile
16576 with SVGElement.
16577
16578 * svg/SVGLocatable.cpp:
16579 * svg/SVGLocatable.h:
16580
165812008-09-20 Holger Hans Peter Freyther <zecke@selfish.org>
16582
16583 Reviewed by Nikolas Zimmermann.
16584
zecke@webkit.orgf3834492008-09-20 14:23:55 +000016585 [svg] Use OwnPtr for the SVGExtensions to avoid custom lifetime
16586 management.
16587
16588 * dom/Document.cpp:
16589 (WebCore::Document::~Document):
16590 (WebCore::Document::svgExtensions):
16591 (WebCore::Document::accessSVGExtensions):
16592 * dom/Document.h:
16593
hyatt@apple.com02bbc2c2008-09-20 04:50:21 +0000165942008-09-19 David Hyatt <hyatt@apple.com>
16595
hyatt@apple.com1fe09172008-09-20 05:09:44 +000016596 Fix for crash in updateTransitions. Make sure to test for a style
16597 being null when comparing two RenderStyles.
16598
16599 Reviewed by Oliver Hunt
16600
16601 * page/animation/AnimationBase.cpp:
16602 (WebCore::PropertyWrapperGetter::equals):
16603
166042008-09-19 David Hyatt <hyatt@apple.com>
16605
hyatt@apple.com02bbc2c2008-09-20 04:50:21 +000016606 https://bugs.webkit.org/show_bug.cgi?id=20954
16607
16608 Roll out r36628 since it has caused horrible regressions with
16609 animated GIF CPU usage.
16610
16611 * platform/graphics/BitmapImage.cpp:
16612 (WebCore::BitmapImage::cacheFrame):
16613 (WebCore::BitmapImage::startAnimation):
16614 * platform/graphics/BitmapImage.h:
16615 (WebCore::FrameData::FrameData):
16616 * platform/graphics/cairo/ImageCairo.cpp:
16617 (WebCore::FrameData::clear):
16618 * platform/graphics/cg/ImageCG.cpp:
16619 (WebCore::FrameData::clear):
16620 * platform/graphics/qt/ImageQt.cpp:
16621 (WebCore::FrameData::clear):
16622 * platform/graphics/wx/ImageWx.cpp:
16623 (WebCore::FrameData::clear):
16624
alp@webkit.orgd1e860e2008-09-20 03:43:42 +0000166252008-09-20 Alp Toker <alp@nuanti.com>
16626
16627 Reviewed by Timothy Hatcher.
16628
16629 https://bugs.webkit.org/show_bug.cgi?id=20913
16630 Avoid redudant includes
16631
16632 Document.h is included excessively such that a modification to Document.h (or
16633 any of the header it includes itself) triggers a rebuild of many files
16634 including the whole of SVG and a lot of the JS bindings.
16635
16636 Some of these includes can be avoided by only including Document.h where
16637 necessary.
16638
16639 * bindings/js/JSAttrCustom.cpp:
16640 * bindings/js/JSElementCustom.cpp:
16641 * bindings/js/JSEventTargetBase.cpp:
16642 * bindings/js/JSEventTargetBase.h:
16643 * bindings/js/JSEventTargetNode.cpp:
16644 * bindings/js/JSHTMLFrameElementCustom.cpp:
16645 * bindings/js/JSHTMLIFrameElementCustom.cpp:
16646 * bindings/scripts/CodeGeneratorJS.pm:
16647 * css/CSSCursorImageValue.cpp:
16648 * css/SVGCSSStyleSelector.cpp:
16649 * dom/make_names.pl:
16650 * svg/SVGAnimateElement.h:
16651 * svg/SVGAnimatedProperty.h:
16652 (WebCore::::baseValue):
16653 (WebCore::::setBaseValue):
16654 (WebCore::::startAnimation):
16655 (WebCore::::stopAnimation):
16656 * svg/SVGElement.cpp:
16657 (WebCore::SVGElement::accessDocumentSVGExtensions):
16658 * svg/SVGElement.h:
16659 * svg/SVGElementInstance.cpp:
16660 * svg/SVGFitToViewBox.cpp:
16661 * svg/SVGFontElement.cpp:
16662 * svg/SVGFontFaceElement.cpp:
16663 * svg/SVGLinearGradientElement.cpp:
16664 * svg/SVGMPathElement.cpp:
16665 * svg/SVGViewSpec.cpp:
16666
zimmermann@webkit.org50e33c72008-09-20 03:33:43 +0000166672008-09-19 Nikolas Zimmermann <zimmermann@kde.org>
16668
16669 Reviewed by Antti & Eric.
16670
16671 Fixes: https://bugs.webkit.org/show_bug.cgi?id=20372
16672
16673 Finish HTMLScriptElement / SVGScriptElement unification.
16674 SVG <script> support is complete now, full SVGLoad event
16675 respecting the influence of the externalResourcesRequired attribute
16676 as well as SVGError event support. All other features shared with HTML.
16677
16678 Tests: fast/dom/HTMLScriptElement/script-reexecution.html
16679 svg/dom/SVGScriptElement/script-change-externalResourcesRequired-while-loading.svg
16680 svg/dom/SVGScriptElement/script-load-and-error-events.svg
16681 svg/dom/SVGScriptElement/script-reexecution.svg
16682 svg/dom/SVGScriptElement/script-set-href.svg
16683
16684 * dom/ScriptElement.cpp:
16685 (WebCore::ScriptElementData::ScriptElementData):
16686 (WebCore::ScriptElementData::requestScript):
16687 * dom/ScriptElement.h:
16688 (WebCore::ScriptElementData::haveFiredLoadEvent):
16689 (WebCore::ScriptElementData::setHaveFiredLoadEvent):
16690 * dom/XMLTokenizer.cpp:
16691 (WebCore::XMLTokenizer::notifyFinished):
16692 * html/HTMLScriptElement.cpp:
16693 (WebCore::HTMLScriptElement::dispatchLoadEvent):
16694 * svg/SVGScriptElement.cpp:
16695 (WebCore::SVGScriptElement::setCreatedByParser):
16696 (WebCore::SVGScriptElement::parseMappedAttribute):
16697 (WebCore::SVGScriptElement::svgAttributeChanged):
16698 (WebCore::SVGScriptElement::insertedIntoDocument):
16699 (WebCore::SVGScriptElement::removedFromDocument):
16700 (WebCore::SVGScriptElement::childrenChanged):
16701 (WebCore::SVGScriptElement::isURLAttribute):
16702 (WebCore::SVGScriptElement::finishParsingChildren):
16703 (WebCore::SVGScriptElement::type):
16704 (WebCore::SVGScriptElement::setType):
16705 (WebCore::SVGScriptElement::haveLoadedRequiredResources):
16706 (WebCore::SVGScriptElement::dispatchLoadEvent):
16707 (WebCore::SVGScriptElement::dispatchErrorEvent):
16708 * svg/SVGScriptElement.h:
16709
mitz@apple.comc7b24ea2008-09-20 03:23:22 +0000167102008-09-19 Dan Bernstein <mitz@apple.com>
16711
16712 Reviewed by John Sullivan.
16713
16714 - fix https://bugs.webkit.org/show_bug.cgi?id=20951
16715 Typo in Position::getInlineBoxAndOffset()
16716 and add an assertion
16717
16718 Without the fix, the newly-added assertion fails in platform/mac/editing/input/caret-primary-bidi.html
16719
16720 * dom/Position.cpp:
16721 (WebCore::Position::getInlineBoxAndOffset):
16722 * rendering/InlineTextBox.cpp:
16723 (WebCore::InlineTextBox::positionForOffset):
16724
hyatt@apple.comd48dbf32008-09-20 03:21:14 +0000167252008-09-19 David Hyatt <hyatt@apple.com>
16726
16727 Add support for hit testing of all five possible scrollbar button placements.
16728
16729 Reviewed by Sam Weinig
16730
16731 * platform/ScrollbarThemeComposite.cpp:
16732 (WebCore::ScrollbarThemeComposite::paint):
16733 * platform/mac/ScrollbarThemeMac.mm:
16734 (WebCore::):
16735 (WebCore::ScrollbarThemeMac::backButtonRect):
16736 (WebCore::ScrollbarThemeMac::forwardButtonRect):
16737 (WebCore::ScrollbarThemeMac::trackRect):
16738 (WebCore::ScrollbarThemeMac::paintButton):
16739
darin@apple.com1c4cd8f2008-09-20 01:05:35 +0000167402008-09-19 Darin Adler <darin@apple.com>
16741
16742 - try to fix Qt build
16743
16744 * bridge/qt/qt_instance.cpp:
16745 (JSC::Bindings::QtRuntimeObjectImp::QtRuntimeObjectImp): Add structure argument.
16746 (JSC::Bindings::QtInstance::getRuntimeObject): Ditto.
16747 * bridge/runtime_object.cpp:
16748 (JSC::RuntimeObjectImp::RuntimeObjectImp): Add an overload just for Qt.
16749 * bridge/runtime_object.h: Ditto.
16750
dino@apple.com7c236592008-09-20 00:53:49 +0000167512008-09-19 Chris Marrin <cmarrin@apple.com>
16752
16753 Reviewed by Dave Hyatt.
16754
16755 Transition starts running when it shouldn't
16756 https://bugs.webkit.org/show_bug.cgi?id=20892
16757
16758 When there is a transition and an animation on the
16759 same element, make sure the animation wins.
16760
16761 The fix is to save the unanimated style when an animation is started.
16762 Then, when starting a transition, check to see if there is a current
16763 animation on the same prop. If so, use the unanimated style as the
16764 fromStyle rather than the current style.
16765
16766 Test: animations/transition-and-animation-1.html
16767
16768 * page/animation/CompositeAnimation.cpp:
16769 (WebCore::CompositeAnimation::updateTransitions):
16770 (WebCore::CompositeAnimation::updateKeyframeAnimations):
16771 (WebCore::CompositeAnimation::animate):
16772 (WebCore::CompositeAnimation::getAnimationForProperty):
16773 * page/animation/CompositeAnimation.h:
16774 * page/animation/ImplicitAnimation.cpp:
16775 (WebCore::ImplicitAnimation::reset):
16776 * page/animation/ImplicitAnimation.h:
16777 * page/animation/KeyframeAnimation.cpp:
16778 (WebCore::KeyframeAnimation::hasAnimationForProperty):
16779 * page/animation/KeyframeAnimation.h:
16780 (WebCore::KeyframeAnimation::KeyframeAnimation):
16781 (WebCore::KeyframeAnimation::unanimatedStyle):
16782
hyatt@apple.comea254e22008-09-20 00:42:36 +0000167832008-09-19 David Hyatt <hyatt@apple.com>
16784
16785 Add support for painting/hit testing of four possible scrollbar buttons.
16786 The Windows themes simply ignore the two parts that they will never
16787 show. The Mac theme also ignores the other two buttons for now.
16788
16789 The cross-platform base for all three themes, ScrollbarThemeComposite,
16790 has all the proper support though.
16791
16792 Reviewed by Sam Weinig
16793
16794 * platform/ScrollbarThemeComposite.cpp:
16795 (WebCore::ScrollbarThemeComposite::hitTest):
16796 (WebCore::ScrollbarThemeComposite::invalidatePart):
16797 * platform/ScrollbarThemeComposite.h:
16798 * platform/mac/ScrollbarThemeMac.h:
16799 * platform/mac/ScrollbarThemeMac.mm:
16800 (WebCore::ScrollbarThemeMac::backButtonRect):
16801 (WebCore::ScrollbarThemeMac::forwardButtonRect):
16802 (WebCore::ScrollbarThemeMac::paintButton):
16803 * platform/win/ScrollbarThemeSafari.cpp:
16804 (WebCore::ScrollbarThemeSafari::backButtonRect):
16805 (WebCore::ScrollbarThemeSafari::forwardButtonRect):
16806 (WebCore::ScrollbarThemeSafari::paintButton):
16807 * platform/win/ScrollbarThemeSafari.h:
16808 * platform/win/ScrollbarThemeWin.cpp:
16809 (WebCore::ScrollbarThemeWin::backButtonRect):
16810 (WebCore::ScrollbarThemeWin::forwardButtonRect):
16811 (WebCore::ScrollbarThemeWin::paintButton):
16812 * platform/win/ScrollbarThemeWin.h:
16813
pewtermoose@webkit.org0e3da6e2008-09-20 00:11:32 +0000168142008-09-19 Matt Lilek <webkit@mattlilek.com>
16815
16816 Reviewed by Tim Hatcher.
16817
16818 Bug 17772: Inspector should support point-and-click to select a node to inspect
16819 https://bugs.webkit.org/show_bug.cgi?id=17772
16820 <rdar://problem/5792395>
16821
16822 * English.lproj/localizedStrings.js:
16823 * page/Chrome.cpp:
16824 (WebCore::Chrome::mouseDidMoveOverElement):
16825 * page/EventHandler.cpp:
16826 (WebCore::EventHandler::handleMousePressEvent):
16827 * page/InspectorController.cpp:
16828 (WebCore::toggleNodeSearch):
16829 (WebCore::searchingForNode):
16830 (WebCore::InspectorController::InspectorController):
16831 (WebCore::InspectorController::toggleSearchForNodeInPage):
16832 (WebCore::InspectorController::mouseDidMoveOverElement):
16833 (WebCore::InspectorController::handleMousePressOnNode):
16834 (WebCore::InspectorController::windowScriptObjectAvailable):
16835 * page/InspectorController.h:
16836 (WebCore::InspectorController::searchingForNodeInPage):
16837 * page/inspector/ElementsPanel.js:
16838 * page/inspector/Images/nodeSearchButtons.png: Added.
16839 * page/inspector/inspector.css:
16840
hyatt@apple.com57b2d522008-09-19 23:39:26 +0000168412008-09-19 David Hyatt <hyatt@apple.com>
16842
16843 Add new scrollbar parts to be able to represent back and forward buttons
16844 at either end of the scrollbar. The current scrollbar still just draws
16845 a single button at either end, but the parts now exist.
16846
16847 Reviewed by Sam Weinig
16848
16849 * platform/ScrollTypes.h:
16850 (WebCore::):
16851 * platform/Scrollbar.cpp:
16852 (WebCore::Scrollbar::autoscrollTimerFired):
16853 (WebCore::Scrollbar::pressedPartScrollDirection):
16854 (WebCore::Scrollbar::pressedPartScrollGranularity):
16855 (WebCore::Scrollbar::handleMouseMoveEvent):
16856 * platform/ScrollbarTheme.h:
16857 (WebCore::ScrollbarTheme::buttonsPlacement):
16858 (WebCore::ScrollbarTheme::invalidateParts):
16859 * platform/ScrollbarThemeComposite.cpp:
16860 (WebCore::ScrollbarThemeComposite::paint):
16861 (WebCore::ScrollbarThemeComposite::hitTest):
16862 (WebCore::ScrollbarThemeComposite::invalidatePart):
16863 * platform/ScrollbarThemeComposite.h:
16864
bdakin@apple.com5b0a3b22008-09-19 23:02:03 +0000168652008-09-19 Beth Dakin <bdakin@apple.com>
16866
16867 Reviewed by Dave Hyatt.
16868
16869 Fix for <rdar://problem/6231308> crash in AutoTableLayout
16870
16871 The code assumes later on that a TableSection's grid's row vector
16872 will never be empty. So make 1 the minimum number of columns.
16873
16874 * rendering/RenderTableSection.cpp:
16875 (WebCore::RenderTableSection::ensureRows):
16876
hyatt@apple.comaf711ec2008-09-19 22:55:56 +0000168772008-09-19 David Hyatt <hyatt@apple.com>
16878
16879 Add a new ScrollbarButtonsPlacement type for specifying where
16880 the button arrows are in a scrollbar.
16881
16882 Read in the placement settings for Mac. Nothing is done with the
16883 setting yet.
16884
16885 Add a new buttonsPlacement() method to ScrollbarTheme composite
16886 so that the arrow settings can be obtained.
16887
16888 Reviewed by Sam Weinig
16889
16890 * platform/ScrollTypes.h:
16891 (WebCore::):
16892 * platform/ScrollbarThemeComposite.h:
16893 (WebCore::ScrollbarThemeComposite::buttonsPlacement):
16894 * platform/mac/ScrollbarThemeMac.mm:
16895 (WebCore::updateArrowPlacement):
16896 (WebCore::ScrollbarThemeMac::ScrollbarThemeMac):
16897
sfalken@apple.com64602042008-09-19 22:47:45 +0000168982008-09-19 Steve Falkenburg <sfalken@apple.com>
16899
16900 Roll out r36626. It is causing variance in SunSpider numbers on XP.
16901
16902 Rubber stamped by Mark Rowe.
16903
16904 * platform/win/SharedTimerWin.cpp:
16905 (WebCore::isRunningOnVistaOrLater):
16906 (WebCore::setSharedTimerFireTime):
16907
kmccullough@apple.comd203b242008-09-19 21:56:14 +0000169082008-09-19 Kevin McCullough <kmccullough@apple.com>
16909
16910 Reviewed by Tim.
16911
16912 https://bugs.webkit.org/show_bug.cgi?id=20942
16913 Bug 20942: Repeated messages in resources don't collapse
16914 - Now repeated messages in a resource's view are collapsed and a message
16915 says how many were repeated.
16916
16917 * English.lproj/localizedStrings.js:
16918 * manual-tests/inspector/multiple-console-messages.html:
16919 * page/inspector/Console.js: Send all the messages to the resource's
16920 view before possibly returning early if the message is a repeat.
16921 * page/inspector/SourceFrame.js: Add the text about the message being
16922 repeated, if it is, and increment it when necessary.
16923
cfleizach@apple.com0abaacc2008-09-19 21:39:21 +0000169242008-09-19 Chris Fleizach <cfleizach@apple.com>
16925
16926 Removed unnecessary #if
16927
16928 * page/mac/AccessibilityObjectWrapper.mm:
16929
hyatt@apple.comc9967ce92008-09-19 21:20:59 +0000169302008-09-19 David Hyatt <hyatt@apple.com>
16931
hyatt@apple.comf658e502008-09-19 22:12:07 +000016932 Read in prefs for the scroll delay repeat values for buttons. Also
16933 honor the option-click pref for jumping to the thumb when clicking in
16934 the track.
16935
16936 Reviewed by Sam Weinig
16937
16938 * platform/mac/ScrollbarThemeMac.h:
16939 * platform/mac/ScrollbarThemeMac.mm:
16940 (WebCore::ScrollbarThemeMac::ScrollbarThemeMac):
16941 (WebCore::ScrollbarThemeMac::initialAutoscrollTimerDelay):
16942 (WebCore::ScrollbarThemeMac::autoscrollTimerDelay):
16943 (WebCore::ScrollbarThemeMac::shouldCenterOnThumb):
16944
169452008-09-19 David Hyatt <hyatt@apple.com>
16946
hyatt@apple.comc9967ce92008-09-19 21:20:59 +000016947 Move ScrollbarThemeMac.cpp to ScrollbarThemeMac.mm so it can use Obj-C.
16948 Set the initial button repeat delay to 0.5 for Mac.
16949
16950 Reviewed by Sam Weinig
16951
16952 * WebCore.xcodeproj/project.pbxproj:
16953 * platform/mac/ScrollbarThemeMac.cpp: Removed.
16954 * platform/mac/ScrollbarThemeMac.h:
16955 (WebCore::ScrollbarThemeMac::initialAutoscrollTimerDelay):
16956 * platform/mac/ScrollbarThemeMac.mm: Copied from platform/mac/ScrollbarThemeMac.cpp.
16957
darin@apple.com39a180f2008-09-19 21:15:14 +0000169582008-09-19 Darin Adler <darin@apple.com>
16959
16960 Reviewed by Sam Weinig.
16961
16962 - part 2 of https://bugs.webkit.org/show_bug.cgi?id=20858
16963 make each distinct C++ class get a distinct JSC::Structure
16964
16965 + Fixed all cases where we were using a shared structure for multiple
16966 C++ classes in WebCore. This still has to be done in JavaScriptCore.
16967
16968 + Got rid of cacheGlobalObject.
16969
16970 + Improved use of PassRefPtr in bindings code.
16971
16972 + Removed a couple cases where we were potentially allocating prototypes
16973 inside a JSObject's construction process -- this can lead to trouble if
16974 we do a garbage collection while an object is only partly constructed.
16975
16976 * bindings/js/JSAudioConstructor.cpp:
16977 (WebCore::JSAudioConstructor::JSAudioConstructor): Create a structure explicitly
16978 so we don't implicitly share the structure with other objects that use the object
16979 prototype.
16980
16981 * bindings/js/JSDOMBinding.cpp:
16982 (WebCore::getCachedDOMConstructor): Added. To be used for constructors so we
16983 don't need cacheGlobalObject any more.
16984 (WebCore::cacheDOMConstructor): Ditto.
16985
16986 * bindings/js/JSDOMBinding.h: Removed DOMObject constructor that takes a prototype.
16987 Added functions and a function template for getting cached DOM constructors.
16988 Removed cacheGlobalObject function template.
16989
16990 * bindings/js/JSDOMWindowBase.cpp:
16991 (WebCore::JSDOMWindowBase::JSDOMWindowBase): Take a PassRefPtr<DOMWindow> since
16992 we're taking ownership.
16993 * bindings/js/JSDOMWindowBase.h: Changed constructor to take PassRefPtr, since
16994 we're taking ownership. Added constructor map.
16995 * bindings/js/JSDOMWindowCustom.cpp:
16996 (WebCore::JSDOMWindow::mark): Mark the constructors in the map.
16997
16998 * bindings/js/JSDOMWindowShell.cpp:
16999 (WebCore::JSDOMWindowShell::JSDOMWindowShell): Take a PassRefPtr<DOMWindow> since
17000 we're taking ownership. Use the new setWindow function to create the JSDOMWindow;
17001 this is now done in only that one place.
17002 (WebCore::JSDOMWindowShell::setWindow): Added. Creates the JSDOMWindow based on
17003 the passed-in DOMWindow. Code was moved here and changed to allocate unique
17004 structures for both the window prototype and the window.
17005 * bindings/js/JSDOMWindowShell.h: Ditto.
17006
17007 * bindings/js/JSEventTargetBase.h: Changed class template argument so it doesn't
17008 have the same name (JSEventTarget) as an actual class. Removed unhelpful use of
17009 private/friend in JSEventTargetBase. Removed comments referring to defunct
17010 macros. Changed JSEventTargetBasePrototype to get the prototype with the new
17011 rather than its own copy of cacheGlobalObject (I missed this during pass 1).
17012 Changed JSEventTargetBasePrototype so it doesn't have so many template arguments.
17013
17014 * bindings/js/JSEventTargetNode.cpp: Added s_info; needed for the new scheme
17015 for caching structures and prototypes.
17016 (WebCore::JSEventTargetNode::JSEventTargetNode): Use PassRefPtr.
17017 (WebCore::JSEventTargetNode::createPrototype): Added.
17018 * bindings/js/JSEventTargetNode.h: Updated for above changes.
17019
17020 * bindings/js/JSHTMLAllCollection.h:
17021 (WebCore::JSHTMLAllCollection::JSHTMLAllCollection): Use PassRefPtr.
17022 * bindings/js/JSHTMLCollectionCustom.cpp:
17023 (WebCore::getNamedItems): Pass ExecState instead of prototype.
17024 * bindings/js/JSHTMLFormElementCustom.cpp:
17025 (WebCore::JSHTMLFormElement::nameGetter): Ditto.
17026 * bindings/js/JSHTMLInputElementBase.cpp:
17027 (WebCore::JSHTMLInputElementBase::JSHTMLInputElementBase): Use PassRefPtr.
17028 * bindings/js/JSHTMLInputElementBase.h: Ditto.
17029 * bindings/js/JSHTMLOptionElementConstructor.cpp:
17030 (WebCore::JSHTMLOptionElementConstructor::JSHTMLOptionElementConstructor):
17031 Create a unique structure instead of sharing.
17032 * bindings/js/JSImageConstructor.cpp:
17033 (WebCore::JSImageConstructor::JSImageConstructor): Ditto.
17034
17035 * bindings/js/JSInspectedObjectWrapper.cpp:
17036 (WebCore::JSInspectedObjectWrapper::wrap): Removed overload that takes
17037 a prototype rather than a structure. Made the use of inheritorID() here
17038 explicit.
17039 * bindings/js/JSInspectedObjectWrapper.h: Ditto.
17040 * bindings/js/JSInspectorCallbackWrapper.cpp:
17041 (WebCore::JSInspectorCallbackWrapper::wrap): Ditto.
17042 * bindings/js/JSInspectorCallbackWrapper.h: Ditto.
17043
17044 * bindings/js/JSNamedNodesCollection.cpp:
17045 (WebCore::JSNamedNodesCollection::JSNamedNodesCollection): Changed to
17046 take an ExecState argument instead of a prototype. Create a unique
17047 StructureID instead of sharing.
17048 * bindings/js/JSNamedNodesCollection.h: Ditto.
17049
17050 * bindings/js/JSQuarantinedObjectWrapper.cpp: Removed overloaded
17051 constructor that takes a prototype instead of a structure.
17052 * bindings/js/JSQuarantinedObjectWrapper.h: Ditto.
17053
17054 * bindings/js/JSRGBColor.cpp:
17055 (WebCore::JSRGBColor::JSRGBColor): Take ExecState instead of a
17056 prototype; create a unique structure.
17057 (WebCore::getJSRGBColor): Ditto.
17058 * bindings/js/JSRGBColor.h: Ditto.
17059
17060 * bindings/js/JSSQLResultSetRowListCustom.cpp:
17061 (WebCore::JSSQLResultSetRowList::item): Use constructEmptyObject instead
17062 of explicit coding the idiom for making a new object.
17063
17064 * bindings/js/JSXMLHttpRequestConstructor.cpp:
17065 (WebCore::JSXMLHttpRequestConstructor::JSXMLHttpRequestConstructor):
17066 Create a unique structure instead of the shared one.
17067 * bindings/js/JSXSLTProcessorConstructor.cpp:
17068 (WebCore::JSXSLTProcessorConstructor::JSXSLTProcessorConstructor):
17069 Ditto.
17070
17071 * bindings/js/ScriptController.cpp:
17072 (WebCore::ScriptController::clearWindowShell): Let the window shell's
17073 setWindow function create the JSDOMWindow instead of doing it here.
17074
17075 * bindings/scripts/CodeGeneratorJS.pm: Changed to use PassRefPtr for
17076 the structure and the wrapped object when creating wrappers.
17077 Simplified some of the special cases for DOMWindow so they are
17078 different only in ways the need to be. Eliminated the
17079 JSDOMWindow::createPrototype and JSDOMWindowPrototype::self
17080 functions. Moved responsibility for creating the structure and
17081 parent prototype out of the prototype constructor into the
17082 createPrototype function. Removed the unused "DoNotCache" flag for
17083 objects other than DOMWindow. Use getDOMConstructor instead of
17084 cacheGlobalObject for constructors. Make each constructor have
17085 a unique structure ID.
17086
17087 * bridge/objc/objc_runtime.h: Added createPrototype and changed the
17088 name of the info member to s_info so we can use the standard DOM
17089 binding macros to handl the prototype.
17090 * bridge/objc/objc_runtime.mm: Fixed namespacing a bit.
17091 (JSC::Bindings::ObjcFallbackObjectImp::ObjcFallbackObjectImp):
17092 Create a unique structure using getDOMStructure.
17093
17094 * bridge/runtime_array.cpp: Fixed namespacing a bit.
17095 (JSC::RuntimeArray::RuntimeArray): Create a unique structure using
17096 getDOMStructure.
17097 * bridge/runtime_array.h: Added createPrototype so getDOMStructure
17098 will work.
17099
17100 * bridge/runtime_object.cpp:
17101 (JSC::RuntimeObjectImp::RuntimeObjectImp): Create a unique structure using
17102 getDOMStructure.
17103 * bridge/runtime_object.h: Added createPrototype so getDOMStructure
17104 will work.
17105
17106 * history/CachedPage.cpp:
17107 (WebCore::CachedPage::restore): Let the window shell's
17108 setWindow function create the JSDOMWindow instead of doing it here.
17109
17110 * page/DOMWindow.idl: Removed DoNotCache, which is no longer used.
17111
mitz@apple.comd6b74252008-09-19 21:02:55 +0000171122008-09-19 Dan Bernstein <mitz@apple.com>
17113
17114 Reviewed by Dave Hyatt.
17115
17116 This optimization was suggested by Daniel Fenwick
17117
17118 - speed up measuring text on the Core Text code path by not specifying a paragraph writing direction
17119
17120 Specifying LTR paragraph directionality when measuring runs of RTL text
mitz@apple.com308acec2008-09-19 21:10:48 +000017121 resulted in typically two CTRuns being generated for every run instead
mitz@apple.comd6b74252008-09-19 21:02:55 +000017122 of one, due to the leading space being reordered to the left.
17123
17124 * platform/graphics/SimpleFontData.h: Removed the ltr parameter to
17125 getCFStringAttributes() and changed m_CFStringAttributes from an array
17126 to a single value.
17127 * platform/graphics/mac/CoreTextController.cpp:
17128 (WebCore::CoreTextController::CoreTextController): Added a
17129 mayUseNaturalWritingDirection parameter.
17130 (WebCore::CoreTextController::collectCoreTextRunsForCharacters): Changed
17131 to force the bidi embedding level whenever
17132 m_mayUseNaturalWritingDirectrion is false. Since this is now a common
17133 case, made the typesetter options dictionaries static.
17134 * platform/graphics/mac/CoreTextController.h:
17135 * platform/graphics/mac/FontMacCoreText.cpp:
17136 (WebCore::Font::selectionRectForComplexText): Renamed a local variable.
17137 (WebCore::Font::floatWidthForComplexText): Changed to allow the
17138 CoreTextController to not set the writing direction.
17139 * platform/graphics/mac/SimpleFontDataMac.mm:
17140 (WebCore::SimpleFontData::getCFStringAttributes): Removed the ltr
17141 parameter and the paragraph style attribute.
17142
hyatt@apple.com2d7bdf72008-09-19 20:54:33 +0000171432008-09-19 David Hyatt <hyatt@apple.com>
17144
17145 Reviewed by Sam Weinig
17146
17147 https://bugs.webkit.org/show_bug.cgi?id=20941
17148
17149 Incorrect height calculation for replaced element inside nested
17150 positioned elements (where the inner has a percentage height and
17151 the outer implicitly has a fixed height because of explicit top/bottom
17152 values).
17153
17154 Added fast/block/positioning/replaced-inside-top-bottom.html
17155
17156 * rendering/RenderBox.cpp:
17157 (WebCore::RenderBox::availableHeightUsing):
17158
cfleizach@apple.com37bd8d72008-09-19 20:48:57 +0000171592008-09-19 Chris Fleizach <cfleizach@apple.com>
17160
17161 Fix Tiger bustage
17162
17163 * page/mac/AccessibilityObjectWrapper.mm:
17164
cfleizach@apple.com63b88ab2008-09-19 20:24:48 +0000171652008-09-18 Chris Fleizach <cfleizach@apple.com>
17166
17167 Reviewed by Darin Adler.
17168
17169 <rdar://problem/6211041> Expose legend tag in accessibility
17170
17171 Exposes the legend tag as the titleUIElement of a fieldset
17172
17173 Test: accessibility/legend.html
17174
17175 * page/AccessibilityObject.h:
17176 (WebCore::AccessibilityObject::isFieldset):
17177 * page/AccessibilityRenderObject.cpp:
17178 (WebCore::AccessibilityRenderObject::isFieldset):
17179 (WebCore::AccessibilityRenderObject::titleUIElement):
17180 * page/AccessibilityRenderObject.h:
17181 * rendering/RenderFieldset.h:
17182
cfleizach@apple.comcff26212008-09-19 20:04:13 +0000171832008-09-19 Chris Fleizach <cfleizach@apple.com>
17184
17185 Reviewed by Darin Adler.
17186
17187 <rdar://problem/6213171> WebKit should use new array-centric methods for AX performance
17188
17189 Implement a few AX API methods that will be called by AppKit, which will
17190 speed up access to accessibility objects
17191
17192 * page/mac/AccessibilityObjectWrapper.mm:
17193 (-[AccessibilityObjectWrapper accessibilityIndexOfChild:]):
17194 (-[AccessibilityObjectWrapper accessibilityArrayAttributeCount:]):
17195 (-[AccessibilityObjectWrapper accessibilityArrayAttributeValues:index:maxCount:]):
17196
zecke@webkit.org7594eb62008-09-19 11:06:55 +0000171972008-09-19 Holger Hans Peter Freyther <zecke@selfish.org>
17198
17199 Reviewed by Simon Hausmann.
17200
zecke@webkit.org3df68032008-09-19 11:43:27 +000017201 [qtwebkit] Set the m_should* flags to their proper value on entry
17202 With plugins it was possible that we finished a job twice. This was
17203 some kind of reentrancy in QNetworkReplyHandler::sendQueuedItems. By
17204 setting the flag to (m_loadMode == LoadDeferred) they will always have
17205 the right value and we will not send responses twice.
17206
17207 * platform/network/qt/QNetworkReplyHandler.cpp:
17208
172092008-09-19 Holger Hans Peter Freyther <zecke@selfish.org>
17210
17211 Reviewed by Simon Hausmann.
17212
zecke@webkit.org7594eb62008-09-19 11:06:55 +000017213 [qtwebkit] Pass test 70 of acid3. Handle text decoding errors
17214 Handle text decoding errors before instructing the parser to parse. We
17215 have converted the text to QString and all encoding errors are gone and
17216 the parser will not be able to detect them. So handle them before parsing.
17217
17218 * dom/XMLTokenizerQt.cpp:
17219 (WebCore::XMLTokenizer::doWrite):
17220
darin@apple.comc9aea832008-09-19 06:49:35 +0000172212008-09-18 Darin Adler <darin@apple.com>
17222
17223 Reviewed by Maciej Stachowiak.
17224
17225 - part 1 of https://bugs.webkit.org/show_bug.cgi?id=20858
17226 make each distinct C++ class get a distinct JSC::Structure
17227
17228 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
17229 (WebCore::JSCSSStyleDeclaration::customPut): Use setDOMException
17230 instead of DOMExceptionTranslator.
17231
17232 * bindings/js/JSDOMBinding.cpp:
17233 (WebCore::getCachedDOMObjectWrapper): Updated function name.
17234 (WebCore::cacheDOMObjectWrapper): Ditto.
17235 (WebCore::forgetDOMObject): Ditto.
17236 (WebCore::getCachedDOMNodeWrapper): Ditto.
17237 (WebCore::forgetDOMNode): Ditto.
17238 (WebCore::cacheDOMNodeWrapper): Ditto.
17239 (WebCore::forgetAllDOMNodesForDocument): Ditto.
17240 (WebCore::markDOMNodesForDocument): Ditto.
17241 (WebCore::updateDOMNodeDocument): Ditto.
17242 (WebCore::getCachedDOMStructure): Added.
17243 (WebCore::createDOMStructure): Ditto.
17244
17245 * bindings/js/JSDOMBinding.h: Get rid of the ScriptInterpreter
17246 class and replace the static member functions with non-member
17247 functions. Added many other functions for getting at structures,
17248 prototypes, wrappers, and creating them. Also moved the
17249 cacheGlobalObject function here from JavaScriptCore; eventually
17250 I'll remove that once I get rid of the remaining callers. Also
17251 removed the DOMExceptionTranslator class.
17252
17253 * bindings/js/JSDOMWindowBase.h: Added JSDOMStructureMap type,
17254 and put one of those maps in each window.
17255
17256 * bindings/js/JSDOMWindowCustom.cpp:
17257 (WebCore::markDOMObjectWrapper): Updated for function name change.
17258 (WebCore::JSDOMWindow::mark): Added code to mark all the structures
17259 in the structure map.
17260
17261 * bindings/js/JSEventTargetNode.cpp:
17262 (WebCore::JSEventTargetNode::JSEventTargetNode): Changed to take
17263 a structure instead of a prototype.
17264 * bindings/js/JSEventTargetNode.h: Ditto.
17265 * bindings/js/JSHTMLAllCollection.h:
17266 (WebCore::JSHTMLAllCollection::JSHTMLAllCollection): Ditto.
17267
17268 * bindings/js/JSHTMLInputElementBase.cpp:
17269 (WebCore::JSHTMLInputElementBase::JSHTMLInputElementBase): Removed
17270 use of the JSC_IMPLEMENT_PROTOTYPE macro, and changed to take a
17271 structure instead of a prototype.
17272 * bindings/js/JSHTMLInputElementBase.h: Removed use of the
17273 JSC_DEFINE_PROTOTYPE_WITH_PROTOTYPE macro, and changed constructor
17274 to take a structure instead of a prototype. Created a dummy prototype
17275 class that causes the HTMLInputElement prototype to have the
17276 HTMLElement prototype.
17277
17278 * bindings/scripts/CodeGeneratorJS.pm: Change constructors to take
17279 structures instead of prototypes. Changed the prototype self function
17280 to use the getDOMPrototype function -- later we can eliminate it and
17281 have callers invoke getDOMPrototype directly instead. Updated other
17282 functions that have name changes. Added code to generate the
17283 createPrototype member function. Changed use of cacheGlobalObject to
17284 get it from the WebCore namespace instead of the JSC namespace.
17285 Changed cacheDOMObject calls to use getDOMObjectWrapper instead.
17286
17287 * dom/Document.cpp:
17288 (WebCore::Document::~Document): Updated for name change and also
17289 removed unnecessary JSLock use -- there's no need to lock around this.
17290 * dom/Node.cpp:
17291 (WebCore::Node::setDocument): Ditto.
17292
17293 * dom/make_names.pl: Changed to use CREATE_DOM_NODE_WRAPPER macro
17294 instead of calling new directly.
17295
17296 * bindings/js/JSCSSRuleCustom.cpp:
17297 (WebCore::toJS): Updated for function name changes and used the
17298 CREATE_DOM_OBJECT_WRAPPER macro.
17299 * bindings/js/JSCSSValueCustom.cpp:
17300 (WebCore::toJS): Ditto.
17301 * bindings/js/JSCanvasPixelArrayCustom.cpp:
17302 (WebCore::toJS): Ditto.
17303 * bindings/js/JSDocumentCustom.cpp:
17304 (WebCore::JSDocument::mark): Ditto.
17305 (WebCore::toJS): Ditto.
17306 * bindings/js/JSElementCustom.cpp:
17307 (WebCore::toJSNewlyCreated): Ditto.
17308 * bindings/js/JSEventCustom.cpp:
17309 (WebCore::toJS): Ditto.
17310 * bindings/js/JSEventTargetBase.cpp:
17311 (WebCore::jsEventTargetDispatchEvent): Use setDOMException instead
17312 of DOMExceptionTranslator.
17313 (WebCore::toJS): Updated for function name changes and used the
17314 CREATE_DOM_OBJECT_WRAPPER macro.
17315 * bindings/js/JSHTMLCollectionCustom.cpp:
17316 (WebCore::toJS): Ditto.
17317 * bindings/js/JSNodeCustom.cpp:
17318 (WebCore::JSNode::mark): Ditto.
17319 (WebCore::createWrapper): Ditto.
17320 (WebCore::toJS): Ditto.
17321 * bindings/js/JSSVGPathSegCustom.cpp:
17322 (WebCore::toJS): Ditto.
17323 * bindings/js/JSStyleSheetCustom.cpp:
17324 (WebCore::toJS): Ditto.
17325 (WebCore::JSStyleSheet::mark): Ditto.
17326 * bindings/js/JSTextCustom.cpp:
17327 (WebCore::toJSNewlyCreated): Ditto.
17328 * bindings/js/JSXMLHttpRequestConstructor.cpp:
17329 (WebCore::constructXMLHttpRequest): Ditto.
17330 * bindings/js/JSXMLHttpRequestCustom.cpp:
17331 (WebCore::JSXMLHttpRequest::mark): Ditto.
17332 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
17333 (WebCore::JSXMLHttpRequestUpload::mark): Ditto.
17334 * bindings/js/JSXSLTProcessorConstructor.cpp:
17335 (WebCore::constructXSLTProcessor): Ditto.
17336 * bindings/js/ScriptController.cpp:
17337 (WebCore::ScriptController::finishedWithEvent): Ditto.
17338 * xml/XMLHttpRequest.cpp:
17339 (WebCore::XMLHttpRequest::loadRequestAsynchronously): Ditto.
17340 (WebCore::XMLHttpRequest::dropProtection): Ditto.
17341
hyatt@apple.com083539d2008-09-19 06:30:16 +0000173422008-09-18 David Hyatt <hyatt@apple.com>
17343
17344 This patch gets a viewless scrollbar working on Mac. It is turned off
17345 by default. Hit testing works. For now the scrollbar just paints ugly
17346 debug rects in the place of the buttons, track and thumb. It does match
17347 Aqua metrics though.
17348
17349 Reviewed by Sam Weinig
17350
17351 * WebCore.xcodeproj/project.pbxproj:
17352 * page/mac/EventHandlerMac.mm:
17353 (WebCore::EventHandler::passMousePressEventToScrollbar):
17354 * platform/ScrollbarThemeComposite.cpp:
17355 (WebCore::ScrollbarThemeComposite::paint):
17356 (WebCore::ScrollbarThemeComposite::trackPosition):
17357 * platform/ScrollbarThemeComposite.h:
17358 * platform/mac/ScrollViewMac.mm:
17359 (WebCore::ScrollView::addChild):
17360 * platform/mac/ScrollbarThemeMac.cpp:
17361 (WebCore::):
17362 (WebCore::ScrollbarThemeMac::hasButtons):
17363 (WebCore::ScrollbarThemeMac::hasThumb):
17364 (WebCore::buttonRepaintRect):
17365 (WebCore::ScrollbarThemeMac::backButtonRect):
17366 (WebCore::ScrollbarThemeMac::forwardButtonRect):
17367 (WebCore::trackRepaintRect):
17368 (WebCore::ScrollbarThemeMac::trackRect):
17369 (WebCore::ScrollbarThemeMac::minimumThumbLength):
17370 (WebCore::ScrollbarThemeMac::shouldCenterOnThumb):
17371 (WebCore::ScrollbarThemeMac::paintTrack):
17372 (WebCore::ScrollbarThemeMac::paintButton):
17373 (WebCore::ScrollbarThemeMac::paintThumb):
17374 * platform/mac/ScrollbarThemeMac.h:
17375 (WebCore::ScrollbarThemeMac::supportsControlTints):
17376 * platform/qt/ScrollbarThemeQt.cpp:
17377 (WebCore::ScrollbarThemeQt::trackPosition):
17378
collinj@webkit.org51261aa2008-09-19 06:13:22 +0000173792008-09-18 Collin Jackson <collinj@webkit.org>
17380
17381 Build fix; added missing header file to GNUmakefile.am
17382
17383 * GNUmakefile.am:
17384
weinig@apple.com39aecbe2008-09-19 04:56:21 +0000173852008-09-18 Sam Weinig <sam@webkit.org>
17386
17387 Reviewed by David "the Hair" Hyatt.
17388
17389 Move DataRef, SVGRenderStyle and SVGRenderStyleDefs in render/style.
17390
17391 * GNUmakefile.am:
17392 * WebCore.pro:
17393 * WebCore.vcproj/WebCore.vcproj:
17394 * WebCore.xcodeproj/project.pbxproj:
17395 * rendering/DataRef.h: Removed.
17396 * rendering/SVGRenderStyle.cpp: Removed.
17397 * rendering/SVGRenderStyle.h: Removed.
17398 * rendering/SVGRenderStyleDefs.cpp: Removed.
17399 * rendering/SVGRenderStyleDefs.h: Removed.
17400 * rendering/style/DataRef.h: Copied from rendering/DataRef.h.
17401 * rendering/style/SVGRenderStyle.cpp: Copied from rendering/SVGRenderStyle.cpp.
17402 * rendering/style/SVGRenderStyle.h: Copied from rendering/SVGRenderStyle.h.
17403 * rendering/style/SVGRenderStyleDefs.cpp: Copied from rendering/SVGRenderStyleDefs.cpp.
17404 * rendering/style/SVGRenderStyleDefs.h: Copied from rendering/SVGRenderStyleDefs.h.
17405
mrowe@apple.coma5206592008-09-19 04:47:58 +0000174062008-09-18 Mark Rowe <mrowe@apple.com>
17407
17408 Reviewed by Dan Bernstein.
17409
17410 Add a means of clearing a FrameTree's name.
17411
17412 * WebCore.base.exp:
17413 * page/FrameTree.cpp:
17414 (WebCore::FrameTree::clearName):
17415 * page/FrameTree.h:
17416
hyatt@apple.com6eeef382008-09-19 04:30:53 +0000174172008-09-18 David Hyatt <hyatt@apple.com>
17418
17419 Eliminate addToSuperview from Widget, since it was only called
17420 by ScrollViewMac's addChild method. Just shift the original body
17421 of addToSuperView into addChild.
17422
17423 Reviewed by Sam Weinig
17424
17425 * platform/Widget.h:
17426 * platform/mac/ScrollViewMac.mm:
17427 (WebCore::ScrollView::addChild):
17428 * platform/mac/WidgetMac.mm:
17429
collinj@webkit.org9c672f62008-09-19 04:15:14 +0000174302008-09-18 Collin Jackson <collinj@webkit.org>
17431
17432 Reviewed by Antti Koivisto and Mark Rowe.
17433
17434 Test: http/tests/misc/dns-prefetch-control.html
17435
17436 https://bugs.webkit.org/show_bug.cgi?id=20690
17437
17438 Invoke WebCore::prefetchDNS() on host names that appear in
17439 in the href of hyperlinks and <link rel="dns-prefetch">. This
17440 can be used to implement DNS prefetching.
17441
17442 * WebCore.vcproj/WebCore.vcproj:
17443 * WebCore.xcodeproj/project.pbxproj:
17444 * dom/Document.cpp:
17445 (WebCore::Document::Document):
17446 (WebCore::Document::processHttpEquiv):
17447 (WebCore::Document::setSecurityOrigin):
17448 (WebCore::Document::initDNSPrefetch):
17449 (WebCore::Document::parseDNSPrefetchControlHeader):
17450 * dom/Document.h:
17451 (WebCore::Document::isDNSPrefetchEnabled):
17452 * html/HTMLAnchorElement.cpp:
17453 (WebCore::HTMLAnchorElement::parseMappedAttribute):
17454 * html/HTMLLinkElement.cpp:
17455 (WebCore::HTMLLinkElement::HTMLLinkElement):
17456 (WebCore::HTMLLinkElement::parseMappedAttribute):
17457 (WebCore::HTMLLinkElement::tokenizeRelAttribute):
17458 (WebCore::HTMLLinkElement::process):
17459 * html/HTMLLinkElement.h:
17460 * html/PreloadScanner.cpp:
17461 (WebCore::PreloadScanner::processAttribute):
17462 * loader/FrameLoader.cpp:
17463 (WebCore::FrameLoader::begin):
17464 * platform/gtk/TemporaryLinkStubs.cpp:
17465 (WebCore::prefetchDNS):
17466 * platform/network/DNS.h: Added.
17467 * platform/network/cf/DNSCFNet.cpp: Added.
17468 (WebCore::prefetchDNS):
17469 * platform/qt/TemporaryLinkStubs.cpp:
17470 (WebCore::prefetchDNS):
17471 * platform/wx/TemporaryLinkStubs.cpp:
17472 (WebCore::prefetchDNS):
17473
hyatt@apple.comc5b931a2008-09-19 00:39:51 +0000174742008-09-18 David Hyatt <hyatt@apple.com>
17475
hyatt@apple.comcf31c162008-09-19 04:01:56 +000017476 Eliminate the convertToScreenCoordinate method on Widget, since
17477 ScrollView has redundant methods that already do the same thing.
17478
17479 Reviewed by Sam Weinig
17480
17481 * editing/mac/SelectionControllerMac.mm:
17482 (WebCore::SelectionController::notifyAccessibilityForSelectionChange):
17483 * platform/Widget.h:
17484 * platform/mac/WidgetMac.mm:
17485 (WebCore::Widget::containingWindow):
17486
174872008-09-18 David Hyatt <hyatt@apple.com>
17488
hyatt@apple.com179629b3c2008-09-19 03:16:26 +000017489 Move to only one constructor for Widgets. Rename data to m_data and make
17490 it have an #ifdef only for platforms that have platform-specific data (Mac
17491 and Gtk).
17492
17493 Reviewed by Sam Weinig
17494
17495 * WebCore.base.exp:
17496 * platform/Widget.cpp:
17497 (WebCore::Widget::init):
17498 * platform/Widget.h:
17499 * platform/gtk/WidgetGtk.cpp:
17500 (WebCore::Widget::Widget):
17501 (WebCore::Widget::~Widget):
17502 (WebCore::Widget::cursor):
17503 (WebCore::Widget::setCursor):
17504 * platform/mac/WidgetMac.mm:
17505 (WebCore::Widget::Widget):
17506 (WebCore::Widget::~Widget):
17507 (WebCore::Widget::addToSuperview):
17508 (WebCore::Widget::removeFromSuperview):
17509 (WebCore::Widget::beforeMouseDown):
17510 (WebCore::Widget::afterMouseDown):
17511 * platform/qt/WidgetQt.cpp:
17512 (WebCore::Widget::Widget):
17513 * platform/win/WidgetWin.cpp:
17514 (WebCore::Widget::Widget):
17515 * platform/wx/WidgetWx.cpp:
17516 (WebCore::Widget::Widget):
17517
175182008-09-18 David Hyatt <hyatt@apple.com>
17519
hyatt@apple.com470d7e72008-09-19 03:01:08 +000017520 Move Qt's isNPAPIPlugin boolean from Widget down to PluginView, since there
17521 was no reason for it to be on Widget. This change eliminates Qt ifdefs
17522 from Widget.
17523
17524 Reviewed by Sam Weinig
17525
17526 * bindings/js/ScriptControllerQt.cpp:
17527 (WebCore::ScriptController::createScriptInstanceForWidget):
17528 * platform/qt/WidgetQt.cpp:
17529 (WebCore::WidgetPrivate::WidgetPrivate):
17530 (WebCore::WidgetPrivate::~WidgetPrivate):
17531 (WebCore::Widget::Widget):
17532 (WebCore::Widget::~Widget):
17533 * plugins/PluginView.cpp:
17534 (WebCore::PluginView::PluginView):
17535 * plugins/PluginView.h:
17536 (WebCore::PluginView::isNPAPIPlugin):
17537 (WebCore::PluginView::setIsNPAPIPlugin):
17538
175392008-09-18 David Hyatt <hyatt@apple.com>
17540
hyatt@apple.com557408b2008-09-19 02:36:08 +000017541 Make geometryChanged() cross-platform on Widget. GTK and WIN platform
17542 ifdefs are now gone from Widget!
17543
17544 Reviewed by Sam Weinig
17545
17546 * platform/Widget.h:
17547 (WebCore::Widget::geometryChanged):
17548 * platform/gtk/WidgetGtk.cpp:
17549 * platform/qt/WidgetQt.cpp:
17550
175512008-09-18 David Hyatt <hyatt@apple.com>
17552
hyatt@apple.com17e57432008-09-19 02:29:27 +000017553 Consolidate convertTo/FromContainingWindow methods so that all platforms
17554 but Mac share the same code.
17555
17556 Move convertSelfToChild and convertChildToSelf to ScrollView, since
17557 Widget should know nothing about children. Make the methods cross-platform
17558 on ScrollView.
17559
17560 Reviewed by Sam Weinig
17561
17562 * platform/ScrollView.h:
17563 (WebCore::ScrollView::convertChildToSelf):
17564 (WebCore::ScrollView::convertSelfToChild):
17565 * platform/Widget.cpp:
17566 (WebCore::Widget::convertToContainingWindow):
17567 (WebCore::Widget::convertFromContainingWindow):
17568 * platform/Widget.h:
17569 (WebCore::Widget::geometryChanged):
17570 * platform/gtk/ScrollViewGtk.cpp:
17571 (WebCore::ScrollView::isScrollViewScrollbar):
17572 * platform/gtk/WidgetGtk.cpp:
17573 * platform/mac/ScrollViewMac.mm:
17574 (WebCore::ScrollView::isScrollViewScrollbar):
17575 * platform/mac/WidgetMac.mm:
17576 * platform/qt/ScrollViewQt.cpp:
17577 (WebCore::ScrollView::isScrollViewScrollbar):
17578 * platform/qt/WidgetQt.cpp:
17579 * platform/win/ScrollViewWin.cpp:
17580 (WebCore::ScrollView::isScrollViewScrollbar):
17581 * platform/win/WidgetWin.cpp:
17582
175832008-09-18 David Hyatt <hyatt@apple.com>
17584
hyatt@apple.comc5b931a2008-09-19 00:39:51 +000017585 Make the conversion methods that go to and from some containingWindow
17586 cross-platform. Implement them on Mac.
17587
17588 Reviewed by Sam Weinig
17589
17590 * platform/Widget.h:
17591 (WebCore::Widget::setContainingWindow):
17592 * platform/mac/WidgetMac.mm:
17593 (WebCore::Widget::convertFromContainingWindow):
17594 (WebCore::Widget::convertToContainingWindow):
17595
weinig@apple.comd1ea02d2008-09-19 00:28:05 +0000175962008-09-18 Sam Weinig <sam@webkit.org>
17597
17598 Rubber-stamped by David "Yeah-yeah" Hyatt.
17599
17600 Cleanup RenderStyle.
17601
17602 * WebCore.xcodeproj/project.pbxproj:
17603 * rendering/style/CounterContent.h:
17604 * rendering/style/RenderStyle.cpp:
17605 * rendering/style/RenderStyle.h:
17606
dino@apple.comef93f532008-09-19 00:01:07 +0000176072008-09-18 Chris Marrin <cmarrin@apple.com>
17608
17609 Reviewed by Sam Weinig
17610
17611 Fixed https://bugs.webkit.org/show_bug.cgi?id=20908
17612 Now TransformOperations and AnimationList no longer
17613 inherit from Vector<> but rather have API to access.
17614
17615 * css/CSSComputedStyleDeclaration.cpp:
17616 (WebCore::computedTransform):
17617 (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
17618 * css/CSSStyleSelector.cpp:
17619 (WebCore::CSSStyleSelector::createTransformOperations):
17620 * page/animation/AnimationBase.cpp:
17621 (WebCore::blendFunc):
17622 * page/animation/CompositeAnimation.cpp:
17623 (WebCore::CompositeAnimation::updateTransitions):
17624 (WebCore::CompositeAnimation::updateKeyframeAnimations):
17625 (WebCore::CompositeAnimation::animate):
17626 * page/animation/ImplicitAnimation.cpp:
17627 (WebCore::ImplicitAnimation::validateTransformFunctionList):
17628 * page/animation/KeyframeAnimation.cpp:
17629 (WebCore::KeyframeAnimation::validateTransformFunctionList):
17630 * rendering/RenderLayer.cpp:
17631 (WebCore::RenderLayer::updateReflectionStyle):
17632 * rendering/style/AnimationList.cpp:
17633 (WebCore::AnimationList::operator==):
17634 * rendering/style/AnimationList.h:
17635 (WebCore::AnimationList::operator!=):
17636 (WebCore::AnimationList::size):
17637 (WebCore::AnimationList::isEmpty):
17638 (WebCore::AnimationList::resize):
17639 (WebCore::AnimationList::remove):
17640 (WebCore::AnimationList::append):
17641 (WebCore::AnimationList::animation):
17642 * rendering/style/RenderStyle.cpp:
17643 (WebCore::StyleRareNonInheritedData::updateKeyframes):
17644 (WebCore::RenderStyle::applyTransform):
17645 (WebCore::RenderStyle::adjustAnimations):
17646 (WebCore::RenderStyle::adjustTransitions):
17647 (WebCore::RenderStyle::transitionForProperty):
17648 * rendering/style/RenderStyle.h:
17649 (WebCore::RenderStyle::hasTransform):
17650 * rendering/style/TransformOperations.cpp:
17651 (WebCore::TransformOperations::TransformOperations):
17652 (WebCore::TransformOperations::operator==):
17653 * rendering/style/TransformOperations.h:
17654 (WebCore::TransformOperations::apply):
17655 (WebCore::TransformOperations::operations):
17656
zecke@webkit.org20690ef2008-09-18 23:28:34 +0000176572008-09-18 Holger Hans Peter Freyther <zecke@selfish.org>
17658
zecke@webkit.org30db7422008-09-19 01:00:18 +000017659 Build fix.
17660
17661 [qt] Build fixes after the Widget/ScrollView cleanup
17662 topLevel() is now root()
17663
17664
17665 * platform/qt/ScrollViewQt.cpp:
17666 (WebCore::ScrollView::ScrollViewPrivate::scrollBackingStore):
17667 (WebCore::ScrollView::addChild):
17668 (WebCore::ScrollView::removeChild):
17669
176702008-09-18 Holger Hans Peter Freyther <zecke@selfish.org>
17671
zecke@webkit.org20690ef2008-09-18 23:28:34 +000017672 Reviewed by Mark Rowe.
17673
17674 https://bugs.webkit.org/show_bug.cgi?id=20437
17675
17676 XMLTokenizer.cpp used to contain two different implementations. One was using
17677 libxml2 and the other was using the Qt XML StreamReader. Clean up the code by
17678 separating the two implementations from each other.
17679 Common code and some small bits are kept inside the XMLTokenizer.cpp, the Qt code
17680 was moved to XMLTokenizerQt.cpp and the Libxml2 based code was moved to
17681 XMLTokenizerLibxml2.cpp. There should be no functional changes.
17682
17683 Attempt to add XMLTokenizerLibxml2.cpp to every buildsystem so the build continues
17684 to work.
17685
17686 * GNUmakefile.am:
17687 * WebCore.pro:
17688 * WebCore.vcproj/WebCore.vcproj:
17689 * WebCore.xcodeproj/project.pbxproj:
17690 * WebCoreSources.bkl:
17691 * dom/XMLTokenizer.cpp:
17692 (WebCore::isScriptElement):
17693 (WebCore::castToScriptElement):
17694 (WebCore::XMLTokenizer::setCurrentNode):
17695 (WebCore::XMLTokenizer::write):
17696 (WebCore::XMLTokenizer::eventuallyMarkAsParserCreated):
17697 (WebCore::XMLTokenizer::enterText):
17698 (WebCore::toString):
17699 (WebCore::XMLTokenizer::exitText):
17700 (WebCore::XMLTokenizer::end):
17701 (WebCore::XMLTokenizer::insertErrorMessageBlock):
17702 * dom/XMLTokenizer.h:
17703 (WebCore::XMLTokenizer::wellFormed):
17704 * dom/XMLTokenizerLibxml2.cpp: Copied from WebCore/dom/XMLTokenizer.cpp.
17705 (WebCore::createMemoryParser):
17706 (WebCore::XMLTokenizer::XMLTokenizer):
17707 (WebCore::XMLTokenizer::~XMLTokenizer):
17708 (WebCore::XMLTokenizer::doWrite):
17709 (WebCore::ignorableWhitespaceHandler):
17710 (WebCore::XMLTokenizer::initializeParserContext):
17711 (WebCore::XMLTokenizer::doEnd):
17712 (WebCore::XMLTokenizer::lineNumber):
17713 (WebCore::XMLTokenizer::columnNumber):
17714 (WebCore::XMLTokenizer::stopParsing):
17715 (WebCore::XMLTokenizer::resumeParsing):
17716 (WebCore::parseXMLDocumentFragment):
17717 (WebCore::attributesStartElementNsHandler):
17718 (WebCore::parseAttributes):
17719 * dom/XMLTokenizerQt.cpp: Copied from WebCore/dom/XMLTokenizer.cpp.
17720 (WebCore::EntityResolver::resolveUndeclaredEntity):
17721 (WebCore::XMLTokenizer::XMLTokenizer):
17722 (WebCore::XMLTokenizer::~XMLTokenizer):
17723 (WebCore::XMLTokenizer::doWrite):
17724 (WebCore::XMLTokenizer::initializeParserContext):
17725 (WebCore::XMLTokenizer::doEnd):
17726 (WebCore::XMLTokenizer::lineNumber):
17727 (WebCore::XMLTokenizer::columnNumber):
17728 (WebCore::XMLTokenizer::stopParsing):
17729 (WebCore::XMLTokenizer::resumeParsing):
17730 (WebCore::parseXMLDocumentFragment):
17731 (WebCore::attributesStartElementNsHandler):
17732 (WebCore::parseAttributes):
17733 (WebCore::):
17734
bdakin@apple.com4c244902008-09-18 23:08:35 +0000177352008-09-18 Beth Dakin <bdakin@apple.com>
17736
17737 Reviewed by Geoff Garen.
17738
17739 Build fix for non-Mac builds.
17740
17741 * css/CSSPrimitiveValue.cpp:
17742 (WebCore::CSSPrimitiveValue::cssText):
17743
eric@webkit.org4ac94e62008-09-18 23:07:55 +0000177442008-09-18 Peter Kasting <pkasting@google.com>
17745
17746 Reviewed by hyatt. Landed by eseidel.
17747
17748 https://bugs.webkit.org/show_bug.cgi?id=20745
17749 Animated GIFs do not animate properly with (at least) CG.
17750
17751 * WebCore\platform\graphics\BitmapImage.cpp:
17752 * WebCore\platform\graphics\BitmapImage.h:
17753 * WebCore\platform\graphics\cairo\ImageCairo.cpp:
17754 * WebCore\platform\graphics\cg\ImageCG.cpp:
17755 * WebCore\platform\graphics\qt\ImageQt.cpp:
17756 * WebCore\platform\graphics\wx\ImageWx.cpp:
17757
cfleizach@apple.com2a72d8f2008-09-18 22:54:37 +0000177582008-09-18 Chris Fleizach <cfleizach@apple.com>
17759
17760 Reviewed by Beth Dakin
17761
17762 <rdar://problem/6224222> AX: should not expose a <table> as an AXTable if ARIA
17763 role specifies otherwise
17764
17765 If a <table> isn't an AXTable, the rows and cells should default to AccessibilityRenderObject
17766
17767 Test: accessibility/table-with-aria-role.html
17768
17769 * page/AccessibilityTable.cpp:
17770 (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
17771 (WebCore::AccessibilityTable::addChildren):
17772 (WebCore::AccessibilityTable::roleValue):
17773 (WebCore::AccessibilityTable::accessibilityIsIgnored):
17774 (WebCore::AccessibilityTable::title):
17775 * page/AccessibilityTableCell.cpp:
17776 (WebCore::AccessibilityTableCell::accessibilityIsIgnored):
17777 (WebCore::AccessibilityTableCell::isTableCell):
17778 (WebCore::AccessibilityTableCell::roleValue):
17779 * page/AccessibilityTableCell.h:
17780 * page/AccessibilityTableRow.cpp:
17781 (WebCore::AccessibilityTableRow::roleValue):
17782 (WebCore::AccessibilityTableRow::isTableRow):
17783 (WebCore::AccessibilityTableRow::accessibilityIsIgnored):
17784 * page/AccessibilityTableRow.h:
17785
sfalken@apple.coma96c5d32008-09-18 22:29:34 +0000177862008-09-18 Steve Falkenburg <sfalken@apple.com>
17787
17788 Use higher-resolution timers on all variants of Windows.
17789
17790 Reviewed by Darin Adler.
17791
17792 * platform/win/SharedTimerWin.cpp:
17793 (WebCore::setSharedTimerFireTime):
17794
17795
hyatt@apple.comb7d49b62008-09-18 22:21:25 +0000177962008-09-18 David Hyatt <hyatt@apple.com>
17797
17798 Make containingWindow() and setContainingWindow() cross-platform.
17799 Add a root() function cross-platform so Qt doesn't have to
17800 define its own.
17801
17802 Reviewed by Darin Adler
17803
17804 * platform/Widget.cpp:
17805 (WebCore::Widget::root):
17806 * platform/Widget.h:
17807 (WebCore::Widget::setContainingWindow):
17808 * platform/gtk/WidgetGtk.cpp:
17809 (WebCore::Widget::Widget):
17810 (WebCore::Widget::containingWindow):
17811 * platform/mac/ScrollViewMac.mm:
17812 (WebCore::ScrollView::addChild):
17813 (WebCore::ScrollView::removeChild):
17814 * platform/mac/WidgetMac.mm:
17815 (WebCore::Widget::containingWindow):
17816 * platform/qt/WidgetQt.cpp:
17817 (WebCore::Widget::invalidateRect):
17818 (WebCore::Widget::containingWindow):
17819 * platform/win/WidgetWin.cpp:
17820 (WebCore::Widget::Widget):
17821 (WebCore::Widget::~Widget):
17822 (WebCore::Widget::containingWindow):
17823
bdakin@apple.comfa1ce162008-09-18 22:18:01 +0000178242008-09-18 Beth Dakin <bdakin@apple.com>
17825
17826 Reviewed by Dave Hyatt.
17827
17828 Fix for https://bugs.webkit.org/show_bug.cgi?id=20515 Crash upon
17829 parsing CSS: unicode-range: searchfield-cancel-buttonpt=-webkit-
17830 dashboard-region=
17831 and corresponding: <rdar://problem/6174100>
17832
17833 This patch makes CSSParserValue::createCSSValue handle unknown
17834 identifiers.
17835
17836 * css/CSSParserValues.cpp:
17837 (WebCore::CSSParserValue::createCSSValue): If we have an identifier
17838 with no id (an unknown identifier) create a CSSPrimitiveValue of
17839 type CSS_PARSER_IDENTIFIER
17840 * css/CSSPrimitiveValue.cpp:
17841 (WebCore::CSSPrimitiveValue::cssText):
17842 (WebCore::CSSPrimitiveValue::parserValue):
17843 * css/CSSPrimitiveValue.h:
17844 (WebCore::CSSPrimitiveValue::):
17845
weinig@apple.comfce49be2008-09-18 21:46:14 +0000178462008-09-18 Sam Weinig <sam@webkit.org>
17847
17848 Rubber-stamped by David "I'd prefer not" Hyatt.
17849
17850 More the remaining class out of RenderStyle.h/cpp
17851
17852 * GNUmakefile.am:
17853 * WebCore.pro:
17854 * WebCore.vcproj/WebCore.vcproj:
17855 * WebCore.xcodeproj/project.pbxproj:
17856 * WebCoreSources.bkl:
17857 * rendering/style/CursorData.h: Copied from rendering/style/RenderStyle.h.
17858 (WebCore::CursorData::CursorData):
17859 (WebCore::CursorData::operator==):
17860 (WebCore::CursorData::operator!=):
17861 * rendering/style/CursorList.h: Copied from rendering/style/RenderStyle.h.
17862 (WebCore::CursorList::operator[]):
17863 (WebCore::CursorList::CursorList):
17864 * rendering/style/RenderStyle.cpp:
17865 * rendering/style/RenderStyle.h:
17866 (WebCore::RenderStyle::deref):
17867 (WebCore::RenderStyle::hasOneRef):
17868 (WebCore::RenderStyle::InheritedFlags::operator!=):
17869 (WebCore::RenderStyle::NonInheritedFlags::operator!=):
17870 (WebCore::RenderStyle::hasBackground):
17871 (WebCore::RenderStyle::outlineWidth):
17872 (WebCore::RenderStyle::autoWrap):
17873 (WebCore::RenderStyle::preserveNewline):
17874 (WebCore::RenderStyle::collapseWhiteSpace):
17875 (WebCore::RenderStyle::isCollapsibleWhiteSpace):
17876 (WebCore::RenderStyle::breakOnlyAfterWhiteSpace):
17877 (WebCore::RenderStyle::breakWords):
17878 (WebCore::RenderStyle::outlineOffset):
17879 (WebCore::RenderStyle::setLeft):
17880 (WebCore::RenderStyle::setRight):
17881 (WebCore::RenderStyle::setTop):
17882 (WebCore::RenderStyle::setBottom):
17883 (WebCore::RenderStyle::setDashboardRegion):
17884 (WebCore::RenderStyle::setBackgroundColor):
17885 (WebCore::RenderStyle::setBorderImage):
17886 (WebCore::RenderStyle::setBorderRadius):
17887 (WebCore::RenderStyle::setFontDescription):
17888 (WebCore::RenderStyle::adjustBackgroundLayers):
17889 (WebCore::RenderStyle::adjustMaskLayers):
17890 (WebCore::RenderStyle::deleteBindingURIs):
17891 (WebCore::RenderStyle::inheritBindingURIs):
17892 (WebCore::RenderStyle::isDisplayReplacedType):
17893 (WebCore::RenderStyle::isDisplayInlineType):
17894 (WebCore::RenderStyle::isOriginalDisplayInlineType):
17895 * rendering/style/StyleInheritedData.cpp: Copied from rendering/style/RenderStyle.cpp.
17896 * rendering/style/StyleInheritedData.h: Copied from rendering/style/RenderStyle.h.
17897 (WebCore::StyleInheritedData::operator!=):
17898 * rendering/style/StyleRareInheritedData.cpp: Copied from rendering/style/RenderStyle.cpp.
17899 * rendering/style/StyleRareInheritedData.h: Copied from rendering/style/RenderStyle.h.
17900 (WebCore::StyleRareInheritedData::operator!=):
17901 * rendering/style/StyleRareNonInheritedData.cpp: Copied from rendering/style/RenderStyle.cpp.
17902 * rendering/style/StyleRareNonInheritedData.h: Copied from rendering/style/RenderStyle.h.
17903 * rendering/style/StyleReflection.h: Copied from rendering/style/RenderStyle.h.
17904
hyatt@apple.com643534d2008-09-18 20:09:41 +0000179052008-09-18 David Hyatt <hyatt@apple.com>
17906
hyatt@apple.comd23089a2008-09-18 20:24:16 +000017907 Move the concept of suppression invalidation on Widgets to Scrollbar
17908 instead. Since this is only used by Scrollbars, there is no need for
17909 it to be on Widget.
17910
17911 Reviewed by Sam Weinig
17912
17913 * platform/Scrollbar.cpp:
17914 (WebCore::Scrollbar::Scrollbar):
17915 (WebCore::Scrollbar::invalidateRect):
17916 * platform/Scrollbar.h:
17917 (WebCore::Scrollbar::suppressInvalidation):
17918 (WebCore::Scrollbar::setSuppressInvalidation):
17919 * platform/Widget.h:
17920 * platform/gtk/WidgetGtk.cpp:
17921 (WebCore::Widget::Widget):
17922 (WebCore::Widget::invalidateRect):
17923 * platform/qt/WidgetQt.cpp:
17924 (WebCore::WidgetPrivate::WidgetPrivate):
17925 (WebCore::Widget::invalidateRect):
17926 * platform/win/WidgetWin.cpp:
17927 (WebCore::Widget::Widget):
17928 (WebCore::Widget::invalidateRect):
17929
179302008-09-18 David Hyatt <hyatt@apple.com>
17931
hyatt@apple.com643534d2008-09-18 20:09:41 +000017932 Make invalidate() on Widget non-virtual and make it just call
17933 invalidateRect() on the boundsGeometry() of the Widget.
17934
17935 Reviewed by Dan Bernstein
17936
17937 * platform/Widget.h:
17938 (WebCore::Widget::boundsGeometry):
17939 (WebCore::Widget::invalidate):
17940 * platform/gtk/WidgetGtk.cpp:
17941 * platform/mac/WidgetMac.mm:
17942 * platform/qt/WidgetQt.cpp:
17943 * platform/win/WidgetWin.cpp:
17944 * platform/wx/WidgetWx.cpp:
17945
weinig@apple.comcaf2df42008-09-18 19:40:24 +0000179462008-09-18 Sam Weinig <sam@webkit.org>
17947
17948 Rubber-stamped in exile by David Hyatt.
17949
17950 Split Animation, AnimationList, BindingURI, ContentData, CounterContent,
17951 KeyframeList, ShadowData, StyleFlexibleBoxData and TimingFunction out of
17952 RenderStyle.h/cpp
17953
17954 * GNUmakefile.am:
17955 * WebCore.pro:
17956 * WebCore.vcproj/WebCore.vcproj:
17957 * WebCore.xcodeproj/project.pbxproj:
17958 * WebCoreSources.bkl:
17959 * css/CSSStyleSelector.cpp:
17960 * css/CSSStyleSelector.h:
17961 * page/animation/CompositeAnimation.cpp:
17962 * page/animation/KeyframeAnimation.cpp:
17963 * page/animation/KeyframeAnimation.h:
17964 * rendering/RenderCounter.h:
17965 * rendering/style/Animation.cpp: Copied from rendering/style/RenderStyle.cpp.
17966 (WebCore::Animation::~Animation):
17967 (WebCore::Animation::animationsMatch):
17968 (WebCore::Animation::keyframeList):
17969 (WebCore::Animation::setAnimationKeyframe):
17970 * rendering/style/Animation.h: Copied from rendering/style/RenderStyle.h.
17971 * rendering/style/AnimationList.cpp: Copied from rendering/style/RenderStyle.cpp.
17972 * rendering/style/AnimationList.h: Copied from rendering/style/RenderStyle.h.
17973 * rendering/style/BindingURI.cpp: Copied from rendering/style/RenderStyle.cpp.
17974 * rendering/style/BindingURI.h: Copied from rendering/style/RenderStyle.h.
17975 (WebCore::BindingURI::operator!=):
17976 * rendering/style/ContentData.cpp: Copied from rendering/style/RenderStyle.cpp.
17977 * rendering/style/ContentData.h: Copied from rendering/style/RenderStyle.h.
17978 (WebCore::ContentData::ContentData):
17979 (WebCore::ContentData::~ContentData):
17980 * rendering/style/CounterContent.h: Copied from rendering/style/RenderStyle.h.
17981 (WebCore::CounterContent::CounterContent):
17982 * rendering/style/CounterDirectives.cpp: Copied from rendering/style/RenderStyle.cpp.
17983 * rendering/style/CounterDirectives.h: Copied from rendering/style/RenderStyle.h.
17984 (WebCore::CounterDirectives::CounterDirectives):
17985 * rendering/style/KeyframeList.cpp: Copied from rendering/style/RenderStyle.cpp.
17986 (WebCore::KeyframeList::insert):
17987 * rendering/style/KeyframeList.h: Copied from rendering/style/RenderStyle.h.
17988 (WebCore::KeyframeValue::KeyframeValue):
17989 (WebCore::KeyframeList::create):
17990 (WebCore::KeyframeList::KeyframeList):
17991 * rendering/style/RenderStyle.cpp:
17992 * rendering/style/RenderStyle.h:
17993 * rendering/style/ShadowData.cpp: Copied from rendering/style/RenderStyle.cpp.
17994 * rendering/style/ShadowData.h: Copied from rendering/style/RenderStyle.h.
17995 (WebCore::ShadowData::ShadowData):
17996 (WebCore::ShadowData::~ShadowData):
17997 (WebCore::ShadowData::operator!=):
17998 * rendering/style/StyleFlexibleBoxData.cpp: Copied from rendering/style/RenderStyle.cpp.
17999 * rendering/style/StyleFlexibleBoxData.h: Copied from rendering/style/RenderStyle.h.
18000 (WebCore::StyleFlexibleBoxData::operator!=):
18001 * rendering/style/TimingFunction.h: Copied from rendering/style/RenderStyle.h.
18002 (WebCore::TimingFunction::TimingFunction):
18003 (WebCore::TimingFunction::operator==):
18004
adele@apple.com5b2b5da2008-09-18 18:49:44 +0000180052008-09-18 Adele Peterson <adele@apple.com>
18006
18007 Reviewed by Dan Bernstein.
18008
18009 Fix RenderStyle leaks.
18010
18011 * rendering/RenderTextControl.cpp: (WebCore::RenderTextControl::createSubtreeIfNeeded):
18012
kmccullough@apple.comd4089752008-09-18 17:21:49 +0000180132008-09-18 Kevin McCullough <kmccullough@apple.com>
18014
kmccullough@apple.com76c708f2008-09-18 18:03:23 +000018015 Accidentally checked in code.
18016
18017 * html/HTMLElementFactory.cpp:
18018 (WebCore::frameConstructor):
18019 (WebCore::iframeConstructor):
18020
180212008-09-18 Kevin McCullough <kmccullough@apple.com>
18022
kmccullough@apple.comd4089752008-09-18 17:21:49 +000018023 Reviewed by Tim.
18024
18025 <rdar://problem/5722310> gracefully handle too many console messages
18026 (20904)
18027 - Keep track of the most previous message and then compare it to the
18028 subsequent messages as they come in. If there are multiple of the same
18029 message create a count that indicates the current number.
18030
18031 * manual-tests/inspector/multiple-console-messages.html: Added.
18032 * page/inspector/Console.js:
18033 * page/inspector/inspector.css:
18034
alp@webkit.org18a1fbc2008-09-18 11:50:26 +0000180352008-09-18 Jonathon Jongsma <jonathon@quotidian.org>
18036
18037 Reviewed by Alp Toker
18038
18039 https://bugs.webkit.org/show_bug.cgi?id=20830
18040 [GTK] Don't use deprecated pango API
18041
18042 Replace deprecated pango functions with non-deprecated ones for newer
18043 versions of pango
18044
18045 * platform/graphics/gtk/FontGtk.cpp:
18046 (WebCore::getDefaultPangoLayout):
18047 * platform/graphics/gtk/FontPlatformDataPango.cpp:
18048 (WebCore::FontPlatformData::FontPlatformData):
18049
alp@webkit.org2154ef22008-09-18 08:10:49 +0000180502008-09-18 Alp Toker <alp@nuanti.com>
18051
18052 Build fix for r36587. Add new sources (and sort the lists).
18053
18054 * GNUmakefile.am:
18055
weinig@apple.com3a98b2a2008-09-18 05:51:35 +0000180562008-09-17 Sam Weinig <sam@webkit.org>
18057
18058 Fix Windows build.
18059
18060 * WebCore.vcproj/WebCore.vcproj:
18061
hyatt@apple.comb3699722008-09-18 05:10:03 +0000180622008-09-17 David Hyatt <hyatt@apple.com>
18063
18064 Switch back to having frameGeometry be virtual in order to keep Mac
18065 the way it used to be.
18066
18067 Reviewed by Sam Weinig
18068
18069 * WebCore.base.exp:
18070 * platform/Widget.cpp:
18071 (WebCore::Widget::setParent):
18072 * platform/Widget.h:
18073 * platform/gtk/WidgetGtk.cpp:
18074 (WebCore::Widget::frameGeometry):
18075 (WebCore::Widget::setFrameGeometry):
18076 * platform/mac/WidgetMac.mm:
18077 (WebCore::Widget::frameGeometry):
18078 (WebCore::Widget::setFrameGeometry):
18079 * platform/qt/WidgetQt.cpp:
18080 (WebCore::Widget::frameGeometry):
18081 (WebCore::Widget::setFrameGeometry):
18082 * platform/win/WidgetWin.cpp:
18083 (WebCore::Widget::frameGeometry):
18084 (WebCore::Widget::setFrameGeometry):
18085 * platform/wx/WidgetWx.cpp:
18086 (WebCore::Widget::frameGeometry):
18087 (WebCore::Widget::setFrameGeometry):
18088 * plugins/PluginView.cpp:
18089 (WebCore::PluginView::setFrameGeometry):
18090 (WebCore::PluginView::geometryChanged):
18091 * plugins/PluginView.h:
18092 * plugins/gtk/PluginViewGtk.cpp:
18093 (WebCore::PluginView::updatePluginWidget):
18094 * plugins/qt/PluginViewQt.cpp:
18095 (WebCore::PluginView::updatePluginWidget):
18096 * plugins/win/PluginViewWin.cpp:
18097 (WebCore::PluginView::updatePluginWidget):
18098
weinig@apple.com00f4d5c2008-09-18 03:23:08 +0000180992008-09-17 Sam Weinig <sam@webkit.org>
18100
weinig@apple.com4fd54cd2008-09-18 05:03:21 +000018101 Reviewed by Mark Rowe.
18102
18103 Fix assertion in DOMWindow::adjustWindowRect where we were passing
18104 in garbage values and were getting lucky that they were a not Nan.
18105
18106 * bindings/js/JSDOMWindowBase.cpp:
18107 (WebCore::windowProtoFuncOpen):
18108
181092008-09-17 Sam Weinig <sam@webkit.org>
18110
weinig@apple.com95b14762008-09-18 04:28:40 +000018111 Fix gtk build.
18112
18113 * rendering/style/MatrixTransformOperation.cpp:
18114
181152008-09-17 Sam Weinig <sam@webkit.org>
18116
weinig@apple.com00f4d5c2008-09-18 03:23:08 +000018117 Rubber-stamped with love by David Hyatt.
18118
18119 Split IdentityTransformOperation, MatrixTransformOperation, RotateTransformOperation,
18120 ScaleTransformOperation, SkewTransformOperation, StyleTransformData, TransformOperation,
18121 TransformOperations and TranslateTransformOperation out of RenderStyle.h/cpp
18122
18123 * GNUmakefile.am:
18124 * WebCore.pro:
18125 * WebCore.vcproj/WebCore.vcproj:
18126 * WebCore.xcodeproj/project.pbxproj:
18127 * WebCoreSources.bkl:
18128 * css/CSSStyleSelector.cpp:
18129 * page/animation/AnimationBase.cpp:
18130 (WebCore::solveEpsilon):
18131 * rendering/RenderLayer.cpp:
18132 * rendering/style/IdentityTransformOperation.h: Copied from rendering/style/RenderStyle.h.
18133 * rendering/style/MatrixTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
18134 * rendering/style/MatrixTransformOperation.h: Copied from rendering/style/RenderStyle.h.
18135 (WebCore::MatrixTransformOperation::MatrixTransformOperation):
18136 * rendering/style/RenderStyle.cpp:
18137 * rendering/style/RenderStyle.h:
18138 * rendering/style/RotateTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
18139 * rendering/style/RotateTransformOperation.h: Copied from rendering/style/RenderStyle.h.
18140 (WebCore::RotateTransformOperation::RotateTransformOperation):
18141 * rendering/style/ScaleTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
18142 * rendering/style/ScaleTransformOperation.h: Copied from rendering/style/RenderStyle.h.
18143 (WebCore::ScaleTransformOperation::ScaleTransformOperation):
18144 * rendering/style/SkewTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
18145 * rendering/style/SkewTransformOperation.h: Copied from rendering/style/RenderStyle.h.
18146 (WebCore::SkewTransformOperation::SkewTransformOperation):
18147 * rendering/style/StyleTransformData.cpp: Copied from rendering/style/RenderStyle.cpp.
18148 * rendering/style/StyleTransformData.h: Copied from rendering/style/RenderStyle.h.
18149 (WebCore::StyleTransformData::operator!=):
18150 * rendering/style/TransformOperation.h: Copied from rendering/style/RenderStyle.h.
18151 (WebCore::TransformOperation::):
18152 * rendering/style/TransformOperations.cpp: Copied from rendering/style/RenderStyle.cpp.
18153 (WebCore::TransformOperations::TransformOperations):
18154 * rendering/style/TransformOperations.h: Copied from rendering/style/RenderStyle.h.
18155 (WebCore::TransformOperations::operator!=):
18156 * rendering/style/TranslateTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
18157 * rendering/style/TranslateTransformOperation.h: Copied from rendering/style/RenderStyle.h.
18158 (WebCore::TranslateTransformOperation::TranslateTransformOperation):
18159
mrowe@apple.comdbfa8852008-09-18 02:59:20 +0000181602008-09-17 Mark Rowe <mrowe@apple.com>
18161
18162 Build fix.
18163
18164 * rendering/style/StyleDashboardRegion.h: PlatformString.h rather than String.h.
18165
hyatt@apple.com76057b42008-09-18 02:48:46 +0000181662008-09-17 David Hyatt <hyatt@apple.com>
18167
18168 (1) Inline a bunch of methods for accessing frame geometry.
18169 (2) Make sure frameGeometry() works even when you have no underlying
18170 native widget.
18171 (3) Cache a frame geometry rect cross-platform (even for widgets that
18172 have underlying native widgets.
18173 (4) PluginView's updateWindow call is now a virtual function on Widget.
18174
18175 Reviewed by Sam Weinig
18176
18177 * ChangeLog:
18178 * WebCore.base.exp:
18179 * platform/Widget.cpp:
18180 (WebCore::Widget::setFrameGeometry):
18181 * platform/Widget.h:
18182 (WebCore::Widget::x):
18183 (WebCore::Widget::y):
18184 (WebCore::Widget::width):
18185 (WebCore::Widget::height):
18186 (WebCore::Widget::size):
18187 (WebCore::Widget::pos):
18188 (WebCore::Widget::frameGeometry):
18189 (WebCore::Widget::resize):
18190 (WebCore::Widget::move):
18191 (WebCore::Widget::isFrameView):
18192 (WebCore::Widget::windowClipRect):
18193 * platform/mac/WidgetMac.mm:
18194 (WebCore::Widget::~Widget):
18195 (WebCore::Widget::updatePlatformWidgetFrameGeometry):
18196 * platform/win/WidgetWin.cpp:
18197 (WebCore::Widget::updatePlatformWidgetFrameGeometry):
18198 * plugins/PluginView.cpp:
18199 (WebCore::PluginView::setFrameGeometry):
18200 (WebCore::PluginView::geometryChanged):
18201 * plugins/PluginView.h:
18202 * plugins/gtk/PluginViewGtk.cpp:
18203 (WebCore::PluginView::updatePlatformWidgetFrameGeometry):
18204 * plugins/qt/PluginViewQt.cpp:
18205 (WebCore::PluginView::updatePlatformWidgetFrameGeometry):
18206 * plugins/win/PluginViewWin.cpp:
18207 (WebCore::PluginView::updatePlatformWidgetFrameGeometry):
18208 * plugins/wx/PluginViewWx.cpp:
18209
weinig@apple.coma812a3ce2008-09-18 01:46:26 +0000182102008-09-17 Sam Weinig <sam@webkit.org>
18211
weinig@apple.comb4b66742008-09-18 02:47:55 +000018212 Reviewed by David "Waterman" Hyatt.
18213
18214 Fix a leak of NSViews in WidgetMac.mm.
18215
18216 * platform/mac/WidgetMac.mm:
18217 (WebCore::Widget::~Widget):
18218
182192008-09-17 Sam Weinig <sam@webkit.org>
18220
weinig@apple.coma812a3ce2008-09-18 01:46:26 +000018221 Rubber-stamped by David Waterman Hyatt.
18222
18223 Split FillLayer, StyleBackgroundData, StyleBoxData, StyleDashboardRegion, StyleMarqueeData
18224 StyleMultiColData and StyleVisualData out of RenderStyle.h/cpp
18225
18226 * GNUmakefile.am:
18227 * WebCore.pro:
18228 * WebCore.vcproj/WebCore.vcproj:
18229 * WebCore.xcodeproj/project.pbxproj:
18230 * WebCoreSources.bkl:
18231 * rendering/style/FillLayer.cpp: Copied from rendering/style/RenderStyle.cpp.
18232 * rendering/style/FillLayer.h: Copied from rendering/style/RenderStyle.h.
18233 (WebCore::FillLayer::operator!=):
18234 (WebCore::FillLayer::hasImage):
18235 (WebCore::FillLayer::hasFixedImage):
18236 * rendering/style/RenderStyle.cpp:
18237 * rendering/style/RenderStyle.h:
18238 * rendering/style/StyleBackgroundData.cpp: Copied from rendering/style/RenderStyle.cpp.
18239 (WebCore::StyleBackgroundData::StyleBackgroundData):
18240 * rendering/style/StyleBackgroundData.h: Copied from rendering/style/RenderStyle.h.
18241 (WebCore::StyleBackgroundData::~StyleBackgroundData):
18242 (WebCore::StyleBackgroundData::operator!=):
18243 * rendering/style/StyleBoxData.cpp: Copied from rendering/style/RenderStyle.cpp.
18244 * rendering/style/StyleBoxData.h: Copied from rendering/style/RenderStyle.h.
18245 (WebCore::StyleBoxData::operator!=):
18246 * rendering/style/StyleDashboardRegion.h: Copied from rendering/style/RenderStyle.h.
18247 (WebCore::StyleDashboardRegion::operator!=):
18248 * rendering/style/StyleMarqueeData.cpp: Copied from rendering/style/RenderStyle.cpp.
18249 * rendering/style/StyleMarqueeData.h: Copied from rendering/style/RenderStyle.h.
18250 (WebCore::StyleMarqueeData::operator!=):
18251 * rendering/style/StyleMultiColData.cpp: Copied from rendering/style/RenderStyle.cpp.
18252 * rendering/style/StyleMultiColData.h: Copied from rendering/style/RenderStyle.h.
18253 (WebCore::StyleMultiColData::operator!=):
18254 (WebCore::StyleMultiColData::ruleWidth):
18255 * rendering/style/StyleVisualData.cpp: Copied from rendering/style/RenderStyle.cpp.
18256 * rendering/style/StyleVisualData.h: Copied from rendering/style/RenderStyle.h.
18257 (WebCore::StyleVisualData::operator==):
18258
hyatt@apple.comb4f28b32008-09-18 00:39:36 +0000182592008-09-17 David Hyatt <hyatt@apple.com>
18260
hyatt@apple.com3f19eac2008-09-18 00:56:04 +000018261 Remove WidgetClient from Widget.
18262
18263 Reviewed by Sam Weinig
18264
18265 * WebCore.xcodeproj/project.pbxproj:
18266 * platform/Widget.h:
18267 (WebCore::Widget::setClient):
18268 (WebCore::Widget::client):
18269 * platform/WidgetClient.h: Removed.
18270 * platform/gtk/WidgetGtk.cpp:
18271 * platform/mac/WidgetMac.mm:
18272 (WebCore::Widget::Widget):
18273 (WebCore::Widget::show):
18274 (WebCore::Widget::hide):
18275 * platform/qt/WidgetQt.cpp:
18276 (WebCore::WidgetPrivate::WidgetPrivate):
18277 * platform/win/WidgetWin.cpp:
18278 (WebCore::Widget::Widget):
18279 * platform/wx/WidgetWx.cpp:
18280 (WebCore::Widget::Widget):
18281
182822008-09-17 David Hyatt <hyatt@apple.com>
18283
hyatt@apple.comb4f28b32008-09-18 00:39:36 +000018284 Remove isEnabled/setEnabled from Widget. The concept of being enabled now
18285 only applies to Scrollbars so the method has been moved there and made
18286 cross-platform. Scrollbar subclasses that have a corresponding native
18287 widget can subclass setEnabled to change the enabled state of the native
18288 widget.
18289
18290 Reviewed by Sam Weinig & Darin Adler
18291
18292 * WebCore.base.exp:
18293 * platform/Scrollbar.cpp:
18294 (WebCore::Scrollbar::Scrollbar):
18295 * platform/Scrollbar.h:
18296 (WebCore::Scrollbar::enabled):
18297 (WebCore::Scrollbar::setEnabled):
18298 * platform/Widget.h:
18299 * platform/gtk/ScrollbarGtk.cpp:
18300 (ScrollbarGtk::setEnabled):
18301 * platform/gtk/ScrollbarGtk.h:
18302 * platform/gtk/WidgetGtk.cpp:
18303 * platform/mac/ScrollbarMac.h:
18304 * platform/mac/ScrollbarMac.mm:
18305 (WebCore::ScrollbarMac::scrollbarHit):
18306 (WebCore::ScrollbarMac::setEnabled):
18307 * platform/mac/WidgetMac.mm:
18308 * platform/qt/WidgetQt.cpp:
18309 (WebCore::WidgetPrivate::WidgetPrivate):
18310 * platform/win/WidgetWin.cpp:
18311 (WebCore::Widget::Widget):
18312 * platform/wx/WidgetWx.cpp:
18313
weinig@apple.com1ea40602008-09-17 23:56:27 +0000183142008-09-17 Sam Weinig <sam@webkit.org>
18315
18316 Rubber-stamped by David Hyatt.
18317
18318 Split all RenderStyle enums into their own file.
18319
18320 * GNUmakefile.am:
18321 * WebCore.vcproj/WebCore.vcproj:
18322 * WebCore.xcodeproj/project.pbxproj:
18323 * rendering/style/BorderValue.h:
18324 * rendering/style/CollapsedBorderValue.h:
18325 * rendering/style/RenderStyle.h:
18326 * rendering/style/RenderStyleConstants.h: Copied from rendering/style/RenderStyle.h.
18327 (WebCore::):
18328 * rendering/style/StyleCachedImage.h:
18329 * rendering/style/StyleGeneratedImage.h:
18330 * rendering/style/StyleImage.h:
18331
sfalken@apple.combf270912008-09-17 23:53:17 +0000183322008-09-17 Steve Falkenburg <sfalken@apple.com>
18333
18334 Add back isFrameView check to fix failed assertion during scroll bar teardown.
18335
18336 Reviewed by Dave Hyatt.
18337
18338 * platform/Scrollbar.cpp:
18339 (WebCore::Scrollbar::setParent):
18340
beidson@apple.com4398e482008-09-17 23:30:00 +0000183412008-09-17 Brady Eidson <beidson@apple.com>
18342
18343 Reviewed by Mac build fix
18344
18345 * WebCore.xcodeproj/project.pbxproj: Send appropriate headers to WebKit
18346
sfalken@apple.com85cc1392008-09-17 23:28:13 +0000183472008-09-17 Steve Falkenburg <sfalken@apple.com>
18348
18349 Fix build.
18350
18351 * platform/win/ScrollViewWin.cpp:
18352 (WebCore::ScrollView::setParentVisible):
18353 * plugins/win/PluginViewWin.cpp:
18354 (WebCore::PluginView::init):
18355
zecke@webkit.org2ba9a4e2008-09-17 23:25:10 +0000183562008-09-17 Holger Hans Peter Freyther <zecke@selfish.org>
18357
18358 Reviewed by Simon.
18359
18360 [QtWebKit] Implement error handling in TextCodecQt::decode
18361 Use the QTextCodec parsing state to set the sawError out variable. This
18362 is needed to pass Test 70 of acid3. The test case for this bug is
18363 fast/encoding/invalid-xml.html that is now partially passed. To pass
18364 it completely the Qt text codecs need to be adjusted to have proper
18365 error handling.
18366
18367 * platform/text/qt/TextCodecQt.cpp:
18368 (WebCore::TextCodecQt::decode):
18369
weinig@apple.comf6f0f112008-09-17 23:03:16 +0000183702008-09-17 Sam Weinig <sam@webkit.org>
18371
18372 Rubber-stamped by Dave Hyatt.
18373
18374 Split BorderData, BorderValue, CollapsedBorderValue, OutlineValue and StyleSurroundData
18375 out of RenderStyle.h/cpp
18376
18377 * GNUmakefile.am:
18378 * WebCore.pro:
18379 * WebCore.vcproj/WebCore.vcproj:
18380 * WebCore.xcodeproj/project.pbxproj:
18381 * WebCoreSources.bkl:
18382 * rendering/style/BorderData.h: Copied from rendering/style/RenderStyle.h.
18383 (WebCore::BorderData::hasBorderRadius):
18384 (WebCore::BorderData::borderLeftWidth):
18385 (WebCore::BorderData::borderRightWidth):
18386 (WebCore::BorderData::borderTopWidth):
18387 (WebCore::BorderData::borderBottomWidth):
18388 (WebCore::BorderData::operator!=):
18389 * rendering/style/BorderValue.h: Copied from rendering/style/RenderStyle.h.
18390 (WebCore::):
18391 (WebCore::BorderValue::BorderValue):
18392 (WebCore::BorderValue::nonZero):
18393 (WebCore::BorderValue::isTransparent):
18394 (WebCore::BorderValue::isVisible):
18395 * rendering/style/CollapsedBorderValue.h: Copied from rendering/style/RenderStyle.h.
18396 (WebCore::):
18397 (WebCore::CollapsedBorderValue::CollapsedBorderValue):
18398 (WebCore::CollapsedBorderValue::operator==):
18399 * rendering/style/OutlineValue.h: Copied from rendering/style/RenderStyle.h.
18400 (WebCore::OutlineValue::OutlineValue):
18401 * rendering/style/RenderStyle.cpp:
18402 * rendering/style/RenderStyle.h:
18403 * rendering/style/StyleSurroundData.cpp: Copied from rendering/style/RenderStyle.cpp.
18404 * rendering/style/StyleSurroundData.h: Copied from rendering/style/RenderStyle.h.
18405 (WebCore::StyleSurroundData::operator!=):
18406
bdakin@apple.com06b97182008-09-17 23:00:29 +0000184072008-09-17 Beth Dakin <bdakin@apple.com>
18408
18409 Reviewed by Darin Adler.
18410
18411 This is a better fix for: Invalid CSS code crashes Safari
18412 https://bugs.webkit.org/show_bug.cgi?id=20512
18413
18414 The spec indicates that the only valid input for a counter is a
18415 number or an identifier. So that is exactly what we allow.
18416
18417 * css/CSSParser.cpp:
18418 (WebCore::CSSParser::parseCounterContent):
18419
alp@webkit.org97ba9222008-09-17 22:16:26 +0000184202008-09-17 Alp Toker <alp@nuanti.com>
18421
18422 GTK+ build fix. Adapt to use PlatformWidget functions.
18423
18424 * platform/gtk/ScrollViewGtk.cpp:
18425 (WebCore::ScrollViewScrollbar::geometryChanged):
18426 (WebCore::ScrollView::addChild):
18427 (WebCore::ScrollView::removeChild):
18428 * platform/gtk/ScrollbarGtk.cpp:
18429 (ScrollbarGtk::ScrollbarGtk):
18430 (ScrollbarGtk::~ScrollbarGtk):
18431 (ScrollbarGtk::geometryChanged):
18432
weinig@apple.com930ed392008-09-17 22:00:45 +0000184332008-09-17 Sam Weinig <sam@webkit.org>
18434
18435 Reviewed by Adele Peterson.
18436
18437 Patch for <rdar://problem/6133884>
18438 Calling window.resizeTo() on a subframe shouldn't change the window size
18439
18440 Test: fast/dom/Window/window-resize-and-move-sub-frame.html
18441
18442 * page/DOMWindow.cpp:
18443 (WebCore::DOMWindow::moveBy):
18444 (WebCore::DOMWindow::moveTo):
18445 (WebCore::DOMWindow::resizeBy):
18446 (WebCore::DOMWindow::resizeTo):
18447
bdakin@apple.com8f952d82008-09-17 21:35:02 +0000184482008-09-17 Beth Dakin <bdakin@apple.com>
18449
18450 Reviewed by Adam Roben.
18451
18452 Fix for https://bugs.webkit.org/show_bug.cgi?id=20512 Invalid CSS
18453 code crashes Safari
18454 and corresponding: <rdar://problem/6173832>
18455
18456 Reading through the spec, it seems like a function is not valid
18457 input for a counter. So this patch checks for that and bails in the
18458 case of invalid input.
18459
18460 * css/CSSParser.cpp:
18461 (WebCore::CSSParser::parseCounterContent):
18462
antti@apple.comb37d4052008-09-17 21:14:13 +0000184632008-09-17 Greg Bolsinga <bolsinga@apple.com>
18464
18465 Reviewed by Antti Koivisto.
18466
18467 Fix <rdar://problem/6227089>
18468 Crash in WebCore::Frame::setNeedsReapplyStyles()
18469
18470 View is null checked elsewhere too.
18471
18472 * page/Frame.cpp:
18473 (WebCore::Frame::setNeedsReapplyStyles):
18474
hyatt@apple.com8e340252008-09-17 20:59:45 +0000184752008-09-17 David Hyatt <hyatt@apple.com>
18476
18477 Make the notion of having a native widget backing a Widget cross-platform.
18478 The PlatformWidget abstraction (which already existed) is used for this.
18479 Windows = HWND
18480 Qt = QWidget
18481 Mac = NSView
18482 wx = wxWindow
18483 Gtk = GtkWidget
18484
18485 There are new cross-platform methods that replace all of the unique
18486 platform-specific methods.
18487 platformWidget()
18488 setPlatformWidget()
18489
18490 For plugins, on every platform except Qt on Windows, the plugin's native
18491 widget is now stored in the Widget base class. Since Qt on Windows uses
18492 HWNDs for plugins instead of QWidget, it is the only platform to keep the
18493 m_window variable in PluginView.
18494
18495 Reviewed by Sam Weinig
18496
18497 * WebCore.base.exp:
18498 * bindings/js/ScriptControllerMac.mm:
18499 (WebCore::ScriptController::createScriptInstanceForWidget):
18500 * page/mac/AccessibilityObjectWrapper.mm:
18501 (-[AccessibilityObjectWrapper attachmentView]):
18502 (-[AccessibilityObjectWrapper accessibilityAttributeValue:]):
18503 * page/mac/EventHandlerMac.mm:
18504 (WebCore::EventHandler::passMouseDownEventToWidget):
18505 (WebCore::EventHandler::mouseDownViewIfStillGood):
18506 (WebCore::EventHandler::passWheelEventToWidget):
18507 (WebCore::EventHandler::sendFakeEventsAfterWidgetTracking):
18508 * platform/Widget.cpp:
18509 (WebCore::Widget::init):
18510 (WebCore::Widget::setParent):
18511 (WebCore::Widget::releasePlatformWidget):
18512 (WebCore::Widget::retainPlatformWidget):
18513 * platform/Widget.h:
18514 (WebCore::Widget::platformWidget):
18515 (WebCore::Widget::setPlatformWidget):
18516 * platform/gtk/WidgetGtk.cpp:
18517 (WebCore::Widget::Widget):
18518 (WebCore::Widget::setFocus):
18519 (WebCore::gdkDrawable):
18520 (WebCore::Widget::setCursor):
18521 (WebCore::Widget::show):
18522 (WebCore::Widget::hide):
18523 (WebCore::Widget::setEnabled):
18524 (WebCore::Widget::isEnabled):
18525 (WebCore::Widget::paint):
18526 * platform/mac/PlatformScreenMac.mm:
18527 (WebCore::screenRect):
18528 (WebCore::screenAvailableRect):
18529 * platform/mac/ScrollViewMac.mm:
18530 (WebCore::ScrollView::scrollView):
18531 (WebCore::ScrollView::update):
18532 (WebCore::ScrollView::inWindow):
18533 * platform/mac/ScrollbarMac.mm:
18534 (WebCore::ScrollbarMac::ScrollbarMac):
18535 (WebCore::ScrollbarMac::~ScrollbarMac):
18536 (WebCore::ScrollbarMac::updateThumbPosition):
18537 (WebCore::ScrollbarMac::updateThumbProportion):
18538 (WebCore::ScrollbarMac::scrollbarHit):
18539 * platform/mac/WidgetMac.mm:
18540 (WebCore::Widget::Widget):
18541 (WebCore::Widget::setEnabled):
18542 (WebCore::Widget::isEnabled):
18543 (WebCore::Widget::setFocus):
18544 (WebCore::Widget::getOuterView):
18545 (WebCore::Widget::paint):
18546 (WebCore::Widget::invalidate):
18547 (WebCore::Widget::invalidateRect):
18548 (WebCore::Widget::setIsSelected):
18549 (WebCore::Widget::releasePlatformWidget):
18550 (WebCore::Widget::retainPlatformWidget):
18551 * platform/qt/WidgetQt.cpp:
18552 (WebCore::WidgetPrivate::WidgetPrivate):
18553 (WebCore::Widget::Widget):
18554 (WebCore::Widget::setFrameGeometry):
18555 (WebCore::Widget::show):
18556 (WebCore::Widget::hide):
18557 (WebCore::Widget::isEnabled):
18558 (WebCore::Widget::setEnabled):
18559 (WebCore::Widget::invalidateRect):
18560 (WebCore::Widget::containingWindow):
18561 * platform/win/WidgetWin.cpp:
18562 (WebCore::Widget::Widget):
18563 * platform/wx/WidgetWx.cpp:
18564 (WebCore::Widget::Widget):
18565 (WebCore::Widget::frameGeometry):
18566 (WebCore::Widget::setFocus):
18567 (WebCore::Widget::setCursor):
18568 (WebCore::Widget::show):
18569 (WebCore::Widget::hide):
18570 (WebCore::Widget::setFrameGeometry):
18571 (WebCore::Widget::setEnabled):
18572 (WebCore::Widget::isEnabled):
18573 (WebCore::Widget::invalidate):
18574 (WebCore::Widget::invalidateRect):
18575 (WebCore::Widget::paint):
18576 * plugins/PluginView.cpp:
18577 (WebCore::PluginView::PluginView):
18578 * plugins/PluginView.h:
18579 (WebCore::PluginView::platformPluginWidget):
18580 * plugins/gtk/PluginViewGtk.cpp:
18581 (WebCore::PluginView::updateWindow):
18582 (WebCore::PluginView::setFocus):
18583 (WebCore::PluginView::show):
18584 (WebCore::PluginView::hide):
18585 (WebCore::PluginView::setParent):
18586 (WebCore::PluginView::setNPWindowRect):
18587 (WebCore::PluginView::setParentVisible):
18588 (WebCore::PluginView::getValue):
18589 (WebCore::PluginView::forceRedraw):
18590 (WebCore::PluginView::init):
18591 * plugins/qt/PluginViewQt.cpp:
18592 (WebCore::PluginView::updateWindow):
18593 (WebCore::PluginView::setFocus):
18594 (WebCore::PluginView::show):
18595 (WebCore::PluginView::hide):
18596 (WebCore::PluginView::setParent):
18597 (WebCore::PluginView::setNPWindowRect):
18598 (WebCore::PluginView::setParentVisible):
18599 (WebCore::PluginView::getValue):
18600 (WebCore::PluginView::~PluginView):
18601 (WebCore::PluginView::init):
18602 * plugins/win/PluginViewWin.cpp:
18603 (WebCore::PluginView::updateWindow):
18604 (WebCore::PluginView::setFocus):
18605 (WebCore::PluginView::show):
18606 (WebCore::PluginView::hide):
18607 (WebCore::PluginView::paint):
18608 (WebCore::PluginView::setParent):
18609 (WebCore::PluginView::setParentVisible):
18610 (WebCore::PluginView::setNPWindowRect):
18611 (WebCore::PluginView::stop):
18612 (WebCore::PluginView::invalidateRect):
18613 (WebCore::PluginView::forceRedraw):
18614 (WebCore::PluginView::~PluginView):
18615 (WebCore::PluginView::init):
18616
weinig@apple.comf713d132008-09-17 20:16:48 +0000186172008-09-17 Sam Weinig <sam@webkit.org>
18618
18619 Fix assert.
18620
18621 * platform/Widget.cpp:
18622 (WebCore::Widget::setParent):
18623
hyatt@apple.comd9242e32008-09-17 18:46:31 +0000186242008-09-17 David Hyatt <hyatt@apple.com>
18625
18626 Beginnings of Widget refactoring (in order to make the mixing of
18627 widgets with and without corresponding native widgets more cross-platform).
18628
18629 This first patch makes the concept of a parent ScrollView cross-platform.
18630
18631 Note the similarity of the show/hide methods on the three PluginViews. This
18632 will be refactored better in a later patch so that they can all share
18633 a base class Widget show/hide method. For now the changes were made
18634 simply to be able to bring WidgetWin's setParent method up into Widget.
18635
18636 Reviewed by Sam Weinig
18637
18638 * WebCore.base.exp:
18639 * platform/ScrollView.h:
18640 * platform/Widget.cpp:
18641 (WebCore::Widget::init):
18642 (WebCore::Widget::setParent):
18643 * platform/Widget.h:
18644 (WebCore::Widget::isSelfVisible):
18645 (WebCore::Widget::isParentVisible):
18646 (WebCore::Widget::isVisible):
18647 (WebCore::Widget::setParentVisible):
18648 (WebCore::Widget::isPluginView):
18649 (WebCore::Widget::parent):
18650 (WebCore::Widget::handleEvent):
18651 (WebCore::Widget::geometryChanged):
18652 * platform/gtk/WidgetGtk.cpp:
18653 (WebCore::Widget::Widget):
18654 * platform/mac/ScrollViewMac.mm:
18655 (WebCore::ScrollView::addChild):
18656 (WebCore::ScrollView::removeChild):
18657 * platform/mac/ScrollbarMac.mm:
18658 (WebCore::ScrollbarMac::~ScrollbarMac):
18659 * platform/mac/WidgetMac.mm:
18660 (WebCore::Widget::Widget):
18661 (WebCore::Widget::~Widget):
18662 * platform/qt/WidgetQt.cpp:
18663 (WebCore::WidgetPrivate::WidgetPrivate):
18664 (WebCore::Widget::Widget):
18665 (WebCore::Widget::topLevel):
18666 * platform/win/ScrollViewWin.cpp:
18667 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
18668 (WebCore::ScrollView::setAncestorVisible):
18669 (WebCore::ScrollView::show):
18670 (WebCore::ScrollView::hide):
18671 * platform/win/WidgetWin.cpp:
18672 (WebCore::Widget::Widget):
18673 (WebCore::Widget::setParent):
18674 * platform/wx/WidgetWx.cpp:
18675 (WebCore::Widget::Widget):
18676 * plugins/PluginView.cpp:
18677 (WebCore::PluginView::PluginView):
18678 * plugins/PluginView.h:
18679 * plugins/gtk/PluginViewGtk.cpp:
18680 (WebCore::PluginView::show):
18681 (WebCore::PluginView::hide):
18682 (WebCore::PluginView::setParentVisible):
18683 * plugins/qt/PluginViewQt.cpp:
18684 (WebCore::PluginView::show):
18685 (WebCore::PluginView::hide):
18686 (WebCore::PluginView::setParentVisible):
18687 * plugins/win/PluginViewWin.cpp:
18688 (WebCore::PluginView::show):
18689 (WebCore::PluginView::hide):
18690 (WebCore::PluginView::setParentVisible):
18691
ap@webkit.org18da1a32008-09-17 16:50:22 +0000186922008-09-17 Alexey Proskuryakov <ap@webkit.org>
18693
18694 Reviewed by Adam Roben.
18695
18696 <rdar://problem/6219577> Spew in console at launch about encoding mappings when running with ICU 4.0
18697
18698 * platform/text/TextCodecICU.cpp:
18699 (WebCore::TextCodecICU::registerExtendedEncodingNames): Updated for new encoding names.
18700
vestbo@webkit.orge48e6362008-09-17 13:29:42 +0000187012008-09-17 Tor Arne Vestbø <tavestbo@trolltech.com>
18702
18703 Fix the QtWebKit/Mac build
18704
18705 * platform/qt/ScrollViewQt.cpp: add include
18706
ap@webkit.org18da1a32008-09-17 16:50:22 +0000187072008-09-17 David Hyatt <hyatt@apple.com>
hyatt@apple.com0f37fb52008-09-17 08:17:26 +000018708
18709 Add a #define to control whether or not to use an NSScroller on Mac.
18710 This ifdef will allow the new NSView-less NSScroller on Mac to be
18711 developed side by side with the current one.
18712
18713 The new scroller paints a debug red if turned on (although due to
18714 Widget issues you won't see anything paint yet).
18715
18716 Reviewed by olliej
18717
18718 * platform/Scrollbar.cpp:
18719 * platform/Scrollbar.h:
18720 * platform/mac/ScrollbarMac.h:
18721 * platform/mac/ScrollbarMac.mm:
18722 * platform/mac/ScrollbarThemeMac.cpp:
18723 (WebCore::ScrollbarThemeMac::paint):
18724 * platform/mac/ScrollbarThemeMac.h:
18725
alp@webkit.orgf06bac02008-09-17 04:30:12 +0000187262008-09-16 Marco Barisione <marco.barisione@collabora.co.uk>
18727
18728 Reviewed by Alp Toker.
18729
18730 http://bugs.webkit.org/show_bug.cgi?id=20854
18731 [GTK] Windows can be not realized in ScrollView::update
18732
18733 Do not call gdk_window_invalidate_rect on a non-realized GtkWidget.
18734
18735 * platform/gtk/ScrollViewGtk.cpp:
18736 (WebCore::ScrollView::update):
18737
alp@webkit.org226f72a2008-09-17 04:22:02 +0000187382008-09-16 Alp Toker <alp@nuanti.com>
18739
18740 Suggested by Dave Hyatt.
18741
18742 Build fix and cleanup. Rename ScrollBar to Scrollbar.
18743
18744 * GNUmakefile.am:
18745 * WebCore.pro:
18746 * WebCore.vcproj/WebCore.vcproj:
18747 * WebCore.xcodeproj/project.pbxproj:
18748 * WebCoreSources.bkl:
18749 * editing/EditorCommand.cpp:
18750 * page/EventHandler.cpp:
18751 * page/gtk/EventHandlerGtk.cpp:
18752 * page/mac/EventHandlerMac.mm:
18753 * page/mac/FrameMac.mm:
18754 * page/qt/EventHandlerQt.cpp:
18755 * page/wx/EventHandlerWx.cpp:
18756 * platform/PopupMenu.h:
18757 * platform/ScrollBar.cpp: Removed.
18758 * platform/ScrollBar.h: Removed.
18759 * platform/Scrollbar.cpp: Copied from WebCore/platform/ScrollBar.cpp.
18760 * platform/Scrollbar.h: Copied from WebCore/platform/ScrollBar.h.
18761 * platform/gtk/ScrollbarGtk.cpp:
18762 (ScrollbarGtk::ScrollbarGtk):
18763 * platform/gtk/ScrollbarGtk.h:
18764 * platform/mac/ScrollbarMac.h:
18765 * platform/qt/ScrollViewQt.cpp:
18766 * platform/qt/ScrollbarQt.cpp:
18767 * platform/qt/ScrollbarThemeQt.cpp:
18768 * platform/win/PlatformScrollBar.h:
18769 * platform/win/PopupMenuWin.cpp:
18770 * platform/win/ScrollViewWin.cpp:
18771 * platform/win/ScrollbarThemeWin.cpp:
18772 * platform/wx/ScrollViewWx.cpp:
18773 * platform/wx/TemporaryLinkStubs.cpp:
18774 * rendering/HitTestResult.cpp:
18775 * rendering/RenderLayer.cpp:
18776 * rendering/RenderTextControl.cpp:
18777
hyatt@apple.com7597c172008-09-17 02:15:08 +0000187782008-09-16 David Hyatt <hyatt@apple.com>
18779
hyatt@apple.comfde412d2008-09-17 03:49:48 +000018780 Fix Qt build bustage by making moveThumb a member of Scrollbar so that
18781 it can be called from ScrollbarQt.
18782
18783 * platform/ScrollBar.cpp:
18784 (WebCore::Scrollbar::moveThumb):
18785 (WebCore::Scrollbar::handleMouseMoveEvent):
18786 (WebCore::Scrollbar::handleMousePressEvent):
18787 * platform/ScrollBar.h:
18788 * platform/qt/ScrollViewQt.cpp:
18789 * platform/qt/ScrollbarQt.cpp:
18790 (WebCore::Scrollbar::handleContextMenuEvent):
18791
187922008-09-16 David Hyatt <hyatt@apple.com>
18793
hyatt@apple.com4e3b8602008-09-17 03:17:11 +000018794 Eliminate PlatformScrollbar. Mac and Gtk now have subclasses for their
18795 native-widget scrollbars (ScrollbarMac and ScrollbarGtk). Other platforms
18796 now just use Scrollbar.
18797
18798 Reviewed by Sam Weinig
18799
18800 * GNUmakefile.am:
18801 * WebCore.pro:
18802 * WebCore.vcproj/WebCore.vcproj:
18803 * WebCore.xcodeproj/project.pbxproj:
18804 * page/mac/FrameMac.mm:
18805 * platform/PopupMenu.h:
18806 (WebCore::PopupMenu::scrollbar):
18807 * platform/ScrollBar.cpp:
18808 (WebCore::createNativeScrollbar):
18809 * platform/ScrollBar.h:
18810 * platform/gtk/PlatformScrollBar.h: Removed.
18811 * platform/gtk/PlatformScrollBarGtk.cpp: Removed.
18812 * platform/gtk/ScrollbarGtk.cpp: Copied from platform/gtk/PlatformScrollBarGtk.cpp.
18813 (gtkScrollEventCallback):
18814 (ScrollbarGtk::ScrollbarGtk):
18815 (ScrollbarGtk::~ScrollbarGtk):
18816 (ScrollbarGtk::updateThumbPosition):
18817 (ScrollbarGtk::updateThumbProportion):
18818 (ScrollbarGtk::setFrameGeometry):
18819 (ScrollbarGtk::geometryChanged):
18820 (ScrollbarGtk::gtkValueChanged):
18821 * platform/gtk/ScrollbarGtk.h: Copied from platform/gtk/PlatformScrollBar.h.
18822 * platform/mac/PlatformScrollBar.h: Removed.
18823 * platform/mac/PlatformScrollBarMac.mm: Removed.
18824 * platform/mac/ScrollbarMac.h: Copied from platform/mac/PlatformScrollBar.h.
18825 * platform/mac/ScrollbarMac.mm: Copied from platform/mac/PlatformScrollBarMac.mm.
18826 (-[WebCoreScrollBar initWithScrollbarMac:]):
18827 (-[WebCoreScrollBar detachScrollbarMac]):
18828 (WebCore::Scrollbar::createNativeScrollbar):
18829 (WebCore::ScrollbarMac::ScrollbarMac):
18830 (WebCore::ScrollbarMac::~ScrollbarMac):
18831 (WebCore::ScrollbarMac::updateThumbPosition):
18832 (WebCore::ScrollbarMac::updateThumbProportion):
18833 (WebCore::ScrollbarMac::scrollbarHit):
18834 * platform/qt/PlatformScrollBar.h: Removed.
18835 * platform/qt/PlatformScrollBarQt.cpp: Removed.
18836 * platform/qt/ScrollbarQt.cpp: Copied from platform/qt/PlatformScrollBarQt.cpp.
18837 (WebCore::Scrollbar::handleContextMenuEvent):
18838 * rendering/HitTestResult.cpp:
18839 * rendering/RenderLayer.cpp:
18840 (WebCore::RenderLayer::createScrollbar):
18841 (WebCore::RenderLayer::destroyScrollbar):
18842 * rendering/RenderLayer.h:
18843 * rendering/RenderListBox.cpp:
18844 (WebCore::RenderListBox::~RenderListBox):
18845 (WebCore::RenderListBox::updateFromElement):
18846 (WebCore::RenderListBox::isPointInOverflowControl):
18847 * rendering/RenderObject.h:
18848 * rendering/RenderTextControl.cpp:
18849
188502008-09-16 David Hyatt <hyatt@apple.com>
18851
hyatt@apple.com7597c172008-09-17 02:15:08 +000018852 Make the scrollbar resizer-dodging logic cross-platform in the
18853 Scrollbar class.
18854
18855 Reviewed by Sam Weinig
18856
18857 * platform/ScrollBar.cpp:
18858 (WebCore::Scrollbar::setFrameGeometry):
18859 (WebCore::Scrollbar::setParent):
18860 (WebCore::Scrollbar::windowClipRect):
18861 * platform/ScrollBar.h:
18862 * platform/ScrollView.h:
18863 (WebCore::ScrollView::windowResizerRect):
18864 (WebCore::ScrollView::resizerOverlapsContent):
18865 (WebCore::ScrollView::adjustOverlappingScrollbarCount):
18866 * platform/Widget.h:
18867 (WebCore::Widget::setParent):
18868 * platform/mac/WidgetMac.mm:
18869 (WebCore::Widget::convertToContainingWindow):
18870 * platform/win/PlatformScrollBar.h:
18871 * platform/win/PlatformScrollBarWin.cpp:
18872
mitz@apple.com6d925202008-09-16 17:34:10 +0000188732008-09-16 Dan Bernstein <mitz@apple.com>
18874
mitz@apple.comd9462a52008-09-16 17:40:20 +000018875 Reviewed by Darin Adler.
18876
18877 - fix https://bugs.webkit.org/show_bug.cgi?id=15129
18878 <rdar://problem/4644824> adding a new line with DOM does unnecessary additional repaint
18879
18880 Covered by fast/repaint/4776765.html
18881
18882 * rendering/RenderBlock.cpp:
18883 (WebCore::RenderBlock::layoutBlock): Avoid repainting this object if it
18884 did not have layout in the beginning.
18885 (WebCore::RenderBlock::layoutBlockChildren): If a child did not have
18886 layout in the beginning, repaint it in its new position, to compensate
18887 for the above (regardless of whether it "moved").
18888 * rendering/RenderObject.cpp:
18889 (WebCore::RenderObject::checkForRepaintDuringLayout): Added a comment
18890 about generalizing this fix in the future.
18891
188922008-09-16 Dan Bernstein <mitz@apple.com>
18893
mitz@apple.com6d925202008-09-16 17:34:10 +000018894 Reviewed by Dave Hyatt.
18895
18896 - fix https://bugs.webkit.org/show_bug.cgi?id=15384
18897 Div does not notice when grandparent changes height
18898
18899 Test: fast/block/basic/quirk-percent-height-grandchild.html
18900
18901 - fix https://bugs.webkit.org/show_bug.cgi?id=20714
18902 Resizing Gmail inbox vertically results in whitespace at the bottom of the window
18903
18904 Test: fast/replaced/percent-height-in-anonymous-block.html
18905
18906 Added a two-way mapping between boxes with percentage heights and
18907 their non-parent ancestors up to the one the height is computed relative
18908 to. In quirks mode (the first bug), this can be any number of containing
18909 block with auto height. In strict mode (the second bug) this can be
18910 the containing block of an anonymous block containing a replaced
18911 element.
18912
18913 * rendering/RenderBlock.cpp:
18914 (WebCore::RenderBlock::~RenderBlock): Added code to remove the all the
18915 mapping to/from this block to percentage-height descendants.
18916 (WebCore::RenderBlock::layoutBlockChildren): Added code to mark
18917 percentage-height descendants (and their containing block ancestry chain
18918 up to this block) for layout. This ensures that those descendants whose
18919 height depends on the height of this block (or an ancestor) are updated.
18920 (WebCore::RenderBlock::addPercentHeightDescendant): Added. Establishes
18921 a two-way mapping between this block and the given box.
18922 (WebCore::RenderBlock::removePercentHeightDescendant): Added. Removes
18923 all the mapping to/from this box.
18924 * rendering/RenderBlock.h:
18925 * rendering/RenderBox.cpp:
18926 (WebCore::RenderBox::setStyle): Added calls to
18927 removePercentHeightDescendant() when style changes and the box
18928 previously had a percentage height. An exception is when the style
18929 change does not require layout, in which case the box still has
18930 a percentage height and the mappings are valid. In all other cases,
18931 any required mappings will be (re-)established during layout.
18932 (WebCore::RenderBox::destroy): Added a call to
18933 removePercentHeightDescendant.
18934 (WebCore::RenderBox::calcPercentageHeight): Added code that, in quirks
18935 mode, if a higher-than-parent containing block is affecting the box's
18936 height, creates a mapping between the box and that block.
18937 (WebCore::RenderBox::calcReplacedHeightUsing): Changed to skip over
18938 anonymous containing blocks, if any, and when that happens, use
18939 addPercentHeightDescendant() to ensure that the non-anonymous block
18940 is aware of the dependent percent-height box.
18941
alp@webkit.org1dbd9a92008-09-16 16:59:18 +0000189422008-09-16 Dirk Schulze <vbs85@gmx.de>
18943
18944 Reviewed by Oliver Hunt and Alp Toker.
18945
18946 Implemented toDataURL in Cairo. Only PNG support
18947 at the moment.
18948
18949 Qt, Cairo and wx require toDataURL implementations
18950 https://bugs.webkit.org/show_bug.cgi?id=17719
18951
18952 * platform/MIMETypeRegistry.cpp:
18953 (WebCore::initializeSupportedImageMIMETypesForEncoding):
18954 * platform/graphics/cairo/ImageBufferCairo.cpp:
18955 (WebCore::ImageBuffer::ImageBuffer):
18956 (WebCore::writeFunction):
18957 (WebCore::ImageBuffer::toDataURL):
18958
vestbo@webkit.org8963b3c2008-09-16 16:45:20 +0000189592008-09-16 Tor Arne Vestbø <tavestbo@trolltech.com>
18960
18961 Reviewed by Simon.
18962
18963 Hide unused media element controls in the QtWebKit port
18964
18965 * platform/qt/html4-adjustments-qt.css
18966
hausmann@webkit.orgcd7a1292008-09-16 14:19:16 +0000189672008-09-16 Ariya Hidayat <ariya.hidayat@trolltech.com>
18968
18969 Reviewed by Simon.
18970
18971 Fix compilation of the Qt scrollbar code.
18972
18973 * platform/qt/PlatformScrollBarQt.cpp:
18974 (WebCore::scPart):
18975 (WebCore::styleOptionSlider):
18976 (WebCore::thumbLength):
18977 (WebCore::pixelPosToRangeValue):
18978 (WebCore::PlatformScrollbar::handleContextMenuEvent):
18979
treat@webkit.orga35f6b62008-09-16 14:15:29 +0000189802008-09-16 Adam Treat <treat@kde.org>
18981
18982 Reviewed by Anders Carlsson.
18983
18984 Prevent accesses off of the end of the buffer introduced in r36450
18985 and when checking for descriptions of mime. Also, coding style fix.
18986
18987 * plugins/qt/PluginPackageQt.cpp:
18988 (WebCore::PluginPackage::fetchInfo):
18989
rwlbuis@webkit.org8f675dd2008-09-16 11:12:52 +0000189902008-09-15 Rob Buis <buis@kde.org>
18991
18992 Reviewed by Eric.
18993
18994 https://bugs.webkit.org/show_bug.cgi?id=20634
18995 SVG transform attribute is ignored by <use> in <clipPath>
18996
18997 Transform the paths with the local transform when part
18998 of a clip path.
18999
19000 Test: svg/custom/use-clipped-transform.svg
19001
19002 * svg/SVGClipPathElement.cpp:
19003 (WebCore::SVGClipPathElement::canvasResource):
19004 * svg/SVGStyledTransformableElement.cpp:
19005 (WebCore::SVGStyledTransformableElement::toClipPath):
19006 * svg/SVGStyledTransformableElement.h:
19007
hyatt@apple.com1cd4bcc2008-09-16 06:53:34 +0000190082008-09-15 Dave Hyatt <hyatt@apple.com>
19009
19010 Convert Qt over to its ScrollbarTheme. Add cross-platform support for jumping the thumb location directly
19011 to a pressed location on the track (this is done with the middle mouse on Qt and with Shift-Click on Windows).
19012
19013 Reviewed by Sam Weinig
19014
19015 * platform/ScrollBar.cpp:
19016 (WebCore::thumbUnderMouse):
19017 (WebCore::Scrollbar::autoscrollPressedPart):
19018 (WebCore::Scrollbar::startTimerIfNeeded):
19019 (WebCore::moveThumb):
19020 (WebCore::Scrollbar::handleMouseMoveEvent):
19021 (WebCore::Scrollbar::handleMousePressEvent):
19022 * platform/ScrollBar.h:
19023 (WebCore::Scrollbar::pressedPos):
19024 (WebCore::Scrollbar::pixelStep):
19025 (WebCore::Scrollbar::setPressedPos):
19026 * platform/ScrollbarTheme.h:
19027 (WebCore::ScrollbarTheme::thumbPosition):
19028 (WebCore::ScrollbarTheme::thumbLength):
19029 (WebCore::ScrollbarTheme::trackPosition):
19030 (WebCore::ScrollbarTheme::trackLength):
19031 * platform/ScrollbarThemeComposite.cpp:
19032 (WebCore::ScrollbarThemeComposite::trackPosition):
19033 * platform/ScrollbarThemeComposite.h:
19034 * platform/qt/PlatformScrollBarQt.cpp:
19035 (WebCore::PlatformScrollbar::PlatformScrollbar):
19036 (WebCore::):
19037 * platform/qt/ScrollbarThemeQt.cpp:
19038 (WebCore::styleOptionSlider):
19039 (WebCore::ScrollbarThemeQt::hitTest):
19040 (WebCore::ScrollbarThemeQt::shouldCenterOnThumb):
19041 (WebCore::ScrollbarThemeQt::invalidatePart):
19042 (WebCore::ScrollbarThemeQt::thumbPosition):
19043 (WebCore::):
19044 * platform/qt/ScrollbarThemeQt.h:
19045 * platform/win/ScrollbarThemeSafari.cpp:
19046 (WebCore::ScrollbarThemeSafari::shouldCenterOnThumb):
19047 * platform/win/ScrollbarThemeSafari.h:
19048 * platform/win/ScrollbarThemeWin.cpp:
19049 (WebCore::ScrollbarThemeWin::shouldCenterOnThumb):
19050 * platform/win/ScrollbarThemeWin.h:
19051
dsmith@webkit.orgb3107b532008-09-16 06:14:22 +0000190522008-09-15 David Smith <catfish.man@gmail.com>
19053
19054 Reviewed by Sam Weinig.
19055
19056 https://bugs.webkit.org/show_bug.cgi?id=20180
19057
19058 Cache the result of parsing the an+b expression in :nth-child(an+b). Roughly a 2x speedup for :nth-child on SlickSpeed.
19059
19060 * GNUmakefile.am: Add CSSNthSelector
19061 * WebCore.pro: Add CSSNthSelector
19062 * WebCore.vcproj/WebCore.vcproj: Add CSSNthSelector
19063 * WebCore.xcodeproj/project.pbxproj: Add CSSNthSelector
19064 * css/CSSGrammar.y: Create CSSNthSelectors instead of CSSSelectors for :nth-*
19065 * css/CSSNthSelector.cpp: Added.
19066 (WebCore::CSSNthSelector::parseNth): Moved from CSSStyleSelector and modified to cache
19067 (WebCore::CSSNthSelector::matchNth): Moved from CSSStyleSelector and modified to use the cache
19068 * css/CSSNthSelector.h: Added.
19069 (WebCore::CSSNthSelector::CSSNthSelector):
19070 (WebCore::CSSNthSelector::~CSSNthSelector):
19071 * css/CSSParser.cpp:
19072 (WebCore::CSSParser::createFloatingNthSelector):
19073 * css/CSSParser.h:
19074 * css/CSSSelector.h: Use the free bit here to store a flag for CSSNthSelector
19075 (WebCore::CSSSelector::CSSSelector):
19076 * css/CSSStyleSelector.cpp:
19077 (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector): Take advantage of knowing that all :nth-* selectors are CSSNthSelectors
19078
pewtermoose@webkit.orgfb4d3fb2008-09-16 02:46:39 +0000190792008-09-15 Matt Lilek <webkit@mattlilek.com>
19080
19081 Reviewed by Tim Hatcher.
19082
19083 Clean up some inspector JS callbacks to remove an extra return.
19084
19085 * page/InspectorController.cpp:
19086 (WebCore::hideDOMNodeHighlight):
19087 (WebCore::loaded):
19088 (WebCore::unloading):
19089 (WebCore::attach):
19090 (WebCore::detach):
19091 (WebCore::startDebuggingAndReloadInspectedPage):
19092 (WebCore::stopDebugging):
19093 (WebCore::debuggerAttached):
19094 (WebCore::pauseOnExceptions):
19095 (WebCore::pauseInDebugger):
19096 (WebCore::resumeDebugger):
19097 (WebCore::stepOverStatementInDebugger):
19098 (WebCore::stepIntoStatementInDebugger):
19099 (WebCore::stepOutOfFunctionInDebugger):
19100 (WebCore::isWindowVisible):
19101 (WebCore::closeWindow):
19102
hyatt@apple.com8e809932008-09-16 02:29:09 +0000191032008-09-15 Dave Hyatt <hyatt@apple.com>
19104
19105 Completely switch Windows scrollbars over to ScrollbarTheme. The Aqua windows scrollbar and native scrollbar
19106 now share most of their code.
19107
19108 Also removing mini size scrollbar support, since it would have crashed Windows had it ever been used, and it
19109 also is never used in our code anyway.
19110
19111 Reviewed by Sam Weinig
19112
19113 * WebCore.vcproj/WebCore.vcproj:
19114 * platform/ScrollTypes.h:
19115 (WebCore::):
19116 * platform/ScrollbarThemeComposite.cpp:
19117 (WebCore::ScrollbarThemeComposite::splitTrack):
19118 (WebCore::ScrollbarThemeComposite::thumbLength):
19119 (WebCore::ScrollbarThemeComposite::minimumThumbLength):
19120 * platform/ScrollbarThemeComposite.h:
19121 * platform/mac/PlatformScrollBarMac.mm:
19122 (NSControlSizeForScrollBarControlSize):
19123 * platform/win/PlatformScrollBar.h:
19124 * platform/win/PlatformScrollBarSafari.cpp: Removed.
19125 * platform/win/PlatformScrollBarWin.cpp:
19126 (WebCore::PlatformScrollbar::PlatformScrollbar):
19127 * platform/win/ScrollbarThemeSafari.cpp:
19128 (WebCore::ScrollbarTheme::nativeTheme):
19129 (WebCore::):
19130 (WebCore::scrollbarControlStateFromThemeState):
19131 (WebCore::ScrollbarThemeSafari::hasButtons):
19132 (WebCore::ScrollbarThemeSafari::hasThumb):
19133 (WebCore::buttonRepaintRect):
19134 (WebCore::ScrollbarThemeSafari::backButtonRect):
19135 (WebCore::ScrollbarThemeSafari::forwardButtonRect):
19136 (WebCore::trackRepaintRect):
19137 (WebCore::ScrollbarThemeSafari::trackRect):
19138 (WebCore::ScrollbarThemeSafari::minimumThumbLength):
19139 (WebCore::ScrollbarThemeSafari::paintTrack):
19140 (WebCore::ScrollbarThemeSafari::paintButton):
19141 (WebCore::ScrollbarThemeSafari::paintThumb):
19142 * platform/win/ScrollbarThemeSafari.h:
19143 * platform/win/ScrollbarThemeWin.cpp:
19144 * platform/win/ScrollbarThemeWin.h:
19145
cfleizach@apple.com0ce07032008-09-16 00:17:58 +0000191462008-09-15 Chris Fleizach <cfleizach@apple.com>
19147
19148 Reviewed by Darin Adler, Beth Dakin
19149
19150 <rdar://problem/4003789> Expose lists as AXList
19151 <rdar://problem/5707399> VO: Definition lists not announced in Safari
19152
19153 Lists are now exposed through AX. On the mac (in SnowLeopard) they use two new subroles
19154 AXContentList for <ul>, <ol> and AXDefinitionList for <dl>
19155 Inside the definition list, each <dt> "term" has an accessibility description ("term"),
19156 as does each <dd> tag ("definition")
19157
19158 Test: accessibility/lists.html
19159
19160 * GNUmakefile.am:
19161 * WebCore.pro:
19162 * WebCore.vcproj/WebCore.vcproj:
19163 * WebCore.xcodeproj/project.pbxproj:
19164 * WebCoreSources.bkl:
19165 * page/AXObjectCache.cpp:
19166 * page/AccessibilityList.cpp: Added.
19167 * page/AccessibilityList.h: Added.
19168 * page/AccessibilityObject.h:
19169 * page/AccessibilityRenderObject.cpp:
19170 * page/AccessibilityTable.cpp:
19171 * page/mac/AccessibilityObjectWrapper.mm:
19172 * page/mac/WebCoreViewFactory.h:
19173 * platform/LocalizedStrings.h:
19174 * platform/mac/LocalizedStringsMac.mm:
19175 * platform/qt/Localizations.cpp:
19176
zimmermann@webkit.org8cc8ad02008-09-16 00:01:11 +0000191772008-09-15 Nikolas Zimmermann <zimmermann@kde.org>
19178
19179 Reviewed by Eric.
19180
19181 Fixes: https://bugs.webkit.org/show_bug.cgi?id=20865
19182 Prepare HTMLScriptElement & SVGScriptElement unification, and unification of event handling.
19183
19184 Several renames:
19185 dispatchHTMLEvent -> dispatchEventForType
19186 setHTMLEventListener -> setEventListenerForType
19187 getHTMLEventListener -> eventListenerForType
19188 removeHTMLEventListener -> removeEventListenerForType
19189 isHTMLEventListener -> isAttachedToEventTargetNode
19190 ...
19191
19192 Similar renames for the dispatch/get/set/*Window*Event functions.
19193 Kill JSSVGLazyEventListener and merge with JSLazyEventListener.
19194
19195 Most important change: Rename setHTMLEventListener to setEventListenerForTypeAndAttribute,
19196 as there exists a generic createEventListener() method now, taking care of JSLazyEventListener creation.
19197
19198 setHTMLEventListener() used createHTMLEventListener() before and was HTML specific.
19199 SVG is able to use the code as well now. This affects most files in html/.
19200
19201 No functional changes.
19202
19203 * GNUmakefile.am:
19204 * WebCore.pro:
19205 * WebCore.vcproj/WebCore.vcproj:
19206 * WebCore.xcodeproj/project.pbxproj:
19207 * bindings/js/JSDOMWindowBase.cpp:
19208 (WebCore::JSDOMWindowBase::~JSDOMWindowBase):
19209 (WebCore::JSDOMWindowBase::setListener):
19210 (WebCore::JSDOMWindowBase::getListener):
19211 (WebCore::JSDOMWindowBase::findJSEventListener):
19212 (WebCore::JSDOMWindowBase::findOrCreateJSEventListener):
19213 (WebCore::JSDOMWindowBase::findJSUnprotectedEventListener):
19214 (WebCore::JSDOMWindowBase::findOrCreateJSUnprotectedEventListener):
19215 (WebCore::JSDOMWindowBase::jsEventListenersAttachedToEventTargetNodes):
19216 (WebCore::JSDOMWindowBase::jsUnprotectedEventListenersAttachedToEventTargetNodes):
19217 * bindings/js/JSDOMWindowBase.h:
19218 * bindings/js/JSEventListener.cpp:
19219 (WebCore::JSAbstractEventListener::handleEvent):
19220 (WebCore::JSAbstractEventListener::isAttachedToEventTargetNode):
19221 (WebCore::JSUnprotectedEventListener::JSUnprotectedEventListener):
19222 (WebCore::JSUnprotectedEventListener::~JSUnprotectedEventListener):
19223 (WebCore::JSEventListener::JSEventListener):
19224 (WebCore::JSEventListener::~JSEventListener):
19225 (WebCore::JSLazyEventListener::JSLazyEventListener):
19226 (WebCore::eventParameterName):
19227 (WebCore::JSLazyEventListener::parseCode):
19228 (WebCore::getNodeEventListener):
19229 * bindings/js/JSEventListener.h:
19230 (WebCore::JSAbstractEventListener::JSAbstractEventListener):
19231 (WebCore::JSUnprotectedEventListener::create):
19232 (WebCore::JSEventListener::create):
19233 (WebCore::JSLazyEventListener::):
19234 (WebCore::JSLazyEventListener::create):
19235 * bindings/js/JSEventTargetNode.cpp:
19236 (WebCore::JSEventTargetNode::setListener):
19237 (WebCore::JSEventTargetNode::getListener):
19238 * bindings/js/JSSVGLazyEventListener.cpp: Removed.
19239 * bindings/js/JSSVGLazyEventListener.h: Removed.
19240 * bindings/js/ScriptController.cpp:
19241 (WebCore::ScriptController::createHTMLEventHandler):
19242 (WebCore::ScriptController::createSVGEventHandler):
19243 * dom/Document.cpp:
19244 (WebCore::Document::setFocusedNode):
19245 (WebCore::Document::handleWindowEvent):
19246 (WebCore::Document::setWindowEventListenerForType):
19247 (WebCore::Document::windowEventListenerForType):
19248 (WebCore::Document::removeWindowEventListenerForType):
19249 (WebCore::Document::addWindowEventListener):
19250 (WebCore::Document::hasWindowEventListener):
19251 (WebCore::Document::removePendingFrameBeforeUnloadEventCount):
19252 (WebCore::Document::createEventListener):
19253 (WebCore::Document::setWindowEventListenerForTypeAndAttribute):
19254 * dom/Document.h:
19255 * dom/EventListener.h:
19256 (WebCore::EventListener::isAttachedToEventTargetNode):
19257 * dom/EventTargetNode.cpp:
19258 (WebCore::EventTargetNode::dispatchFocusEvent):
19259 (WebCore::EventTargetNode::dispatchBlurEvent):
19260 (WebCore::EventTargetNode::dispatchEventForType):
19261 (WebCore::EventTargetNode::removeEventListenerForType):
19262 (WebCore::EventTargetNode::setEventListenerForType):
19263 (WebCore::EventTargetNode::setEventListenerForTypeAndAttribute):
19264 (WebCore::EventTargetNode::eventListenerForType):
19265 * dom/EventTargetNode.h:
19266 * dom/XMLTokenizer.cpp:
19267 (WebCore::XMLTokenizer::notifyFinished):
19268 * editing/ReplaceSelectionCommand.cpp:
19269 (WebCore::ReplacementFragment::ReplacementFragment):
19270 * html/HTMLBodyElement.cpp:
19271 (WebCore::HTMLBodyElement::parseMappedAttribute):
19272 * html/HTMLButtonElement.cpp:
19273 (WebCore::HTMLButtonElement::parseMappedAttribute):
19274 * html/HTMLElement.cpp:
19275 (WebCore::HTMLElement::parseMappedAttribute):
19276 (WebCore::HTMLElement::checkDTD):
19277 * html/HTMLElement.h:
19278 * html/HTMLFormControlElement.cpp:
19279 (WebCore::HTMLFormControlElement::onChange):
19280 * html/HTMLFormElement.cpp:
19281 (WebCore::HTMLFormElement::prepareSubmit):
19282 (WebCore::HTMLFormElement::reset):
19283 (WebCore::HTMLFormElement::parseMappedAttribute):
19284 * html/HTMLFrameElementBase.cpp:
19285 (WebCore::HTMLFrameElementBase::parseMappedAttribute):
19286 * html/HTMLFrameSetElement.cpp:
19287 (WebCore::HTMLFrameSetElement::parseMappedAttribute):
19288 * html/HTMLImageElement.cpp:
19289 (WebCore::HTMLImageElement::parseMappedAttribute):
19290 * html/HTMLImageLoader.cpp:
19291 (WebCore::HTMLImageLoader::dispatchLoadEvent):
19292 * html/HTMLInputElement.cpp:
19293 (WebCore::HTMLInputElement::parseMappedAttribute):
19294 (WebCore::HTMLInputElement::setValueFromRenderer):
19295 (WebCore::HTMLInputElement::onSearch):
19296 * html/HTMLMediaElement.cpp:
19297 (WebCore::HTMLMediaElement::asyncEventTimerFired):
19298 (WebCore::HTMLMediaElement::load):
19299 (WebCore::HTMLMediaElement::mediaPlayerNetworkStateChanged):
19300 (WebCore::HTMLMediaElement::setReadyState):
19301 (WebCore::HTMLMediaElement::seek):
19302 (WebCore::HTMLMediaElement::mediaPlayerTimeChanged):
19303 (WebCore::HTMLMediaElement::willSaveToCache):
19304 * html/HTMLObjectElement.cpp:
19305 (WebCore::HTMLObjectElement::parseMappedAttribute):
19306 * html/HTMLScriptElement.cpp:
19307 (WebCore::HTMLScriptElement::parseMappedAttribute):
19308 (WebCore::HTMLScriptElement::dispatchLoadEvent):
19309 (WebCore::HTMLScriptElement::dispatchErrorEvent):
19310 * html/HTMLSelectElement.cpp:
19311 (WebCore::HTMLSelectElement::parseMappedAttribute):
19312 * html/HTMLTextAreaElement.cpp:
19313 (WebCore::HTMLTextAreaElement::parseMappedAttribute):
19314 * html/HTMLTokenizer.cpp:
19315 (WebCore::HTMLTokenizer::notifyFinished):
19316 * page/AccessibilityRenderObject.cpp:
19317 (WebCore::AccessibilityRenderObject::mouseButtonListener):
19318 * page/EventHandler.cpp:
19319 (WebCore::EventHandler::canMouseDownStartSelect):
19320 (WebCore::EventHandler::canMouseDragExtendSelect):
19321 * page/Frame.cpp:
19322 (WebCore::Frame::sendScrollEvent):
19323 * page/Page.cpp:
19324 (WebCore::networkStateChanged):
19325 * rendering/RenderListBox.cpp:
19326 (WebCore::RenderListBox::valueChanged):
19327 * rendering/RenderTextControl.cpp:
19328 (WebCore::RenderTextControl::selectionChanged):
19329 * svg/SVGDocumentExtensions.cpp:
19330 * svg/SVGDocumentExtensions.h:
19331 * svg/SVGElement.cpp:
19332 (WebCore::SVGElement::parseMappedAttribute):
19333 (WebCore::SVGElement::finishParsingChildren):
19334 * svg/SVGElement.h:
19335 * svg/SVGSVGElement.cpp:
19336 (WebCore::SVGSVGElement::parseMappedAttribute):
19337 * svg/SVGSVGElement.h:
19338
hyatt@apple.com63739ce2008-09-15 23:44:10 +0000193392008-09-15 Dave Hyatt <hyatt@apple.com>
19340
19341 Convert PlatformScrollbarWin to use ScrollbarTheme for hit testing. PlatformScrollbarQt/Gtk still
19342 need to be converted.
19343
19344 Reviewed by Sam Weinig
19345
19346 * platform/ScrollBar.cpp:
19347 (WebCore::Scrollbar::Scrollbar):
19348 (WebCore::Scrollbar::updateThumbPosition):
19349 (WebCore::Scrollbar::updateThumbProportion):
19350 (WebCore::Scrollbar::autoscrollPressedPart):
19351 (WebCore::Scrollbar::startTimerIfNeeded):
19352 * platform/ScrollBar.h:
19353 * platform/ScrollbarTheme.h:
19354 (WebCore::ScrollbarTheme::invalidateParts):
19355 * platform/ScrollbarThemeComposite.cpp:
19356 (WebCore::ScrollbarThemeComposite::hitTest):
19357 (WebCore::ScrollbarThemeComposite::invalidatePart):
19358 (WebCore::ScrollbarThemeComposite::thumbPosition):
19359 (WebCore::ScrollbarThemeComposite::thumbLength):
19360 (WebCore::ScrollbarThemeComposite::trackLength):
19361 * platform/ScrollbarThemeComposite.h:
19362 * platform/win/PlatformScrollBarSafari.cpp:
19363 (WebCore::PlatformScrollbar::PlatformScrollbar):
19364 * platform/win/PlatformScrollBarWin.cpp:
19365 (WebCore::PlatformScrollbar::PlatformScrollbar):
19366
dsmith@webkit.orgaa780ed2008-09-15 23:08:07 +0000193672008-09-15 David Smith <catfish.man@gmail.com>
19368
19369 "Just do it"'d by Mark Rowe
19370
19371 https://bugs.webkit.org/show_bug.cgi?id=20856
19372 Add missing license header
19373
19374 * dom/NodeRenderStyle.h:
19375
dino@apple.combf52b682008-09-15 21:31:43 +0000193762008-09-15 Dean Jackson <dino@apple.com>
19377
19378 Reviewed by Tim Hatcher.
19379
dino@apple.com3db0b8f2008-09-15 21:52:23 +000019380 Add default constructor for ShadowData
19381 https://bugs.webkit.org/show_bug.cgi?id=20757
19382
19383 Test: transitions/shadow.html
19384
19385 * rendering/style/RenderStyle.h:
19386
193872008-09-15 Dean Jackson <dino@apple.com>
19388
19389 Reviewed by Tim Hatcher.
19390
dino@apple.com03abdce2008-09-15 21:40:52 +000019391 RenderStyle should update keyframes.
19392 http://bugs.webkit.org/show_bug.cgi?id=20756
19393
19394 * rendering/style/RenderStyle.cpp:
19395 (WebCore::StyleRareNonInheritedData::updateKeyframes):
19396
193972008-09-15 Dean Jackson <dino@apple.com>
19398
19399 Reviewed by Tim Hatcher.
19400
dino@apple.combf52b682008-09-15 21:31:43 +000019401 Unnecessary ASSERT in ImplicitAnimation destructor.
19402 https://bugs.webkit.org/show_bug.cgi?id=20817
19403
19404 * page/animation/ImplicitAnimation.cpp:
19405 (WebCore::ImplicitAnimation::~ImplicitAnimation):
19406
treat@webkit.org7e5abc22008-09-15 20:53:49 +0000194072008-09-15 Adam Treat <treat@kde.org>
19408
19409 Reviewed by Simon.
19410
19411 Fix plugin extension info. It was returning the mimetype where the
19412 extension was given.
19413
19414 * plugins/qt/PluginPackageQt.cpp:
19415 (WebCore::PluginPackage::fetchInfo):
19416
dino@apple.comecc18dc2008-09-15 20:40:28 +0000194172008-09-15 Dean Jackson <dino@apple.com>
19418
19419 Reviewed by Tim Hatcher
19420
19421 Coding style violation!!!! Cleanup AnimationBase.cpp
19422
19423 * page/animation/AnimationBase.cpp:
19424 (WebCore::blendFunc):
19425
hyatt@apple.comf4a9d932008-09-15 20:03:25 +0000194262008-09-15 David Hyatt <hyatt@apple.com>
19427
19428 Move all hit testing code for scrollbars into the base class. Refactor
19429 it to accommodate all platform-specific behaviors using virtual ScrollbarTheme
19430 functions.
19431
19432 No platform is using this code yet. Although it has been moved and compiles
19433 (even on Mac), it is not being used on any platform.
19434
19435 Reviewed by Sam Weinig
19436
19437 * platform/ScrollBar.cpp:
19438 (WebCore::Scrollbar::autoscrollPressedPart):
19439 (WebCore::Scrollbar::startTimerIfNeeded):
19440 (WebCore::Scrollbar::handleMouseMoveEvent):
19441 (WebCore::Scrollbar::handleMouseOutEvent):
19442 (WebCore::Scrollbar::handleMouseReleaseEvent):
19443 (WebCore::Scrollbar::handleMousePressEvent):
19444 * platform/ScrollBar.h:
19445 (WebCore::Scrollbar::handleContextMenuEvent):
19446 * platform/ScrollbarTheme.h:
19447 (WebCore::ScrollbarTheme::hitTest):
19448 (WebCore::ScrollbarTheme::invalidateOnMouseEnterExit):
19449 (WebCore::ScrollbarTheme::invalidatePart):
19450 (WebCore::ScrollbarTheme::shouldCenterOnThumb):
19451 (WebCore::ScrollbarTheme::centerOnThumb):
19452 (WebCore::ScrollbarTheme::thumbPosition):
19453 (WebCore::ScrollbarTheme::thumbLength):
19454 (WebCore::ScrollbarTheme::trackLength):
19455 (WebCore::ScrollbarTheme::initialAutoscrollTimerDelay):
19456 (WebCore::ScrollbarTheme::autoscrollTimerDelay):
19457 * platform/Widget.h:
19458 (WebCore::Widget::parent):
19459 * platform/mac/PlatformScrollBar.h:
19460 (WebCore::PlatformScrollbar::handleMouseMoveEvent):
19461 (WebCore::PlatformScrollbar::handleMouseOutEvent):
19462 (WebCore::PlatformScrollbar::handleMousePressEvent):
19463 (WebCore::PlatformScrollbar::handleMouseReleaseEvent):
19464 * platform/mac/WidgetMac.mm:
19465 (WebCore::Widget::convertFromContainingWindow):
19466 * platform/win/ScrollbarThemeWin.cpp:
19467 (WebCore::ScrollbarThemeWin::invalidateOnMouseEnterExit):
19468 * platform/win/ScrollbarThemeWin.h:
19469
mitz@apple.comd17dc392008-09-15 18:48:20 +0000194702008-09-15 Dan Bernstein <mitz@apple.com>
19471
19472 Reviewed by Sam Weinig.
19473
19474 - fix <rdar://problem/5842247> Single long breakable word takes O(n^2) to lay out
19475
19476 Cache the next breakable position for text nodes in InlineIterator.
19477
19478 * rendering/bidi.cpp:
19479 (WebCore::InlineIterator::InlineIterator):
19480 (WebCore::InlineIterator::increment):
19481 (WebCore::RenderBlock::findNextLineBreak):
19482
simon.fraser@apple.comda604642008-09-15 17:10:48 +0000194832008-09-15 Simon Fraser <simon.fraser@apple.com>
19484
19485 Reviewed by Dan Bernstein
19486
19487 Fix assertion and integral pixel issue when creating subimages.
19488 https://bugs.webkit.org/show_bug.cgi?id=20786
19489
19490 * platform/graphics/cg/ImageCG.cpp:
19491 (WebCore::BitmapImage::draw):
19492
vestbo@webkit.orge7eda302008-09-15 12:43:37 +0000194932008-09-15 Tor Arne Vestbø <tavestbo@trolltech.com>
19494
19495 Reviewed by Simon.
19496
19497 Implment seek() and clean up and improve debugging output
19498
19499 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
19500 (debugMediaObject):
19501 (WebCore::MediaPlayerPrivate::seek):
19502 (WebCore::MediaPlayerPrivate::setVolume):
19503 (WebCore::MediaPlayerPrivate::setMuted):
19504 (WebCore::MediaPlayerPrivate::updateStates):
19505 (WebCore::MediaPlayerPrivate::naturalSize):
19506 (WebCore::MediaPlayerPrivate::paint):
19507 (WebCore::MediaPlayerPrivate::stateChanged):
19508 (WebCore::MediaPlayerPrivate::tick):
19509
vestbo@webkit.orgaba01e62008-09-15 11:40:22 +0000195102008-09-15 Holger Hans Peter Freyther <zecke@selfish.org>
19511
19512 Reviewed by Simon.
19513
19514 Remove bogus Q_ASSERTs from the MediaPlayer Phonon implementation
19515
19516 m_mediaObject, m_audioOutput, m_videoWidget get created in the
19517 c'tor and will only be deleted in the c'tor. The Q_ASSERTs would
19518 only check if we use the MediaPlayerPrivate after it has been deleted.
19519
19520 Acked-by: Tor Arne Vestbø <tavestbo@trolltech.com>
19521
19522 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
19523 (WebCore::MediaPlayerPrivate::play):
19524 (WebCore::MediaPlayerPrivate::setVolume):
19525 (WebCore::MediaPlayerPrivate::updateStates):
19526
andersca@apple.com18d62682008-09-15 11:35:22 +0000195272008-09-15 Anders Carlsson <andersca@apple.com>
19528
19529 Reviewed by Maciej.
19530
19531 <rdar://problem/6163988>
19532 https://bugs.webkit.org/show_bug.cgi?id=20457
19533 Canvas: createPattern crashes WebKit in WTF::RefPtr<WebCore::Image>::operator!() const + 9 with a 1D pattern
19534
19535 Check the width and height and throw an exception if any of them are 0.
19536
19537 * html/CanvasRenderingContext2D.cpp:
19538 (WebCore::CanvasRenderingContext2D::createPattern):
19539
vestbo@webkit.org3a27e182008-09-15 11:28:59 +0000195402008-09-15 Tor Arne Vestbø <tavestbo@trolltech.com>
19541
19542 Reviewed by Simon.
19543
19544 Render media element controls with antialiasing enabled
19545
19546 * platform/qt/RenderThemeQt.cpp:
19547 (WebCore::RenderThemeQt::paintMediaMuteButton):
19548 (WebCore::RenderThemeQt::paintMediaPlayButton):
19549 (WebCore::RenderThemeQt::paintMediaSliderTrack):
19550 (WebCore::RenderThemeQt::paintMediaSliderThumb):
19551
vestbo@webkit.org17e4bfc2008-09-15 11:27:25 +0000195522008-09-15 Ariya Hidayat <ariya.hidayat@trolltech.com>
19553
19554 Reviewed by Simon.
19555
19556 Upon non fatal error, switch to the pause state (so that playback can continue)
19557
19558 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
19559 (WebCore::MediaPlayerPrivate::updateStates):
19560
vestbo@webkit.org12a59572008-09-15 11:16:13 +0000195612008-09-15 Tor Arne Vestbø <tavestbo@trolltech.com>
19562
19563 Reviewed by Simon.
19564
vestbo@webkit.org1d1f05e2008-09-15 11:22:05 +000019565 Don't set WTF_USE_JSC in WebCore.pro now that it's set in config.h
19566
19567 * WebCore.pro:
19568
195692008-09-15 Tor Arne Vestbø <tavestbo@trolltech.com>
19570
19571 Reviewed by Simon.
19572
vestbo@webkit.org12a59572008-09-15 11:16:13 +000019573 Make QtInstance::create() private and fix caching
19574
19575 * bindings/js/ScriptControllerQt.cpp:
19576 (WebCore::ScriptController::createScriptInstanceForWidget):
19577 * bridge/qt/qt_instance.cpp:
19578 (JSC::Bindings::QtInstance::getQtInstance):
19579 (JSC::Bindings::QtInstance::getRuntimeObject):
19580 * bridge/qt/qt_instance.h:
19581 (JSC::Bindings::QtInstance::create):
19582 * bridge/qt/qt_runtime.cpp:
19583 (JSC::Bindings::convertQVariantToValue):
19584 (JSC::Bindings::QtConnectionObject::execute):
19585
dsmith@webkit.orgaba15862008-09-15 08:45:35 +0000195862008-09-15 David Smith <catfish.man@gmail.com>
19587
19588 Reviewed by Dave Hyatt.
19589
19590 https://bugs.webkit.org/show_bug.cgi?id=20180
19591
19592 >2x speedup on querySelector[All] with :nth-child by removing the collectRulesOnly argument on SelectorChecker.
19593 With collectRulesOnly set to true (the default) an optimization is turned off, and no callers were intentionally leaving it true.
19594 querySelector[All] assumed that the default was probably the right way to go, and so ended up being slow.
19595
19596 * css/CSSStyleSelector.cpp:
19597 (WebCore::CSSStyleSelector::CSSStyleSelector):
19598 (WebCore::CSSStyleSelector::SelectorChecker::SelectorChecker):
19599 * css/CSSStyleSelector.h:
19600
hyatt@apple.com065494e2008-09-15 06:33:40 +0000196012008-09-14 Dave Hyatt <hyatt@apple.com>
19602
19603 Refactor PlatformScrollbarWin's painting so that it is now done by ScrollbarThemeWin. PlatformScrollbarSafari
19604 is still painting itself (a subsequent patch will move its painting into ScrollbarThemeSafari).
19605
19606 Reviewed by Sam Weinig
19607
19608 * platform/ScrollBar.h:
19609 (WebCore::Scrollbar::client):
19610 (WebCore::Scrollbar::currentPos):
19611 (WebCore::Scrollbar::totalSize):
19612 * platform/ScrollbarTheme.h:
19613 * platform/ScrollbarThemeComposite.cpp:
19614 (WebCore::pageForScrollView):
19615 (WebCore::ScrollbarThemeComposite::paint):
19616 * platform/ScrollbarThemeComposite.h:
19617 (WebCore::ScrollbarThemeComposite::trackIsSinglePiece):
19618 * platform/win/PlatformScrollBar.h:
19619 * platform/win/PlatformScrollBarSafari.cpp:
19620 * platform/win/PlatformScrollBarWin.cpp:
19621 * platform/win/ScrollbarThemeSafari.h:
19622 (WebCore::ScrollbarThemeSafari::hasButtons):
19623 (WebCore::ScrollbarThemeSafari::hasThumb):
19624 (WebCore::ScrollbarThemeSafari::backButtonRect):
19625 (WebCore::ScrollbarThemeSafari::forwardButtonRect):
19626 (WebCore::ScrollbarThemeSafari::trackRect):
19627 (WebCore::ScrollbarThemeSafari::splitTrack):
19628 (WebCore::ScrollbarThemeSafari::paintTrack):
19629 (WebCore::ScrollbarThemeSafari::paintButton):
19630 (WebCore::ScrollbarThemeSafari::paintThumb):
19631 * platform/win/ScrollbarThemeWin.cpp:
19632 (WebCore::isRunningOnVistaOrLater):
19633 (WebCore::checkAndInitScrollbarTheme):
19634 (WebCore::ScrollbarThemeWin::ScrollbarThemeWin):
19635 (WebCore::ScrollbarThemeWin::themeChanged):
19636 (WebCore::ScrollbarThemeWin::hasThumb):
19637 (WebCore::ScrollbarThemeWin::backButtonRect):
19638 (WebCore::ScrollbarThemeWin::forwardButtonRect):
19639 (WebCore::ScrollbarThemeWin::trackRect):
19640 (WebCore::ScrollbarThemeWin::splitTrack):
19641 (WebCore::ScrollbarThemeWin::paintTrack):
19642 (WebCore::ScrollbarThemeWin::paintButton):
19643 (WebCore::gripperRect):
19644 (WebCore::paintGripper):
19645 (WebCore::ScrollbarThemeWin::paintThumb):
19646 (WebCore::ScrollbarThemeWin::thumbPosition):
19647 (WebCore::ScrollbarThemeWin::thumbLength):
19648 (WebCore::ScrollbarThemeWin::trackLength):
19649 * platform/win/ScrollbarThemeWin.h:
19650 (WebCore::ScrollbarThemeWin::hasButtons):
19651 (WebCore::ScrollbarThemeWin::trackIsSinglePiece):
19652
timothy@apple.comd91172c2008-09-15 05:38:00 +0000196532008-09-14 Anthony Ricaud <rik24d@gmail.com>
19654
19655 Moving all resource graphs under the same container for future scalable feature.
19656 This is a speedup on resize but maybe a loss on changing the sorting function.
19657
19658 https://bugs.webkit.org/show_bug.cgi?id=20555
19659
19660 Reviewed by Timothy Hatcher.
19661
19662 * page/inspector/ResourcesPanel.js: Added a container for all resource graphs.
19663 Added WebInspector.ResourceGraph. No more _updateGraphBars on resize.
19664 * page/inspector/inspector.css: Edited corresponding rules and removed unnecessaries.
19665
ap@webkit.orga14074b2008-09-15 04:52:44 +0000196662008-09-14 Alexey Proskuryakov <ap@webkit.org>
19667
19668 Reviewed by Maciej Stachowiak.
19669
19670 https://bugs.webkit.org/show_bug.cgi?id=20738
19671 compareBoundaryPoints gives incorrect results
19672
19673 Test: fast/dom/Range/compareBoundaryPoints-2.html
19674
19675 * dom/Range.cpp: (WebCore::Range::compareBoundaryPoints): Correct meanings of START_TO_END
19676 and END_TO_START.
19677 * page/DOMSelection.cpp: (WebCore::DOMSelection::addRange): Updated for this change.
19678
mjs@apple.com285bdcf2008-09-15 02:55:16 +0000196792008-09-14 Maciej Stachowiak <mjs@apple.com>
19680
19681 Unreviewed build fix.
19682
mjs@apple.comcbb31e52008-09-15 03:10:35 +000019683 Trying again.
19684
19685 * bindings/js/JSQuarantinedObjectWrapper.cpp:
19686 (WebCore::JSQuarantinedObjectWrapper::hasInstance):
19687
196882008-09-14 Maciej Stachowiak <mjs@apple.com>
19689
19690 Unreviewed build fix.
19691
mjs@apple.com285bdcf2008-09-15 02:55:16 +000019692 Blind attempt to fix build. Correct parameters for hasInstance.
19693
19694 * bindings/js/JSQuarantinedObjectWrapper.cpp:
19695 (WebCore::JSQuarantinedObjectWrapper::hasInstance):
19696 * bindings/js/JSQuarantinedObjectWrapper.h:
19697
mitz@apple.come85f7362008-09-15 02:23:24 +0000196982008-09-14 Dan Bernstein <mitz@apple.com>
19699
19700 Rubber-stamped by Sam Weinig.
19701
19702 - revert <http://trac.webkit.org/changeset/36382> because it exposed
19703 <https://bugs.webkit.org/show_bug.cgi?id=20846> and resulted in crashes
19704 on Tiger.
19705
19706 * platform/graphics/mac/FontCacheMac.mm:
19707 (WebCore::FontCache::getFontDataForCharacters):
19708 (WebCore::FontCache::getLastResortFallbackFont):
19709
hyatt@apple.comf18feec2008-09-15 00:56:11 +0000197102008-09-14 Dave Hyatt <hyatt@apple.com>
19711
19712 Add a new ScrollbarThemeComposite base class that is shared by ScrollbarThemeSafari and
19713 ScrollbarThemeWin. Any scrollbar that wants to render by ScrollbarPart can subclass from this
19714 theme.
19715
19716 Reviewed by Sam Weinig
19717
19718 * WebCore.vcproj/WebCore.vcproj:
19719 * platform/win/ScrollbarThemeSafari.h:
19720 * platform/win/ScrollbarThemeWin.h:
19721
alp@webkit.orgd694e942008-09-15 00:20:15 +0000197222008-09-14 Alp Toker <alp@nuanti.com>
19723
19724 https://bugs.webkit.org/show_bug.cgi?id=20320
19725 [GTK] A white rectangle is visible behind widgets with rounded corners
19726
19727 Sync bundled gtk2drawing.c to the latest version from Mozilla (coding
19728 style exempt).
19729
19730 Requested by Michael Monreal.
19731
19732 * platform/gtk/RenderThemeGtk.cpp:
19733 (WebCore::RenderThemeGtk::RenderThemeGtk):
19734 * platform/gtk/gtk2drawing.c:
19735 (moz_gtk_set_widget_name):
19736 (ensure_window_widget):
19737 (setup_widget_prototype):
19738 (ensure_button_arrow_widget):
19739 (moz_gtk_get_combo_box_inner_button):
19740 (moz_gtk_get_combo_box_button_inner_widgets):
19741 (ensure_combo_box_widgets):
19742 (moz_gtk_get_combo_box_entry_inner_widgets):
19743 (moz_gtk_get_combo_box_entry_arrow):
19744 (ensure_combo_box_entry_widgets):
19745 (ensure_toolbar_widget):
19746 (ensure_tooltip_widget):
19747 (ensure_menu_bar_widget):
19748 (ensure_menu_bar_item_widget):
19749 (ensure_menu_popup_widget):
19750 (ensure_menu_item_widget):
19751 (ensure_image_menu_item_widget):
19752 (ensure_menu_separator_widget):
19753 (ensure_check_menu_item_widget):
19754 (ensure_tree_header_cell_widget):
19755 (ensure_scrolled_window_widget):
19756 (moz_gtk_button_paint):
19757 (moz_gtk_init):
19758 (moz_gtk_button_get_inner_border):
19759 (moz_gtk_toggle_paint):
19760 (calculate_button_inner_rect):
19761 (calculate_arrow_rect):
19762 (moz_gtk_scrollbar_button_paint):
19763 (moz_gtk_scrollbar_thumb_paint):
19764 (moz_gtk_caret_paint):
19765 (moz_gtk_entry_paint):
19766 (moz_gtk_treeview_paint):
19767 (moz_gtk_tree_header_cell_paint):
19768 (moz_gtk_combo_box_paint):
19769 (moz_gtk_downarrow_paint):
19770 (moz_gtk_combo_box_entry_button_paint):
19771 (moz_gtk_toolbar_paint):
19772 (moz_gtk_tab_scroll_arrow_paint):
19773 (moz_gtk_menu_bar_paint):
19774 (moz_gtk_menu_item_paint):
19775 (moz_gtk_get_widget_border):
19776 (moz_gtk_get_combo_box_entry_button_size):
19777 (moz_gtk_get_tab_scroll_arrow_size):
19778 (moz_gtk_get_downarrow_size):
19779 (moz_gtk_images_in_menus):
19780 (moz_gtk_widget_paint):
19781 (moz_gtk_shutdown):
19782 * platform/gtk/gtkdrawing.h:
19783
hyatt@apple.com3ab48302008-09-14 23:55:16 +0000197842008-09-14 David Hyatt <hyatt@apple.com>
19785
19786 Convert Mac, Gtk, wx and Qt over to the new ScrollbarTheme for
19787 painting. Mac and Gtk themes don't do anything and just let the
19788 underlying widget paint. Qt now uses the theme to paint. wx doesn't
19789 do anything yet.
19790
19791 Reviewed by Sam Weinig
19792
19793 * platform/ScrollBar.cpp:
19794 (WebCore::Scrollbar::paint):
19795 * platform/ScrollBar.h:
19796 (WebCore::Scrollbar::value):
19797 (WebCore::Scrollbar::visibleSize):
19798 (WebCore::Scrollbar::maximum):
19799 (WebCore::Scrollbar::lineStep):
19800 (WebCore::Scrollbar::pageStep):
19801 (WebCore::Scrollbar::pixelStep):
19802 (WebCore::Scrollbar::pressedPart):
19803 (WebCore::Scrollbar::hoveredPart):
19804 (WebCore::Scrollbar::theme):
19805 * platform/ScrollbarTheme.h:
19806 (WebCore::ScrollbarTheme::paint):
19807 (WebCore::ScrollbarTheme::scrollbarThickness):
19808 (WebCore::ScrollbarTheme::supportsControlTints):
19809 (WebCore::ScrollbarTheme::themeChanged):
19810 * platform/gtk/PlatformScrollBar.h:
19811 * platform/gtk/PlatformScrollBarGtk.cpp:
19812 * platform/mac/PlatformScrollBar.h:
19813 * platform/mac/PlatformScrollBarMac.mm:
19814 * platform/qt/PlatformScrollBar.h:
19815 * platform/qt/PlatformScrollBarQt.cpp:
19816 * platform/qt/ScrollbarThemeQt.cpp:
19817 (WebCore::styleOptionSlider):
19818 * platform/qt/ScrollbarThemeQt.h:
19819 (WebCore::ScrollbarThemeQt::paint):
19820 * platform/win/PlatformScrollBarSafari.cpp:
19821 (WebCore::PlatformScrollbar::paint):
19822 * platform/win/ScrollbarThemeSafari.h:
19823 (WebCore::ScrollbarThemeSafari::supportsControlTints):
19824 * platform/wx/PlatformScrollBar.h:
19825 * platform/wx/TemporaryLinkStubs.cpp:
19826 (PlatformScrollbar::~PlatformScrollbar):
19827
weinig@apple.comcb93e262008-09-14 21:36:11 +0000198282008-09-14 Sam Weinig <sam@webkit.org>
19829
weinig@apple.com6ef2b872008-09-14 22:15:28 +000019830 Qt build fix.
19831
19832 * platform/qt/PlatformScrollBarQt.cpp:
19833
198342008-09-14 Sam Weinig <sam@webkit.org>
19835
weinig@apple.com064861a2008-09-14 22:12:49 +000019836 Reviewed by Mark Rowe.
19837
19838 Remove extraneous semicolons.
19839
19840 * bindings/scripts/CodeGeneratorObjC.pm:
19841 * html/HTMLLinkElement.cpp:
19842 (WebCore::HTMLLinkElement::tokenizeRelAttribute):
19843 * html/HTMLScriptElement.cpp:
19844 (WebCore::HTMLScriptElement::charsetAttributeValue):
19845 (WebCore::HTMLScriptElement::typeAttributeValue):
19846 * platform/graphics/qt/GradientQt.cpp:
19847 (WebCore::Gradient::platformGradient):
19848 * platform/qt/ScrollViewQt.cpp:
19849 (WebCore::ScrollView::ScrollViewPrivate::setHasHorizontalScrollbar):
19850 * platform/win/ScrollViewWin.cpp:
19851 (WebCore::ScrollView::updateScrollbars):
19852 * rendering/RenderBlock.cpp:
19853 (WebCore::RenderBlock::paintEllipsisBoxes):
19854 * svg/SVGPathSegList.cpp:
19855 (WebCore::SVGPathSegList::toPathData):
19856
198572008-09-14 Sam Weinig <sam@webkit.org>
19858
weinig@apple.comcb93e262008-09-14 21:36:11 +000019859 Qt build fix.
19860
weinig@apple.com31311a62008-09-14 22:00:15 +000019861 * platform/qt/ScrollViewQt.cpp:
19862 (WebCore::ScrollView::updateScrollbars):
19863
198642008-09-14 Sam Weinig <sam@webkit.org>
19865
19866 Qt build fix.
19867
weinig@apple.comcb93e262008-09-14 21:36:11 +000019868 * platform/qt/PlatformScrollBarQt.cpp:
19869 (WebCore::PlatformScrollbar::PlatformScrollbar):
19870 (WebCore::PlatformScrollbar::paint):
19871
jmalonzo@webkit.org65e836c2008-09-14 01:57:13 +0000198722008-09-13 Jan Michael Alonzo <jmalonzo@webkit.org>
19873
19874 Gtk build fix, not reviewed.
19875
19876 * platform/gtk/PlatformScrollBarGtk.cpp:
19877 (PlatformScrollbar::PlatformScrollbar):
19878 * platform/gtk/ScrollViewGtk.cpp:
19879 (WebCore::ScrollView::updateScrollbars):
19880
hyatt@apple.comd62f5bf2008-09-14 00:32:19 +0000198812008-09-13 Dave Hyatt <hyatt@apple.com>
19882
hyatt@apple.com21ab7c62008-09-14 01:26:22 +000019883 Remove scrollbar's setRect method. Clients can now just call setFrameGeometry (the corresponding Widget) method
19884 to set the dimensions of a scrollbar.
19885
19886 Reviewed by Sam Weinig
19887
19888 * platform/ScrollBar.h:
19889 * platform/gtk/PlatformScrollBar.h:
19890 * platform/gtk/PlatformScrollBarGtk.cpp:
19891 (PlatformScrollbar::setFrameGeometry):
19892 * platform/gtk/ScrollViewGtk.cpp:
19893 (WebCore::ScrollView::updateScrollbars):
19894 * platform/mac/PlatformScrollBarMac.mm:
19895 * platform/qt/PlatformScrollBarQt.cpp:
19896 * platform/qt/ScrollViewQt.cpp:
19897 (WebCore::ScrollView::updateScrollbars):
19898 * platform/win/PlatformScrollBar.h:
19899 * platform/win/PlatformScrollBarSafari.cpp:
19900 (WebCore::PlatformScrollbar::PlatformScrollbar):
19901 (WebCore::PlatformScrollbar::setFrameGeometry):
19902 * platform/win/PlatformScrollBarWin.cpp:
19903 (WebCore::PlatformScrollbar::PlatformScrollbar):
19904 (WebCore::PlatformScrollbar::setFrameGeometry):
19905 * platform/win/PopupMenuWin.cpp:
19906 (WebCore::PopupWndProc):
19907 * platform/win/ScrollViewWin.cpp:
19908 (WebCore::ScrollView::updateScrollbars):
19909 * platform/wx/PlatformScrollBar.h:
19910 * platform/wx/TemporaryLinkStubs.cpp:
19911 (PlatformScrollbar::updateThumbProportion):
19912 * rendering/RenderLayer.cpp:
19913 (WebCore::RenderLayer::positionOverflowControls):
19914 * rendering/RenderListBox.cpp:
19915 (WebCore::RenderListBox::paintScrollbar):
19916
199172008-09-13 Dave Hyatt <hyatt@apple.com>
19918
hyatt@apple.comed9485a2008-09-14 01:06:57 +000019919 Remove setEnabled() from all Scrollbar classes that were just using their Widget base class methods.
19920
19921 Reviewed by Sam Weinig
19922
19923 * platform/ScrollBar.h:
19924 * platform/gtk/PlatformScrollBar.h:
19925 * platform/gtk/PlatformScrollBarGtk.cpp:
19926 * platform/mac/PlatformScrollBar.h:
19927 * platform/mac/PlatformScrollBarMac.mm:
19928 * platform/win/PlatformScrollBar.h:
19929 * platform/win/PlatformScrollBarSafari.cpp:
19930 * platform/win/PlatformScrollBarWin.cpp:
19931 * platform/wx/PlatformScrollBar.h:
19932 * platform/wx/TemporaryLinkStubs.cpp:
19933 (PlatformScrollbar::~PlatformScrollbar):
19934
199352008-09-13 Dave Hyatt <hyatt@apple.com>
19936
hyatt@apple.com64d98032008-09-14 00:58:29 +000019937 Remove width()/height() from Scrollbar now that it derives from Widget. Remove width()/height() from
19938 all PlatformScrollbar subclasses that just called the Widget base class versions of those methods.
19939
19940 Reviewed by Sam Weinig
19941
19942 * platform/ScrollBar.h:
19943 * platform/gtk/PlatformScrollBar.h:
19944 * platform/gtk/PlatformScrollBarGtk.cpp:
19945 * platform/mac/PlatformScrollBar.h:
19946 * platform/mac/PlatformScrollBarMac.mm:
19947 * platform/win/PlatformScrollBarSafari.cpp:
19948 * platform/win/PlatformScrollBarWin.cpp:
19949 * platform/wx/PlatformScrollBar.h:
19950 * platform/wx/TemporaryLinkStubs.cpp:
19951 (PlatformScrollbar::~PlatformScrollbar):
19952
199532008-09-13 Dave Hyatt <hyatt@apple.com>
19954
hyatt@apple.comd62f5bf2008-09-14 00:32:19 +000019955 Move stopTimerIfNeeded out of PlatformScrollbar destructors and into Scrollbar.
19956
19957 Reviewed by Sam Weinig
19958
19959 * platform/ScrollBar.cpp:
19960 (WebCore::Scrollbar::~Scrollbar):
19961 * platform/ScrollBar.h:
19962 * platform/qt/PlatformScrollBarQt.cpp:
19963 (WebCore::PlatformScrollbar::~PlatformScrollbar):
19964 * platform/win/PlatformScrollBarSafari.cpp:
19965 (WebCore::PlatformScrollbar::~PlatformScrollbar):
19966 * platform/win/PlatformScrollBarWin.cpp:
19967 (WebCore::PlatformScrollbar::~PlatformScrollbar):
19968
hyatt@apple.coma3c52492008-09-13 23:57:08 +0000199692008-09-13 David Hyatt <hyatt@apple.com>
19970
19971 Move maximum() from Qt's PlatformScrollbar to be a cross-platform
19972 function on Scrollbar. Fixes Qt build bustage.
19973
19974 Reviewed by Sam Weinig
19975
19976 * platform/ScrollBar.h:
19977 (WebCore::Scrollbar::orientation):
19978 (WebCore::Scrollbar::value):
19979 (WebCore::Scrollbar::maximum):
19980 * platform/qt/PlatformScrollBar.h:
19981
mitz@apple.comb3d22882008-09-13 23:06:59 +0000199822008-09-13 Dan Bernstein <mitz@apple.com>
19983
19984 Reviewed by Sam Weinig.
19985
19986 - use the LastResort font for missing glyphs instead of showing the
19987 primary font's missing glyph
19988
19989 Test: platform/mac/fast/text/last-resort-font.html
19990
19991 * platform/graphics/mac/FontCacheMac.mm:
19992 (WebCore::FontCache::getFontDataForCharacters): Changed to return the
19993 last resort font if a substitute font cannot be found.
19994 (WebCore::FontCache::getLastResortFallbackFont): Removed an outdated
19995 comment (the user's preferred standard font is included in the search
19996 thanks to code in FontCache::getFontData()) and changed to return the
19997 LastResort font.
19998
hyatt@apple.com0c378c72008-09-13 22:59:05 +0000199992008-09-13 Dave Hyatt <hyatt@apple.com>
20000
20001 This patch adds ScrollbarTheme to the build. ScrollbarTheme is similar to RenderTheme (but for
20002 scrollbars only). For now ScrollbarTheme just handles returning the size of scrollbars. Subsequent
20003 patches will move rendering and hit testing functionality into this class.
20004
20005 Implemented ScrollbarTheme subclasses for four ports (Mac, Win, Gtk, Qt). The wxWidgets port does not
20006 implement scrollbars yet, so I added a temporary link stub to keep things compiling on wx.
20007
20008 Reviewed by Sam Weinig
20009
20010 * GNUmakefile.am:
20011 * WebCore.pro:
20012 * WebCore.vcproj/WebCore.vcproj:
20013 * platform/ScrollBar.cpp:
20014 (WebCore::Scrollbar::Scrollbar):
20015 * platform/ScrollBar.h:
20016 * platform/ScrollbarTheme.h: Added.
20017 (WebCore::ScrollbarTheme::~ScrollbarTheme):
20018 (WebCore::ScrollbarTheme::scrollbarThickness):
20019 (WebCore::ScrollbarTheme::themeChanged):
20020 * platform/gtk/ScrollbarThemeGtk.cpp: Added.
20021 (WebCore::ScrollbarTheme::nativeTheme):
20022 (WebCore::ScrollbarThemeGtk::~ScrollbarThemeGtk):
20023 (WebCore::ScrollbarThemeGtk::scrollbarThickness):
20024 * platform/gtk/ScrollbarThemeGtk.h: Added.
20025 * platform/mac/PlatformScrollBar.h:
20026 * platform/mac/ScrollbarThemeMac.cpp: Added.
20027 (WebCore::ScrollbarTheme::nativeTheme):
20028 (WebCore::):
20029 (WebCore::ScrollbarThemeMac::~ScrollbarThemeMac):
20030 (WebCore::ScrollbarThemeMac::scrollbarThickness):
20031 * platform/mac/ScrollbarThemeMac.h: Added.
20032 * platform/qt/PlatformScrollBarQt.cpp:
20033 * platform/qt/ScrollbarThemeQt.cpp: Added.
20034 (WebCore::ScrollbarTheme::nativeTheme):
20035 (WebCore::ScrollbarThemeQt::~ScrollbarThemeQt):
20036 (WebCore::ScrollbarThemeQt::scrollbarThickness):
20037 * platform/qt/ScrollbarThemeQt.h: Added.
20038 * platform/win/PlatformScrollBar.h:
20039 * platform/win/PlatformScrollBarSafari.cpp:
20040 * platform/win/PlatformScrollBarWin.cpp:
20041 * platform/win/PopupMenuWin.cpp:
20042 (WebCore::PopupMenu::calculatePositionAndSize):
20043 * platform/win/ScrollViewWin.cpp:
20044 (WebCore::ScrollView::updateScrollbars):
20045 (WebCore::ScrollView::themeChanged):
20046 * platform/win/ScrollbarThemeSafari.cpp: Added.
20047 (WebCore::ScrollbarTheme::nativeTheme):
20048 (WebCore::):
20049 (WebCore::ScrollbarThemeSafari::~ScrollbarThemeSafari):
20050 (WebCore::ScrollbarThemeSafari::scrollbarThickness):
20051 * platform/win/ScrollbarThemeSafari.h: Added.
20052 * platform/win/ScrollbarThemeWin.cpp: Added.
20053 (WebCore::ScrollbarTheme::nativeTheme):
20054 (WebCore::ScrollbarThemeWin::~ScrollbarThemeWin):
20055 (WebCore::ScrollbarThemeWin::scrollbarThickness):
20056 (WebCore::ScrollbarThemeWin::themeChanged):
20057 * platform/win/ScrollbarThemeWin.h: Added.
20058 * platform/wx/TemporaryLinkStubs.cpp:
20059 (ScrollbarTheme::nativeTheme):
20060 * rendering/RenderLayer.cpp:
20061 (WebCore::scrollCornerRect):
20062 * rendering/RenderTextControl.cpp:
20063 (WebCore::RenderTextControl::calcHeight):
20064 (WebCore::RenderTextControl::calcPrefWidths):
20065
cfleizach@apple.comd26c2762008-09-13 21:05:18 +0000200662008-09-13 Chris Fleizach <cfleizach@apple.com>
20067
20068 Reviewed by Timothy Hatcher.
20069
20070 <rdar://problem/5060439> Web elements should have an AXTopLevelUIElement
20071
20072 * page/mac/AccessibilityObjectWrapper.mm:
20073 (-[AccessibilityObjectWrapper accessibilityAttributeNames]):
20074
mitz@apple.com6307c9f2008-09-13 20:27:37 +0000200752008-09-13 Dan Bernstein <mitz@apple.com>
20076
20077 Reviewed by Timothy Hatcher.
20078
20079 - fix <rdar://problem/6171280> REGRESSION (r35667): Assertion failure in WebCore::FrameView::scheduleRelayout() when releasing a page with counters from the b/f cache
20080
20081 No regression test because the back/forward cache is disabled in DumpRenderTree
20082
20083 * rendering/RenderContainer.cpp:
20084 (WebCore::RenderContainer::invalidateCounters): Bail out if the document
20085 is being destroyed.
20086
kevino@webkit.org1e178ee2008-09-13 18:48:39 +0000200872008-09-13 Kevin Ollivier <kevino@theolliviers.com>
20088
20089 wx build fixes for new methods recently introduced.
20090
20091 * platform/graphics/wx/AffineTransformWx.cpp:
20092 (WebCore::AffineTransform::AffineTransform):
20093 (WebCore::AffineTransform::setMatrix):
20094 (WebCore::AffineTransform::setA):
20095 (WebCore::AffineTransform::setB):
20096 (WebCore::AffineTransform::setC):
20097 (WebCore::AffineTransform::setD):
20098 (WebCore::AffineTransform::setE):
20099 (WebCore::AffineTransform::setF):
20100 * platform/wx/LocalizedStringsWx.cpp:
20101 (WebCore::AXDefinitionListTermText):
20102 (WebCore::AXDefinitionListDefinitionText):
20103
hyatt@apple.com30ed5442008-09-13 18:39:58 +0000201042008-09-12 Dave Hyatt <hyatt@apple.com>
20105
20106 Move the member variables of PlatformScrollbar up into Scrollbar. Move autoscroll timer handling
20107 up into scrollbar. Make sure a bunch of cross-platform code now just uses "Scrollbar" instead of
20108 "PlatformScrollbar."
20109
20110 Reviewed by Sam Weinig
20111
20112 * WebCore.vcproj/WebCore.vcproj:
20113 * editing/EditorCommand.cpp:
20114 * page/EventHandler.cpp:
20115 (WebCore::EventHandler::selectCursor):
20116 (WebCore::EventHandler::handleMousePressEvent):
20117 (WebCore::EventHandler::handleMouseMoveEvent):
20118 * page/EventHandler.h:
20119 * page/MouseEventWithHitTestResults.cpp:
20120 (WebCore::MouseEventWithHitTestResults::scrollbar):
20121 * page/MouseEventWithHitTestResults.h:
20122 * page/gtk/EventHandlerGtk.cpp:
20123 (WebCore::EventHandler::passMousePressEventToScrollbar):
20124 * page/mac/EventHandlerMac.mm:
20125 (WebCore::EventHandler::passMousePressEventToScrollbar):
20126 * page/qt/EventHandlerQt.cpp:
20127 (WebCore::EventHandler::passMousePressEventToScrollbar):
20128 * page/win/EventHandlerWin.cpp:
20129 (WebCore::EventHandler::passMousePressEventToScrollbar):
20130 * page/wx/EventHandlerWx.cpp:
20131 (WebCore::EventHandler::passMousePressEventToScrollbar):
20132 * platform/PopupMenu.h:
20133 * platform/ScrollBar.cpp:
20134 (WebCore::Scrollbar::Scrollbar):
20135 (WebCore::Scrollbar::autoscrollTimerFired):
20136 (WebCore::Scrollbar::autoscrollPressedPart):
20137 (WebCore::Scrollbar::startTimerIfNeeded):
20138 (WebCore::Scrollbar::stopTimerIfNeeded):
20139 (WebCore::Scrollbar::pressedPartScrollDirection):
20140 (WebCore::Scrollbar::pressedPartScrollGranularity):
20141 * platform/ScrollBar.h:
20142 (WebCore::Scrollbar::handleMousePressEvent):
20143 (WebCore::Scrollbar::invalidatePart):
20144 (WebCore::Scrollbar::thumbUnderMouse):
20145 * platform/ScrollView.h:
20146 * platform/ScrollbarClient.h: Added.
20147 (WebCore::ScrollbarClient::~ScrollbarClient):
20148 * platform/gtk/ScrollViewGtk.cpp:
20149 (WebCore::ScrollView::scrollbarUnderMouse):
20150 * platform/qt/PlatformScrollBar.h:
20151 * platform/qt/PlatformScrollBarQt.cpp:
20152 (WebCore::PlatformScrollbar::PlatformScrollbar):
20153 (WebCore::scrollbarPart):
20154 (WebCore::PlatformScrollbar::handleMouseMoveEvent):
20155 (WebCore::PlatformScrollbar::handleMouseOutEvent):
20156 (WebCore::PlatformScrollbar::handleMousePressEvent):
20157 (WebCore::PlatformScrollbar::handleMouseReleaseEvent):
20158 * platform/qt/ScrollViewQt.cpp:
20159 (WebCore::ScrollView::scrollbarUnderMouse):
20160 (WebCore::ScrollView::wheelEvent):
20161 * platform/win/PlatformScrollBar.h:
20162 * platform/win/PlatformScrollBarSafari.cpp:
20163 (WebCore::PlatformScrollbar::PlatformScrollbar):
20164 * platform/win/PlatformScrollBarWin.cpp:
20165 (WebCore::PlatformScrollbar::PlatformScrollbar):
20166 * platform/win/ScrollViewWin.cpp:
20167 (WebCore::ScrollView::scrollbarUnderMouse):
20168 * rendering/HitTestResult.cpp:
20169 (WebCore::HitTestResult::setScrollbar):
20170 * rendering/HitTestResult.h:
20171 (WebCore::HitTestResult::scrollbar):
20172 * rendering/RenderLayer.cpp:
20173 (WebCore::RenderLayer::hitTestOverflowControls):
20174 * rendering/RenderLayer.h:
20175 * rendering/RenderListBox.h:
20176
sfalken@apple.comb4e407e2008-09-13 02:59:00 +0000201772008-09-12 Steve Falkenburg <sfalken@apple.com>
20178
20179 Fix Mac build.
20180
20181 * css/CSSStyleSelector.cpp:
20182 (WebCore::getTransformOperationType):
20183
dino@apple.comf937dc62008-09-13 00:45:39 +0000201842008-09-12 Chris Marrin <cmarrin@apple.com>
20185
20186 Reviewed by Dave Hyatt.
20187
20188 Make transform animation behavior match spec
20189 https://bugs.webkit.org/show_bug.cgi?id=20770
20190
20191 Tests: transitions/transform-op-list-match.html
20192 transitions/transform-op-list-no-match.html
20193
20194 * css/CSSStyleSelector.cpp:
20195 * css/CSSStyleSelector.h:
20196 * page/animation/AnimationBase.cpp:
20197 * page/animation/AnimationBase.h:
20198 * page/animation/ImplicitAnimation.cpp:
20199 * page/animation/ImplicitAnimation.h:
20200 * page/animation/KeyframeAnimation.cpp:
20201 * page/animation/KeyframeAnimation.h:
20202 * rendering/RenderLayer.cpp:
20203 * rendering/style/RenderStyle.cpp:
20204 * rendering/style/RenderStyle.h:
20205
timothy@apple.comab374dd2008-09-12 22:43:38 +0000202062008-09-12 Ojan Vafai <ojan@chromium.org>
20207
20208 Properly escape contents of links added to the inspector.
20209 For now, just build the link with the DOM and get the
20210 outerHTML. Eventually, we probably just want to do
20211 this entirely with the DOM.
20212
20213 Reviewed by Timothy Hatcher.
20214
20215 https://bugs.webkit.org/show_bug.cgi?id=20684
20216
20217 * manual-tests/inspector/escape-links.html: Added.
20218 * page/inspector/StylesSidebarPane.js:
20219 * page/inspector/inspector.js:
20220 * page/inspector/utilities.js:
20221
adele@apple.com87fb3c72008-09-12 22:14:13 +0000202222008-09-12 Adele Peterson <adele@apple.com>
20223
20224 Reviewed by John Sullivan and Kevin McCullough.
20225
20226 Fix for <rdar://problem/6216951> REGRESSION (r36000?): Crash due to infinite recursion into EventHandler::hitTestResultAtPoint() with disconnected frames
20227
20228 * page/EventHandler.cpp: (WebCore::EventHandler::hitTestResultAtPoint):
20229 Hit testing again on the main frame will only work if we aren't already on the main frame. If we are already on the main frame, that will
20230 cause infinite recursion. This change checks that we're not already on the main frame before hit testing again.
20231
kmccullough@apple.combdba2e32008-09-12 22:08:56 +0000202322008-09-12 Kevin McCullough <kmccullough@apple.com>
20233
20234 RS by Tim .
20235
20236 Re-introducing the code since it was not the cause of the crash.
20237 See r36343.
20238
20239 * rendering/RenderObject.cpp:
20240 (WebCore::RenderObject::canBeProgramaticallyScrolled):
20241 * rendering/RenderObject.h:
20242
dino@apple.comf712ed02008-09-12 21:54:57 +0000202432008-09-12 Chris Marrin <cmarrin@apple.com>
20244
20245 Reviewed by Dave Hyatt.
20246
20247 When changing one animation in a list, don't reset other animations
20248 https://bugs.webkit.org/show_bug.cgi?id=20675
20249
20250 Test: animations/change-one-anim.html
20251
20252 * page/animation/AnimationBase.cpp:
20253 (WebCore::AnimationBase::getNumProperties):
20254 * page/animation/AnimationBase.h:
20255 * page/animation/AnimationController.cpp:
20256 * page/animation/CompositeAnimation.cpp:
20257 (WebCore::CompositeAnimation::updateKeyframeAnimations):
20258 * page/animation/CompositeAnimation.h:
20259 * page/animation/ImplicitAnimation.cpp:
20260 * page/animation/KeyframeAnimation.cpp:
20261 * page/animation/KeyframeAnimation.h:
20262 (WebCore::KeyframeAnimation::setIndex):
20263
beidson@apple.com521e2b52008-09-12 18:40:03 +0000202642008-09-12 Brady Eidson <beidson@apple.com>
20265
20266 Reviewed by Mitz Pettel
20267
20268 Fix the ASSERT and failure in webarchive/archive-empty-frame-source.html
20269
20270 * loader/DocumentLoader.cpp:
20271 (WebCore::DocumentLoader::mainResource): Further restoration of original WebArchive behavior.
20272 Subresources can never be created from nil data, but there is always a MainResource, whether
20273 or not there's any data. So in the case where the main resource has no data, fake it for the
20274 sake of creating the ArchiveResource.
20275
hyatt@apple.com818ffe92008-09-12 18:37:23 +0000202762008-09-12 Dave Hyatt <hyatt@apple.com>
20277
20278 Preparation for major scrollbar rearchitecture. Eliminate the concept of non-widget based
20279 scrollbars (which we never supported anyway). Make Scrollbar derive from Widget directly.
20280 Remove all the isWidget and hasPlatformScrollbars guards.
20281
20282 Reviewed by Tim Hatcher
20283
20284 * platform/ScrollBar.h:
20285 * platform/gtk/PlatformScrollBar.h:
20286 * platform/mac/PlatformScrollBar.h:
20287 * platform/qt/PlatformScrollBar.h:
20288 * platform/win/PlatformScrollBar.h:
20289 * platform/win/ScrollViewWin.cpp:
20290 (WebCore::ScrollView::ScrollViewPrivate::setHasHorizontalScrollbar):
20291 (WebCore::ScrollView::ScrollViewPrivate::setHasVerticalScrollbar):
20292 * platform/wx/PlatformScrollBar.h:
20293 * rendering/RenderLayer.cpp:
20294 (WebCore::RenderLayer::horizontalScrollbarWidget):
20295 (WebCore::RenderLayer::verticalScrollbarWidget):
20296 (WebCore::RenderLayer::createScrollbar):
20297 (WebCore::RenderLayer::destroyScrollbar):
20298 * rendering/RenderListBox.cpp:
20299 (WebCore::RenderListBox::~RenderListBox):
20300 (WebCore::RenderListBox::updateFromElement):
20301 (WebCore::RenderListBox::isPointInOverflowControl):
20302
mitz@apple.com0bef1302008-09-12 18:22:07 +0000203032008-09-12 Dan Bernstein <mitz@apple.com>
20304
20305 Reviewed by Sam Weinig.
20306
20307 - https://bugs.webkit.org/show_bug.cgi?id=20793 clean up page/animation
20308
20309 * page/animation/AnimationController.cpp:
20310 * page/animation/AnimationController.h:
20311 * page/animation/CompositeAnimation.cpp:
20312 * page/animation/CompositeAnimation.h:
20313 * page/animation/ImplicitAnimation.cpp:
20314 * page/animation/ImplicitAnimation.h:
20315 * page/animation/KeyframeAnimation.cpp:
20316 * page/animation/KeyframeAnimation.h:
20317
timothy@apple.com43203432008-09-12 04:44:40 +0000203182008-09-11 Timothy Hatcher <timothy@apple.com>
20319
20320 Add a renderedImage method to DOMNode to get an image
20321 of the rendering for the node and it's descendants.
20322
20323 <rdar://problem/5849349> Would like API to create
20324 an image for a DOM node
20325
20326 Reviewed by Oliver Hunt.
20327
20328 * bindings/objc/DOM.mm:
20329 (-[DOMNode renderedImage]): Call Frame::nodeImage.
20330 * bindings/objc/DOMPrivate.h:
20331 * page/Frame.h:
20332 * page/mac/FrameMac.mm:
20333 (WebCore::Frame::nodeImage):
20334
dino@apple.com9300a0b2008-09-12 00:36:31 +0000203352008-09-08 Chris Marrin <cmarrin@apple.com>
20336
20337 Reviewed by Dave Hyatt
20338
20339 Need to support comma separated list of key times in keyframes selectors
20340 https://bugs.webkit.org/show_bug.cgi?id=20680
20341
20342 Test: animations/keyframes-comma-separated.html
20343
20344 * css/CSSGrammar.y:
20345 * css/CSSParser.cpp:
20346 (WebCore::CSSParser::createKeyframeRule):
20347 * css/CSSParser.h:
20348 * css/CSSStyleSelector.cpp:
20349 (WebCore::CSSStyleSelector::addKeyframeStyle):
20350 * css/WebKitCSSKeyframeRule.cpp:
20351 (WebCore::WebKitCSSKeyframeRule::WebKitCSSKeyframeRule):
20352 (WebCore::WebKitCSSKeyframeRule::cssText):
20353 (WebCore::WebKitCSSKeyframeRule::parseKeyString):
20354 * css/WebKitCSSKeyframeRule.h:
20355 (WebCore::WebKitCSSKeyframeRule::keyText):
20356 (WebCore::WebKitCSSKeyframeRule::setKeyText):
20357 (WebCore::WebKitCSSKeyframeRule::getKeys):
20358 * css/WebKitCSSKeyframesRule.cpp:
20359 (WebCore::WebKitCSSKeyframesRule::append):
20360 (WebCore::WebKitCSSKeyframesRule::insertRule):
20361 (WebCore::WebKitCSSKeyframesRule::deleteRule):
20362 (WebCore::WebKitCSSKeyframesRule::findRule):
20363 (WebCore::WebKitCSSKeyframesRule::findRuleIndex):
20364 * css/WebKitCSSKeyframesRule.h:
20365 * page/animation/AnimationBase.cpp:
20366 (WebCore::AnimationBase::blendProperties):
20367
kmccullough@apple.com0f9f23a2008-09-11 22:57:09 +0000203682008-09-11 Kevin McCullough <kmccullough@apple.com>
20369
20370 RS by Tim.
20371
20372 Reverting because this caused a crash.
20373
20374 * rendering/RenderObject.cpp:
20375 (WebCore::RenderObject::canBeProgramaticallyScrolled):
20376 (WebCore::RenderObject::hasScrollableView):
20377 * rendering/RenderObject.h:
20378
dino@apple.com19853b32008-09-11 21:59:08 +0000203792008-09-11 Dean Jackson <dino@apple.com>
20380
20381 Reviewed by Dan Bernstein.
20382
20383 Fix assertion on transition property "none"
20384 https://bugs.webkit.org/show_bug.cgi?id=20751
20385
20386 Test: transitions/transition-end-event-set-none.html
20387
20388 * page/animation/CompositeAnimation.cpp:
20389 (WebCore::CompositeAnimation::updateTransitions):
20390
dsmith@webkit.orge6ea48f2008-09-11 21:41:33 +0000203912008-09-11 David Smith <catfish.man@gmail.com>
20392
dsmith@webkit.org08103d92008-09-11 21:54:30 +000020393 Rubber-stamped by mitzpettel.
20394
20395 Remove an accidentally added extra file.
20396
20397 * WebCore: Removed.
20398
203992008-09-11 David Smith <catfish.man@gmail.com>
20400
dsmith@webkit.orge6ea48f2008-09-11 21:41:33 +000020401 Reviewed by Darin
20402
20403 https://bugs.webkit.org/show_bug.cgi?id=20180
20404
20405 This speeds up :nth-child matching as tested by querySelectorAll by around 10% by inlining the common case of Node::renderStyle(). Many thanks to mitzpettel and othermaciej for suggestions and help.
20406
20407 * WebCore.xcodeproj/project.pbxproj: Add NodeRenderStyle.h
20408 * css/CSSStyleSelector.cpp: include NodeRenderStyle.h
20409 * dom/Element.cpp: include NodeRenderStyle.h
20410 * dom/Node.cpp: Remove the definition of renderStyle()
20411 (WebCore::Node::nonRendererRenderStyle):
20412 * dom/Node.h: Make renderStyle() nonvirtual and add nonRendererRenderStyle()
20413 * dom/NodeRenderStyle.h: Added.
20414 (WebCore::Node::renderStyle): Inline the common case of this, call nonRendererRenderStyle for the part that needed to be virtual
20415 * html/HTMLOptGroupElement.cpp: include NodeRenderStyle.h
20416 * html/HTMLOptGroupElement.h:
20417 (WebCore::HTMLOptGroupElement::nonRendererRenderStyle): override to return m_style
20418 * html/HTMLOptionElement.cpp: include NodeRenderStyle.h
20419 * html/HTMLOptionElement.h:
20420 (WebCore::HTMLOptionElement::nonRendererRenderStyle): override to return m_style
20421 * rendering/RenderListBox.cpp: include NodeRenderStyle.h
20422 * rendering/RenderMenuList.cpp: include NodeRenderStyle.h
20423 * svg/SVGUseElement.cpp: include NodeRenderStyle.h
20424
kmccullough@apple.com38d3b0f2008-09-11 17:39:12 +0000204252008-09-11 Kevin McCullough <kmccullough@apple.com>
20426
20427 Reviewed by Adele and Tim.
20428
20429 <rdar://problem/6100597> REGRESSION: clicking on search results in Web
20430 Inspector does not scroll to the line of the results (20167)
20431 - This was put in by Max to fix auto scrolling but is not correct for
20432 the whole web: rdar://problem/6213098
20433
20434 * rendering/RenderObject.cpp:
20435 (WebCore::RenderObject::canBeProgramaticallyScrolled):
20436 * rendering/RenderObject.h:
20437
cfleizach@apple.com6a3b1452008-09-11 16:24:09 +0000204382008-09-11 Chris Fleizach <cfleizach@apple.com>
20439
20440 Reviewed by Beth Dakin
20441
20442 <rdar://problem/6210511> AX: if a frame has a title, that should be reported as the AXWebArea's title
20443
20444 Test: accessibility/frame-with-title.html
20445
20446 * page/AccessibilityRenderObject.cpp:
20447 (WebCore::AccessibilityRenderObject::accessibilityDescription):
20448
hausmann@webkit.orge8f8ffd2008-09-11 07:34:42 +0000204492008-09-11 Dirk Schulze <vbs85@gmx.de>
20450
20451 Reviewed by Simon.
20452
hausmann@webkit.orgea57c432008-09-11 08:03:07 +000020453 Fixed stroke() and strokeRect() to support gradients
20454 and patterns on Qt.
20455
20456 [Qt] Canvas stroke don't work for gradients and patterns
20457 [https://bugs.webkit.org/show_bug.cgi?id=20749]
20458
20459 * platform/graphics/qt/GraphicsContextQt.cpp:
20460 (WebCore::GraphicsContext::strokePath):
20461 (WebCore::GraphicsContext::strokeRect):
20462
204632008-09-11 Dirk Schulze <vbs85@gmx.de>
20464
20465 Reviewed by Simon.
20466
hausmann@webkit.orgc11e3b72008-09-11 07:37:42 +000020467 https://bugs.webkit.org/show_bug.cgi?id=20729
20468
20469 Fixed canvas gradients for Qt
20470
20471 [Qt] Canvas gradients don't work as expected
20472 [https://bugs.webkit.org/show_bug.cgi?id=20729]
20473
20474 * platform/graphics/qt/GradientQt.cpp:
20475 (WebCore::Gradient::platformGradient):
20476
204772008-09-11 Dirk Schulze <vbs85@gmx.de>
20478
20479 Reviewed by Simon.
20480
hausmann@webkit.orge8f8ffd2008-09-11 07:34:42 +000020481 https://bugs.webkit.org/show_bug.cgi?id=20568
20482
20483 Add support for patterns to Qt.
20484
20485 * platform/graphics/qt/PatternQt.cpp:
20486 (WebCore::Pattern::createPlatformPattern):
20487
mitz@apple.com442c5892008-09-10 18:21:14 +0000204882008-09-10 Dan Bernstein <mitz@apple.com>
20489
20490 Reviewed by Sam Weinig.
20491
20492 - clean up AnimationBase
20493
20494 * page/animation/AnimationBase.cpp:
20495 * page/animation/AnimationBase.h:
20496 * page/animation/CompositeAnimation.cpp:
20497 * page/animation/ImplicitAnimation.cpp:
20498 * page/animation/ImplicitAnimation.h:
20499 * page/animation/KeyframeAnimation.cpp:
20500 * page/animation/KeyframeAnimation.h:
20501
ap@webkit.orgbaf12872008-09-10 16:42:10 +0000205022008-09-10 Alexey Proskuryakov <ap@webkit.org>
20503
20504 Reviewed by Darin Adler.
20505
20506 https://bugs.webkit.org/show_bug.cgi?id=20741
20507 REGRESSION: ISO-8859-8-I encoding is registered incorrectly
20508
20509 Turns out that there were no real behavior changes for 8859-8, as it was only a debug-only
20510 check to ignore this specific registration that was failing. Yet, I decided to add a bunch of
20511 tests for ISO-8859-8 encoding aliases, as we handle them in a quite complicated manner.
20512
20513 I also found and fixed a potential crasher for non-Mac ports.
20514
20515 Tests: fast/encoding/hebrew/8859-8-e.html
20516 fast/encoding/hebrew/8859-8-i.html
20517 fast/encoding/hebrew/8859-8.html
20518 fast/encoding/hebrew/csISO88598I.html
20519 fast/encoding/hebrew/hebrew.html
20520 fast/encoding/hebrew/iso-ir-138.html
20521 fast/encoding/hebrew/logical.html
20522
20523 * platform/text/TextEncodingRegistry.cpp: (WebCore::checkExistingName): Check for iso-8859-8
20524 (case-insensitively, because different versions of ICU report this MIME name in different
20525 case).
20526
20527 * platform/text/TextCodecICU.cpp:
20528 (WebCore::TextCodecICU::registerExtendedEncodingNames): Updated some comments.
20529 (WebCore::TextCodecICU::registerExtendedCodecs): Try both MIME and IANA names here, too.
20530 There are four names in ICU that only have MIME names (x-mac-* ones), so we could end up
20531 with an encoding map entry, but no codec for these. This was not an issue on the Mac, as
20532 we also support these via TEC (which we should stop doing), but on Windows, this would
20533 likely crash.
20534
hyatt@apple.com0197e6b2008-09-10 05:29:46 +0000205352008-09-09 Dave Hyatt <hyatt@apple.com
20536
20537 Resurrect PlatformScrollbarWin.
20538
20539 Reviewed by Adam Roben
20540
20541 * WebCore.vcproj/WebCore.vcproj:
20542 * platform/win/PlatformScrollBarWin.cpp:
20543 (WebCore::isRunningOnVistaOrLater):
20544 (WebCore::checkAndInitScrollbarTheme):
20545 (WebCore::PlatformScrollbar::PlatformScrollbar):
20546 (WebCore::PlatformScrollbar::invalidateTrack):
20547 (WebCore::PlatformScrollbar::invalidatePart):
20548 (WebCore::PlatformScrollbar::paint):
20549 (WebCore::PlatformScrollbar::hasButtons):
20550 (WebCore::PlatformScrollbar::hasThumb):
20551 (WebCore::PlatformScrollbar::backButtonRect):
20552 (WebCore::PlatformScrollbar::forwardButtonRect):
20553 (WebCore::PlatformScrollbar::trackRect):
20554 (WebCore::PlatformScrollbar::gripperRect):
20555 (WebCore::PlatformScrollbar::thumbLength):
20556 (WebCore::PlatformScrollbar::paintButton):
20557 (WebCore::PlatformScrollbar::paintTrack):
20558 (WebCore::PlatformScrollbar::paintThumb):
20559 (WebCore::PlatformScrollbar::paintGripper):
20560 (WebCore::PlatformScrollbar::hitTest):
20561 (WebCore::PlatformScrollbar::handleMouseMoveEvent):
20562 (WebCore::PlatformScrollbar::handleMouseOutEvent):
20563 (WebCore::PlatformScrollbar::themeChanged):
20564
cwzwarich@webkit.org8a334572008-09-10 03:22:04 +0000205652008-09-09 Cameron Zwarich <cwzwarich@uwaterloo.ca>
20566
20567 Reviewed by Maciej Stachowiak.
20568
20569 Bug 20759: Remove MacroAssembler
20570 <https://bugs.webkit.org/show_bug.cgi?id=20759>
20571
20572 Make the necessary changes to ForwardingHeaders to remove
20573 MacroAssembler.
20574
20575 * ForwardingHeaders/masm/IA32MacroAsm.h: Removed.
20576 * ForwardingHeaders/masm/MacroAssembler.h: Removed.
20577 * ForwardingHeaders/masm/X86Assembler.h: Added.
20578
alp@webkit.org509e3d42008-09-10 01:26:20 +0000205792008-09-09 Alp Toker <alp@nuanti.com>
20580
20581 Reviewed by Dave Hyatt.
20582
20583 https://bugs.webkit.org/show_bug.cgi?id=16792
20584 [GTK] Fails to render Japanese/Chinese text with simple path
20585
20586 https://bugs.webkit.org/show_bug.cgi?id=16942
20587 [GTK] Oddities in font selection and fall back
20588
20589 https://bugs.webkit.org/show_bug.cgi?id=16862
20590 [GTK] Custom fonts hard-coded to use grayscale antialiasing and no hinting
20591
20592 GTK+ font fixes and enhancements.
20593
20594 Implement font fallback for the simple FontConfig-based text path and
20595 improve the Pango-based complex text path to make use of requested
20596 font properties and available font selection.
20597
20598 Add text shadow support to the complex path.
20599
20600 * platform/graphics/gtk/FontCacheGtk.cpp:
20601 (WebCore::FontCache::getFontDataForCharacters):
20602 (WebCore::FontCache::getSimilarFontPlatformData):
20603 * platform/graphics/gtk/FontGtk.cpp:
20604 (WebCore::setPangoAttributes):
20605 (WebCore::Font::drawComplexText):
20606 (WebCore::getDefaultPangoLayout):
20607 (WebCore::Font::floatWidthForComplexText):
20608 (WebCore::Font::offsetForPositionForComplexText):
20609 (WebCore::Font::selectionRectForComplexText):
20610 * platform/graphics/gtk/FontPlatformData.h:
20611 (WebCore::FontPlatformData::FontPlatformData):
20612 (WebCore::FontPlatformData::hash):
20613 * platform/graphics/gtk/FontPlatformDataGtk.cpp:
20614 (WebCore::FontPlatformData::FontPlatformData):
20615 * platform/graphics/gtk/SimpleFontDataGtk.cpp:
20616 (WebCore::SimpleFontData::platformDestroy):
20617
hyatt@apple.com33f37f62008-09-09 23:51:46 +0000206182008-09-09 Dave Hyatt <hyatt@apple.com>
20619
20620 Make the Windows classic case work again. Overlap in slider constants and other constants broke
20621 the push state for buttons and checkboxes. Make sure to check the RenderObject's appearance
20622 value to make sure it's really a slider thumb to resolve this conflict.
20623
20624 Reviewed by Adam Roben
20625
20626 * rendering/RenderThemeWin.cpp:
20627 (WebCore::drawControl):
20628
dino@apple.com442d0652008-09-09 23:36:56 +0000206292008-09-05 Chris Marrin <cmarrin@apple.com>
20630
20631 Reviewed by Sam Weinig.
20632
20633 Need to handle the case when 0% or 100% keyframe is omitted
20634 https://bugs.webkit.org/show_bug.cgi?id=20679
20635
20636 Tests: animations/keyframes-from-missing.html
20637 animations/keyframes-to-missing.html
20638
20639 * css/CSSStyleSelector.cpp:
20640 (WebCore::CSSStyleSelector::addKeyframeStyle):
20641
hyatt@apple.com419d0ad2008-09-09 23:11:14 +0000206422008-09-09 Dave Hyatt <hyatt@apple.com>
20643
20644 Resurrect Safari's original RenderThemeWin and bring it up to date with ToT. Having a current
20645 RenderThemeWin that does not have any Skia dependencies should provide a good basis for a potential
20646 merge of Google Chrome's RenderThemeWin (to help us see where the Skia stuff can be cut and to see
20647 what changes have been made as compared with the old RenderThemeWin).
20648
20649 Fix CSS2 system fonts to properly set both the rendering mode (so that they properly pick up GDI vs. CG
20650 text rendering modes) and the printer font setting (so that OS X system fonts properly pick up screen
20651 vs. printer advancement rounding).
20652
20653 Reviewed by Adam/Sam
20654
20655 * css/CSSStyleSelector.cpp:
20656 (WebCore::CSSStyleSelector::applyProperty):
20657 * platform/graphics/Icon.h:
20658 (WebCore::Icon::create):
20659 * rendering/RenderThemeWin.cpp:
20660 (WebCore::RenderThemeWin::RenderThemeWin):
20661 (WebCore::RenderThemeWin::~RenderThemeWin):
20662 (WebCore::RenderThemeWin::buttonTheme):
20663 (WebCore::RenderThemeWin::textFieldTheme):
20664 (WebCore::RenderThemeWin::menuListTheme):
20665 (WebCore::RenderThemeWin::sliderTheme):
20666 (WebCore::RenderThemeWin::close):
20667 (WebCore::RenderThemeWin::themeChanged):
20668 (WebCore::RenderThemeWin::supportsHover):
20669 (WebCore::fillFontDescription):
20670 (WebCore::RenderThemeWin::systemFont):
20671 (WebCore::RenderThemeWin::supportsFocus):
20672 (WebCore::RenderThemeWin::determineClassicState):
20673 (WebCore::RenderThemeWin::determineState):
20674 (WebCore::RenderThemeWin::determineSliderThumbState):
20675 (WebCore::RenderThemeWin::getClassicThemeData):
20676 (WebCore::RenderThemeWin::getThemeData):
20677 (WebCore::drawControl):
20678 (WebCore::RenderThemeWin::paintButton):
20679 (WebCore::RenderThemeWin::paintTextField):
20680 (WebCore::RenderThemeWin::paintMenuList):
20681 (WebCore::RenderThemeWin::adjustMenuListStyle):
20682 (WebCore::RenderThemeWin::adjustMenuListButtonStyle):
20683 (WebCore::RenderThemeWin::paintMenuListButton):
20684 (WebCore::RenderThemeWin::paintSliderTrack):
20685 (WebCore::RenderThemeWin::paintSliderThumb):
20686 (WebCore::RenderThemeWin::adjustSliderThumbSize):
20687 (WebCore::RenderThemeWin::paintSearchField):
20688 (WebCore::RenderThemeWin::adjustSearchFieldStyle):
20689 (WebCore::RenderThemeWin::paintSearchFieldCancelButton):
20690 (WebCore::RenderThemeWin::adjustSearchFieldCancelButtonStyle):
20691 (WebCore::RenderThemeWin::adjustSearchFieldDecorationStyle):
20692 (WebCore::RenderThemeWin::adjustSearchFieldResultsDecorationStyle):
20693 (WebCore::RenderThemeWin::paintSearchFieldResultsDecoration):
20694 (WebCore::RenderThemeWin::adjustSearchFieldResultsButtonStyle):
20695 (WebCore::RenderThemeWin::paintSearchFieldResultsButton):
20696 * rendering/RenderThemeWin.h:
20697 (WebCore::ThemeData::ThemeData):
20698 (WebCore::RenderThemeWin::paintSearchFieldDecoration):
20699 (WebCore::RenderThemeWin::adjustButtonStyle):
20700 (WebCore::RenderThemeWin::adjustTextFieldStyle):
20701 (WebCore::RenderThemeWin::adjustTextAreaStyle):
20702
dino@apple.comd511ce52008-09-09 19:50:25 +0000207032008-09-09 Dean Jackson <dino@apple.com>
20704
20705 Reviewed by Sam Weinig.
20706
20707 Document::createEvent missing cases for animation and
20708 transition events.
20709 https://bugs.webkit.org/show_bug.cgi?id=20734
20710
20711 Test: transitions/transition-end-event-create.html
20712 Test: animations/animation-events-create.html
20713
20714 * dom/Document.cpp:
20715 (WebCore::Document::createEvent):
20716 - add the two cases
20717
mitz@apple.com1da7b882008-09-09 18:12:06 +0000207182008-09-09 Dan Bernstein <mitz@apple.com>
20719
mitz@apple.com54921562008-09-09 18:48:34 +000020720 - Tiger build fix
20721
20722 * WebCore.Tiger.exp:
20723 * WebCore.base.exp:
20724 * platform/mac/WebCoreSystemInterface.h:
20725 * platform/mac/WebCoreSystemInterface.mm:
20726
207272008-09-09 Dan Bernstein <mitz@apple.com>
20728
mitz@apple.com1da7b882008-09-09 18:12:06 +000020729 Reviewed by Darin Adler.
20730
20731 - WebCore part of <rdar://problem/6206244> Use alternate character-to-glyph interface on Leopard
20732
20733 * WebCore.Tiger.exp:
20734 * WebCore.base.exp:
20735 * platform/graphics/SimpleFontData.h:
20736 * platform/graphics/mac/GlyphPageTreeNodeMac.cpp:
20737 (WebCore::GlyphPage::fill):
20738 * platform/graphics/mac/SimpleFontDataMac.mm:
20739 (WebCore::initFontData):
20740 (WebCore::SimpleFontData::platformInit):
20741 (WebCore::SimpleFontData::platformDestroy):
20742 * platform/mac/WebCoreSystemInterface.h:
20743 * platform/mac/WebCoreSystemInterface.mm:
20744
kmccullough@apple.com5ba965b2008-09-09 16:40:31 +0000207452008-09-09 Kevin McCullough <kmccullough@apple.com>
20746
20747 Reviewed by Tim.
20748
20749 <rdar://problem/6198545> REGRESSION: Inspector debugger barfs on
20750 breakpoints inside eval.
20751
20752 * page/inspector/inspector.js:
20753
hausmann@webkit.orgdab0e872008-09-09 14:17:21 +0000207542008-09-09 Joerg Bornemann <joerg.bornemann@trolltech.com>
20755
20756 Reviewed by Simon.
20757
20758 Fix compilation of the Qt port with disabled plugins on Windows
20759
20760 * WebCore.pro:
20761 * plugins/PluginView.cpp:
20762 (WebCore::PluginView::PluginView):
20763 * plugins/PluginView.h:
20764
ap@webkit.org2ba74d32008-09-09 08:11:01 +0000207652008-09-09 Jungshik Shin <jungshik.shin@gmail.com>
20766
20767 Reviewed by Alexey Proskuryakov.
20768
20769 Try MIME charset names before trying IANA names
20770 ( https://bugs.webkit.org/show_bug.cgi?id=17537 )
20771
20772 With this change, shorter and more widely used names (preferred MIME
20773 names) are returned by document.charset, document.characterSet,
20774 document.inputEncoding rather than IANA names. This helps
20775 fixing bug 18085 in addition to web developers who are more familiar
20776 with MIME names. For instance, EUC-JP, ISO-8859-X and US-ASCII will be
20777 returned instead of Extended_UNIX_Code_Packed_Format_for_Japanese,
20778 ISO-8859-X:19xx, and ANSI_X3.4-1968. It also replaces IBM8xx with cp8xx.
20779 Note that cp/IBM 8xx are extremly rare in today's web. Even if they're
20780 used, the former is still recognized as aliases to the latter so that
20781 there's very little, if any, to worry about.
20782
20783 * platform/text/TextCodecICU.cpp:
20784 (WebCore::TextCodecICU::registerExtendedEncodingNames):
20785
weinig@apple.com22294302008-09-09 06:55:39 +0000207862008-09-08 Sam Weinig <sam@webkit.org>
20787
20788 Reviewed by Maciej Stachowiak and Oliver Hunt.
20789
20790 Add forwarding headers.
20791
20792 * ForwardingHeaders/wtf/HashFunctions.h: Added.
20793
dino@apple.comd9962af2008-09-09 01:02:00 +0000207942008-09-05 Dean Jackson <dino@apple.com>
20795
20796 Reviewed by Dan Bernstein.
20797
20798 Update grammar so that we can add a keyframe rule via the DOM.
20799 https://bugs.webkit.org/show_bug.cgi?id=20613
20800
20801 * css/CSSGrammar.y:
20802 * css/tokenizer.flex:
20803
antti@apple.com4b17a932008-09-09 00:40:45 +0000208042008-09-08 Antti Koivisto <antti@apple.com>
20805
20806 Reviewed by Dan Bernstein.
20807
20808 Allow <br> for simple UA stylesheet. Editing code generates them. It does not
20809 actually show up in any of the default stylesheets.
20810
20811 * css/CSSStyleSelector.cpp:
20812 (WebCore::elementCanUseSimpleDefaultStyle):
20813
mitz@apple.com66fa91a2008-09-09 00:35:22 +0000208142008-09-08 Dimitri Glazkov <dglazkov@google.com>
20815
20816 Reviewed by Dan Bernstein.
20817
20818 - fix https://bugs.webkit.org/show_bug.cgi?id=20237
20819 Zero width and space characters are displayed incorrectly if not contained in a fallback font
20820
20821 Adds an extra check for Object Replacement Character (U+FFFC) to address
20822 the issue with fast/text/zero-width-characters.html test when run
20823 with Windows system default fonts.
20824
20825 * platform/graphics/Font.h:
20826 (WebCore::Font::treatAsZeroWidthSpace):
20827
dino@apple.comf0a4b212008-09-08 22:51:49 +0000208282008-09-08 Dean Jackson <dino@apple.com>
20829
20830 Reviewed by Sam Weinig.
20831
20832 Code style issue I forgot to fix from previous commit.
20833
20834 * platform/graphics/AffineTransform.cpp:
20835 (WebCore::AffineTransform::blend):
20836
dino@apple.com26625122008-09-08 22:46:41 +0000208372008-09-08 Chris Marrin <cmarrin@apple.com>
20838
20839 Reviewed by Sam Weinig
20840
20841 - Animation of -webkit-transform matrix() function should not do linear interpolation
20842 https://bugs.webkit.org/show_bug.cgi?id=20667
20843
20844 Test: animations/matrix-anim.html
20845
20846 * ChangeLog:
20847 * platform/graphics/AffineTransform.cpp:
20848 (WebCore::affineTransformDecompose):
20849 (WebCore::affineTransformCompose):
20850 (WebCore::AffineTransform::blend):
20851 * platform/graphics/AffineTransform.h:
20852 * rendering/style/RenderStyle.cpp:
20853 (WebCore::MatrixTransformOperation::blend):
20854
ap@webkit.org243a9752008-09-08 16:21:16 +0000208552008-09-08 Alexey Proskuryakov <ap@webkit.org>
20856
20857 Reviewed by Darin Adler.
20858
20859 https://bugs.webkit.org/show_bug.cgi?id=20668
20860 multipart/form-data does not always include Content-type for submitted files
20861
20862 Cannot be tested with DRT or manual tests.
20863
20864 * platform/MIMETypeRegistry.cpp:
20865 (WebCore::initializeSupportedNonImageMimeTypes): Fix spacing.
20866 (WebCore::MIMETypeRegistry::getMIMETypeForPath): Default to application/octet-stream for
20867 unknown extensions, not just missing ones.
20868
hausmann@webkit.orgaf796ea2008-09-08 13:00:19 +0000208692008-09-08 Simon Hausmann <hausmann@webkit.org>
20870
20871 Build fix for the Qt/Windows build, define USE_JSC to
20872 enable the WebCore::String -> JSC::UString operator that
20873 MSVC insists on seeing
20874
20875 * WebCore.pro:
20876
andersca@apple.com3ac4f552008-09-08 11:39:34 +0000208772008-09-08 Anders Carlsson <andersca@apple.com>
20878
20879 Reviewed by Maciej.
20880
20881 <rdar://problem/5850387> Showing bookmarks reloads Google Reader instead.
20882
20883 In some cases, timeouts scheduled by a page in the onunload handler could fire even when the
20884 page had been unloaded and replaced by a non-HTML representation based view (such as the bookmarks view).
20885
20886 Fix this by clearing timeouts for pages that aren't cached when the provisional load is committed.
20887
20888 * bindings/js/JSDOMWindowBase.h:
20889 * loader/FrameLoader.cpp:
20890 (WebCore::FrameLoader::commitProvisionalLoad):
20891
antti@apple.com57b3a102008-09-08 07:01:36 +0000208922008-09-07 Antti Koivisto <antti@apple.com>
20893
20894 Reviewed by Dave Hyatt.
20895
20896 Don't leak the simple stylesheet.
20897 Also call RenderTheme::adjustDefaultStyleSheet() in right place.
20898
20899 * css/CSSStyleSelector.cpp:
20900 (WebCore::loadFullDefaultStyle):
20901 (WebCore::loadSimpleDefaultStyle):
20902 (WebCore::CSSStyleSelector::styleForElement):
20903
cwzwarich@webkit.org3f782f62008-09-08 01:28:33 +0000209042008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
20905
cwzwarich@webkit.org951b1452008-09-08 04:25:32 +000020906 Reviewed by Oliver Hunt.
20907
20908 Bug 20711: Change KJS prefix on preprocessor macros to JSC
20909 <https://bugs.webkit.org/show_bug.cgi?id=20711>
20910
20911 * bindings/js/JSEventTargetBase.h:
20912 * bindings/js/JSHTMLInputElementBase.cpp:
20913 * bindings/js/JSHTMLInputElementBase.h:
20914 * bindings/scripts/CodeGeneratorJS.pm:
20915
209162008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
20917
cwzwarich@webkit.org3f782f62008-09-08 01:28:33 +000020918 Reviewed by Maciej Stachowiak.
20919
20920 Bug 20704: Replace the KJS namespace
20921 <https://bugs.webkit.org/show_bug.cgi?id=20704>
20922
20923 Rename the KJS namespace to JSC. There are still some uses of KJS in the
20924 names of JNI functions, and I will check if these are safe to change
20925 as well.
20926
20927 * WebCore.base.exp:
20928 * bindings/js/GCController.cpp:
20929 * bindings/js/JSAttrCustom.cpp:
20930 * bindings/js/JSAudioConstructor.cpp:
20931 * bindings/js/JSAudioConstructor.h:
20932 (WebCore::JSAudioConstructor::classInfo):
20933 * bindings/js/JSCSSRuleCustom.cpp:
20934 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
20935 * bindings/js/JSCSSValueCustom.cpp:
20936 * bindings/js/JSCanvasPixelArrayCustom.cpp:
20937 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
20938 * bindings/js/JSClipboardCustom.cpp:
20939 * bindings/js/JSConsoleCustom.cpp:
20940 * bindings/js/JSCustomSQLStatementCallback.cpp:
20941 (WebCore::JSCustomSQLStatementCallback::handleEvent):
20942 * bindings/js/JSCustomSQLStatementCallback.h:
20943 (WebCore::JSCustomSQLStatementCallback::create):
20944 * bindings/js/JSCustomSQLStatementErrorCallback.cpp:
20945 (WebCore::JSCustomSQLStatementErrorCallback::handleEvent):
20946 * bindings/js/JSCustomSQLStatementErrorCallback.h:
20947 (WebCore::JSCustomSQLStatementErrorCallback::create):
20948 * bindings/js/JSCustomSQLTransactionCallback.cpp:
20949 (WebCore::JSCustomSQLTransactionCallback::handleEvent):
20950 * bindings/js/JSCustomSQLTransactionCallback.h:
20951 (WebCore::JSCustomSQLTransactionCallback::create):
20952 * bindings/js/JSCustomSQLTransactionErrorCallback.cpp:
20953 (WebCore::JSCustomSQLTransactionErrorCallback::handleEvent):
20954 * bindings/js/JSCustomSQLTransactionErrorCallback.h:
20955 (WebCore::JSCustomSQLTransactionErrorCallback::create):
20956 * bindings/js/JSCustomVoidCallback.cpp:
20957 (WebCore::JSCustomVoidCallback::handleEvent):
20958 * bindings/js/JSCustomVoidCallback.h:
20959 (WebCore::JSCustomVoidCallback::create):
20960 * bindings/js/JSCustomXPathNSResolver.cpp:
20961 (WebCore::JSCustomXPathNSResolver::create):
20962 * bindings/js/JSCustomXPathNSResolver.h:
20963 * bindings/js/JSDOMApplicationCacheCustom.cpp:
20964 (WebCore::JSDOMApplicationCache::dispatchEvent):
20965 * bindings/js/JSDOMBinding.cpp:
20966 (WebCore::jsOwnedStringOrNull):
20967 * bindings/js/JSDOMBinding.h:
20968 (WebCore::DOMObject::DOMObject):
20969 (WebCore::cacheDOMObject):
20970 (WebCore::cacheSVGDOMObject):
20971 (WebCore::DOMExceptionTranslator::DOMExceptionTranslator):
20972 (WebCore::toJS):
20973 * bindings/js/JSDOMWindowBase.cpp:
20974 * bindings/js/JSDOMWindowBase.h:
20975 (WebCore::JSDOMWindowBase::classInfo):
20976 (WebCore::JSDOMWindowBase::d):
20977 * bindings/js/JSDOMWindowCustom.cpp:
20978 (WebCore::JSDOMWindow::getPropertyAttributes):
20979 * bindings/js/JSDOMWindowCustom.h:
20980 (WebCore::asJSDOMWindow):
20981 (WebCore::JSDOMWindow::customGetOwnPropertySlot):
20982 (WebCore::JSDOMWindow::customPut):
20983 (WebCore::JSDOMWindowBase::allowsAccessFrom):
20984 (WebCore::JSDOMWindowBase::allowsAccessFromNoErrorMessage):
20985 * bindings/js/JSDOMWindowShell.cpp:
20986 (WebCore::JSDOMWindowShell::getPropertyAttributes):
20987 * bindings/js/JSDOMWindowShell.h:
20988 (WebCore::JSDOMWindowShell::classInfo):
20989 * bindings/js/JSDatabaseCustom.cpp:
20990 * bindings/js/JSDocumentCustom.cpp:
20991 * bindings/js/JSDocumentFragmentCustom.cpp:
20992 * bindings/js/JSElementCustom.cpp:
20993 * bindings/js/JSEventCustom.cpp:
20994 * bindings/js/JSEventListener.cpp:
20995 * bindings/js/JSEventListener.h:
20996 (WebCore::JSUnprotectedEventListener::create):
20997 (WebCore::JSEventListener::create):
20998 * bindings/js/JSEventTargetBase.cpp:
20999 * bindings/js/JSEventTargetBase.h:
21000 (WebCore::JSEventTargetBase::getValueProperty):
21001 (WebCore::JSEventTargetBase::putValueProperty):
21002 (WebCore::JSEventTargetBase::getOwnPropertySlot):
21003 (WebCore::JSEventTargetBase::put):
21004 (WebCore::JSEventTargetPrototype::JSEventTargetPrototype):
21005 (WebCore::JSEventTargetPrototype::self):
21006 (WebCore::JSEventTargetPrototype::getOwnPropertySlot):
21007 (WebCore::JSEventTargetPrototype::classInfo):
21008 * bindings/js/JSEventTargetNode.cpp:
21009 * bindings/js/JSEventTargetNode.h:
21010 (WebCore::JSEventTargetNode::getOwnPropertySlot):
21011 (WebCore::JSEventTargetNode::getValueProperty):
21012 (WebCore::JSEventTargetNode::put):
21013 (WebCore::JSEventTargetNode::putValueProperty):
21014 * bindings/js/JSHTMLAllCollection.h:
21015 (WebCore::JSHTMLAllCollection::JSHTMLAllCollection):
21016 (WebCore::JSHTMLAllCollection::toBoolean):
21017 * bindings/js/JSHTMLAppletElementCustom.cpp:
21018 * bindings/js/JSHTMLCollectionCustom.cpp:
21019 * bindings/js/JSHTMLDocumentCustom.cpp:
21020 * bindings/js/JSHTMLElementCustom.cpp:
21021 * bindings/js/JSHTMLEmbedElementCustom.cpp:
21022 * bindings/js/JSHTMLFormElementCustom.cpp:
21023 * bindings/js/JSHTMLFrameElementCustom.cpp:
21024 * bindings/js/JSHTMLFrameSetElementCustom.cpp:
21025 * bindings/js/JSHTMLIFrameElementCustom.cpp:
21026 * bindings/js/JSHTMLInputElementBase.cpp:
21027 (WebCore::JSHTMLInputElementBase::JSHTMLInputElementBase):
21028 (WebCore::JSHTMLInputElementBase::getOwnPropertySlot):
21029 * bindings/js/JSHTMLInputElementBase.h:
21030 (WebCore::JSHTMLInputElementBase::classInfo):
21031 * bindings/js/JSHTMLObjectElementCustom.cpp:
21032 * bindings/js/JSHTMLOptionElementConstructor.cpp:
21033 * bindings/js/JSHTMLOptionElementConstructor.h:
21034 (WebCore::JSHTMLOptionElementConstructor::classInfo):
21035 * bindings/js/JSHTMLOptionsCollectionCustom.cpp:
21036 * bindings/js/JSHTMLSelectElementCustom.cpp:
21037 (WebCore::selectIndexSetter):
21038 (WebCore::JSHTMLSelectElement::indexSetter):
21039 * bindings/js/JSHTMLSelectElementCustom.h:
21040 * bindings/js/JSHistoryCustom.cpp:
21041 * bindings/js/JSImageConstructor.cpp:
21042 * bindings/js/JSImageConstructor.h:
21043 (WebCore::JSImageConstructor::classInfo):
21044 * bindings/js/JSInspectedObjectWrapper.cpp:
21045 * bindings/js/JSInspectedObjectWrapper.h:
21046 (WebCore::JSInspectedObjectWrapper::wrapOutgoingValue):
21047 (WebCore::JSInspectedObjectWrapper::classInfo):
21048 * bindings/js/JSInspectorCallbackWrapper.cpp:
21049 * bindings/js/JSInspectorCallbackWrapper.h:
21050 (WebCore::JSInspectorCallbackWrapper::classInfo):
21051 (WebCore::JSInspectorCallbackWrapper::wrapOutgoingValue):
21052 * bindings/js/JSJavaScriptCallFrameCustom.cpp:
21053 * bindings/js/JSLocationCustom.cpp:
21054 * bindings/js/JSMimeTypeArrayCustom.cpp:
21055 * bindings/js/JSNSResolver.cpp:
21056 * bindings/js/JSNSResolver.h:
21057 (WebCore::JSNSResolver::create):
21058 * bindings/js/JSNamedNodeMapCustom.cpp:
21059 * bindings/js/JSNamedNodesCollection.cpp:
21060 (WebCore::JSNamedNodesCollection::JSNamedNodesCollection):
21061 * bindings/js/JSNamedNodesCollection.h:
21062 (WebCore::JSNamedNodesCollection::classInfo):
21063 * bindings/js/JSNavigatorCustom.cpp:
21064 * bindings/js/JSNodeCustom.cpp:
21065 * bindings/js/JSNodeFilterCondition.cpp:
21066 (WebCore::JSNodeFilterCondition::acceptNode):
21067 * bindings/js/JSNodeFilterCondition.h:
21068 (WebCore::JSNodeFilterCondition::create):
21069 * bindings/js/JSNodeFilterCustom.cpp:
21070 * bindings/js/JSNodeIteratorCustom.cpp:
21071 * bindings/js/JSNodeListCustom.cpp:
21072 * bindings/js/JSPluginArrayCustom.cpp:
21073 * bindings/js/JSPluginCustom.cpp:
21074 * bindings/js/JSPluginElementFunctions.cpp:
21075 (WebCore::getRuntimeObject):
21076 * bindings/js/JSPluginElementFunctions.h:
21077 * bindings/js/JSQuarantinedObjectWrapper.cpp:
21078 (WebCore::JSQuarantinedObjectWrapper::construct):
21079 (WebCore::JSQuarantinedObjectWrapper::call):
21080 * bindings/js/JSQuarantinedObjectWrapper.h:
21081 (WebCore::JSQuarantinedObjectWrapper::unwrappedObject):
21082 (WebCore::JSQuarantinedObjectWrapper::unwrappedGlobalObject):
21083 (WebCore::JSQuarantinedObjectWrapper::className):
21084 * bindings/js/JSRGBColor.cpp:
21085 * bindings/js/JSRGBColor.h:
21086 (WebCore::JSRGBColor::classInfo):
21087 * bindings/js/JSSQLResultSetRowListCustom.cpp:
21088 * bindings/js/JSSQLTransactionCustom.cpp:
21089 * bindings/js/JSSVGLazyEventListener.cpp:
21090 * bindings/js/JSSVGLazyEventListener.h:
21091 * bindings/js/JSSVGLengthCustom.cpp:
21092 * bindings/js/JSSVGMatrixCustom.cpp:
21093 (WebCore::JSSVGMatrix::inverse):
21094 (WebCore::JSSVGMatrix::rotateFromVector):
21095 * bindings/js/JSSVGPathSegCustom.cpp:
21096 * bindings/js/JSSVGPathSegListCustom.cpp:
21097 (WebCore::JSSVGPathSegList::initialize):
21098 (WebCore::JSSVGPathSegList::getItem):
21099 (WebCore::JSSVGPathSegList::insertItemBefore):
21100 (WebCore::JSSVGPathSegList::replaceItem):
21101 (WebCore::JSSVGPathSegList::removeItem):
21102 (WebCore::JSSVGPathSegList::appendItem):
21103 * bindings/js/JSSVGPointListCustom.cpp:
21104 * bindings/js/JSSVGTransformListCustom.cpp:
21105 * bindings/js/JSStorageCustom.cpp:
21106 * bindings/js/JSStyleSheetCustom.cpp:
21107 * bindings/js/JSStyleSheetListCustom.cpp:
21108 * bindings/js/JSTextCustom.cpp:
21109 * bindings/js/JSTreeWalkerCustom.cpp:
21110 * bindings/js/JSXMLHttpRequestConstructor.cpp:
21111 * bindings/js/JSXMLHttpRequestConstructor.h:
21112 (WebCore::JSXMLHttpRequestConstructor::classInfo):
21113 * bindings/js/JSXMLHttpRequestCustom.cpp:
21114 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
21115 * bindings/js/JSXSLTProcessorConstructor.cpp:
21116 * bindings/js/JSXSLTProcessorConstructor.h:
21117 (WebCore::JSXSLTProcessorConstructor::classInfo):
21118 * bindings/js/JSXSLTProcessorCustom.cpp:
21119 * bindings/js/ScheduledAction.cpp:
21120 * bindings/js/ScheduledAction.h:
21121 * bindings/js/ScriptController.cpp:
21122 (WebCore::ScriptController::attachDebugger):
21123 (WebCore::ScriptController::windowScriptNPObject):
21124 * bindings/js/ScriptController.h:
21125 * bindings/js/ScriptControllerGtk.cpp:
21126 (WebCore::ScriptController::createScriptInstanceForWidget):
21127 * bindings/js/ScriptControllerMac.mm:
21128 (WebCore::ScriptController::createScriptInstanceForWidget):
21129 (WebCore::ScriptController::windowScriptObject):
21130 (WebCore::ScriptController::clearPlatformScriptObjects):
21131 (WebCore::updateRenderingForBindings):
21132 (WebCore::ScriptController::initJavaJSBindings):
21133 * bindings/js/ScriptControllerQt.cpp:
21134 (WebCore::ScriptController::createScriptInstanceForWidget):
21135 * bindings/js/ScriptControllerWin.cpp:
21136 (WebCore::ScriptController::createScriptInstanceForWidget):
21137 * bindings/js/ScriptControllerWx.cpp:
21138 (WebCore::ScriptController::createScriptInstanceForWidget):
21139 * bindings/js/StringSourceProvider.h:
21140 (WebCore::StringSourceProvider::getRange):
21141 * bindings/objc/DOM.mm:
21142 (-[DOMNode JSC::Bindings::]):
21143 * bindings/objc/DOMInternal.h:
21144 * bindings/objc/DOMInternal.mm:
21145 (-[WebScriptObject _initializeScriptDOMNodeImp]):
21146 * bindings/objc/DOMUtility.mm:
21147 (JSC::createDOMWrapper):
21148 (WebCore::createDOMWrapper):
21149 * bindings/objc/WebScriptObject.mm:
21150 (WebCore::createJSWrapper):
21151 (-[WebScriptObject _initWithJSObject:JSC::originRootObject:JSC::Bindings::rootObject:JSC::Bindings::]):
21152 * bindings/objc/WebScriptObjectPrivate.h:
21153 * bindings/scripts/CodeGeneratorJS.pm:
21154 * bridge/NP_jsobject.cpp:
21155 * bridge/NP_jsobject.h:
21156 * bridge/c/c_class.cpp:
21157 * bridge/c/c_class.h:
21158 * bridge/c/c_instance.cpp:
21159 * bridge/c/c_instance.h:
21160 * bridge/c/c_runtime.cpp:
21161 * bridge/c/c_runtime.h:
21162 * bridge/c/c_utility.cpp:
21163 * bridge/c/c_utility.h:
21164 * bridge/jni/jni_class.cpp:
21165 * bridge/jni/jni_class.h:
21166 * bridge/jni/jni_instance.cpp:
21167 * bridge/jni/jni_instance.h:
21168 * bridge/jni/jni_jsobject.h:
21169 * bridge/jni/jni_jsobject.mm:
21170 (JavaJSObject::call):
21171 (JavaJSObject::convertJObjectToValue):
21172 * bridge/jni/jni_objc.mm:
21173 (JSC::Bindings::dispatchJNICall):
21174 * bridge/jni/jni_runtime.cpp:
21175 * bridge/jni/jni_runtime.h:
21176 * bridge/jni/jni_utility.cpp:
21177 * bridge/jni/jni_utility.h:
21178 * bridge/npruntime.cpp:
21179 (_NPN_GetStringIdentifier):
21180 * bridge/objc/WebScriptObject.h:
21181 * bridge/objc/objc_class.h:
21182 * bridge/objc/objc_class.mm:
21183 * bridge/objc/objc_instance.h:
21184 * bridge/objc/objc_instance.mm:
21185 * bridge/objc/objc_runtime.h:
21186 * bridge/objc/objc_runtime.mm:
21187 * bridge/objc/objc_utility.h:
21188 * bridge/objc/objc_utility.mm:
21189 * bridge/qt/qt_class.cpp:
21190 * bridge/qt/qt_class.h:
21191 * bridge/qt/qt_instance.cpp:
21192 * bridge/qt/qt_instance.h:
21193 * bridge/qt/qt_runtime.cpp:
21194 (JSC::Bindings::convertQVariantToValue):
21195 (JSC::Bindings::):
21196 * bridge/qt/qt_runtime.h:
21197 * bridge/runtime.cpp:
21198 * bridge/runtime.h:
21199 * bridge/runtime_array.cpp:
21200 * bridge/runtime_array.h:
21201 * bridge/runtime_method.cpp:
21202 * bridge/runtime_method.h:
21203 * bridge/runtime_object.cpp:
21204 * bridge/runtime_object.h:
21205 * bridge/runtime_root.cpp:
21206 (JSC::Bindings::RootObject::invalidate):
21207 (JSC::Bindings::RootObject::gcProtect):
21208 (JSC::Bindings::RootObject::gcUnprotect):
21209 * bridge/runtime_root.h:
21210 * bridge/testbindings.cpp:
21211 * bridge/testbindings.mm:
21212 * bridge/testqtbindings.cpp:
21213 * dom/Document.cpp:
21214 (WebCore::Document::~Document):
21215 * dom/NSResolver.h:
21216 * dom/Node.cpp:
21217 (WebCore::Node::setDocument):
21218 (WebCore::ResolveNamespaceFunctor::ResolveNamespaceFunctor):
21219 (WebCore::resolveNamespacesForSelector):
21220 (WebCore::Node::querySelector):
21221 (WebCore::Node::querySelectorAll):
21222 * dom/Node.h:
21223 * dom/NodeFilter.cpp:
21224 * dom/NodeFilter.h:
21225 * dom/NodeFilterCondition.cpp:
21226 * dom/NodeFilterCondition.h:
21227 * dom/NodeIterator.cpp:
21228 * dom/NodeIterator.h:
21229 * dom/Traversal.cpp:
21230 * dom/Traversal.h:
21231 * dom/TreeWalker.cpp:
21232 * dom/TreeWalker.h:
21233 * dom/make_names.pl:
21234 * history/CachedPage.cpp:
21235 * history/CachedPage.h:
21236 * html/HTMLPlugInElement.cpp:
21237 (WebCore::HTMLPlugInElement::getInstance):
21238 * html/HTMLPlugInElement.h:
21239 * loader/FrameLoader.cpp:
21240 * loader/FrameLoader.h:
21241 * loader/icon/IconDatabase.cpp:
21242 (WebCore::iconDatabase):
21243 * page/Console.cpp:
21244 * page/Console.h:
21245 * page/InspectorController.cpp:
21246 (WebCore::XMLHttpRequestResource::XMLHttpRequestResource):
21247 (WebCore::XMLHttpRequestResource::~XMLHttpRequestResource):
21248 (WebCore::InspectorResource::setXMLHttpRequestProperties):
21249 (WebCore::InspectorResource::sourceString):
21250 (WebCore::getResourceDocumentNode):
21251 (WebCore::search):
21252 (WebCore::InspectorController::focusNode):
21253 (WebCore::InspectorController::inspectedWindowScriptObjectCleared):
21254 (WebCore::InspectorController::addDatabaseScriptResource):
21255 (WebCore::InspectorController::resourceRetrievedByXMLHttpRequest):
21256 * page/InspectorController.h:
21257 (WebCore::InspectorController::profiles):
21258 * page/JavaScriptCallFrame.cpp:
21259 (WebCore::JavaScriptCallFrame::scopeChain):
21260 * page/JavaScriptCallFrame.h:
21261 (WebCore::JavaScriptCallFrame::create):
21262 (WebCore::JavaScriptCallFrame::update):
21263 * page/JavaScriptDebugListener.h:
21264 * page/JavaScriptDebugServer.cpp:
21265 (WebCore::dispatchDidParseSource):
21266 * page/JavaScriptDebugServer.h:
21267 * page/JavaScriptProfile.cpp:
21268 * page/JavaScriptProfile.h:
21269 * page/JavaScriptProfileNode.cpp:
21270 (WebCore::getTotalTime):
21271 (WebCore::getSelfTime):
21272 (WebCore::getTotalPercent):
21273 (WebCore::getSelfPercent):
21274 (WebCore::getNumberOfCalls):
21275 (WebCore::getChildren):
21276 (WebCore::getVisible):
21277 * page/JavaScriptProfileNode.h:
21278 * page/Page.cpp:
21279 (WebCore::Page::setDebuggerForAllPages):
21280 (WebCore::Page::setDebugger):
21281 * page/Page.h:
21282 (WebCore::Page::debugger):
21283 * page/mac/FrameMac.mm:
21284 * platform/KURL.h:
21285 (WebCore::KURL::operator JSC::UString):
21286 * platform/text/AtomicString.cpp:
21287 (WebCore::AtomicString::add):
21288 (WebCore::AtomicString::find):
21289 * platform/text/AtomicString.h:
21290 (WebCore::AtomicString::AtomicString):
21291 * platform/text/PlatformString.h:
21292 * platform/text/String.cpp:
21293 (WebCore::charactersToDouble):
21294 * platform/win/BString.cpp:
21295 * platform/win/BString.h:
21296 * plugins/MimeTypeArray.h:
21297 * plugins/Plugin.h:
21298 * plugins/PluginArray.h:
21299 * plugins/PluginView.cpp:
21300 (WebCore::PluginView::start):
21301 (WebCore::PluginView::performRequest):
21302 (WebCore::PluginView::bindingInstance):
21303 * plugins/PluginView.h:
21304 * plugins/gtk/PluginViewGtk.cpp:
21305 (WebCore::PluginView::paint):
21306 (WebCore::PluginView::handleKeyboardEvent):
21307 (WebCore::PluginView::handleMouseEvent):
21308 (WebCore::PluginView::setNPWindowRect):
21309 (WebCore::PluginView::stop):
21310 (WebCore::PluginView::init):
21311 * plugins/qt/PluginViewQt.cpp:
21312 (WebCore::PluginView::setNPWindowRect):
21313 (WebCore::PluginView::stop):
21314 (WebCore::PluginView::init):
21315 * plugins/win/PluginViewWin.cpp:
21316 (WebCore::PluginView::dispatchNPEvent):
21317 (WebCore::PluginView::handleKeyboardEvent):
21318 (WebCore::PluginView::handleMouseEvent):
21319 (WebCore::PluginView::setNPWindowRect):
21320 (WebCore::PluginView::stop):
21321 * storage/Database.cpp:
21322 (WebCore::Database::Database):
21323 * xml/XMLHttpRequest.cpp:
21324 (WebCore::XMLHttpRequest::responseText):
21325 (WebCore::XMLHttpRequest::loadRequestAsynchronously):
21326 (WebCore::XMLHttpRequest::clearResponse):
21327 (WebCore::XMLHttpRequest::dropProtection):
21328 (WebCore::XMLHttpRequest::didFinishLoading):
21329 (WebCore::XMLHttpRequest::didReceiveData):
21330 * xml/XMLHttpRequest.h:
21331
abarth@webkit.orge17b6052008-09-08 00:03:30 +0000213322008-09-07 Adam Barth <abarth@webkit.org>
21333
21334 Reviewed by Sam Weinig.
21335
21336 Adopt opener restriction on frame navigation.
21337 https://bugs.webkit.org/show_bug.cgi?id=20642
21338
21339 This restriction helps prevent an attacker from navigating top-level
21340 windows that were created by another web site.
21341
21342 Tests: http/tests/security/frameNavigation/not-opener.html
21343 http/tests/security/frameNavigation/opener.html
21344
21345 * loader/FrameLoader.cpp:
21346 (WebCore::canAccessAncestor):
21347 (WebCore::FrameLoader::shouldAllowNavigation):
21348
mitz@apple.com83469af2008-09-07 22:29:56 +0000213492008-09-07 Dan Bernstein <mitz@apple.com>
21350
mitz@apple.com08ff58c2008-09-07 23:19:11 +000021351 Reviewed by Maciej Stachowiak.
21352
21353 - use the correct sign for vertical offsets of combining marks
21354
21355 * platform/graphics/win/UniscribeController.cpp:
21356 (WebCore::UniscribeController::shapeAndPlaceItem):
21357
213582008-09-07 Dan Bernstein <mitz@apple.com>
21359
mitz@apple.com83469af2008-09-07 22:29:56 +000021360 Reviewed by Dave Hyatt.
21361
mitz@apple.com78685b22008-09-07 22:30:29 +000021362 - add the combining mark offsets in two places where I forgot them
21363
21364 * platform/graphics/win/FontCGWin.cpp:
21365 (WebCore::Font::drawGlyphs):
21366
213672008-09-07 Dan Bernstein <mitz@apple.com>
21368
21369 Reviewed by Dave Hyatt.
21370
mitz@apple.com83469af2008-09-07 22:29:56 +000021371 - correct glyph advances in complex text using web fonts rendered with
21372 Core Graphics
21373
21374 * platform/graphics/win/FontCustomPlatformData.cpp:
21375 (WebCore::FontCustomPlatformData::fontPlatformData):
21376
timothy@apple.com968ebc92008-09-07 16:48:41 +0000213772008-09-07 Keishi Hattori <casey.hattori@gmail.com>
21378
21379 Adds console.dirxml support to the Web Inspector.
21380
21381 https://bugs.webkit.org/show_bug.cgi?id=19156
21382
21383 Reviewed by Timothy Hatcher.
21384
21385 * WebCore.vcproj/WebCore.vcproj: Added ElementsTreeOutline.js.
21386 * bindings/js/JSConsoleCustom.cpp:
21387 (WebCore::JSConsole::dirxml):
21388 * page/Console.cpp:
21389 (WebCore::Console::dirxml): Adds a ConsoleMessage with NodeMessageLevel.
21390 * page/Console.h:
21391 (WebCore::): Added NodeMessageLevel.
21392 * page/Console.idl: Added console.dirxml.
21393 * page/inspector/Console.js: A NodeMessage creates a ElementsTreeOutline.
21394 * page/inspector/ElementsPanel.js: Modified to use ElementsTreeOutline. The ElementsTreeOutline
21395 in the ElementsPanel has includeRootDOMNode and selectEnabled set to true.
21396 * page/inspector/ElementsTreeOutline.js: Added.
21397 (WebInspector.ElementsTreeOutline): A subclass of TreeOutline for displaying a DOM node tree.
21398 (WebInspector.ElementsTreeElement): A subclass of TreeElement for ElementsTreeOutline.
21399 * page/inspector/WebKit.qrc: Added ElementsTreeOutline.js.
21400 * page/inspector/inspector.css:
21401 * page/inspector/inspector.html: Added ElementsTreeOutline.js.
21402 * page/inspector/inspector.js: Moved hover related methods to WebInspector.
21403 (WebInspector.altKeyDown):
21404 (WebInspector.forceHoverHighlight):
21405 (WebInspector.hoveredDOMNode):
21406 (WebInspector._updateHoverHighlightSoon):
21407 (WebInspector._updateHoverHighlight):
21408 (WebInspector.documentKeyDown): Updates WebInspector.altKeyDown
21409 (WebInspector.documentKeyUp): Updates WebInspector.altKeyDown
21410 * page/inspector/utilities.js: Added getDocumentForNode, parentNodeOrFrameElement,
21411 isAncestorIncludingParentFrames.
21412
mrowe@apple.com61ba5f52008-09-07 06:08:56 +0000214132008-09-06 Mark Rowe <mrowe@apple.com>
21414
21415 Qt build fix.
21416
21417 * bridge/qt/qt_runtime.cpp:
21418 (KJS::Bindings::convertQVariantToValue):
21419
mrowe@apple.comf88a4632008-09-07 05:44:58 +000021420=== End merge of squirrelfish-extreme ===
21421
214222008-09-05 Oliver Hunt <oliver@apple.com>
21423
21424 Start bringing up SFX on windows.
21425
21426 Reviewed by Mark Rowe and Sam Weinig
21427
21428 Start doing the work to bring up SFX on windows. Initially
21429 just working on WREC, as it does not make any calls so reduces
21430 the amount of code that needs to be corrected.
21431
21432 Add forwarding headers
21433
21434 * ChangeLog:
21435 * ForwardingHeaders/masm/MacroAssembler.h: Added.
21436 * WebCore.vcproj/WebCore.vcproj:
21437
214382008-08-27 Mark Rowe <mrowe@apple.com>
21439
21440 Reviewed by Oliver Hunt.
21441
21442 Fix the build of the full WebKit stack.
21443
21444 Add forwarding headers.
21445
21446 * ForwardingHeaders/masm/IA32MacroAsm.h: Added.
21447 * ForwardingHeaders/wrec/WREC.h: Added.
21448
21449=== Start merge of squirrelfish-extreme ===
21450
antti@apple.com13c24932008-09-07 03:54:21 +0000214512008-09-06 Antti Koivisto <antti@apple.com>
21452
21453 Reviewed by Dave Hyatt.
21454
21455 <rdar://problem/6187043>
21456 Don't parse full HTML user agent style sheet unless it is actually needed
21457 <rdar://problem/6131889>
21458 WebView is significantly more expensive to create recently
21459
21460 Parsing the html4.css takes significant amount of time and memory (~50kb) on application
21461 startup. Some clients may never use most of the rules.
21462
21463 With this patch we use simplified UA stylesheet until we hit something it can't handle.
21464 This avoids full stylesheet parsing on application startup (due to empty document construction)
21465 and also makes it possible for clients with very simple demands (divs and spans only) never to load
21466 the full style.
21467
21468 It also delays view source style parsing until it is used.
21469
21470 * css/CSSStyleSelector.cpp:
21471 (WebCore::elementCanUseSimpleDefaultStyle):
21472 (WebCore::CSSStyleSelector::CSSStyleSelector):
21473 (WebCore::loadFullDefaultStyle):
21474 (WebCore::loadSimpleDefaultStyle):
21475 (WebCore::loadViewSourceStyle):
21476 (WebCore::CSSStyleSelector::matchUARules):
21477 (WebCore::CSSStyleSelector::styleForElement):
21478
kevino@webkit.orgd15b50f2008-09-07 03:46:50 +0000214792008-09-06 Kevin Ollivier <kevino@theolliviers.com>
21480
21481 wx build fix.
21482
21483 * WebCoreSources.bkl:
21484
antti@apple.come953f862008-09-06 23:27:09 +0000214852008-09-06 Antti Koivisto <antti@apple.com>
21486
antti@apple.com00dfa532008-09-06 23:32:26 +000021487 Reverting r35953 which was causing problems on Windows which relies on
21488 WebCore timers in nested event loops. r36132 did alternative fix.
21489
21490 * page/Chrome.cpp:
21491 (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer):
21492 (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
21493
214942008-09-06 Antti Koivisto <antti@apple.com>
21495
antti@apple.come953f862008-09-06 23:27:09 +000021496 Reviewed by Dan Bernstein.
21497
21498 Fix <rdar://problem/6201644>
21499 https://bugs.webkit.org/show_bug.cgi?id=20493
21500 Crash after OK in dialog box and reloading page in secure mode
21501
21502 Limited loader only fix since the general timer fix is causing problems on Windows.
21503
21504 * loader/loader.cpp:
21505 (WebCore::Loader::servePendingRequests):
21506 (WebCore::Loader::Host::Host):
21507 (WebCore::Loader::Host::didFinishLoading):
21508 (WebCore::Loader::Host::didFail):
21509 (WebCore::Loader::Host::didReceiveData):
21510 * loader/loader.h:
21511 (WebCore::Loader::Host::processingResource):
21512
mitz@apple.com046bf642008-09-06 08:31:02 +0000215132008-09-06 Dan Bernstein <mitz@apple.com>
21514
21515 Reviewed by Dave Hyatt.
21516
mitz@apple.comc0b050b2008-09-06 22:39:34 +000021517 The initial Core Text adoption prototype was made by Daniel Fenwick.
21518
21519 - <rdar://problem/5158514> Add a Core Text-based complex text code path
21520
21521 Currently the Core Text code path is not used in any configuration.
21522
21523 * WebCore.xcodeproj/project.pbxproj: Added files.
21524 * config.h: Defined WTF_USE_ATSUI and WTF_USE_CORE_TEXT.
21525 * platform/graphics/Font.cpp:
21526 (WebCore::WidthIterator::advance): Moved the spacingDisabled() test out
21527 of the loop.
21528 * platform/graphics/GlyphBuffer.h:
21529 (WebCore::GlyphBuffer::add): Added this version that takes an advance.
21530 * platform/graphics/SimpleFontData.h: Added ATSUI and CORE_TEXT #ifdefs.
21531 Added getCTFont() and getCFStringAttributes() and corresponding data
21532 members for Core Text.
21533 * platform/graphics/mac/CoreTextController.cpp: Added.
21534 (WebCore::roundCGFloat): Helper function.
21535 (WebCore::ceilCGFloat): Helper function.
21536 (WebCore::CoreTextController::CoreTextRun::CoreTextRun):
21537 (WebCore::CoreTextController::CoreTextController):
21538 (WebCore::CoreTextController::offsetForPosition):
21539 (WebCore::CoreTextController::collectCoreTextRuns): Added. Segments the
21540 run into subruns as necessary such that each subrun can be rendered with
21541 a single font. Also separates out soft hyphens and replaces them with
21542 real hyphens, because Core Text does not emit a glyph for soft hyphens.
21543 Then calls collectCoreTextRunsForCharacters() on each subrun.
21544 (WebCore::CoreTextController::advance):
21545 (WebCore::CoreTextController::collectCoreTextRunsForCharacters): Creates
21546 a CTLine from the given subrun and collects its CoreTextRuns.
21547 (WebCore::CoreTextController::adjustGlyphsAndAdvances): Applies the
21548 rounding hacks, letter- and word-spacing and glyph substitutions and
21549 stores the resulting adjusted glyphs and advances.
21550 * platform/graphics/mac/CoreTextController.h: Copied from WebCore/platform/graphics/win/UniscribeController.h.
21551 (WebCore::CoreTextController::totalWidth):
21552 (WebCore::CoreTextController::finalRoundingWidth):
21553 (WebCore::CoreTextController::CoreTextRun::ctRun):
21554 (WebCore::CoreTextController::CoreTextRun::glyphCount):
21555 (WebCore::CoreTextController::CoreTextRun::fontData):
21556 (WebCore::CoreTextController::CoreTextRun::characters):
21557 (WebCore::CoreTextController::CoreTextRun::stringLocation):
21558 (WebCore::CoreTextController::CoreTextRun::stringLength):
21559 (WebCore::CoreTextController::CoreTextRun::indexAt):
21560 * platform/graphics/mac/FontMac.mm: Moved the ATSUI-specific parts to
21561 FontMacATSUI.mm.
21562 * platform/graphics/mac/FontMacATSUI.mm: Copied from WebCore/platform/graphics/mac/FontMac.mm.
21563 (WebCore::disableLigatures): Changed to call
21564 FontPlatformData::allowsLigatures().
21565 (WebCore::overrideLayoutOperation): Changed to call
21566 FontPlatformData::roundsGlyphAdvances().
21567 * platform/graphics/mac/FontMacCoreText.cpp: Copied from WebCore/platform/graphics/win/FontWin.cpp.
21568 (WebCore::Font::selectionRectForComplexText): Changed to use
21569 totalWidth() instead of advancing to the end and using runWidthSoFar().
21570 (WebCore::Font::drawComplexText):
21571 (WebCore::Font::floatWidthForComplexText): Ditto.
21572 (WebCore::Font::offsetForPositionForComplexText):
21573 * platform/graphics/mac/FontPlatformData.h:
21574 * platform/graphics/mac/FontPlatformDataMac.mm:
21575 (WebCore::FontPlatformData::setFont):
21576 (WebCore::FontPlatformData::roundsGlyphAdvances): Added. Checks the
21577 AppKit rendering mode.
21578 (WebCore::FontPlatformData::allowsLigatures): Added. Implements the
21579 heuristic that allows ligatures in fonts that do not have a glyph for
21580 'a', based on the assumption that such fonts are only used in complex
21581 text.
21582 * platform/graphics/mac/SimpleFontDataMac.mm:
21583 (WebCore::SimpleFontData::platformInit):
21584 (WebCore::SimpleFontData::platformDestroy):
21585 (WebCore::SimpleFontData::getCTFont): Added.
21586 (WebCore::SimpleFontData::getCFStringAttributes): Added. Caches and
21587 returns an attributes dictionary.
21588 * platform/text/mac/ShapeArabic.c: Added ATSUI #ifdefs.
21589 * platform/text/mac/ShapeArabic.h: Ditto.
21590
215912008-09-06 Dan Bernstein <mitz@apple.com>
21592
21593 Reviewed by Dave Hyatt.
21594
mitz@apple.com046bf642008-09-06 08:31:02 +000021595 - make combining mark offsets work in CG text on Windows
21596
21597 * platform/graphics/win/FontCGWin.cpp:
21598 (WebCore::Font::drawGlyphs): The old code tried to translate the text
21599 matrix, but failed for two reasons: it did not actually change the
21600 matrix, and even if it did, CGContextSetTextPosition overwrites the
21601 translation values in the text matrix. Instead, just added the
21602 translation to the anchor point.
21603
alp@webkit.org369cdca2008-09-06 04:08:30 +0000216042008-09-05 Gustavo Noronha Silva <gns@gnome.org>
21605
21606 Reviewed by Alp Toker.
21607
21608 https://bugs.webkit.org/show_bug.cgi?id=18346
21609 [GTK] Remove build warnings
21610
21611 Applied some casts, and removed an unused typedef to make the
21612 compiler happy, printing less warnings when building.
21613
21614 * page/gtk/AccessibilityObjectWrapperAtk.cpp:
21615 * platform/graphics/gtk/SimpleFontDataPango.cpp:
21616 (WebCore::SimpleFontData::containsCharacters):
21617 * platform/graphics/gtk/VideoSinkGStreamer.cpp:
21618 (webkit_video_sink_set_caps):
21619 * platform/network/soup/ResourceHandleSoup.cpp:
21620
eric@webkit.org3cb292c2008-09-05 22:17:56 +0000216212008-09-05 Eric Seidel <eric@webkit.org>
21622
eric@webkit.org5ac37902008-09-06 00:21:58 +000021623 Reviewed by Adam Roben.
21624
21625 Build fix for WebKitWin and Chromium
21626
21627 * platform/FileSystem.h:
21628
216292008-09-05 Eric Seidel <eric@webkit.org>
21630
eric@webkit.org3cb292c2008-09-05 22:17:56 +000021631 Reviewed by Darin Adler.
21632
21633 Try to make Chromium compile with ToT:
21634 - Wrap a few places which depend on KJS:: in #if USE(JSC)
21635 - Include some windows forward declarations
21636
21637 * dom/Node.h:
21638 * page/Console.h:
21639 * page/animation/CompositeAnimation.h:
21640 * platform/FileSystem.h:
21641 * platform/graphics/Image.h:
21642 * platform/text/AtomicString.h:
21643 * platform/text/String.cpp:
21644 * rendering/style/RenderStyle.h:
21645
hyatt@apple.comff85d5e2008-09-05 21:52:08 +0000216462008-09-05 Dave Hyatt <hyatt@apple.com>
21647
21648 Add support for runtime switchability of the Aqua look and the native look on Windows.
21649 Make RenderThemeWin compile by default even when USE(SAFARI_THEME) is set.
21650
21651 Reviewed by Adam Roben
21652
21653 * WebCore.vcproj/WebCore.vcproj:
21654 * page/Settings.cpp:
21655 (WebCore::Settings::setShouldPaintNativeControls):
21656 * page/Settings.h:
21657 (WebCore::Settings::shouldPaintNativeControls):
21658 * rendering/RenderThemeSafari.cpp:
21659 (WebCore::theme):
21660 * rendering/RenderThemeWin.cpp:
21661
antti@apple.combced97f2008-09-05 18:52:05 +0000216622008-09-05 Antti Koivisto <antti@apple.com>
21663
21664 Qt build fix.
21665
21666 * svg/SVGFEImageElement.cpp:
21667 (WebCore::SVGFEImageElement::build):
21668
aroben@apple.comca0c3362008-09-05 15:33:28 +0000216692008-09-05 Dirk Schulze <vbs85@gmx.de>
21670
21671 Gtk build fix
21672
21673 * GNUmakefile.am:
21674
antti@apple.com72e4a842008-09-05 09:28:11 +0000216752008-09-05 Antti Koivisto <antti@apple.com>
21676
antti@apple.com49e46662008-09-05 10:36:59 +000021677 Another build fix.
21678
21679 * svg/SVGFEImageElement.cpp:
21680 (WebCore::SVGFEImageElement::notifyFinished):
21681
216822008-09-05 Antti Koivisto <antti@apple.com>
21683
antti@apple.comfeec2582008-09-05 10:03:39 +000021684 Build fixes.
21685
21686 * WebCore.xcodeproj/project.pbxproj:
21687 * svg/graphics/filters/SVGFEImage.cpp:
21688 (WebCore::FEImage::cachedImage):
21689
216902008-09-05 Antti Koivisto <antti@apple.com>
21691
darin@apple.com07c80c62008-09-05 18:15:43 +000021692 Reviewed by Darin Adler.
antti@apple.com72e4a842008-09-05 09:28:11 +000021693
21694 Most of the implementation for https://bugs.webkit.org/show_bug.cgi?id=17998
21695 When a resource is cached locally, WebKit should follow RFC 2616 "Specific end-to-end revalidation" instead of "Unspecified end-to-end revalidation"
21696
21697 Implement HTTP 1.1 "Specific end-to-end revalidation" for WebCore memory cache. This patch does
21698 not yet enable it for the biggest use case, reloading. However it is good for general browsing as
21699 well. Doing this in WebCore level as opposed to relying on disk cache has big benefit that
21700 we avoid re-decoding resources, especially images.
21701
21702 To be exact the enabled case is not actually the "Specific end-to-end revalidation" since it does not include
21703 CacheControl: max-age=0 header. That would be added in reload case.
21704
21705 The approach for revalidation is to kick the original resource out from the memory cache
21706 and create a new CachedResource that represents the revalidation request. In case
21707 we get 304 back for the request we put the original resource back to the cache, update
21708 its expiration date and switch the clients registered to revalidation resource to be
21709 clients of the original resource.
21710
21711 All heap allocated CachedImage pointers now use CachedResourceHandle<CachedImage> (and so on) instead.
21712 This allows updating the handles to point to the original resource when the revalidation succeeds. It
21713 also acts as refcounting smart pointer.
21714
21715 * WebCore.pro:
21716 * WebCore.vcproj/WebCore.vcproj:
21717 * WebCore.xcodeproj/project.pbxproj:
21718 * css/CSSFontFaceSource.h:
21719 * css/CSSImportRule.h:
21720 * dom/Clipboard.h:
21721 (WebCore::Clipboard::dragImage):
21722 * dom/ProcessingInstruction.h:
21723 * dom/ScriptElement.h:
21724 * dom/XMLTokenizer.cpp:
21725 (WebCore::XMLTokenizer::isWaitingForScripts):
21726 * dom/XMLTokenizer.h:
21727 * html/HTMLImageLoader.cpp:
21728 (WebCore::HTMLImageLoader::setImage):
21729 (WebCore::HTMLImageLoader::updateFromElement):
21730 (WebCore::HTMLImageLoader::notifyFinished):
21731 * html/HTMLImageLoader.h:
21732 (WebCore::HTMLImageLoader::image):
21733 * html/HTMLLinkElement.h:
21734 * html/HTMLTokenizer.cpp:
21735 (WebCore::HTMLTokenizer::reset):
21736 (WebCore::HTMLTokenizer::scriptHandler):
21737 (WebCore::HTMLTokenizer::notifyFinished):
21738 * html/HTMLTokenizer.h:
21739 * loader/Cache.cpp:
21740 (WebCore::Cache::revalidateResource):
21741 (WebCore::Cache::revalidationSucceeded):
21742 (WebCore::Cache::revalidationFailed):
21743 * loader/Cache.h:
21744 * loader/CachedResource.cpp:
21745 (WebCore::CachedResource::CachedResource):
21746 (WebCore::CachedResource::~CachedResource):
21747 (WebCore::CachedResource::isExpired):
21748 (WebCore::CachedResource::setResponse):
21749 (WebCore::CachedResource::deleteIfPossible):
21750 (WebCore::CachedResource::setResourceToRevalidate):
21751 (WebCore::CachedResource::clearResourceToRevalidate):
21752 (WebCore::CachedResource::switchClientsToRevalidatedResource):
21753 (WebCore::CachedResource::canUseCacheValidator):
21754 (WebCore::CachedResource::mustRevalidate):
21755 * loader/CachedResource.h:
21756 (WebCore::CachedResource::canDelete):
21757 (WebCore::CachedResource::registerHandle):
21758 (WebCore::CachedResource::unregisterHandle):
21759 (WebCore::CachedResource::isCacheValidator):
21760 (WebCore::CachedResource::resourceToRevalidate):
21761 (WebCore::CachedResource::setExpirationDate):
21762 * loader/CachedResourceHandle.cpp: Added.
21763 (WebCore::CachedResourceHandleBase::setResource):
21764 * loader/CachedResourceHandle.h: Added.
21765 (WebCore::CachedResourceHandleBase::~CachedResourceHandleBase):
21766 (WebCore::CachedResourceHandleBase::get):
21767 (WebCore::CachedResourceHandleBase::operator!):
21768 (WebCore::CachedResourceHandleBase::operator UnspecifiedBoolType):
21769 (WebCore::CachedResourceHandleBase::CachedResourceHandleBase):
21770 (WebCore::CachedResourceHandleBase::operator=):
21771 (WebCore::CachedResourceHandle::CachedResourceHandle):
21772 (WebCore::CachedResourceHandle::get):
21773 (WebCore::CachedResourceHandle::operator->):
21774 (WebCore::CachedResourceHandle::operator=):
21775 (WebCore::CachedResourceHandle::operator==):
21776 (WebCore::CachedResourceHandle::operator!=):
21777 (WebCore::operator==):
21778 (WebCore::operator!=):
21779 * loader/DocLoader.cpp:
21780 (WebCore::DocLoader::checkForReload):
21781 * loader/UserStyleSheetLoader.h:
21782 * loader/loader.cpp:
21783 (WebCore::Loader::Host::servePendingRequests):
21784 (WebCore::Loader::Host::didFinishLoading):
21785 (WebCore::Loader::Host::didFail):
21786 (WebCore::Loader::Host::didReceiveResponse):
21787 (WebCore::Loader::Host::didReceiveData):
21788 * page/EventHandler.cpp:
21789 (WebCore::EventHandler::selectCursor):
21790 * rendering/RenderImage.cpp:
21791 (WebCore::RenderImage::setCachedImage):
21792 (WebCore::RenderImage::imageChanged):
21793 * rendering/RenderImage.h:
21794 (WebCore::RenderImage::cachedImage):
21795 (WebCore::RenderImage::imagePtr):
21796 * rendering/style/RenderStyle.h:
21797 * rendering/style/StyleCachedImage.h:
21798 (WebCore::StyleCachedImage::data):
21799 (WebCore::StyleCachedImage::cachedImage):
21800 * svg/SVGFEImageElement.h:
21801 * svg/graphics/filters/SVGFEImage.h:
21802 * xml/XSLImportRule.h:
21803
beidson@apple.comab60d982008-09-05 04:58:12 +0000218042008-09-04 Brady Eidson <beidson@apple.com>
21805
21806 Reviewed by Mitz
21807
21808 <rdar://problem/6180236> - Safari times out connections after 1 or 2 minutes
21809
21810 A 60-second default timeout was added in http://trac.webkit.org/changeset/17144 in an attempt
21811 to model default NSURLRequest behavior in a cross-platform manner.
21812
21813 Sadly by always enforcing this 60 second timeout, WebCore was stomping over the wishes of any Webkit
21814 client that wished to enforce a much larger default timeout using NSURLRequest API.
21815
21816 Additionally, upon reviewing what all other browsers do, it seems apparent that "no limit" is desirable
21817 behavior on the web and this restores previous Safari/WebKit behavior.
21818
21819 It would be easy to write a layout test for this, but to be effective it would have
21820 to run for at least 61 seconds, which seems insane until will can parallelize run-webkit-tests
21821
21822 * manual-tests/timeout-test.html: Added.
21823 * manual-tests/timeout-test.php: Added.
21824
21825 * platform/network/ResourceRequestBase.h:
21826 (WebCore::ResourceRequestBase::ResourceRequestBase): Rename the constant to "unspecifiedTimeoutInterval"
21827 and make it UINT_MAX so platforms that do set it have an effective "no timeout." (Windows, for example)
21828 * platform/network/mac/ResourceRequestMac.mm:
21829 (WebCore::ResourceRequest::doUpdatePlatformRequest): If the timeout for this request is
21830 "unspecifiedTimeoutInterval", then don't bother setting the timeout using NSURLRequest API, allowing
21831 WebKit applications to enforce their own default timeout.
21832
mitz@apple.com20268542008-09-05 04:26:32 +0000218332008-09-04 Dan Bernstein <mitz@apple.com>
21834
21835 Reviewed by Beth Dakin.
21836
21837 - fix <rdar://problem/6198514> Changing a button's opacity triggers relayout
21838
21839 Test: fast/repaint/button-spurious-layout-hint.html
21840
21841 * rendering/RenderButton.cpp:
21842 (WebCore::RenderButton::setStyle): Reset the inner block's style box
21843 flex to 0 to avoid getting a spurious layout hint.
21844
kevino@webkit.org3e8c4072008-09-04 23:53:04 +0000218452008-09-04 Kevin Ollivier <kevino@theolliviers.com>
21846
21847 wx build fixes.
21848
21849 * WebCoreSources.bkl:
21850 * bindings/js/ScriptControllerWx.cpp: Added.
21851 (WebCore::ScriptController::createScriptInstanceForWidget):
21852 * page/wx/AccessibilityObjectWx.cpp: Added.
21853 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
21854 * platform/graphics/wx/GraphicsContextWx.cpp:
21855 * webcore-base.bkl:
21856 * webcore-wx.bkl:
21857
mitz@apple.com95a87502008-09-04 23:27:19 +0000218582008-09-04 Dan Bernstein <mitz@apple.com>
21859
21860 Reviewed by Mark Rowe.
21861
21862 - roll out r36050 because it made svg/custom/invalid-fill-hex.svg fail,
21863 and fixing https://bugs.webkit.org/show_bug.cgi?id=15360 appears to
21864 require a different approach
21865
21866 * css/CSSGrammar.y:
21867
mrowe@apple.com12b7c2d2008-09-04 21:00:02 +0000218682008-09-04 Mark Rowe <mrowe@apple.com>
21869
mrowe@apple.com5bc4ea82008-09-04 21:44:28 +000021870 Reviewed by Eric Seidel.
21871
21872 Fix https://bugs.webkit.org/show_bug.cgi?id=20639.
21873 Bug 20639: ENABLE_DASHBOARD_SUPPORT does not need to be a FEATURE_DEFINE
21874
21875 * Configurations/WebCore.xcconfig: Remove ENABLE_DASHBOARD_SUPPORT from FEATURE_DEFINES.
21876 * DerivedSources.make: Revert to checking for ENABLE_DASHBOARD_SUPPORT rather than looking
21877 for ENABLE_DASHBOARD_SUPPORT in FEATURE_DEFINES.
21878
218792008-09-04 Mark Rowe <mrowe@apple.com>
21880
mrowe@apple.com12b7c2d2008-09-04 21:00:02 +000021881 Mac build fix.
21882
21883 * config.h: Only check the value of HAVE_CONFIG_H if it is defined.
21884
eric@webkit.org0716a542008-09-04 20:44:12 +0000218852008-09-04 Eric Seidel <eric@webkit.org>
21886
21887 Build fix only, no review.
21888
21889 * dom/XMLTokenizer.cpp: Fix the Chromium merge build by adding a missing header (the Mac files must include it somewhere).
21890
jmalonzo@webkit.org6afc5d42008-09-04 20:26:16 +0000218912008-09-04 Marco Barisione <marco.barisione@collabora.co.uk>
21892
21893 Reviewed by Eric Seidel.
21894
21895 http://bugs.webkit.org/show_bug.cgi?id=20380
21896 [GTK][AUTOTOOLS] Include autotoolsconfig.h from config.h
21897
21898 * config.h: Include the configuration header generated by autotools if
21899 available.
21900
mitz@apple.com9d7e4262008-09-04 18:15:25 +0000219012008-09-04 Dan Bernstein <mitz@apple.com>
21902
21903 Rubber-stamped by Dave Hyatt.
21904
21905 - rename CachedResource::allReferencesRemoved() to allClientsRemoved()
21906
21907 * loader/CachedFont.cpp:
21908 (WebCore::CachedFont::allClientsRemoved):
21909 * loader/CachedFont.h:
21910 * loader/CachedImage.cpp:
21911 (WebCore::CachedImage::allClientsRemoved):
21912 * loader/CachedImage.h:
21913 * loader/CachedResource.cpp:
21914 (WebCore::CachedResource::removeClient):
21915 * loader/CachedResource.h:
21916 (WebCore::CachedResource::allClientsRemoved):
21917
aroben@apple.com0da404d2008-09-04 16:09:33 +0000219182008-09-04 Adam Roben <aroben@apple.com>
21919
aroben@apple.comdd3861a2008-09-04 16:09:53 +000021920 Windows build fix after r36071
21921
21922 We were getting these errors:
21923
21924 error C2356: initialization segment must not change during translation
21925 unit
21926
21927 This was happening because multiple files #included by
21928 DerivedSources.cpp were themselves #including StaticConstructors.h. I
21929 fixed the error by adding header guards to StaticConstructors.h so its
21930 contents will only be included once.
21931
21932 But it's also not a good idea for StaticConstructors.h to end up in
21933 DerivedSources.cpp, since it ends up "polluting" all the source files
21934 we have in there. So I removed all the files that include
21935 StaticConstructors.h and added some preprocessor directives to
21936 DerivedSources.cpp to catch this error in the future.
21937
21938 * DerivedSources.cpp: Removed the *Names.cpp files, which include
21939 StaticConstructors.h, and added some preprocessor directives to make
21940 sure we don't end up accidentally including StaticConstructors.h in
21941 the future.
21942 * WebCore.vcproj/WebCore.vcproj: Added the *Names.cpp files.
21943 * platform/StaticConstructors.h: Added header guards.
21944
219452008-09-04 Adam Roben <aroben@apple.com>
21946
aroben@apple.com0da404d2008-09-04 16:09:33 +000021947 Windows build fix
21948
21949 * platform/graphics/win/FontPlatformData.h: Added a missing #include
21950 of PassRefPtr.h, and corrected the capitalization of RefCounted.h.
21951 * platform/text/PlatformString.h: Added a missing #include of
21952 PassRefPtr.h.
21953
vestbo@webkit.orgc0aeddf2008-09-04 11:44:17 +0000219542008-09-04 Tor Arne Vestbø <tavestbo@trolltech.com>
21955
21956 Reviewed by Simon.
21957
vestbo@webkit.orgb82da912008-09-04 14:24:58 +000021958 Fix the QtWebKit build to match changes in r36016
21959
21960 * WebCore.pro:
21961 * bridge/qt/qt_instance.cpp:
21962 (KJS::Bindings::QtInstance::getRuntimeObject):
21963 * bridge/qt/qt_runtime.cpp:
21964 (KJS::Bindings::convertQVariantToValue):
21965 (KJS::Bindings::QtConnectionObject::execute):
21966
219672008-09-04 Tor Arne Vestbø <tavestbo@trolltech.com>
21968
21969 Reviewed by Simon.
21970
vestbo@webkit.orgc0aeddf2008-09-04 11:44:17 +000021971 Re-enable support for user stylesheets in QtWebKit
21972
21973 QtWebKit now follows the FRAME_LOADS_USER_STYLESHEET
21974 code path, which allows us to keep API support for
21975 loading user style sheets from remote URLs.
21976
21977 As part of the change UserStyleSheetLoader.cpp/h was
21978 moved from WebCore/loader/mac to WebCore/loader.
21979
21980 * WebCore.pro:
21981 * WebCore.xcodeproj/project.pbxproj:
21982 * dom/Document.h:
21983 * loader/UserStyleSheetLoader.cpp: Renamed from WebCore/loader/mac/UserStyleSheetLoader.cpp.
21984 (UserStyleSheetLoader::UserStyleSheetLoader):
21985 (UserStyleSheetLoader::~UserStyleSheetLoader):
21986 * loader/UserStyleSheetLoader.h: Renamed from WebCore/loader/mac/UserStyleSheetLoader.h.
21987 * page/qt/FrameQt.cpp:
21988 (WebCore::Frame::setUserStyleSheetLocation):
21989 (WebCore::Frame::setUserStyleSheet):
21990
alp@webkit.org539ff852008-09-04 09:14:42 +0000219912008-09-04 Alp Toker <alp@nuanti.com>
21992
21993 Reviewed by Eric.
21994
21995 Remove left-over QT and CAIRO platform checks.
21996
21997 * html/CanvasRenderingContext2D.cpp:
21998
eric@webkit.orgbc0aab82008-09-04 08:39:51 +0000219992008-09-04 Eric Seidel <eric@webkit.org>
22000
22001 Reviewed by Mark Rowe.
22002
mitz@apple.com9388d252008-09-04 08:58:58 +000022003 Fix leak of TextMetrics due to over-ref as see on buildbot.
eric@webkit.orgbc0aab82008-09-04 08:39:51 +000022004
22005 * html/TextMetrics.h: use adoptRef since RefCounted starts @ refcount 1 instead of 0 now.
22006
mitz@apple.com89557c52008-09-04 07:26:53 +0000220072008-09-04 Dan Bernstein <mitz@apple.com>
22008
22009 Reviewed by Dave Hyatt.
22010
22011 - fix https://bugs.webkit.org/show_bug.cgi?id=19717
22012 <rdar://problem/6026832> REGRESSION (r31876): menu items render horizontally at the Economist
22013
22014 * rendering/RenderBlock.cpp:
22015 (WebCore::RenderBlock::layoutOnlyPositionedObjects): In the
22016 positioned movement only case, call
22017 tryLayoutDoingPositionedMovementOnly() and fall back on doing a full
22018 layout if that fails.
22019 (WebCore::RenderBlock::layoutPositionedObjects): Ditto.
22020 * rendering/RenderBox.h:
22021 (WebCore::RenderBox::tryLayoutDoingPositionedMovementOnly): Renamed
22022 layoutDoingPositionedMovementOnly to this, and made this function
22023 check if the width changed. If it did, return, leaving the object
22024 dirty. The caller can then call layout(). The width can change even
22025 in the "positioned movement only" case if the object is shrink-to-fit
22026 and the available width constraint is met. (This was the case in the
22027 bug).
22028 * rendering/RenderObject.h:
22029 (WebCore::RenderObject::tryLayoutDoingPositionedMovementOnly):
22030 Renamed layoutDoingPositionedMovementOnly() to this.
22031
eric@webkit.org8883b4a2008-09-04 06:31:37 +0000220322008-09-03 Eric Seidel <eric@webkit.org>
22033
22034 No review, build fix only.
22035
22036 Attempt to fix the Qt build.
22037
22038 * WebCore.pro: add page/animation to include path
22039
mrowe@apple.comaa4bb8d2008-09-04 03:20:30 +0000220402008-09-03 Mark Rowe <mrowe@apple.com>
22041
22042 Mac build fix. Correctly detect whether dashboard support is enabled.
22043
22044 * DerivedSources.make:
22045
eric@webkit.org3eefe672008-09-04 01:32:26 +0000220462008-09-03 Eric Seidel <eric@webkit.org>
22047
22048 Reviewed by Sam.
22049
eric@webkit.org5e069092008-09-04 01:32:51 +000022050 Clean up Platform.h and add PLATFORM(CHROMIUM), PLATFORM(SKIA) and USE(V8_BINDINGS)
22051
22052 * Configurations/WebCore.xcconfig: add missing ENABLE_*
22053 * config.h: add rules for V8_BINDINGS
22054
220552008-09-03 Eric Seidel <eric@webkit.org>
22056
22057 Reviewed by Sam.
22058
eric@webkit.org3eefe672008-09-04 01:32:26 +000022059 https://bugs.webkit.org/show_bug.cgi?id=20620
22060
22061 Add #if USE(JSC) around KJS dependencies
22062 Remove !USE(JAVASCRIPTCORE_BINDINGS) support for 3 reasons:
22063 1. Most platforms have it on anyway
22064 2. V8 is going to want to share some of that code
22065 3. Those platforms which want it off, should have a separate file instead of an #ifdef in our .cpp
22066
22067 * bindings/js/JSPluginElementFunctions.cpp: remove !USE(JAVASCRIPTCORE_BINDINGS) support
22068 * config.h: change JAVASCRIPTCORE_BINDINGS to JSC and add USE(V8)
22069 * html/HTMLAppletElement.cpp: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
22070 * html/HTMLAppletElement.h: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
22071 * html/HTMLEmbedElement.cpp: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
22072 * html/HTMLEmbedElement.h: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
22073 * html/HTMLObjectElement.cpp: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
22074 * html/HTMLObjectElement.h: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
22075 * html/HTMLPlugInElement.cpp: replace USE(JAVASCRIPTCORE_BINDINGS) with USE(JSC) where needed
22076 * html/HTMLPlugInElement.h: replace USE(JAVASCRIPTCORE_BINDINGS) with USE(JSC) where needed
22077 * platform/text/AtomicString.cpp: add USE(JSC)
22078 * platform/text/AtomicString.h: add USE(JSC)
22079 * platform/text/PlatformString.h: add USE(JSC)
22080 * platform/text/String.cpp: add USE(JSC)
22081 * platform/text/StringImpl.cpp: add USE(JSC)
22082 * platform/text/StringImpl.h: add USE(JSC)
22083
mrowe@apple.comfbe724c2008-09-03 23:46:54 +0000220842008-09-03 Dean McNamee <deanm@chromium.org>
22085
22086 Reviewed by Darin Adler.
22087
22088 Fix https://bugs.webkit.org/show_bug.cgi?id=20511
22089 Bug 20511: Remove static initializers on Windows
22090
22091 Avoid static initializers on Windows by forcing Visual C++ to put
22092 all static initializers in a code segment that is never executed.
22093
22094 * config.h:
22095 * css/MediaFeatureNames.cpp:
22096 * dom/EventNames.cpp:
22097 * dom/QualifiedName.cpp:
22098 * dom/make_names.pl:
22099 * platform/StaticConstructors.h:
22100 * platform/text/AtomicString.cpp:
22101
mrowe@apple.com3aa63182008-09-03 23:40:49 +0000221022008-09-03 Dirk Schulze <vbs85@gmx.de>
22103
22104 Reviewed by Dave Hyatt.
22105
22106 Make FontCairo draw TextStroke and TextFill separately.
22107
22108 [CAIRO] draw TextFill and TextStroke separately.
22109 [https://bugs.webkit.org/show_bug.cgi?id=20631]
22110
22111 * platform/graphics/cairo/FontCairo.cpp:
22112 (WebCore::Font::drawGlyphs):
22113
eric@webkit.org4ac94e62008-09-18 23:07:55 +0000221142008-09-03 Peter Kasting <pkasting@google.com>
mrowe@apple.comdcd72b72008-09-03 23:34:40 +000022115
22116 Reviewed by Dave Hyatt.
22117
22118 https://bugs.webkit.org/show_bug.cgi?id=19663
22119 Account for paint and timer lag when animating images. Also pretend
22120 that images whose animations were paused (by becoming invisible)
22121 continued to animate, by "catching up" to the correct frame when they're
22122 shown again.
22123
22124 * platform/graphics/BitmapImage.cpp:
22125 (WebCore::BitmapImage::BitmapImage):
22126 (WebCore::BitmapImage::startAnimation):
22127 (WebCore::BitmapImage::advanceAnimation):
22128 (WebCore::BitmapImage::internalAdvanceAnimation):
22129 (WebCore::BitmapImage::notifyObserverAndTrimDecodedData):
22130 * platform/graphics/BitmapImage.h:
22131 * platform/graphics/cairo/ImageCairo.cpp:
22132 (WebCore::BitmapImage::draw):
22133 * platform/graphics/cg/ImageCG.cpp:
22134 (WebCore::BitmapImage::draw):
22135 * platform/graphics/qt/ImageQt.cpp:
22136 (WebCore::BitmapImage::draw):
22137 * platform/graphics/wx/ImageWx.cpp:
22138 (WebCore::BitmapImage::draw):
22139
kmccullough@apple.comb0f4c622008-09-03 21:53:17 +0000221402008-09-03 Kevin McCullough <kmccullough@apple.com>
22141
22142 Reviewed by Tim.
22143
22144 Remove the rest of the "zombie" code from the profiler.
22145 - There is no longer a need for the ProfilerClient callback mechanism.
22146
22147 * page/Console.cpp:
22148 (WebCore::Console::Console):
22149 (WebCore::Console::profile):
22150 (WebCore::Console::profileEnd): Move the variables from the header to
22151 here since we don't have to wait for a callback to use them.
22152 * page/Console.h:
22153 * page/InspectorController.cpp:
22154 (WebCore::InspectorController::startUserInitiatedProfiling):
22155 (WebCore::InspectorController::stopUserInitiatedProfiling):
22156 * page/InspectorController.h:
22157
adachan@apple.com38c66182008-09-03 21:43:44 +0000221582008-09-03 Ada Chan <adachan@apple.com>
22159
22160 Windows build fix.
22161
22162 * WebCore.vcproj/WebCore.vcproj: Added JSWebKitCSSKeyframeRule.cpp and JSWebKitCSSKeyframesRule.cpp to the project.
22163
dino@apple.com5c917622008-09-03 21:15:53 +0000221642008-09-01 Dean Jackson <dino@apple.com>
22165
22166 Reviewed by Dave Hyatt.
22167
22168 https://bugs.webkit.org/show_bug.cgi?id=20594
22169 Add DOM interfaces for WebKitCSSKeyframeRule
22170 and WebKitCSSKeyframesRule.
22171
22172 TEST: LayoutTests/css3/keyframes-rule.html
22173
22174 * css/WebKitCSSKeyframeRule.idl: Added
22175 * css/WebKitCSSKeyframesRule.idl: Added
22176
22177 * bindings/js/JSCSSRuleCustom.cpp:
22178 (WebCore::toJS):
22179 Add return of new JS Keyframe rules
22180 * bindings/objc/DOMInternal.h:
22181 Include new internal header
22182
22183 * DerivedSources.make:
22184 * GNUmakefile.am:
22185 * WebCore.pro:
22186 * WebCore.vcproj/WebCore.vcproj:
22187 * WebCore.xcodeproj/project.pbxproj:
22188 * WebCoreSources.bkl:
22189 Build configs for new files
22190
aroben@apple.com1f51bfa2008-09-03 20:30:59 +0000221912008-09-03 Adam Roben <aroben@apple.com>
22192
22193 Windows build fix
22194
22195 * DerivedSources.cpp: Add JSTextMetrics.cpp to fix the build.
22196 * WebCore.vcproj/WebCore.vcproj: Add JSTextMetrics.h for
22197 convenience/consistency.
22198
adele@apple.com27713582008-09-03 20:13:41 +0000221992008-09-03 Adele Peterson <adele@apple.com>
22200
22201 Build fix.
22202
22203 * WebCore.vcproj/WebCore.vcproj:
22204
hyatt@apple.com4b38ed82008-09-03 18:32:05 +0000222052008-09-03 David Hyatt <hyatt@apple.com>
22206
22207 Fix for bug 18203, right floats should be allowed to overflow past the left border edge.
22208
22209 Reviewed by Darin (ages ago)
22210
22211 Added fast/block/float/clamped-right-float.html
22212
22213 * rendering/RenderBlock.cpp:
22214 (WebCore::RenderBlock::positionNewFloats):
22215
hyatt@apple.comafe62052008-09-03 18:13:39 +0000222162008-09-02 David Hyatt <hyatt@apple.com>
22217
22218 Add support for canvas text drawing APIs.
22219
22220 Reviewed by olliej
22221
22222 Tests added as fast/canvas/canvas-text-*.html
22223
22224 * DerivedSources.make:
22225 * WebCore.xcodeproj/project.pbxproj:
22226 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
22227 (WebCore::JSCanvasRenderingContext2D::fillText):
22228 (WebCore::JSCanvasRenderingContext2D::strokeText):
22229 * css/CSSStyleSelector.cpp:
22230 (WebCore::CSSStyleSelector::initForStyleResolve):
22231 (WebCore::CSSStyleSelector::applyPropertyToStyle):
22232 * css/CSSStyleSelector.h:
22233 * html/CanvasRenderingContext2D.cpp:
22234 (WebCore::CanvasRenderingContext2D::State::State):
22235 (WebCore::CanvasRenderingContext2D::font):
22236 (WebCore::CanvasRenderingContext2D::setFont):
22237 (WebCore::CanvasRenderingContext2D::textAlign):
22238 (WebCore::CanvasRenderingContext2D::setTextAlign):
22239 (WebCore::CanvasRenderingContext2D::textBaseline):
22240 (WebCore::CanvasRenderingContext2D::setTextBaseline):
22241 (WebCore::CanvasRenderingContext2D::fillText):
22242 (WebCore::CanvasRenderingContext2D::strokeText):
22243 (WebCore::CanvasRenderingContext2D::measureText):
22244 (WebCore::CanvasRenderingContext2D::drawTextInternal):
22245 (WebCore::CanvasRenderingContext2D::accessFont):
22246 * html/CanvasRenderingContext2D.h:
22247 * html/CanvasRenderingContext2D.idl:
22248 * html/TextMetrics.h: Added.
22249 (WebCore::TextMetrics::create):
22250 (WebCore::TextMetrics::width):
22251 (WebCore::TextMetrics::setWidth):
22252 (WebCore::TextMetrics::TextMetrics):
22253 * html/TextMetrics.idl: Added.
22254 * platform/graphics/Font.cpp:
22255 (WebCore::Font::lineGap):
22256 * platform/graphics/Font.h:
22257 * platform/graphics/GraphicsContext.cpp:
22258 (WebCore::GraphicsContext::drawBidiText):
22259 * platform/graphics/GraphicsContext.h:
22260 * platform/graphics/GraphicsTypes.cpp:
22261 (WebCore::textAlignName):
22262 (WebCore::parseTextAlign):
22263 (WebCore::textBaselineName):
22264 (WebCore::parseTextBaseline):
22265 * platform/graphics/GraphicsTypes.h:
22266 (WebCore::):
22267
sullivan@apple.combc066af2008-09-03 17:37:24 +0000222682008-09-03 John Sullivan <sullivan@apple.com>
22269
22270 Fixed <rdar://problem/6193022> <rdar://problem/6193022> Crash occurs at WebCore::AnimationBase::propertiesEqual () after certain steps
22271
22272 Fixed by Darin, reviewed by me
22273
22274 * page/animation/AnimationBase.cpp:
22275 (WebCore::AnimationBase::propertiesEqual):
22276 added ensurePropertyMap() to this static function
22277 (WebCore::AnimationBase::getPropertyAtIndex):
22278 ditto
22279 (WebCore::AnimationBase::getNumProperties):
22280 ditto
22281
kmccullough@apple.com70168ee2008-09-03 17:35:42 +0000222822008-09-03 Kevin McCullough <kmccullough@apple.com>
22283
22284 Reviewed by Darin and Tim.
22285
22286 Remove most of the "zombie" mode from the profiler. Next we will need
22287 to remove the client callback mechanism in profiles.
22288 - These changes are a result of changes to JSCore.
22289
22290 * manual-tests/inspector/profiler-test-nested-start-and-stop-profiler.html:
22291 * page/Console.cpp:
22292 (WebCore::retrieveLastCaller):
22293 (WebCore::Console::profileEnd):
22294 * page/InspectorController.cpp:
22295 (WebCore::InspectorController::stopUserInitiatedProfiling):
22296
adele@apple.com643616b2008-09-03 16:57:58 +0000222972008-09-03 Adele Peterson <adele@apple.com>
22298
22299 Reviewed by Darin Adler.
22300
22301 Test: fast/forms/search-display-none-cancel-button.html
22302
22303 Allow display:none to work on a search field's cancel button. Prepare for adding more style-ability for the results button too.
22304
22305 * css/html4.css: Set display:inline-block for these buttons. Now they can be overridden by a web author.
22306
22307 * rendering/RenderTextControl.cpp:
22308 (WebCore::RenderTextControl::setStyle): Add nil checks for the button renderers.
22309 (WebCore::RenderTextControl::createResultsButtonStyle): Don't set the display explicitly. This is now done in html4.css.
22310 (WebCore::RenderTextControl::createCancelButtonStyle): ditto.
22311 (WebCore::RenderTextControl::createSubtreeIfNeeded):
22312 Reorganize this code so our complicated way of adding shadow nodes is abstracted out into the TextControlInnerElement class.
22313 (WebCore::RenderTextControl::updateFromElement): Added nil checks for the button renderers.
22314 (WebCore::RenderTextControl::subtreeHasChanged): ditto.
22315 (WebCore::RenderTextControl::calcHeight): ditto.
22316 (WebCore::RenderTextControl::nodeAtPoint): ditto.
22317 (WebCore::RenderTextControl::layout): ditto.
22318 (WebCore::RenderTextControl::calcPrefWidths): ditto.
22319 (WebCore::RenderTextControl::clientPaddingLeft): ditto.
22320 (WebCore::RenderTextControl::clientPaddingRight): ditto.
22321
22322 * rendering/TextControlInnerElements.cpp:
22323 (WebCore::RenderTextControlInnerBlock::RenderTextControlInnerBlock): Moved from RenderTextControl.cpp.
22324 (WebCore::RenderTextControlInnerBlock::nodeAtPoint): ditto.
22325 (WebCore::TextControlInnerElement::attachInnerElement): Added.
22326 This does all the separate steps of attaching a shadow node that used to be repeated in RenderTextControl::createSubtreeIfNeeded for each element.
22327 (WebCore::TextControlInnerTextElement::createRenderer): Added. Creates a RenderTextControlInnerBlock.
22328 * rendering/TextControlInnerElements.h:
22329
ap@webkit.orgacd84142008-09-03 08:08:19 +0000223302008-08-28 Alexey Proskuryakov <ap@webkit.org>
22331
22332 Reviewed by Maciej.
22333
22334 Elminate SQLiteAuthorizer class.
22335
22336 * WebCore.xcodeproj/project.pbxproj:
22337 * WebCore.vcproj/WebCore.vcproj:
22338 * GNUmakefile.am
22339 Removed SQLiteAuthorizer.h.
22340
22341 * platform/sql/SQLiteAuthorizer.cpp:
22342 * platform/sql/SQLiteAuthorizer.h: Removed.
22343 * platform/sql/SQLiteDatabase.cpp:
22344 (WebCore::SQLiteDatabase::authorizerFunction):
22345 (WebCore::SQLiteDatabase::setAuthorizer):
22346 * platform/sql/SQLiteDatabase.h:
22347 * storage/DatabaseAuthorizer.h:
22348 (WebCore::DatabaseAuthorizer::create):
22349 (WebCore::DatabaseAuthorizer::createView):
22350 (WebCore::DatabaseAuthorizer::createTempView):
22351 (WebCore::DatabaseAuthorizer::dropView):
22352 (WebCore::DatabaseAuthorizer::dropTempView):
22353 (WebCore::DatabaseAuthorizer::allowSelect):
22354 (WebCore::DatabaseAuthorizer::allowReindex):
22355 Merge SQLiteAuthorizer and DatabaseAuthorizer, as keeping them separate serves no purpose.
22356
mrowe@apple.com2ecd4862008-09-03 07:05:48 +0000223572008-09-03 Dirk Schulze <vbs85@gmx.de>
22358
22359 Reviewed by Mark Rowe.
22360
22361 WebKitGtk build fix.
22362
22363 * GNUmakefile.am:
22364 * page/animation/AnimationController.h:
22365
mrowe@apple.come344ad02008-09-03 06:59:03 +0000223662008-09-02 Robert Blaut <webkit@blaut.biz>
22367
22368 Reviewed by Geoff Garen.
22369
22370 Fix for <https://bugs.webkit.org/show_bug.cgi?id=16913>
22371 Misplaced elements should not close DL lists.
22372
22373 Test: fast/invalid/test-case-tr-th-td-should-not-close-dl-list.html
22374
22375 * html/HTMLParser.cpp:
22376 (WebCore::HTMLParser::handleError):
22377
mrowe@apple.com7a909462008-09-03 06:51:31 +0000223782008-09-02 Glenn Wilson <wilsong@gmail.com>
22379
22380 Reviewed by Darin Adler.
22381
22382 Fix for <https://bugs.webkit.org/show_bug.cgi?id=15360>
22383 Bug 15360: color:#{predefined colorName} is treated as colorName in Safari
22384
22385 We would inappropriately interpret and apply an invalid CSS "color" property
22386 when the value is a predefined color preceded by a '#' symbol. For example,
22387 style="color:#gray;" would apply the color gray when it should not.
22388
22389 In the bison template, "hexcolor" was defined as both "HEX maybe_space" OR "IDENT maybe_space".
22390 This caused identifiers not fitting the appropriate hex format but preceded by a '#' to be
22391 interpreted as a valid color (CSSPrimitiveValue::CSS_PARSER_HEXCOLOR), when it was really just
22392 an ignorable token.
22393
22394 To correct this, "IDENT maybe_space" was removed from "hexcolor" and added under "term" as
22395 '#' IDENT maybe_space, which is then processed as a CSSPrimitiveValue::CSS_STRING instead of
22396 CSSPrimitiveValue::CSS_PARSER_HEXCOLOR.
22397
22398 Test: css1/color_and_background/invalid_color.html
22399
22400 * css/CSSGrammar.y:
22401
mrowe@apple.comda9a1442008-09-03 06:22:12 +0000224022008-09-02 Mihnea Ovidenie <mihnea@adobe.com>
22403
22404 Reviewed by Darin Adler.
22405
22406 Fix for https://bugs.webkit.org/show_bug.cgi?id=19964
22407 Bug 19964: Divide by zero crash in RenderBox::calculateBackgroundSize with 0,0 bmp background image
22408
22409 Add a check to RenderBox::repaintLayerRectsForImage to make sure the current layer image can be rendered.
22410
22411 Test: css3/khtml-background-size-0x0-bmp.html
22412
22413 * rendering/RenderBox.cpp:
22414 (WebCore::RenderBox::repaintLayerRectsForImage):
22415
mrowe@apple.com6625ae52008-09-03 06:12:30 +0000224162008-09-02 Glenn Wilson <wilsong@gmail.com>
22417
22418 Reviewed by Eric Seidel.
22419
22420 Fix https://bugs.webkit.org/show_bug.cgi?id=20397
22421 Bug 20397: Invalid webkit-border-bottom-left-radius property causes crash
22422
22423 The function checkForOrphanedUnits() would change the length of a list whose size was
22424 was already determined before the call to checkForOrphanedUnits was made. Later in
22425 the caller, the old size was being used for boundary management.
22426
22427 This has been fixed by moving the call to checkForOrphanedUnits() earlier in the
22428 calling function, before the size of the list is determined.
22429
22430 Test: fast/css/orphaned_units_crash.html
22431
22432 * css/CSSParser.cpp:
22433 (WebCore::CSSParser::parseValue): Moved call to checkForOrphanedUnits() earlier in the function.
22434
mrowe@apple.com170bd522008-09-03 05:49:51 +0000224352008-09-02 Dirk Schulze <vbs85@gmx.de>
22436
22437 Reviewed by Darin Adler.
22438
mrowe@apple.comeb877a52008-09-03 06:01:15 +000022439 Fallback on invalid fill or stroke styles in Canvas was
22440 transparent black. Changed it to last valid style.
22441
22442 Canvas fillStyle() and strokeStyle() needs fallback
22443 https://bugs.webkit.org/show_bug.cgi?id=20474
22444
22445 Tests: fast/canvas/canvas-invalid-fillstyle.html
22446 fast/canvas/canvas-invalid-strokestyle.html
22447
22448 * html/CanvasStyle.cpp:
22449 (WebCore::CanvasStyle::applyStrokeColor):
22450 (WebCore::CanvasStyle::applyFillColor):
22451
224522008-09-02 Dirk Schulze <vbs85@gmx.de>
22453
22454 Reviewed by Darin Adler.
22455
mrowe@apple.com170bd522008-09-03 05:49:51 +000022456 Fix https://bugs.webkit.org/show_bug.cgi?id=20468
22457 Updated drawImage() in canvas to match the current specification.
22458
22459 Test: fast/canvas/drawImage-with-negative-source-destination.html
22460
22461 * html/CanvasRenderingContext2D.cpp:
22462 (WebCore::normalizeRect):
22463 (WebCore::CanvasRenderingContext2D::drawImage):
22464
mrowe@apple.com96916d12008-09-03 05:41:44 +0000224652008-08-26 Mark Rowe <mrowe@apple.com>
22466
22467 Reviewed by Darin Adler.
22468
22469 <rdar://problem/5768210> Switch back to the system version of SQLite
22470
22471 Use the system version of SQLite when it is new enough to provide the functionality
22472 that WebCore requires.
22473
22474 * Configurations/Base.xcconfig:
22475 * Configurations/DebugRelease.xcconfig:
22476 * Configurations/WebCore.xcconfig:
22477
mitz@apple.comce268c12008-09-03 02:59:00 +0000224782008-09-02 Dan Bernstein <mitz@apple.com>
22479
22480 - build fix
22481
22482 * page/animation/AnimationBase.h:
22483
dino@apple.com7e49a7a2008-09-03 01:32:14 +0000224842008-09-02 Chris Marrin <cmarrin@apple.com>
22485
22486 Reviewed by Dave Hyatt.
22487
22488 AnimationController.cpp should be split into separate files
22489 https://bugs.webkit.org/show_bug.cgi?id=20604
22490
22491 Note: All makefiles, except WebCore.xcodeproj have been changed without testing, upon
22492 recommendation of Dave Hyatt.
22493
22494 * GNUmakefile.am:
22495 * WebCore.pro:
22496 * WebCore.vcproj/WebCore.vcproj:
22497 * WebCore.xcodeproj/project.pbxproj:
22498 * WebCoreSources.bkl:
22499 Build files.
22500
22501 * page/AnimationController.cpp: Removed.
22502 * page/AnimationController.h: Removed.
22503 * page/animation: Added.
22504 * page/animation/AnimationBase.cpp: Added.
22505 * page/animation/AnimationBase.h: Added.
22506 * page/animation/AnimationController.cpp: Copied from WebCore/page/AnimationController.cpp.
22507 * page/animation/AnimationController.h: Copied from WebCore/page/AnimationController.h.
22508 * page/animation/CompositeAnimation.cpp: Added.
22509 * page/animation/CompositeAnimation.h: Added.
22510 * page/animation/ImplicitAnimation.cpp: Added.
22511 * page/animation/ImplicitAnimation.h: Added.
22512 * page/animation/KeyframeAnimation.cpp: Added.
22513 * page/animation/KeyframeAnimation.h: Added.
22514
mitz@apple.comcb917a22008-09-03 00:57:37 +0000225152008-09-02 Dan Bernstein <mitz@apple.com>
22516
22517 - release build fix
22518
22519 * platform/graphics/cg/GraphicsContextCG.cpp:
22520 (WebCore::calculateDrawingMode):
22521
timothy@apple.comf3aa7342008-09-02 21:30:26 +0000225222008-09-02 Timothy Hatcher <timothy@apple.com>
22523
timothy@apple.comc33ff3c2008-09-02 21:35:02 +000022524 Make console functions log the correct resource URL and
22525 line number for where the call originated.
22526
22527 https://bugs.webkit.org/show_bug.cgi?id=17234
22528 <rdar://problem/5732837>
22529
22530 Reviewed by Kevin McCullough.
22531
22532 Test: manual-tests/inspector/console-call-line-numbers.html
22533
22534 * bindings/js/JSConsoleCustom.cpp:
22535 (WebCore::JSConsole::count): Call the impl.
22536 (WebCore::JSConsole::timeEnd): Ditto.
22537 * manual-tests/inspector/console-call-line-numbers.html: Added.
22538 * manual-tests/inspector/resources/script-console-calls.js: Added.
22539 * page/Console.cpp:
22540 (WebCore::retrieveLastCaller): Helper to get the URL and line.
22541 (WebCore::Console::error): Call retrieveLastCaller to get the URL and
22542 line number to pass to addMessageToConsole.
22543 (WebCore::Console::info): Ditto.
22544 (WebCore::Console::log): Ditto.
22545 (WebCore::Console::assertCondition): Ditto.
22546 (WebCore::Console::count): Ditto.
22547 (WebCore::Console::timeEnd): Ditto.
22548 (WebCore::Console::warn): Ditto.
22549 * page/Console.h:
22550 * page/Console.idl: Make count and timeEnd custom.
22551
225522008-09-02 Timothy Hatcher <timothy@apple.com>
22553
timothy@apple.comf3aa7342008-09-02 21:30:26 +000022554 Removed IDL files from WebCore's framework resources.
22555
22556 * WebCore.xcodeproj/project.pbxproj:
22557
mitz@apple.comfb6ad392008-09-02 20:39:29 +0000225582008-09-02 Dan Bernstein <mitz@apple.com>
22559
22560 Reviewed by Dave Hyatt.
22561
22562 - <rdar://problem/5681647> pages at http://www.stendmarsofa.com/ are so slow to calculate style it seems like a hang
22563
22564 * html/HTMLParser.cpp:
22565 (WebCore::HTMLParser::handleResidualStyleCloseTagAcrossBlocks): Added a
22566 cap on the number of consecutive identical residual style tags to
22567 reopen.
22568 (WebCore::HTMLParser::popBlock): Ditto.
22569
ap@webkit.org879328b2008-09-02 16:16:06 +0000225702008-09-02 Alexey Proskuryakov <ap@webkit.org>
22571
22572 Reviewed by Adam Roben.
22573
22574 A little database quota management cleanup.
22575
22576 * storage/OriginQuotaManager.cpp:
22577 (WebCore::OriginQuotaManager::OriginQuotaManager):
22578 (WebCore::OriginQuotaManager::lock):
22579 (WebCore::OriginQuotaManager::unlock):
22580 (WebCore::OriginQuotaManager::trackOrigin):
22581 (WebCore::OriginQuotaManager::tracksOrigin):
22582 (WebCore::OriginQuotaManager::addDatabase):
22583 (WebCore::OriginQuotaManager::removeDatabase):
22584 (WebCore::OriginQuotaManager::removeOrigin):
22585 (WebCore::OriginQuotaManager::markDatabase):
22586 (WebCore::OriginQuotaManager::diskUsage):
22587 * storage/OriginQuotaManager.h:
22588 Changed to assert that a lock is taken more directly and reliably. Removed comments about
22589 main/background threads, as this is likely to stop being true with synchronous Database calls
22590 being made on worker threads.
22591
22592 * storage/OriginUsageRecord.cpp:
22593 (WebCore::OriginUsageRecord::OriginUsageRecord):
22594 (WebCore::OriginUsageRecord::addDatabase):
22595 (WebCore::OriginUsageRecord::removeDatabase):
22596 (WebCore::OriginUsageRecord::markDatabase):
22597 (WebCore::OriginUsageRecord::diskUsage):
22598 * storage/OriginUsageRecord.h:
22599 (WebCore::OriginUsageRecord::DatabaseEntry::DatabaseEntry):
22600 Don't use a magic value for unknown. It is totally unnecessary for DatabaseEntry, and
22601 can be replaced with a single boolean for OriginUsageRecord.
22602 Added assertions for string parameters being unshared.
22603
22604
abarth@webkit.orgaea97a02008-09-02 04:26:15 +0000226052008-09-01 Adam Barth <abarth@webkit.org>
22606
22607 Reviewed by Sam Weinig.
22608
22609 https://bugs.webkit.org/show_bug.cgi?id=19760
22610
22611 Make granting LoadLocalResources conditional on a policy.
22612
22613 * WebCore.base.exp:
22614 * dom/Document.cpp:
22615 (WebCore::Document::initSecurityContext):
22616 * loader/FrameLoader.cpp:
22617 (WebCore::FrameLoader::setLocalLoadPolicy):
22618 (WebCore::FrameLoader::restrictAccessToLocal):
22619 * loader/FrameLoader.h:
22620 (WebCore::FrameLoader::):
22621 * platform/SecurityOrigin.cpp:
22622 (WebCore::SecurityOrigin::grantLoadLocalResources):
22623 * platform/SecurityOrigin.h:
22624
dino@apple.com6e2db502008-09-01 23:05:28 +0000226252008-09-01 Dean Jackson <dino@apple.com>
22626
dino@apple.com59ca9f52008-09-01 23:34:13 +000022627 Reviewed by Sam Weinig.
22628
22629 https://bugs.webkit.org/show_bug.cgi?id=20571
22630 Make sure Window object can assign Animation/Transition event
22631 listeners via attributes.
22632
22633 Also added a bunch of transition event tests, although
22634 only transition-end-event-window is directly relevant to this patch.
22635
22636 (WebCore::JSDOMWindowBase::put):
22637
22638 Tests: transitions/transition-end-event-all-properties.html
22639 transitions/transition-end-event-attributes.html
22640 transitions/transition-end-event-container.html
22641 transitions/transition-end-event-left.html
22642 transitions/transition-end-event-multiple-01.html
22643 transitions/transition-end-event-multiple-02.html
22644 transitions/transition-end-event-multiple-03.html
22645 transitions/transition-end-event-multiple-04.html
22646 transitions/transition-end-event-nested.html
22647 transitions/transition-end-event-transform.html
22648 transitions/transition-end-event-window.html
22649
226502008-09-01 Dean Jackson <dino@apple.com>
22651
dino@apple.com6e2db502008-09-01 23:05:28 +000022652 Reviewed by Sam Weinig
22653
22654 Code styling cleanup.
22655
22656 * bindings/js/JSDOMWindowBase.cpp:
22657 (WebCore::JSDOMWindowBase::getValueProperty):
22658 (WebCore::JSDOMWindowBase::put):
22659
weinig@apple.com3412bb42008-09-01 21:22:54 +0000226602008-09-01 Geoffrey Garen <ggaren@apple.com>
22661
22662 Reviewed by Darin Adler.
22663
22664 First cut at inline caching for access to vanilla JavaScript properties.
22665
22666 Updated for JavaScriptCore changes. Mostly mechanical addition of StructureIDs
22667 to WebCore classes, and PutPropertySlot& arguments to put functions.
22668
22669 (WebCore::JSCSSStyleDeclaration::customPut): Be sure to play nice with
22670 inline caching for global properties, so global assignment can be optimized.
22671
22672 * ForwardingHeaders/kjs/StructureID.h: Added.
22673 * bindings/js/JSDOMBinding.h:
22674 (WebCore::DOMObject::DOMObject):
22675 * bindings/js/JSDOMWindowBase.cpp:
22676 (WebCore::JSDOMWindowBase::put):
22677 * bindings/js/JSDOMWindowBase.h:
22678 * bindings/js/JSDOMWindowCustom.h:
22679 (WebCore::JSDOMWindow::customPut):
22680 * bindings/js/JSDOMWindowShell.cpp:
22681 (WebCore::JSDOMWindowShell::JSDOMWindowShell):
22682 (WebCore::JSDOMWindowShell::put):
22683 * bindings/js/JSDOMWindowShell.h:
22684 * bindings/js/JSEventTargetBase.h:
22685 (WebCore::JSEventTargetBase::put):
22686 * bindings/js/JSEventTargetNode.h:
22687 (WebCore::JSEventTargetNode::put):
22688 * bindings/js/JSHTMLAppletElementCustom.cpp:
22689 (WebCore::JSHTMLAppletElement::customPut):
22690 * bindings/js/JSHTMLEmbedElementCustom.cpp:
22691 (WebCore::JSHTMLEmbedElement::customPut):
22692 * bindings/js/JSHTMLInputElementBase.cpp:
22693 (WebCore::JSHTMLInputElementBase::put):
22694 * bindings/js/JSHTMLInputElementBase.h:
22695 * bindings/js/JSHTMLObjectElementCustom.cpp:
22696 (WebCore::JSHTMLObjectElement::customPut):
22697 * bindings/js/JSHistoryCustom.cpp:
22698 (WebCore::JSHistory::customPut):
22699 * bindings/js/JSInspectedObjectWrapper.cpp:
22700 (WebCore::JSInspectedObjectWrapper::wrap):
22701 (WebCore::JSInspectedObjectWrapper::JSInspectedObjectWrapper):
22702 * bindings/js/JSInspectedObjectWrapper.h:
22703 * bindings/js/JSInspectorCallbackWrapper.cpp:
22704 (WebCore::JSInspectorCallbackWrapper::wrap):
22705 (WebCore::JSInspectorCallbackWrapper::JSInspectorCallbackWrapper):
22706 * bindings/js/JSInspectorCallbackWrapper.h:
22707 * bindings/js/JSLocationCustom.cpp:
22708 (WebCore::JSLocation::customPut):
22709 * bindings/js/JSPluginElementFunctions.cpp:
22710 (WebCore::runtimeObjectCustomPut):
22711 * bindings/js/JSPluginElementFunctions.h:
22712 * bindings/js/JSQuarantinedObjectWrapper.cpp:
22713 (WebCore::JSQuarantinedObjectWrapper::JSQuarantinedObjectWrapper):
22714 (WebCore::JSQuarantinedObjectWrapper::put):
22715 * bindings/js/JSQuarantinedObjectWrapper.h:
22716 * bindings/js/JSStorageCustom.cpp:
22717 (WebCore::JSStorage::customPut):
22718 * bindings/objc/WebScriptObject.mm:
22719 (-[WebScriptObject setValue:forKey:]):
22720 * bindings/scripts/CodeGeneratorJS.pm:
22721 * bridge/NP_jsobject.cpp:
22722 (_NPN_SetProperty):
22723 * bridge/jni/jni_jsobject.mm:
22724 (JavaJSObject::setMember):
22725 * bridge/objc/objc_class.mm:
22726 (KJS::Bindings::ObjcClass::fallbackObject):
22727 * bridge/objc/objc_runtime.h:
22728 * bridge/objc/objc_runtime.mm:
22729 (ObjcFallbackObjectImp::ObjcFallbackObjectImp):
22730 (ObjcFallbackObjectImp::put):
22731 * bridge/runtime.cpp:
22732 (KJS::Bindings::Instance::createRuntimeObject):
22733 * bridge/runtime_array.cpp:
22734 (RuntimeArray::put):
22735 * bridge/runtime_array.h:
22736 * bridge/runtime_object.cpp:
22737 (RuntimeObjectImp::RuntimeObjectImp):
22738 (RuntimeObjectImp::put):
22739 * bridge/runtime_object.h:
22740
jmalonzo@webkit.org1f770ba2008-09-01 12:43:34 +0000227412008-09-01 Dirk Schulze <vbs85@gmx.de>
22742
22743 Reviewed by Eric Seidel.
22744
jmalonzo@webkit.org37f07882008-09-01 12:43:48 +000022745 Fixed border-radius for Cairo.
22746
22747 * platform/graphics/cairo/GraphicsContextCairo.cpp:
22748 (WebCore::GraphicsContext::strokeArc):
22749
227502008-09-01 Dirk Schulze <vbs85@gmx.de>
22751
22752 Reviewed by Eric Seidel.
22753
jmalonzo@webkit.org1f770ba2008-09-01 12:43:34 +000022754 Added canvas's globalAlpha to cairo.
22755
22756 * platform/graphics/GraphicsContext.h:
22757 * platform/graphics/cairo/GraphicsContextCairo.cpp:
22758 (WebCore::GraphicsContext::fillPath):
22759 (WebCore::GraphicsContext::strokePath):
22760 (WebCore::GraphicsContext::setAlpha):
22761 (WebCore::GraphicsContext::getAlpha):
22762 * platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h:
22763 (WebCore::GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate):
22764 * platform/graphics/cairo/ImageCairo.cpp:
22765 (WebCore::BitmapImage::draw):
22766
hausmann@webkit.orgecd099d2008-08-31 13:13:28 +0000227672008-08-31 Simon Hausmann <hausmann@webkit.org>
22768
22769 Unreviewed Qt build fix.
22770
22771 * WebCore.pro: Add TextControlInnerElements.cpp to SOURCES instead of
22772 the .h file
22773
darin@apple.come7945852008-08-31 06:58:07 +0000227742008-08-30 Darin Adler <darin@apple.com>
22775
22776 Reviewed by Maciej.
22777
22778 - adopt some new JavaScriptCore functions where appropriate
22779
22780 * bindings/js/JSDOMWindowBase.cpp:
22781 (WebCore::windowProtoFuncAToB): Adopted jsEmptyString.
22782 (WebCore::windowProtoFuncBToA): Ditto.
22783 * bindings/js/JSEventListener.cpp:
22784 (WebCore::JSLazyEventListener::eventParameterName): Adopted
22785 jsNontrivialString.
22786 * bindings/js/JSSVGLazyEventListener.cpp:
22787 (WebCore::JSSVGLazyEventListener::eventParameterName): Ditto.
22788
beidson@apple.com21c821f2008-08-30 00:26:01 +0000227892008-08-29 Brady Eidson <beidson@apple.com>
22790
beidson@apple.come1bd6032008-08-30 00:30:11 +000022791 Reviewed by Anders' rubberstamp
22792
22793 Style cleanup to match MediaTokenizer::writeRawData()
22794
22795 * loader/PluginDocument.cpp:
22796 (WebCore::PluginTokenizer::writeRawData):
22797
227982008-08-29 Brady Eidson <beidson@apple.com>
22799
beidson@apple.com21c821f2008-08-30 00:26:01 +000022800 Reviewed by Anders
22801
mitz@apple.com098b1e62008-09-24 16:39:55 +000022802 https://bugs.webkit.org/show_bug.cgi?id=20556
22803 <rdar://problem/6181817> REGRESSION (r35946): media/video-click-dlbclick-standalone.html [sic] fails because load never fires
22804
beidson@apple.com21c821f2008-08-30 00:26:01 +000022805 Fix regression I introducted in 35946
22806 Already covered by media/video-click-dlbclick-standalone.html
22807
22808 * loader/MediaDocument.cpp:
22809 (WebCore::MediaTokenizer::createDocumentStructure): Don't cancel the load here - too early!
22810 (WebCore::MediaTokenizer::writeRawData): Call finish() here so onload() can be called. Also add
22811 an ASSERT signifying that this method should only be called once, to more closely follow the
22812 PluginDocument case.
22813
bdakin@apple.com7ee298c2008-08-30 00:00:30 +0000228142008-08-29 Beth Dakin <bdakin@apple.com>
22815
22816 Reviewed by Sam Weinig.
22817
22818 Fix for <rdar://problem/6181588>
22819
22820 This patch makes hit testing take into account the new concept of a
22821 disconnected frame, in which some of the content may not be
22822 visible. The current hit testing mechanism starts at a target frame
22823 and drills down for a HitTestResult. In some cases, drilling down
22824 will find a non-visible result. When this happens, we need to try
22825 again, starting at a higher level -- namely, starting at the main
22826 frame.
22827
22828 * editing/Editor.cpp:
22829 (WebCore::Editor::insideVisibleArea): New function that tests if a
22830 point is inside the visible area for a disconnected frame.
22831 * editing/Editor.h:
22832 * page/EventHandler.cpp:
22833 (WebCore::EventHandler::hitTestResultAtPoint):
22834
adele@apple.comfb903062008-08-29 22:30:18 +0000228352008-08-29 Adele Peterson <adele@apple.com>
22836
22837 Reviewed by Adam Roben.
22838
22839 Rename HTMLTextFieldInnerElement.h/.cpp to TextControlInnerElements.h/.cpp
22840
22841 * GNUmakefile.am:
22842 * WebCore.pro:
22843 * WebCore.vcproj/WebCore.vcproj:
22844 * WebCore.xcodeproj/project.pbxproj:
22845 * WebCoreSources.bkl:
22846 * html/HTMLTextFieldInnerElement.cpp: Removed.
22847 * html/HTMLTextFieldInnerElement.h: Removed.
22848 * rendering/RenderTextControl.cpp:
22849 (WebCore::RenderTextControl::createSubtreeIfNeeded):
22850 * rendering/RenderTextControl.h:
22851 * rendering/TextControlInnerElements.cpp: Copied from html/HTMLTextFieldInnerElement.cpp.
22852 (WebCore::TextControlInnerElement::TextControlInnerElement):
22853 (WebCore::TextControlInnerTextElement::TextControlInnerTextElement):
22854 (WebCore::TextControlInnerTextElement::defaultEventHandler):
22855 (WebCore::SearchFieldResultsButtonElement::SearchFieldResultsButtonElement):
22856 (WebCore::SearchFieldResultsButtonElement::defaultEventHandler):
22857 (WebCore::SearchFieldCancelButtonElement::SearchFieldCancelButtonElement):
22858 (WebCore::SearchFieldCancelButtonElement::defaultEventHandler):
22859 * rendering/TextControlInnerElements.h: Copied from html/HTMLTextFieldInnerElement.h.
22860
eric@webkit.org298c65b2008-08-29 21:39:32 +0000228612008-08-29 Eric Seidel <eric@webkit.org>
22862
eric@webkit.org77837ce2008-08-29 21:40:07 +000022863 Rubber-stamped by aroben.
22864
22865 Add GraphicsContext.h include to GraphcisContextPrivate.h
22866
22867 GraphicsContextPrivate uses StrokeStyle which is defined
22868 in GraphicsContext.h but it doesn't include that header.
22869 CoreGraphics build doesn't fail here due to the order
22870 it happens to include files.
22871
22872 * platform/graphics/GraphicsContextPrivate.h:
22873
228742008-08-29 Eric Seidel <eric@webkit.org>
22875
eric@webkit.org298c65b2008-08-29 21:39:32 +000022876 Reviewed by hyatt.
22877
22878 Fix GeneratedImage to respect Image's refcounting
22879 Fixing potential crashers (future if not current)
22880 https://bugs.webkit.org/show_bug.cgi?id=20567
22881
22882 I don't know if it's possible to make the current code
22883 crash, thus I've not made a test.
22884
22885 * css/CSSGradientValue.cpp:
22886 (WebCore::CSSGradientValue::image):
22887 * css/CSSImageGeneratorValue.cpp:
22888 (WebCore::CSSImageGeneratorValue::removeClient):
22889 (WebCore::CSSImageGeneratorValue::getImage):
22890 * css/CSSImageGeneratorValue.h:
22891 * platform/graphics/GeneratedImage.h:
22892 (WebCore::GeneratedImage::GeneratedImage):
22893 * rendering/style/RenderStyle.cpp:
22894 (WebCore::RenderStyle::setContent):
22895 * rendering/style/RenderStyle.h:
22896
eric.carlson@apple.comddeafd42008-08-29 20:07:19 +0000228972008-08-29 Eric Carlson <eric.carlson@apple.com>
22898
22899 Reviewed by Adele.
22900
eric.carlson@apple.com850c77c2008-08-29 20:24:50 +000022901 Fix for <rdar://problem/6093767>
22902 https://bugs.webkit.org/show_bug.cgi?id=20526
22903
22904 Don't allow video to render until unsupported track types have been disabled.
22905
22906 * platform/graphics/win/QTMovieWin.cpp:
22907 (QTMovieWinPrivate::task):
22908 (QTMovieWinPrivate::drawingComplete):
22909 (QTMovieWinPrivate::clearGWorld):
22910
229112008-08-29 Eric Carlson <eric.carlson@apple.com>
22912
22913 Reviewed by Adele.
22914
eric.carlson@apple.comddeafd42008-08-29 20:07:19 +000022915 Fix for https://bugs.webkit.org/show_bug.cgi?id=20525
22916 <rdar://problem/6169301>
22917
22918 Return the size of the movie data instead of 1000.
22919
22920 Test: media/progress-event-total.html
22921
22922 * platform/graphics/win/QTMovieWin.cpp:
22923 (QTMovieWin::dataSize):
22924
hausmann@webkit.org0367b582008-08-29 15:56:02 +0000229252008-08-29 Holger Hans Peter Freyther <zecke@selfish.org>
22926
hausmann@webkit.orgfe7f2ac2008-08-29 15:57:44 +000022927 Reviewed by Eric Seidel.
22928
22929 [janitor/qt] Start replacing port specific getters with the generic native getter
22930 To get the native presentation of an image we currently have platform
22931 specific #ifdef's and a generic getter using NativeImagePtr. This patch
22932 extends this to the ImageBuffer and updates the Qt platform to get rid
22933 of the special #ifdefs.
22934
22935 https://bugs.webkit.org/attachment.cgi?id=22861
22936
22937 * platform/graphics/BitmapImage.h:
22938 * platform/graphics/Image.h:
22939 * platform/graphics/qt/ImageQt.cpp:
22940 * platform/graphics/qt/StillImageQt.cpp:
22941 * platform/graphics/qt/StillImageQt.h:
22942 * platform/qt/ClipboardQt.cpp:
22943 (WebCore::ClipboardQt::createDragImage):
22944 (WebCore::ClipboardQt::declareAndWriteDragImage):
22945 * platform/qt/CursorQt.cpp:
22946 * platform/qt/PasteboardQt.cpp:
22947 (WebCore::Pasteboard::writeImage):
22948
229492008-08-29 Holger Hans Peter Freyther <zecke@selfish.org>
22950
hausmann@webkit.org0367b582008-08-29 15:56:02 +000022951 Reviewed by Simon.
22952
hausmann@webkit.orgb99266e2008-08-29 15:56:59 +000022953 [svg/qt] Stop crashing... when no RenderPath/RenderObject is given...
22954
22955 * svg/graphics/qt/SVGPaintServerQt.cpp:
22956 (WebCore::SVGPaintServer::renderPath):
22957 * svg/graphics/qt/SVGPaintServerSolidQt.cpp:
22958 (WebCore::SVGPaintServerSolid::setup):
22959
229602008-08-29 Holger Hans Peter Freyther <zecke@selfish.org>
22961
22962 Reviewed by Simon.
22963
hausmann@webkit.org0367b582008-08-29 15:56:02 +000022964 [network/qt] Implement defering of loading ResourceHandle's
22965 This is needed otherwise we end in an ASSERT in the MainResourceLoader. The
22966 implementation is simply not forwarding anything to the
22967 ResourceHandleClient until we are allowed to. This might lead to a deadlock
22968 in Qt as we do not empty the QNetworkReply input buffer and wait until we
22969 are allowed to read. If that happens we are forced to buffer the data
22970 within QNetworkReplyHandler, for now this is not done.
22971
22972 Manual test:
22973 - Open http://acid3.acidtests.org
22974 - Wait for the test to complete
22975 - Click on the Reference Rendering link
22976 - Be fast and see the results of acid3
22977 => assert
22978
22979 * platform/network/qt/QNetworkReplyHandler.cpp:
22980 (WebCore::QNetworkReplyHandler::QNetworkReplyHandler):
22981 (WebCore::QNetworkReplyHandler::setLoadMode):
22982 (WebCore::QNetworkReplyHandler::finish):
22983 (WebCore::QNetworkReplyHandler::sendResponseIfNeeded):
22984 (WebCore::QNetworkReplyHandler::forwardData):
22985 (WebCore::QNetworkReplyHandler::start):
22986 (WebCore::QNetworkReplyHandler::resetState):
22987 (WebCore::QNetworkReplyHandler::sendQueuedItems):
22988 * platform/network/qt/QNetworkReplyHandler.h:
22989 (WebCore::QNetworkReplyHandler::):
22990 * platform/network/qt/ResourceHandleQt.cpp:
22991 (WebCore::ResourceHandle::start):
22992 (WebCore::ResourceHandle::loadResourceSynchronously):
22993 (WebCore::ResourceHandle::setDefersLoading):
22994
hausmann@webkit.org2f2621f2008-08-29 10:21:38 +0000229952008-08-29 Simon Hausmann <hausmann@webkit.org>
22996
hausmann@webkit.orgf5864402008-08-29 12:35:59 +000022997 Reviewed by Holger.
22998
22999 Don't crash when drawing patterns with the HTML canvas. Patterns
23000 remain unimplemented but at least they don't crash anymore. This is
23001 done by changing the PlatformPatternPtr to be a brush for the Qt
23002 platform.
23003
23004 * platform/graphics/Pattern.h:
23005 * platform/graphics/qt/GraphicsContextQt.cpp:
23006 (WebCore::GraphicsContext::fillPath):
23007 (WebCore::GraphicsContext::strokePath):
23008 (WebCore::GraphicsContext::fillRect):
23009 * platform/graphics/qt/PatternQt.cpp:
23010 (WebCore::Pattern::createPlatformPattern):
23011
230122008-08-29 Simon Hausmann <hausmann@webkit.org>
23013
hausmann@webkit.org2f2621f2008-08-29 10:21:38 +000023014 Fix the Qt build, fontSelector() is not used by the Qt port yet
23015 and we just return 0 in Font::fontSelector().
23016
23017 * platform/graphics/Font.h:
23018
alp@webkit.org97d8c102008-08-29 05:09:39 +0000230192008-08-28 Alp Toker <alp@nuanti.com>
23020
23021 GTK+ dist/build fix. List newly added header files.
23022
23023 * GNUmakefile.am:
23024
simon.fraser@apple.com8f30d022008-08-28 23:04:18 +0000230252008-08-28 Simon Fraser <simon.fraser@apple.com>
23026
23027 Reviewed by Dave Hyatt
23028
23029 Various WebKitCSSTransformValue-related fixes
23030 https://bugs.webkit.org/show_bug.cgi?id=20562
23031
23032 Test: css3/transform-value-types.html
23033
23034 * bindings/js/JSCSSValueCustom.cpp:
23035 (WebCore::toJS):
23036 * css/CSSValue.h:
23037 * css/WebKitCSSTransformValue.cpp:
23038 (WebCore::WebKitCSSTransformValue::cssText):
23039 * css/WebKitCSSTransformValue.h:
23040 (WebCore::WebKitCSSTransformValue::):
23041 * css/WebKitCSSTransformValue.idl:
23042
mitz@apple.comd7222352008-08-28 22:53:31 +0000230432008-08-28 Dan Bernstein <mitz@apple.com>
23044
23045 Reviewed by Steve Falkenburg.
23046
23047 - do not let the "last chance" WM_TIMER trigger WebCore timers when they should be deferred
23048
23049 * platform/win/SharedTimerWin.cpp:
23050 (WebCore::TimerWindowWndProc):
23051
hyatt@apple.com7d335232008-08-28 21:38:45 +0000230522008-08-28 David Hyatt <hyatt@apple.com>
23053
23054 RenderStyle cleanup.
23055
23056 Break out StyleImage, StyleGeneratedImage, StyleCachedImage and NinePieceImage into separate files.
23057
23058 Reviewed by Adam
23059
23060 * css/CSSImageGeneratorValue.cpp:
23061 * css/CSSImageValue.cpp:
23062 * css/CSSStyleSelector.cpp:
23063 * rendering/RenderImageGeneratedContent.cpp:
23064 * rendering/style/NinePieceImage.cpp: Added.
23065 * rendering/style/NinePieceImage.h: Added.
23066 * rendering/style/RenderStyle.cpp:
23067 (WebCore::FillLayer::operator==):
23068 (WebCore::FillLayer::containsImage):
23069 (WebCore::StyleInheritedData::operator==):
23070 (WebCore::RenderStyle::contentDataEquivalent):
23071 * rendering/style/RenderStyle.h:
23072 * rendering/style/StyleCachedImage.cpp: Added.
23073 * rendering/style/StyleCachedImage.h: Added.
23074 * rendering/style/StyleGeneratedImage.cpp: Added.
23075 * rendering/style/StyleGeneratedImage.h: Added.
23076 * rendering/style/StyleImage.h: Added.
23077
simon.fraser@apple.com28bad1a2008-08-28 21:29:21 +0000230782008-08-28 Simon Fraser <simon.fraser@apple.com>
23079
23080 Reviewed by Dave Hyatt
23081
23082 Make all the 'isFoo()' methods on CSSValue const,
23083 and fix the subclasses.
23084
23085 https://bugs.webkit.org/show_bug.cgi?id=20561
23086
23087 * css/CSSTimingFunctionValue.h:
23088 * css/CSSValue.h:
23089 (WebCore::CSSValue::isFontValue):
23090 (WebCore::CSSValue::isImageGeneratorValue):
23091 (WebCore::CSSValue::isImageValue):
23092 (WebCore::CSSValue::isImplicitInitialValue):
23093 * css/CSSValueList.h:
23094 * css/FontValue.h:
23095
hyatt@apple.com550a95c2008-08-28 19:53:56 +0000230962008-08-28 David Hyatt <hyatt@apple.com>
23097
hyatt@apple.comcb3eb812008-08-28 20:08:03 +000023098 The great RenderStyle cleanup begins!
23099
23100 Move LengthBox and LengthSize out of RenderStyle and into Length.
23101
23102 Reviewed by Adam
23103
23104 * rendering/Length.h:
23105 (WebCore::):
23106 (WebCore::Length::Length):
23107 (WebCore::Length::operator==):
23108 (WebCore::Length::operator!=):
23109 (WebCore::Length::value):
23110 (WebCore::Length::rawValue):
23111 (WebCore::Length::percent):
23112 (WebCore::Length::type):
23113 (WebCore::Length::quirk):
23114 (WebCore::Length::setValue):
23115 (WebCore::Length::setRawValue):
23116 (WebCore::Length::calcValue):
23117 (WebCore::Length::calcMinValue):
23118 (WebCore::Length::calcFloatValue):
23119 (WebCore::Length::isUndefined):
23120 (WebCore::Length::isZero):
23121 (WebCore::Length::isPositive):
23122 (WebCore::Length::isNegative):
23123 (WebCore::Length::isAuto):
23124 (WebCore::Length::isRelative):
23125 (WebCore::Length::isPercent):
23126 (WebCore::Length::isFixed):
23127 (WebCore::Length::isStatic):
23128 (WebCore::Length::isIntrinsicOrAuto):
23129 (WebCore::Length::blend):
23130 (WebCore::LengthBox::LengthBox):
23131 (WebCore::LengthBox::operator=):
23132 (WebCore::LengthBox::operator==):
23133 (WebCore::LengthBox::operator!=):
23134 (WebCore::LengthBox::nonZero):
23135 (WebCore::LengthSize::LengthSize):
23136 * rendering/style/RenderStyle.h:
23137
231382008-08-28 David Hyatt <hyatt@apple.com>
23139
hyatt@apple.com550a95c2008-08-28 19:53:56 +000023140 Reviewed by Darin
23141
23142 https://bugs.webkit.org/show_bug.cgi?id=18091
23143
23144 font-size should be animatable using -webkit-transition.
23145
23146 * page/AnimationController.cpp:
23147 (WebCore::AnimationControllerPrivate::ensurePropertyMap):
23148 * rendering/style/RenderStyle.h:
23149 (WebCore::RenderStyle::setFontSize):
23150
mitz@apple.com30923ad2008-08-28 17:45:47 +0000231512008-08-28 Brad Garcia <bgarcia@google.com>
23152
23153 Reviewed by Dan Bernstein.
23154
23155 https://bugs.webkit.org/show_bug.cgi?id=20549
23156 Correctly determine when cursor is over a resizable border within
23157 a nested frameset.
23158
23159 * rendering/RenderFrameSet.cpp:
23160 (WebCore::RenderFrameSet::canResizeRow):
23161 (WebCore::RenderFrameSet::canResizeColumn):
23162
simon.fraser@apple.comae77c412008-08-28 17:30:07 +0000231632008-08-28 Simon Fraser <simon.fraser@apple.com>
23164
23165 Reviewed by Eric Seidel
23166
23167 Add RuleTypes to CSSRule.idl for keyframes and keyframe rules.
23168 https://bugs.webkit.org/show_bug.cgi?id=20552
23169
23170 Test: animations/animation-css-rule-types.html
23171
23172 * css/CSSRule.idl:
23173
andersca@apple.com12399c32008-08-28 17:26:46 +0000231742008-08-28 Anders Carlsson <andersca@apple.com>
23175
23176 Reviewed by Kevin and Darin.
23177
23178 <rdar://problem/6182541>
23179 https://bugs.webkit.org/show_bug.cgi?id=20202
23180 Missing http status line from the http headers.
23181
23182 Add a status line to the header string.
23183
23184 * plugins/PluginStream.cpp:
23185 (WebCore::PluginStream::startStream):
23186
zecke@webkit.orgf1daa422008-08-28 15:56:01 +0000231872008-08-28 Holger Hans Peter Freyther <zecke@selfish.org>
23188
23189 Rubber-stamped by Darin Adler.
23190
23191 https://bugs.webkit.org/show_bug.cgi?id=17261
23192
23193 Make it possible to theme the default Url icon and enable this for
23194 the Qt port. To have a minimal usage of #ifdef in the code the setting
23195 of the icon was moved to a new method which comes in two flavors.
23196
23197 * loader/icon/IconDatabase.cpp:
23198 (WebCore::loadDefaultIconRecord): Load or set the default icon
23199 (WebCore::IconDatabase::defaultIcon):
23200
zecke@webkit.org1887dc82008-08-28 15:03:21 +0000232012008-08-28 Holger Hans Peter Freyther <zecke@selfish.org>
23202
23203 Unreviewed compile fix
23204
23205 * platform/graphics/qt/GraphicsContextQt.cpp: Remove redefinitions
23206
aroben@apple.comfacf5032008-08-28 13:34:01 +0000232072008-08-28 Adam Roben <aroben@apple.com>
23208
23209 Windows (and others?) build fix
23210
23211 * page/Chrome.cpp: Added a missing #include.
23212 (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): Fixed typo.
23213
eric@webkit.org22794fd2008-08-28 12:04:40 +0000232142008-08-27 Eric Seidel <eric@webkit.org>
23215
23216 Reviewed by Oliver Hunt.
23217
eric@webkit.org5f874e92008-08-28 12:04:55 +000023218 Qt and Cairo support from krit (and blind stab @ wx compile support)
23219 https://bugs.webkit.org/show_bug.cgi?id=20373
23220
23221 * platform/graphics/cairo/GraphicsContextCairo.cpp:
23222 (WebCore::GraphicsContext::fillPath):
23223 (WebCore::GraphicsContext::strokePath):
23224 (WebCore::GraphicsContext::drawPath):
23225 (WebCore::GraphicsContext::fillRect):
23226 (WebCore::GraphicsContext::setPlatformFillColor):
23227 (WebCore::GraphicsContext::setPlatformStrokeColor):
23228 (WebCore::GraphicsContext::setPlatformStrokeStyle):
23229 (WebCore::GraphicsContext::strokeRect):
23230 (WebCore::GraphicsContext::setImageInterpolationQuality):
23231 (WebCore::GraphicsContext::imageInterpolationQuality):
23232 (WebCore::GraphicsContext::setPlatformFillPattern):
23233 (WebCore::GraphicsContext::setPlatformStrokePattern):
23234 (WebCore::GraphicsContext::setPlatformFillGradient):
23235 (WebCore::GraphicsContext::setPlatformStrokeGradient):
23236 * platform/graphics/qt/GraphicsContextQt.cpp:
23237 (WebCore::GraphicsContext::fillPath):
23238 (WebCore::GraphicsContext::strokePath):
23239 (WebCore::GraphicsContext::fillRect):
23240 (WebCore::GraphicsContext::strokeRect):
23241 (WebCore::GraphicsContext::clipToImageBuffer):
23242 (WebCore::GraphicsContext::setPlatformFillPattern):
23243 (WebCore::GraphicsContext::setPlatformStrokePattern):
23244 (WebCore::GraphicsContext::setPlatformFillGradient):
23245 (WebCore::GraphicsContext::setPlatformStrokeGradient):
23246 (WebCore::GraphicsContext::setImageInterpolationQuality):
23247 (WebCore::GraphicsContext::imageInterpolationQuality):
23248 * platform/graphics/wx/GraphicsContextWx.cpp:
23249 (WebCore::GraphicsContext::clipToImageBuffer):
23250 (WebCore::GraphicsContext::setImageInterpolationQuality):
23251 (WebCore::GraphicsContext::imageInterpolationQuality):
23252 (WebCore::GraphicsContext::fillPath):
23253 (WebCore::GraphicsContext::strokePath):
23254 (WebCore::GraphicsContext::drawPath):
23255 (WebCore::GraphicsContext::fillRect):
23256 (WebCore::GraphicsContext::setPlatformFillPattern):
23257 (WebCore::GraphicsContext::setPlatformStrokePattern):
23258 (WebCore::GraphicsContext::setPlatformFillGradient):
23259
232602008-08-27 Eric Seidel <eric@webkit.org>
23261
23262 Reviewed by Oliver Hunt.
23263
eric@webkit.org22794fd2008-08-28 12:04:40 +000023264 Add stroke/fill Gradient and Pattern support to GraphicsContext and update <canvas> to use it.
23265 https://bugs.webkit.org/show_bug.cgi?id=20373
23266
23267 Changed pattern() to canvasPattern() on CanvasStyle to match canvasGradient()
23268
23269 Made Generator (aka Gradient) RefCounted so that GraphicsContext didn't
23270 have to store large Gradient objects in the GraphicsContextState
23271
23272 Made Pattern RefCounted for the same reason.
23273
23274 Many updates to GraphicsContext to support easier drawing with
23275 Patterns and Gradients.
23276
23277 * WebCore.xcodeproj/project.pbxproj: Add pre-existing GraphicsContextPrivate.h
23278 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
23279 (WebCore::toJS):
23280 * css/CSSGradientValue.cpp:
23281 (WebCore::CSSGradientValue::createGradient):
23282 * css/CSSGradientValue.h:
23283 * html/CanvasGradient.cpp:
23284 (WebCore::CanvasGradient::CanvasGradient):
23285 * html/CanvasGradient.h:
23286 (WebCore::CanvasGradient::gradient):
23287 (WebCore::CanvasGradient::addColorStop):
23288 (WebCore::CanvasGradient::getColor):
23289 * html/CanvasPattern.cpp:
23290 * html/CanvasPattern.h:
23291 (WebCore::CanvasPattern::pattern):
23292 (WebCore::CanvasPattern::originClean):
23293 * html/CanvasRenderingContext2D.cpp:
23294 (WebCore::CanvasRenderingContext2D::State::State):
23295 (WebCore::CanvasRenderingContext2D::setStrokeStyle):
23296 (WebCore::CanvasRenderingContext2D::setFillStyle):
23297 (WebCore::CanvasRenderingContext2D::fill):
23298 (WebCore::CanvasRenderingContext2D::stroke):
23299 (WebCore::CanvasRenderingContext2D::fillRect):
23300 (WebCore::CanvasRenderingContext2D::strokeRect):
23301 * html/CanvasRenderingContext2D.h:
23302 * html/CanvasStyle.cpp:
23303 (WebCore::CanvasStyle::applyStrokeColor):
23304 (WebCore::CanvasStyle::applyFillColor):
23305 * html/CanvasStyle.h:
23306 * platform/graphics/GeneratedImage.h:
23307 (WebCore::GeneratedImage::GeneratedImage):
23308 * platform/graphics/Generator.h:
23309 * platform/graphics/Gradient.h:
23310 (WebCore::Gradient::create):
23311 * platform/graphics/GraphicsContext.cpp:
23312 (WebCore::GraphicsContext::fillRule):
23313 (WebCore::GraphicsContext::setFillRule):
23314 (WebCore::GraphicsContext::setStrokePattern):
23315 (WebCore::GraphicsContext::setFillPattern):
23316 (WebCore::GraphicsContext::setStrokeGradient):
23317 (WebCore::GraphicsContext::setFillGradient):
23318 * platform/graphics/GraphicsContext.h:
23319 * platform/graphics/GraphicsContextPrivate.h:
23320 (WebCore::):
23321 (WebCore::GraphicsContextState::GraphicsContextState):
23322 * platform/graphics/GraphicsTypes.h:
23323 * platform/graphics/Path.h:
23324 * platform/graphics/Pattern.h:
23325 (WebCore::Pattern::create):
23326 (WebCore::Pattern::tileImage):
23327 * platform/graphics/cg/GraphicsContextCG.cpp:
23328 (WebCore::GraphicsContext::drawRect):
23329 (WebCore::GraphicsContext::drawEllipse):
23330 (WebCore::GraphicsContext::drawConvexPolygon):
23331 (WebCore::calculateDrawingMode):
23332 (WebCore::GraphicsContext::drawPath):
23333 (WebCore::fillPathWithFillRule):
23334 (WebCore::GraphicsContext::fillPath):
23335 (WebCore::GraphicsContext::strokePath):
23336 (WebCore::GraphicsContext::fillRect):
23337 (WebCore::GraphicsContext::fillRoundedRect):
23338 (WebCore::GraphicsContext::setPlatformStrokePattern):
23339 (WebCore::GraphicsContext::setPlatformFillPattern):
23340 (WebCore::GraphicsContext::setPlatformStrokeGradient):
23341 (WebCore::GraphicsContext::setPlatformFillGradient):
23342
eric@webkit.org70b099f2008-08-28 11:42:26 +0000233432008-08-20 Eric Seidel <eric@webkit.org>
23344
23345 Reviewed by Darin and Alexey.
23346
23347 Close a leak of PausedTimeouts if the JavaScriptDebugServer was destroyed
23348 with timeouts paused.
23349 https://bugs.webkit.org/show_bug.cgi?id=20469
23350
23351 I attempted to clean up the memory management of PausedTimeouts, I'm not
23352 sure the solution I came up with is "cleaner", but it's in some ways
23353 "safer", since it no longer uses raw pointers and manual new/delete.
23354
23355 This also now prevents CachedPage from needlessly creating Window
23356 objects when caching pages which didn't already have one. :)
23357
23358 I also made Chrome.cpp no longer depend on the JavaScript bindings
23359 (aka JSDOMWindowBase.h), since there was no real reason for it to.
23360
23361 * bindings/js/JSDOMWindowBase.cpp:
23362 (WebCore::JSDOMWindowBase::pauseTimeouts):
23363 (WebCore::JSDOMWindowBase::resumeTimeouts):
23364 * bindings/js/JSDOMWindowBase.h:
23365 * bindings/js/ScriptController.cpp:
23366 (WebCore::ScriptController::pauseTimeouts):
23367 (WebCore::ScriptController::resumeTimeouts):
23368 * bindings/js/ScriptController.h:
23369 * history/CachedPage.cpp:
23370 (WebCore::CachedPage::CachedPage):
23371 (WebCore::CachedPage::restore):
23372 * page/Chrome.cpp:
23373 (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer):
23374 (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
23375 * page/JavaScriptDebugServer.cpp:
23376 (WebCore::JavaScriptDebugServer::~JavaScriptDebugServer):
23377 (WebCore::JavaScriptDebugServer::setJavaScriptPaused):
23378
zecke@webkit.org7d0df9e2008-08-28 03:36:31 +0000233792008-08-27 Holger Hans Peter Freyther <zecke@selfish.org>
23380
23381 Unreviewed compile fix
23382
23383 Add the stub for the Qt port.
23384
23385 * WebCore.pro:
23386 * page/qt/AccessibilityObjectQt.cpp: Added.
23387 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
23388
zecke@webkit.orged5c2fe2008-08-28 02:15:20 +0000233892008-08-27 Alp Toker <alp@nuanti.com>
23390
23391 Reviewed by Eric.
23392
23393 https://bugs.webkit.org/show_bug.cgi?id=20551
zecke@webkit.org81540882008-08-28 02:18:20 +000023394 [GTK] search popup crash
23395
23396 * platform/gtk/SearchPopupMenuGtk.cpp:
23397 (WebCore::SearchPopupMenu::enabled):
23398 Fix a search popup crasher by disabling the history popup since we
23399 don't support this feature yet in the GTK+ port.
23400
234012008-08-27 Alp Toker <alp@nuanti.com>
23402
23403 Reviewed by Eric.
23404
23405 https://bugs.webkit.org/show_bug.cgi?id=20551
zecke@webkit.orged5c2fe2008-08-28 02:15:20 +000023406 [GTK] curl crashers
23407
23408 * platform/network/curl/ResourceHandleManager.cpp:
23409 (WebCore::ResourceHandleManager::startScheduledJobs):
23410 Remove the resource handle from the pending list before starting the
23411 job, not afterwards. Fixes crashers in the test suite.
23412
23413 Test: fast/dom/clientWidthAfterDocumentIsRemoved.html
23414 Test: fast/encoding/char-encoding.html
23415
eric@webkit.org712cb892008-08-28 00:26:15 +0000234162008-08-27 Dirk Schulze <vbs85@gmx.de>
23417
23418 Reviewed by eseidel.
23419
23420 Fix canvas drawImage to support composite operations.
23421 Composite had no effect on canvas elements like these:
23422 http://philip.html5.org/tests/canvas/suite/tests/index.2d.composite.canvas.html
23423
23424 [CAIRO] Canvas composite don't work on canvas-elements.
23425 https://bugs.webkit.org/show_bug.cgi?id=20548
23426
23427 * html/CanvasRenderingContext2D.cpp:
23428 (WebCore::CanvasRenderingContext2D::drawImage): pass the current composite operator to the drawImage call
23429
eric@webkit.org75c83a02008-08-28 00:04:59 +0000234302008-08-27 Mario Bensi <mbensi@pleyo.com>
23431
23432 Reviewed by Eric Seidel.
23433
23434 Fix the data content of an image with a base64.
23435
23436 * platform/network/curl/ResourceHandleManager.cpp:
23437 (WebCore::parseDataUrl): Remove the String and use only the data
23438 Vector because the data.latin1().data() convert the data content and
23439 the image test ( https://bugs.webkit.org/attachment.cgi?id=21726 ) is
23440 not drawn correctly.
23441
antti@apple.comf66a86b2008-08-27 23:59:50 +0000234422008-08-27 Antti Koivisto <antti@apple.com>
23443
23444 Reviewed by Eric Seidel.
23445
23446 Crash after OK in dialog box and reloading page in secure mode
23447 https://bugs.webkit.org/show_bug.cgi?id=20493
23448
23449 The new run loop spawned by a modal dialog causes a timer in the loader to run
23450 synchronously inside didFinishLoading() deleting "this" object.
23451
23452 Defer all WebCore timers when a modal dialog is up. They are not
23453 safe to execute.
23454
23455 * page/Chrome.cpp:
23456 (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer):
23457 (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
23458
simon.fraser@apple.com7dbde252008-08-27 23:16:36 +0000234592008-08-27 Chris Marrin <cmarrin@apple.com>
23460
23461 Reviewed by Dave Hyatt
23462
23463 Memory leaks when animating transforms
23464 https://bugs.webkit.org/show_bug.cgi?id=20532
23465
23466 * rendering/style/RenderStyle.cpp:
23467 (WebCore::ScaleTransformOperation::blend):
23468 (WebCore::RotateTransformOperation::blend):
23469 (WebCore::SkewTransformOperation::blend):
23470 (WebCore::TranslateTransformOperation::blend):
23471 (WebCore::MatrixTransformOperation::blend):
23472 * rendering/style/RenderStyle.h:
23473
timothy@apple.com79cb13a2008-08-27 22:03:24 +0000234742008-08-27 Timothy Hatcher <timothy@apple.com>
23475
23476 Add support for support for -webkit-appearance: default-button on the Mac platform.
23477
23478 <rdar://problem/6173530>
23479
23480 Reviewed by Dave Hyatt.
23481
23482 * WebCore.base.exp: Export new symbols.
23483 * platform/mac/WebCoreSystemInterface.h: Add wkAdvanceDefaultButtonPulseAnimation.
23484 * platform/mac/WebCoreSystemInterface.mm: Ditto.
23485 * rendering/RenderButton.cpp:
23486 (WebCore::RenderButton::RenderButton): Remove #if PLATFORM(WIN).
23487 (WebCore::RenderButton::setStyle): Ditto.
23488 * rendering/RenderButton.h: Ditto.
23489 * rendering/RenderThemeMac.mm:
23490 (WebCore::RenderThemeMac::adjustRepaintRect): Add a case for DefaultButtonAppearance.
23491 (WebCore::RenderThemeMac::setButtonCellState): Set the key equivalent to the return
23492 key if the button is default, otherwise reset the key equivalent.
23493 (WebCore::RenderThemeMac::paintButton): If the button is default call setDefaultButtonCell:
23494 on the window, then wkAdvanceDefaultButtonPulseAnimation before painting. Restore
23495 the window's previous default button cell when finished.
23496
hyatt@apple.comf0ec84d2008-08-27 21:18:15 +0000234972008-08-26 David Hyatt <hyatt@apple.com>
23498
23499 First cut at making form controls on OS X respect full page zoom. There are lots of bugs.
23500
23501 Reviewed by weinig
23502
23503 Added fast/forms/zoomed-controls.html
23504
23505 * css/CSSStyleSelector.cpp:
23506 (WebCore::addIntrinsicMargins):
23507 * rendering/RenderSlider.cpp:
23508 (WebCore::RenderSlider::calcPrefWidths):
23509 * rendering/RenderThemeMac.h:
23510 * rendering/RenderThemeMac.mm:
23511 (WebCore::RenderThemeMac::adjustRepaintRect):
23512 (WebCore::RenderThemeMac::inflateRect):
23513 (WebCore::RenderThemeMac::baselinePosition):
23514 (WebCore::RenderThemeMac::setControlSize):
23515 (WebCore::RenderThemeMac::sizeForFont):
23516 (WebCore::RenderThemeMac::sizeForSystemFont):
23517 (WebCore::RenderThemeMac::setFontFromControlSize):
23518 (WebCore::RenderThemeMac::paintCheckbox):
23519 (WebCore::RenderThemeMac::setCheckboxCellState):
23520 (WebCore::RenderThemeMac::paintRadio):
23521 (WebCore::RenderThemeMac::setRadioCellState):
23522 (WebCore::RenderThemeMac::setButtonPaddingFromControlSize):
23523 (WebCore::RenderThemeMac::adjustButtonStyle):
23524 (WebCore::RenderThemeMac::setButtonCellState):
23525 (WebCore::RenderThemeMac::paintButton):
23526 (WebCore::RenderThemeMac::paintMenuList):
23527 (WebCore::RenderThemeMac::paintMenuListButton):
23528 (WebCore::RenderThemeMac::popupInternalPaddingLeft):
23529 (WebCore::RenderThemeMac::popupInternalPaddingRight):
23530 (WebCore::RenderThemeMac::popupInternalPaddingTop):
23531 (WebCore::RenderThemeMac::popupInternalPaddingBottom):
23532 (WebCore::RenderThemeMac::setPopupButtonCellState):
23533 (WebCore::RenderThemeMac::paintSliderTrack):
23534 (WebCore::RenderThemeMac::paintSliderThumb):
23535 (WebCore::RenderThemeMac::adjustSliderThumbSize):
23536 (WebCore::RenderThemeMac::paintSearchField):
23537 (WebCore::RenderThemeMac::adjustSearchFieldStyle):
23538 (WebCore::RenderThemeMac::paintSearchFieldCancelButton):
23539 (WebCore::RenderThemeMac::paintSearchFieldResultsButton):
23540
beidson@apple.comd0793872008-08-27 19:59:55 +0000235412008-08-27 Brady Eidson <beidson@apple.com>
23542
23543 Reviewed by Anders
23544
23545 <rdar://problem/6134133> - Crash when loading large movie as a standalone document
23546
23547 We hand off these loads to Quicktime which manages and spools the data itself, but we also continued
23548 to load and buffer the data for the movie in WebCore. With large media files, this results in blowing
23549 away the virtual address space and a crash.
23550
23551 * loader/EmptyClients.h:
23552 (WebCore::EmptyFrameLoaderClient::pluginWillHandleLoadError):
23553 * loader/FrameLoaderClient.h: Added client method to get platform specific error for
23554 "plugin will handle load"
23555
23556 * loader/MediaDocument.cpp:
23557 (WebCore::MediaTokenizer::createDocumentStructure): Tell the MainResourceLoader to not buffer data,
23558 and cancel the WebCore-managed load
23559 (WebCore::MediaTokenizer::writeRawData):
23560 (WebCore::MediaTokenizer::finish):
23561
simon.fraser@apple.come74d6712008-08-27 18:19:55 +0000235622008-08-26 Simon Fraser <simon.fraser@apple.com>
23563
23564 Reviewed by Eric Seidel
23565
23566 Linear timing functions should have control points 0, 0, 1, 1.
23567 https://bugs.webkit.org/show_bug.cgi?id=20535
23568
23569 * css/CSSStyleSelector.cpp:
23570 (WebCore::CSSStyleSelector::mapAnimationTimingFunction):
23571 * rendering/style/RenderStyle.h:
23572
aroben@apple.com8cfb6c62008-08-27 14:52:17 +0000235732008-08-27 Adam Roben <aroben@apple.com>
23574
23575 Windows build fix
23576
23577 * WebCore.vcproj/WebCore.vcproj: Fix file extension.
23578
mrowe@apple.com37686d42008-09-04 00:10:39 +0000235792008-08-26 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.com33a556b2008-08-26 22:29:14 +000023580
cfleizach@apple.comc6ebe3d2008-08-26 22:43:22 +000023581 Reviewed by Beth Dakin.
23582
cfleizach@apple.com2a505f42008-08-26 22:56:03 +000023583 <rdar://problem/6069462> REGRESSION: webkit is returning flash objects as AXUnknown
23584
23585 Added platform-specific accessibilityIgnoreAttachment, which allows the platform
23586 to determine if an attachment is ignored through accessibility. Added equivalent
23587 methods in Gtk, Win and Mac
23588
23589 Test: accessibility/plugin.html
23590
23591 * GNUmakefile.am:
23592 * WebCore.vcproj/WebCore.vcproj:
23593 * WebCore.xcodeproj/project.pbxproj:
23594 * page/AccessibilityObject.h:
23595 * page/AccessibilityRenderObject.cpp:
23596 (WebCore::AccessibilityRenderObject::accessibilityIsIgnored):
23597 * page/gtk/AccessibilityObjectAtk.cpp: Added.
23598 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
23599 * page/mac/AccessibilityObjectMac.mm: Added.
23600 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
23601 * page/mac/AccessibilityObjectWrapper.h:
23602 * page/win/AccessibilityObjectWin.cpp: Added.
23603 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
23604
mrowe@apple.com37686d42008-09-04 00:10:39 +0000236052008-08-26 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.com2a505f42008-08-26 22:56:03 +000023606
23607 Reviewed by Beth Dakin.
23608
cfleizach@apple.comc6ebe3d2008-08-26 22:43:22 +000023609 <rdar://problem/5817770> can't bring up contextual menu for embedded objects in WebText
23610
23611 * page/mac/AccessibilityObjectWrapper.mm:
23612 (-[AccessibilityObjectWrapper accessibilityPerformShowMenuAction]):
23613 (-[AccessibilityObjectWrapper accessibilityShowContextMenu]):
23614
mrowe@apple.com37686d42008-09-04 00:10:39 +0000236152008-08-26 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.comc6ebe3d2008-08-26 22:43:22 +000023616
cfleizach@apple.com33a556b2008-08-26 22:29:14 +000023617 Reviewed by Darin Adler.
23618
23619 <rdar://problem/6176924> CrashTracer: [USER] 4 crashes in Safari at com.apple.WebCore: WebCore::RenderTableSection::numColumns
23620
23621 Tests: accessibility/table-notbody.html
23622
23623 * page/AccessibilityTable.cpp:
23624 (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
23625
weinig@apple.com33705852008-08-26 19:51:28 +0000236262008-08-26 Sam Weinig <sam@webkit.org>
23627
weinig@apple.comf6f553a2008-08-26 21:21:26 +000023628 Reviewed by Beth Dakin.
23629
23630 Fix typo.
23631
23632 * dom/DOMCoreException.h:
23633
236342008-08-26 Sam Weinig <sam@webkit.org>
23635
weinig@apple.com0f34f002008-08-26 19:56:54 +000023636 Reviewed by Oliver Hunt.
23637
23638 Fix https://bugs.webkit.org/show_bug.cgi?id=20479
23639 <rdar://problem/6167660>
23640 Take image redirects into account when tainting the canvas.
23641
23642 Test: http/tests/security/canvas-remote-read-redirect-to-remote-image.html
23643
23644 * html/CanvasRenderingContext2D.cpp:
23645 (WebCore::CanvasRenderingContext2D::drawImage):
23646 (WebCore::CanvasRenderingContext2D::drawImageFromRect):
23647
236482008-08-26 Sam Weinig <sam@webkit.org>
23649
weinig@apple.com33705852008-08-26 19:51:28 +000023650 Reviewed by Darin Adler.
23651
23652 Change canvas tainting logic to ask the image if it contains
23653 any resources outside of its own origin. Since there is no
23654 way to determine if SVG images contain any resources outside its
23655 origin, we always assume it does.
23656
23657 * html/CanvasRenderingContext2D.cpp:
23658 (WebCore::CanvasRenderingContext2D::drawImage):
23659 (WebCore::CanvasRenderingContext2D::drawImageFromRect):
23660 * platform/graphics/BitmapImage.h:
23661 (WebCore::BitmapImage::hasSingleSecurityOrigin):
23662 * platform/graphics/GeneratedImage.h:
23663 (WebCore::GeneratedImage::hasSingleSecurityOrigin):
23664 * platform/graphics/Image.h:
23665 (WebCore::Image::hasSingleSecurityOrigin):
23666 * platform/graphics/cg/PDFDocumentImage.h:
23667 (WebCore::PDFDocumentImage::hasSingleSecurityOrigin):
23668 * svg/graphics/SVGImage.h:
23669
britto@apple.com616ef6d2008-08-26 17:51:03 +0000236702008-08-26 Maxime Britto <britto@apple.com>
23671
23672 Reviewed by Adele.
23673
23674 <rdar://6159244> Pan-scrolling does not work on particular sites (starmagazine.com, nytimes.com)
23675 This patch fixes the issues and modify the behavior of the panscroll by allowing it to jump to a parent layer when it reaches the end of its scrollable area.
23676 This is matching the behavior of the mouse wheel when trying to scroll in a smaller layer of the page (div, textarea, ...) and when we reach the edge and keep scrolling then the whole page scrolls.
23677
23678 * page/EventHandler.cpp:
23679 (WebCore::EventHandler::updateAutoscrollRenderer): if we switch to the parent layer to do the scroll we want to change the renderer for the panning
23680 * page/EventHandler.h:
23681 * rendering/RenderLayer.cpp:
23682 (WebCore::RenderLayer::panScrollFromPoint): now calls the scrollByRecursively method when it has computed the xDelta and yDelta
23683 (WebCore::RenderLayer::scrollByRecursively): try to scroll the current layer by the xDelta and yDelta provided, if it can't it ask its parent layer to do so.
23684 * rendering/RenderLayer.h:
23685 * rendering/RenderObject.cpp:
23686 (WebCore::RenderObject::canBeProgramaticallyScrolled): a RenderObject must have a RenderLayer to be programatically scrolled
23687 (WebCore::RenderObject::autoscroll): No need to check for the layer anymore since we verify it's present in the upmentionned method
23688 (WebCore::RenderObject::panScroll): No need to check for the layer anymore too.
23689
jchaffraix@webkit.orge6915392008-08-26 10:27:33 +0000236902008-08-25 Julien Chaffraix <jchaffraix@webkit.org>
23691
darin@apple.com07c80c62008-09-05 18:15:43 +000023692 Reviewed by Darin Adler.
jchaffraix@webkit.orge6915392008-08-26 10:27:33 +000023693
23694 Bug 20247: setAttributeNode() does not work when attribute name has a capital letter in it
23695 https://bugs.webkit.org/show_bug.cgi?id=20247
23696
23697 <rdar://problem/6118218>
23698
23699 Add a boolean parameter to getAttributeItem to choose between case sensitive and case insensitive
23700 check. This keeps the behaviour for setAttribute / hasAttribute (case sensitive) and getAttribute
23701 (case insensitive for HTML elements).
23702
23703 Test: fast/dom/Element/getAttribute-check-case-sensitivity.html
23704
23705 * dom/Element.cpp:
23706 (WebCore::Element::getAttribute):
23707 * dom/NamedAttrMap.cpp:
23708 (WebCore::NamedAttrMap::getNamedItem):
23709 (WebCore::NamedAttrMap::getAttributeItem):
23710 * dom/NamedAttrMap.h:
23711
weinig@apple.comb4ce06e2008-08-26 01:52:51 +0000237122008-08-25 Sam Weinig <sam@webkit.org>
23713
weinig@apple.com8d3ea722008-08-26 04:19:07 +000023714 Reviewed by Oliver Hunt.
23715
23716 Fix for https://bugs.webkit.org/show_bug.cgi?id=20514
23717 <rdar://problem/6174096>
23718 Treat SVG images as dirty when drawing to a canvas.
23719
23720 Test: http/tests/security/canvas-remote-read-svg-image.html
23721
23722 * html/CanvasRenderingContext2D.cpp:
23723 (WebCore::CanvasRenderingContext2D::drawImage):
23724 (WebCore::CanvasRenderingContext2D::drawImageFromRect):
23725 * platform/graphics/Image.h:
23726 (WebCore::Image::isSVGImage):
23727 * svg/graphics/SVGImage.h:
23728 (WebCore::SVGImage::isSVGImage):
23729
237302008-08-25 Sam Weinig <sam@webkit.org>
23731
weinig@apple.comb4ce06e2008-08-26 01:52:51 +000023732 Reviewed by Mark Rowe.
23733
23734 Fix https://bugs.webkit.org/show_bug.cgi?id=20377
23735 Leak in XMLHttpRequest.
23736
23737 * xml/XMLHttpRequest.cpp:
23738 (WebCore::XMLHttpRequest::makeCrossSiteAccessRequestWithPreflight):
23739
beidson@apple.com46421212008-08-25 21:48:56 +0000237402008-08-25 Brady Eidson <beidson@apple.com>
23741
23742 Reviewed by Anders
23743
23744 Speculative fix for <rdar://problem/6173217>
23745
23746 Moves the "clearArchivedResources()" call to exactly where it used to be in the old version of WebArchive code.
23747 Also, adds a null check for m_documentLoader since DocumentLoader::stopLoading() can end up clearing it, rendering
23748 the first null check invalid.
23749
23750 * loader/FrameLoader.cpp:
23751 (WebCore::FrameLoader::stopAllLoaders):
23752
23753
kmccullough@apple.com7b85fbb2008-08-25 21:28:40 +0000237542008-08-25 Kevin McCullough <kmccullough@apple.com>
23755
23756 Reviewed by Tim.
23757
23758 <rdar://problem/6157711> Heavy/Tree view selector is not grayed out if
23759 there is no profile, can cause crash
23760
23761 * page/inspector/ProfilesPanel.js:
23762
dino@apple.com1baeea62008-08-25 21:06:21 +0000237632008-08-25 Dean Jackson <dino@apple.com>
23764
23765 Reviewed by Dave Hyatt
23766
23767 Make sure 'inherit' is handled by transition property.
23768 https://bugs.webkit.org/show_bug.cgi?id=20513
23769
23770 Test: transitions/inherit.html
23771 Test: transitions/inherit-other-props.html
23772
23773 * css/CSSStyleSelector.cpp:
23774 fix macro to check existence of list before getting size
23775
andersca@apple.com2866b8302008-08-25 20:56:21 +0000237762008-08-25 Anders Carlsson <andersca@apple.com>
23777
23778 Reviewed by Mark.
23779
23780 <rdar://problem/6149787> crash @ com.apple.JavaScriptCore: WTF::callOnMainThread + 37.
23781
23782 Initialize threading in the call to WebCoreObjCFinalizeOnMainThread. We currently assume
23783 (safely) that any class that needs finalization on the main thread will also need to be deallocated
23784 on the main thread, and calling initializeThreading from WebCoreObjCFinalizeOnMainThread instead of
23785 calling it from WebCoreObjCScheduleDeallocateOnMainThread seems safer.
23786
23787 * platform/mac/WebCoreObjCExtras.c:
23788 (WebCoreObjCFinalizeOnMainThread):
23789
antti@apple.com60381cb2008-08-25 20:41:11 +0000237902008-08-25 Antti Koivisto <antti@apple.com>
23791
23792 Reviewed by Dan Bernstein.
23793
23794 Rename CachedResource::referenced() to CachedResource::hasClients() to
23795 match previous ref() -> addClient() rename.
23796
23797 * loader/Cache.cpp:
23798 (WebCore::Cache::pruneLiveResources):
23799 (WebCore::Cache::pruneDeadResources):
23800 (WebCore::Cache::remove):
23801 (WebCore::Cache::getStatistics):
23802 (WebCore::Cache::dumpLRULists):
23803 * loader/CachedResource.cpp:
23804 (WebCore::CachedResource::addClient):
23805 (WebCore::CachedResource::removeClient):
23806 (WebCore::CachedResource::setDecodedSize):
23807 (WebCore::CachedResource::setEncodedSize):
23808 * loader/CachedResource.h:
23809 (WebCore::CachedResource::hasClients):
23810 (WebCore::CachedResource::canDelete):
23811
timothy@apple.com7d809242008-08-25 18:33:05 +0000238122008-08-25 Anthony Ricaud <rik24d@gmail.com>
23813
23814 Add a missing Inspector localized string for "other".
23815
23816 https://bugs.webkit.org/show_bug.cgi?id=20509
23817
23818 Reviewed by Tim Hatcher.
23819
23820 * English.lproj/localizedStrings.js:
23821
kmccullough@apple.com560f5fe2008-08-25 18:18:01 +0000238222008-08-22 Kevin McCullough <kmccullough@apple.com>
23823
23824 Reviewed by Geoff, Mark and Tim.
23825
23826 <rdar://problem/6150623> JSProfiler: It would be nice if the profiles
23827 in the console said what file and line number they came from
23828 - Lay the foundation for getting line numbers and other data from the
23829 JavaScript engine.
23830
23831 * ForwardingHeaders/VM: Added.
23832 * ForwardingHeaders/VM/Machine.h: Added.
23833 * page/Console.cpp: Gather the line number and file information when
23834 profileEnd has been called, but don't use it until didFinishProfiling is
23835 called. We won't need to wait once we remove the profiler "zombie" mode
23836 which this patch helps pave the foundation for.
23837 (WebCore::Console::Console):
23838 (WebCore::Console::profileEnd):
23839 (WebCore::Console::finishedProfiling):
23840 * page/Console.h:
23841 * page/InspectorController.cpp: Modify calls to
23842 addProfileMessageToConsole to satisfy the new arguments it takes.
23843 (WebCore::InspectorController::finishedProfiling):
23844 (WebCore::InspectorController::addProfile):
23845 (WebCore::InspectorController::addProfileMessageToConsole):
23846 (WebCore::InspectorController::finishedProfiling):
23847 * page/InspectorController.h:
23848
hausmann@webkit.orgf305df42008-08-25 10:06:53 +0000238492008-08-25 Holger Hans Peter Freyther <zecke@selfish.org>
23850
23851 Reviewed by Simon.
23852
23853 [inspector] Update the WebKit.qrc Qt resources file
23854 Catchup with the changes in the directory.
23855
23856 * page/inspector/WebKit.qrc:
23857
hausmann@webkit.org5f13af32008-08-25 07:10:22 +0000238582008-08-25 Dirk Schulze <vbs85@gmx.de>
23859
23860 Reviewed by Simon.
23861
23862 Transformed the radian to degree, to get rotate()
23863 in canvas work as expected.
23864
23865 [Qt] Canvas.rotate() doesn't work
23866 https://bugs.webkit.org/show_bug.cgi?id=20496
23867
23868 * platform/graphics/qt/GraphicsContextQt.cpp:
23869 (WebCore::GraphicsContext::rotate):
23870
sfalken@apple.com9d442862008-08-25 05:43:33 +0000238712008-08-24 Steve Falkenburg <sfalken@apple.com>
23872
23873 Add a "last chance" WM_TIMER to the Windows shared timer.
23874
23875 The last chance timer fires every 5 seconds to run any lost WM_TIMER based timers.
23876 Failure to fire a timer is fatal to the cross-platform Timer code, since it won't re-schedule
23877 timers if a timer with an earlier expiration is already pending. This results in no timers
23878 firing from that point on.
23879
23880 We lose WM_TIMER messages occasionally (in the neighborhood of 1 per hour) probably due to a
23881 buggy window message hook.
23882
23883 This timer will start when the first WM_TIMER is scheduled, and will
23884 fire every 5 seconds thereafter, causing any lost timers to be fired.
23885
23886 Found this via one of its symptoms: leaking WebFrames. The fix prevents timers from stalling
23887 and prevents the WebFrame leak.
23888
23889 Reviewed by Darin Adler, Geoff Garen.
23890
23891 * platform/win/SharedTimerWin.cpp:
23892 (WebCore::):
23893 (WebCore::TimerWindowWndProc):
23894 (WebCore::setSharedTimerFireTime):
23895
mitz@apple.com771fb752008-08-25 03:22:44 +0000238962008-08-24 Dan Bernstein <mitz@apple.com>
23897
23898 Reviewed by Darin Adler.
23899
23900 - fix <rdar://problem/6065547> REGRESSION (r34879): "Subject" in unread emails in Yahoo mail is not shown in bold
23901
23902 Test: fast/css/font-property-priority.html
23903
23904 * css/CSSParser.cpp:
23905 (WebCore::CSSParser::parseValue): Changed to pass the 'important' flag
23906 to the font-property-parsing functions.
23907 (WebCore::CSSParser::parseFontStyle): Added an 'important' argument and
23908 changed to use it rather than the m_important member.
23909 (WebCore::CSSParser::parseFontVariant): Ditto.
23910 (WebCore::CSSParser::parseFontWeight): Ditto.
23911 * css/CSSParser.h:
23912
timothy@apple.com4cea2632008-08-24 22:28:44 +0000239132008-08-24 Timothy Hatcher <timothy@apple.com>
23914
23915 Fixes a bug where the Inspector's UI would not animate or
23916 fully function because JavaScript timeouts, intervals and
23917 CSS animation timers where not firing while paused at a
23918 a breakpoint in the inspected page.
23919
23920 https://bugs.webkit.org/show_bug.cgi?id=20042
23921
23922 Reviewed by Darin Adler.
23923
23924 Test: manual-tests/inspector/forzen-ui-while-paused.html
23925
23926 * page/JavaScriptDebugServer.cpp:
23927 (WebCore::JavaScriptDebugServer::pauseIfNeeded):
23928 Add a call to TimerBase::fireTimersInNestedEventLoop before
23929 spinning the EventLoop.
23930
rwlbuis@webkit.org8a772442008-08-24 18:07:32 +0000239312008-08-24 Rob Buis <buis@kde.org>
23932
23933 Reviewed by Sam Weinig.
23934
23935 https://bugs.webkit.org/show_bug.cgi?id=20324
23936 A change in SVG Glyph wont show up
23937
23938 Invalidate the glyph cache when the d attribute is set.
23939
23940 Test: svg/custom/glyph-setting-d-attribute.svg
23941
23942 * svg/SVGGlyphElement.cpp:
23943 (WebCore::SVGGlyphElement::invalidateGlyphCache):
23944 (WebCore::SVGGlyphElement::parseMappedAttribute):
23945 (WebCore::SVGGlyphElement::insertedIntoDocument):
23946 (WebCore::SVGGlyphElement::removedFromDocument):
23947 * svg/SVGGlyphElement.h:
23948
mitz@apple.com5b2c3cc2008-08-24 09:18:39 +0000239492008-08-24 Dan Bernstein <mitz@apple.com>
23950
23951 Reviewed by Sam Weinig.
23952
23953 - fix https://bugs.webkit.org/show_bug.cgi?id=13864
23954 <rdar://problem/5451470> REGRESSION: Uninitialized value in RenderBlock::calcInlinePrefWidths()
23955
23956 * rendering/RenderText.cpp:
23957 (WebCore::RenderText::trimmedPrefWidths): Moved the assignment to
23958 beginWS and endWS before the early return to ensure that they are
23959 initialized in that case.
23960
cwzwarich@webkit.org53ddf172008-08-23 08:16:54 +0000239612008-08-23 Cameron Zwarich <cwzwarich@uwaterloo.ca>
23962
23963 Rubber-stamped by Mark Rowe.
23964
23965 Remove modelines.
23966
23967 * WebCore.pro:
23968 * bridge/testbindings.cpp:
23969 * dom/DocPtr.h:
23970 * loader/SubstituteData.h:
23971 * page/Chrome.cpp:
23972 * page/Chrome.h:
23973 * page/ChromeClient.h:
23974 * page/Frame.h:
23975 * page/FrameLoadRequest.h:
23976 * page/FrameTree.cpp:
23977 * page/FrameTree.h:
23978 * page/Page.h:
23979 * page/mac/ChromeMac.mm:
23980 * platform/network/HTTPHeaderMap.h:
23981 * platform/network/ResourceErrorBase.cpp:
23982 * platform/network/ResourceErrorBase.h:
23983 * platform/network/ResourceHandleInternal.h:
23984 * platform/network/ResourceRequestBase.cpp:
23985 * platform/network/ResourceRequestBase.h:
23986 * platform/network/ResourceResponseBase.cpp:
23987 * platform/network/ResourceResponseBase.h:
23988 * platform/network/cf/ResourceError.h:
23989 * platform/network/cf/ResourceRequest.h:
23990 * platform/network/cf/ResourceRequestCFNet.h:
23991 * platform/network/cf/ResourceResponse.h:
23992 * platform/network/cf/ResourceResponseCFNet.h:
23993 * platform/network/curl/ResourceError.h:
23994 * platform/network/curl/ResourceRequest.h:
23995 * platform/network/curl/ResourceResponse.h:
23996 * platform/network/mac/ResourceError.h:
23997 * platform/network/mac/ResourceErrorMac.mm:
23998 * platform/network/mac/ResourceRequest.h:
23999 * platform/network/mac/ResourceRequestMac.mm:
24000 * platform/network/mac/ResourceResponse.h:
24001 * platform/network/mac/ResourceResponseMac.mm:
24002 * platform/network/qt/ResourceError.h:
24003 * platform/network/qt/ResourceRequest.h:
24004 * platform/network/qt/ResourceResponse.h:
24005 * platform/network/soup/CookieJarSoup.cpp:
24006 * platform/network/soup/ResourceError.h:
24007 * platform/network/soup/ResourceRequest.h:
24008 * platform/network/soup/ResourceResponse.h:
24009
mitz@apple.com57a2f482008-08-23 07:16:41 +0000240102008-08-23 Dan Bernstein <mitz@apple.com>
24011
24012 Reviewed by Dave Hyatt.
24013
24014 - fix <rdar://problem/6065143> Reflowed image in first line of table doesn't affect baseline
24015
24016 Test: fast/table/vertical-align-baseline.html
24017
24018 * rendering/RenderTable.cpp:
24019 (WebCore::RenderTable::getBaselineOfFirstLineBox): Added. Returns the
24020 baseline of the first table row, if there is one, -1 otherwise.
24021 * rendering/RenderTable.h:
24022 * rendering/RenderTableCell.cpp:
24023 (WebCore::RenderTableCell::baselinePosition): Changed to follow the
24024 CSS2.1 definition of the baseline of a table cell.
24025 * rendering/RenderTableSection.cpp:
24026 (WebCore::RenderTableSection::getBaselineOfFirstLineBox): Added. Returns
24027 the baseline of the first row in the section.
24028 * rendering/RenderTableSection.h:
24029
jhoneycutt@apple.com88af18d2008-08-22 23:44:32 +0000240302008-08-18 Jon Honeycutt <jhoneycutt@apple.com>
24031
24032 Add SPI to make a Windows WebView transparent.
24033
24034 Reviewed by Dan Bernstein.
24035
24036 * platform/graphics/GraphicsContext.h: Add a parameter, hasAlpha, that
24037 determines whether the created context has an alpha channel.
24038 * platform/graphics/win/GraphicsContextCGWin.cpp:
24039 (WebCore::CGContextWithHDC):
24040
timothy@apple.comb63d1172008-08-22 18:39:42 +0000240412008-08-22 Timothy Hatcher <timothy@apple.com>
24042
timothy@apple.com964022d2008-08-22 20:35:20 +000024043 Rolls out r35834 because it caused a regression in the Inspector's
24044 Console where some expressions always threw a syntax error.
24045
24046 https://bugs.webkit.org/show_bug.cgi?id=20487
24047
24048 * page/inspector/Console.js:
24049 (Console.prototype._evalInInspectedWindow): Removes parenthesis
24050 around the expression.
24051
240522008-08-22 Timothy Hatcher <timothy@apple.com>
24053
timothy@apple.com056d4782008-08-22 18:39:52 +000024054 Makes getStyleProperty return a value for the overflow property
24055 when overflow-x and overflow-y are equal.
24056
24057 https://bugs.webkit.org/show_bug.cgi?id=20485
24058
24059 Reviewed by Dan Bernstein.
24060
24061 Test: fast/css/overflow-property.html
24062
24063 * css/CSSMutableStyleDeclaration.cpp:
24064 (WebCore::CSSMutableStyleDeclaration::getPropertyValue):
24065
240662008-08-22 Timothy Hatcher <timothy@apple.com>
24067
timothy@apple.comb63d1172008-08-22 18:39:42 +000024068 Fixes a bug where while editing in the Inspector the
24069 sidebar scroll position would jump to the top.
24070
24071 https://bugs.webkit.org/show_bug.cgi?id=20484
24072
24073 Reviewed by Darin Adler.
24074
24075 * page/inspector/treeoutline.js:
24076 (TreeOutline._removeChildren): Remove the offsetTop call that
24077 was forcing a layout, since layout causes scroll positions
24078 to be clamped to the new scrollHeight/Width. Layout will happen
24079 normally when needed.
24080
kevino@webkit.org8271c842008-08-22 16:25:52 +0000240812008-08-22 Kevin Ollivier <kevino@theolliviers.com>
24082
24083 wx build fix. Add AccessibilityTable sources.
24084
24085 * WebCoreSources.bkl:
24086
mitz@apple.com9befc872008-08-22 06:29:33 +0000240872008-08-21 Dan Bernstein <mitz@apple.com>
24088
24089 Reviewed by Jon Honeycutt and Alexey Proskuryakov.
24090
24091 - fix <rdar://problem/6162701> WebKit should correct Geeza Pro's font metrics
24092
24093 Test: platform/mac/fast/text/international/Geeza-Pro-vertical-metrics-adjustment.html
24094
24095 * platform/graphics/mac/SimpleFontDataMac.mm:
24096 (WebCore::SimpleFontData::platformInit): Add 8% to Geeza Pro's reported
24097 ascent and 100% to its reported descent.
24098
mrowe@apple.comac9b6a52008-08-22 02:07:54 +0000240992008-08-21 Kalle Vahlman <kalle.vahlman@movial.com>
24100
24101 Reviewed by Darin Adler.
24102
mrowe@apple.com22eaa172008-08-22 02:10:15 +000024103 https://bugs.webkit.org/show_bug.cgi?id=20267
mrowe@apple.comac9b6a52008-08-22 02:07:54 +000024104 [GTK] Crash on some pages due to a plugin
24105
24106 Fix handling of badly formatted and empty plugin mime descriptions
24107
24108 * plugins/gtk/PluginPackageGtk.cpp:
24109 (WebCore::PluginPackage::fetchInfo):
24110
mrowe@apple.com798b3432008-08-22 02:07:48 +0000241112008-08-21 Kevin Watters <kevinwatters@gmail.com>
24112
24113 Reviewed by Darin Adler.
24114
24115 Follow other ports (and IE) in ImageSourceWx.cpp never to return an
24116 animated GIF frame duration of less than 50ms.
24117
24118 * platform/graphics/wx/ImageSourceWx.cpp:
24119 (WebCore::ImageSource::frameDurationAtIndex):
24120
britto@apple.com8ed72772008-08-22 00:39:39 +0000241212008-08-21 Maxime Britto <britto@apple.com>
24122
24123 Reviewed by Kevin McCullough.
24124
24125 Test: fast/events/autoscroll-nonscrollable-iframe-in-scrollable-div.html
24126 https://bugs.webkit.org/show_bug.cgi?id=20451
24127
24128 rdar://problem/6166435 Inspector doesn't auto scroll when selecting text (20451)
24129 When we climb up the rendering tree looking for a scrollable renderer, we need to be able to jump outside of an iframe.
24130 This way we can see if what is embedding the iframe can be scrolled even if the iframe content can't.
24131
24132 * page/EventHandler.cpp:
24133 (WebCore::EventHandler::handleMouseDraggedEvent): when we reach the document node and it can't be scrolled we set the next parent as the document's owner element if it exists.
24134
24135 (WebCore::EventHandler::handleMousePressEvent): ditto
24136
timothy@apple.com5d492192008-08-21 23:54:01 +0000241372008-08-21 Anthony Ricaud <rik24d@gmail.com>
24138
24139 Small optimization for when the dividers in the Inspector's
24140 Resources panel are updated.
24141
24142 Reviewed by Tim Hatcher.
24143
24144 * page/inspector/ResourcesPanel.js:
24145 (WebInsector.ResourcesPanel.prototype._updateGraphDividersIfNeeded):
24146 Combind a for loop and clone the divider element.
24147
dino@apple.comaa75e4c2008-08-21 23:35:23 +0000241482008-08-21 Chris Marrin <cmarrin@apple.com>
24149
24150 Allow 0 (without units) for Time eg. duration
24151 Fix for https://bugs.webkit.org/show_bug.cgi?id=20467
24152
24153 Reviewed by Dave Hyatt.
24154
24155 Test: css1/units/zero-duration-without-units.html
24156
24157 * css/CSSParser.cpp:
24158 (WebCore::CSSParser::validUnit):
24159
timothy@apple.com29c12d02008-08-21 20:12:47 +0000241602008-08-21 Timothy Hatcher <timothy@apple.com>
24161
timothy@apple.comca11cd82008-08-21 20:13:12 +000024162 Make deleting all text while editing a DOM attribute in
24163 the Inspector delete the attribute. This also fixes
24164 an exception that would happen before.
24165
24166 https://bugs.webkit.org/show_bug.cgi?id=20472
24167
24168 Reviewed by Kevin McCullough.
24169
24170 * page/inspector/ElementsPanel.js:
24171 (WebInspector.DOMNodeTreeElement.prototype._attributeEditingCommitted):
24172 Don't check for hasAttributes on the parseElement, continuing
24173 through the function will correctly remove the attribute.
24174 If the parseElement is null, call _editingCancelled not
24175 editingCancelled, this fixes an exception.
24176
241772008-08-21 Timothy Hatcher <timothy@apple.com>
24178
timothy@apple.comde831cf2008-08-21 20:12:59 +000024179 Update the Inspector's Metrics pane when editing in
24180 the Styles pane. This makes sure the metrics shown
24181 always match what the Styles pane shows.
24182
24183 https://bugs.webkit.org/show_bug.cgi?id=20470
24184
24185 Reviewed by Kevin McCullough.
24186
24187 * page/inspector/ElementsPanel.js:
24188 (WebInspector.ElementsPanel): Add event listeners for
24189 the "style edited" and "style property toggled" events,
24190 so the Metrics pane is updated.
24191 (WebInspector.ElementsPanel.prototype._stylesPaneEdited):
24192 Update the Metrics pane.
24193 * page/inspector/StylesSidebarPane.js:
24194 (WebInspector.StylePropertyTreeElement.prototype.toggleEnabled):
24195 Dispatch the "style property toggled" event.
24196 (WebInspector.StylePropertyTreeElement.prototype.editingCancelled):
24197 Dispatch the "style edited" event when the CSS text is restored.
24198 (WebInspector.StylePropertyTreeElement.prototype.applyStyleText):
24199 Dispatch the "style edited" event.
24200
242012008-08-21 Timothy Hatcher <timothy@apple.com>
24202
timothy@apple.com29c12d02008-08-21 20:12:47 +000024203 Make the Inspector's Metrics sidebar pane editable.
24204
24205 https://bugs.webkit.org/show_bug.cgi?id=17218
24206 rdar://problem/5732818
24207
24208 Reviewed by Kevin McCullough.
24209
24210 * page/inspector/ElementsPanel.js:
24211 (WebInspector.ElementsPanel): Add an event listener for
24212 the "metrics edited" event, so the Styles pane is updated.
24213 * page/inspector/MetricsSidebarPane.js:
24214 (WebInspector.MetricsSidebarPane.prototype.update): Remember the node
24215 so future updates work. Add a double click event listener for the
24216 metric values to start editing.
24217 (WebInspector.MetricsSidebarPane.prototype.startEditing):
24218 Call WebInspector.startEditing with some context.
24219 (WebInspector.MetricsSidebarPane.prototype.editingCancelled):
24220 (WebInspector.MetricsSidebarPane.prototype.editingCommitted):
24221 Set the user input on the elements inline style. Fire the
24222 "metrics edited" event.
24223
sfalken@apple.com7e6e5392008-08-21 18:42:44 +0000242242008-08-21 Steve Falkenburg <sfalken@apple.com>
24225
24226 Fix a race condition in Windows timer code.
24227 Timer function could end up being called with a 0 timer, leading to a Windows exception.
24228
24229 Don't post a timer message if one is already pending.
24230
24231 Reviewed by Ada Chan.
24232
24233 * platform/win/SharedTimerWin.cpp:
24234 (WebCore::TimerWindowWndProc):
24235 (WebCore::clearTimer):
24236 (WebCore::queueTimerProc):
24237 (WebCore::setSharedTimerFireTime):
24238
timothy@apple.com8d15bcf2008-08-21 16:33:17 +0000242392008-08-21 Anthony Ricaud <rik24d@gmail.com>
24240
timothy@apple.com493212c72008-08-21 16:36:06 +000024241 After trying to add the expression, try again with quotes for
24242 easier edition.
24243
24244 https://bugs.webkit.org/show_bug.cgi?id=20466
24245
24246 Reviewed by Tim Hatcher.
24247
24248 * page/inspector/ObjectPropertiesSection.js: Added an
24249 evaluateExpression function.
24250
242512008-08-21 Anthony Ricaud <rik24d@gmail.com>
24252
timothy@apple.com8d15bcf2008-08-21 16:33:17 +000024253 Perform Inspector searches on search event to clear results when
24254 clicking the cross to empty it. Delete the lastQuery when the field
24255 is emptied in order to perform the search if exactly the same query
24256 is entered next.
24257
24258 https://bugs.webkit.org/show_bug.cgi?id=20462
24259
24260 Reviewed by Tim Hatcher.
24261
24262 * page/inspector/inspector.js:
24263
jmalonzo@webkit.orgdd470402008-08-21 11:22:51 +0000242642008-08-21 Marco Barisione <marco.barisione@collabora.co.uk>
24265
24266 Reviewed by Mark Rowe.
24267
24268 http://bugs.webkit.org/show_bug.cgi?id=19656
24269 [SOUP] The gio code should call didFail() instead of
24270 didFinishLoading() in case of error
24271
24272 In case of error call didFail() instead of didReceiveResponse() and
24273 didFinishLoading().
24274
24275 * platform/network/soup/ResourceHandleSoup.cpp:
24276 (WebCore::networkErrorForFile):
24277 (WebCore::readCallback):
24278 (WebCore::openCallback):
24279 (WebCore::queryInfoCallback):
24280
mrowe@apple.com72a95b12008-08-21 04:01:51 +0000242812008-08-20 Mark Rowe <mrowe@apple.com>
24282
mrowe@apple.com4e593f42008-08-21 06:52:42 +000024283 Reviewed by Jon Honeycutt.
24284
24285 Fix build failure.
24286
24287 * bridge/c/c_instance.cpp:
24288 (KJS::Bindings::CInstance::getPropertyNames): Declare count as uint32_t rather than unsigned
24289 as that is what NPEnumerationFunctionPtr is declared as accepting.
24290
242912008-08-20 Mark Rowe <mrowe@apple.com>
24292
mrowe@apple.com72a95b12008-08-21 04:01:51 +000024293 Reviewed by Dan Bernstein.
24294
24295 Build fix. Handle kCGInterpolationMedium in switch statements if it is available.
24296
24297 * platform/graphics/GraphicsContext.h:
24298 (WebCore::):
24299 * platform/graphics/cg/GraphicsContextCG.cpp:
24300 (WebCore::GraphicsContext::setImageInterpolationQuality):
24301 (WebCore::GraphicsContext::imageInterpolationQuality):
24302
mitz@apple.comaa938792008-08-21 00:33:29 +0000243032008-08-20 Dan Bernstein <mitz@apple.com>
24304
24305 Rubber-stamped by John Sullivan.
24306
24307 - rename shouldUpdateWhileHidden to shouldUpdateWhileOffscreen and
24308 rename related methods and variables accordingly.
24309
24310 * WebCore.base.exp:
24311 * page/FrameView.cpp:
24312 (WebCore::FrameViewPrivate::FrameViewPrivate):
24313 (WebCore::FrameView::shouldUpdateWhileOffscreen):
24314 (WebCore::FrameView::setShouldUpdateWhileOffscreen):
24315 * page/FrameView.h:
24316 * platform/ScrollView.h:
24317 * platform/mac/ScrollViewMac.mm:
24318 (WebCore::ScrollView::updateContents):
24319
beidson@apple.com2ace6b12008-08-21 00:13:12 +0000243202008-08-20 Brady Eidson <beidson@apple.com>
24321
24322 Reviewed by Mitzpettel
24323
24324 <rdar://problem/6163636> - Many images broken in Mail
24325
24326 This can be traced back to the preload scanner. With that change, CachedResources are created a lot
24327 sooner than before and confuse the WebArchive machinery.
24328
24329 When referencing WebArchive subresources directly through the WebKit API it is appropriate to ignore
24330 such CachedResources since they are placeholders and have not been submitted to the ResourceLoadDelegate
24331 machinery and nothing is known about where the data will eventually come from.
24332
24333 * loader/DocumentLoader.cpp:
24334 (WebCore::DocumentLoader::subresource): Ignore a CachedResource if its preloadResult is
24335 CachedResource::PreloadReferenced.
24336
zecke@webkit.orga8fa0e12008-08-20 22:50:39 +0000243372008-08-20 Holger Hans Peter Freyther <zecke@selfish.org>
24338
24339 Unreviewed compile fix
24340
24341 Catch up with the JSValue::type elimination.
24342
24343 * bridge/qt/qt_instance.cpp:
24344 (KJS::Bindings::QtRuntimeObjectImp::construct):
24345 (KJS::Bindings::QtInstance::defaultValue):
24346 * bridge/qt/qt_runtime.cpp:
24347 (KJS::Bindings::QtRuntimeConnectionMethod::call):
24348
mrowe@apple.com2d74ec92008-08-20 22:15:53 +0000243492008-08-20 Chris Teague <chris.teague@gmail.com>
24350
24351 Reviewed by Mark Rowe.
24352
24353 Fix https://bugs.webkit.org/show_bug.cgi?id=20449
24354 Bug 20449: Build fails if LOW_BANDWIDTH_DISPLAY is defined
24355
24356 * ChangeLog:
24357 * loader/FrameLoader.cpp:
24358 (WebCore::FrameLoader::switchOutLowBandwidthDisplayIfReady):
24359
simon.fraser@apple.combe1d24c2008-08-20 21:57:22 +0000243602008-08-20 Simon Fraser <simon.fraser@apple.com>
24361
24362 Reviewed by Dave Hyatt
24363
24364 getComputedStyle() for webkitTransform should return a transform
24365 that does not have the transform origin baked into it.
24366 https://bugs.webkit.org/show_bug.cgi?id=20464
24367
24368 Test: fast/css/getComputedStyle-transform.html
24369
24370 * css/CSSComputedStyleDeclaration.cpp:
24371 (WebCore::computedTransform):
24372 * rendering/style/RenderStyle.cpp:
24373 (WebCore::RenderStyle::applyTransform):
24374 * rendering/style/RenderStyle.h:
24375
andersca@apple.com021ce772008-08-20 21:04:12 +0000243762008-08-20 Josh Aas <joshmoz@gmail.com>
24377
24378 Reviewed and landed by Anders.
24379
24380 <rdar://problem/6163636>
24381 rename NPCocoaEvent's "event" struct to "data" (20446)
24382
24383 * bridge/npapi.h:
24384 (_NPCocoaEvent::):
24385
bdakin@apple.com699d13d2008-08-20 20:46:28 +0000243862008-08-20 Beth Dakin <bdakin@apple.com>
24387
darin@apple.com07c80c62008-09-05 18:15:43 +000024388 Reviewed by Darin Adler.
bdakin@apple.com699d13d2008-08-20 20:46:28 +000024389
24390 Fix for <rdar://problem/6145626>
24391 This patch fixes a number of remaining problems getting
24392 disconnected frames to work correctly with markAllMatchesForText()
24393 and findString(). Details inline.
24394
24395 This was a static helper function in Frame, but this patch requires
24396 the same functionality in Editor, so I just added it as a function
24397 on Node.
24398 * dom/Node.cpp:
24399 (WebCore::Node::isInShadowTree):
24400 * dom/Node.h:
24401
24402 * editing/Editor.cpp:
24403 (WebCore::Editor::insideVisibleArea): Returns false if
24404 excludeFromTextSearch() is true.
24405
24406 In a normal (non-disconnected) frame, findString returns a range of
24407 the document node if the text is not found in the frame. I changed
24408 firstVisibleRange and lastVisibleRange to match that behavior when
24409 the text is not found
24410 (WebCore::Editor::firstVisibleRange):
24411 (WebCore::Editor::lastVisibleRange):
24412
24413 Here are the bulk of the changes in the patch. A lot of text was
24414 not being found in disconnected frames because I failed to account
24415 for all of the possible problems associated with shadow trees. That
24416 is fixed here.
24417 (WebCore::Editor::nextVisibleRange):
24418 * editing/Editor.h:
24419
24420 excludeFromTextSearch() is new. It allows a WebKit client to mark a
24421 frame as not-text-searchable through SPI.
24422 * WebCore.base.exp:
24423 * page/Frame.cpp:
24424 (WebCore::Frame::excludeFromTextSearch):
24425 (WebCore::Frame::setExcludeFromTextSearch):
24426 (WebCore::FramePrivate::FramePrivate):
24427 * page/Frame.h:
24428 * page/FramePrivate.h:
24429
24430 (WebCore::Frame::findString):
24431 (WebCore::Frame::markAllMatchesForText): I kept running into an
24432 assertion failure in paining code because of the forced paint on
24433 empty visible rects.
24434
timothy@apple.com301befc2008-08-20 19:10:54 +0000244352008-08-20 Timothy Hatcher <timothy@apple.com>
24436
24437 Adds a positon box to the Inspector's Metrics sidebar
24438 pane. When an element is not statically positioned, there
24439 is now a position box that show top, right, bottom and
24440 left computed values.
24441
24442 Reviewed by Kevin McCullough.
24443
24444 * English.lproj/localizedStrings.js: Updated the strings.
24445 * page/inspector/MetricsSidebarPane.js:
24446 (WebInspector.MetricsSidebarPane.prototype.update):
24447 Renamed the boxPartValue function to createBoxPartElement
24448 and made it create the entire element. Made it understand
24449 how to get position style properties. Don't use the figure dash
24450 when 0px is used for positions, since the 0 is meaningful there.
24451 Instead use the figure dash when a position is auto.
24452 * page/inspector/inspector.css: Added a new rule for position.
24453
mrowe@apple.com37686d42008-09-04 00:10:39 +0000244542008-08-20 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.com2a5ecc02008-08-20 18:34:56 +000024455
24456 Reviewed by Beth Dakin
24457
24458 Qt build fix
24459
24460 * WebCore.pro:
24461
mitz@apple.comedaa9042008-08-20 18:28:07 +0000244622008-08-20 Dan Bernstein <mitz@apple.com>
24463
24464 Reviewed by Anders Carlsson.
24465
24466 - avoid using a deprecated NSScroller method on Leopard
24467
24468 * platform/mac/PlatformScrollBarMac.mm:
24469 (WebCore::PlatformScrollbar::updateThumbPosition):
24470 (WebCore::PlatformScrollbar::updateThumbProportion):
24471
jmalonzo@webkit.org6e0a3082008-08-20 11:40:31 +0000244722008-08-20 Jan Michael Alonzo <jmalonzo@webkit.org>
24473
24474 Reviewed by Oliver Hunt.
24475
24476 Gtk build fix
24477
24478 * GNUmakefile.am:
24479 * page/AccessibilityTable.cpp: Change nil to 0
24480 (WebCore::AccessibilityTable::cellForColumnAndRow):
24481
ap@webkit.org01aff702008-08-20 07:23:06 +0000244822008-08-19 Alexey Proskuryakov <ap@webkit.org>
24483
24484 Reviewed by Geoff Garen.
24485
24486 Bring back shared JSGlobalData and implicit locking, because too many clients rely on it.
24487
24488 * ForwardingHeaders/kjs/JSLock.h: Added.
24489 * WebCore.vcproj/WebCore.vcproj:
24490 * bindings/js/GCController.cpp:
24491 (WebCore::collect):
24492 (WebCore::GCController::gcTimerFired):
24493 (WebCore::GCController::garbageCollectNow):
24494 * bindings/js/JSCustomSQLStatementCallback.cpp:
24495 (WebCore::JSCustomSQLStatementCallback::handleEvent):
24496 * bindings/js/JSCustomSQLStatementErrorCallback.cpp:
24497 (WebCore::JSCustomSQLStatementErrorCallback::handleEvent):
24498 * bindings/js/JSCustomSQLTransactionCallback.cpp:
24499 (WebCore::JSCustomSQLTransactionCallback::handleEvent):
24500 * bindings/js/JSCustomSQLTransactionErrorCallback.cpp:
24501 (WebCore::JSCustomSQLTransactionErrorCallback::handleEvent):
24502 * bindings/js/JSCustomVoidCallback.cpp:
24503 (WebCore::JSCustomVoidCallback::handleEvent):
24504 * bindings/js/JSCustomXPathNSResolver.cpp:
24505 (WebCore::JSCustomXPathNSResolver::lookupNamespaceURI):
24506 * bindings/js/JSDOMWindowBase.cpp:
24507 (WebCore::DOMWindowTimer::~DOMWindowTimer):
24508 (WebCore::JSDOMWindowBase::clear):
24509 (WebCore::JSDOMWindowBase::timerFired):
24510 * bindings/js/JSEventCustom.cpp:
24511 (WebCore::toJS):
24512 * bindings/js/JSEventListener.cpp:
24513 (WebCore::JSAbstractEventListener::handleEvent):
24514 * bindings/js/JSNSResolver.cpp:
24515 (WebCore::JSNSResolver::lookupNamespaceURI):
24516 * bindings/js/JSNodeFilterCondition.cpp:
24517 (WebCore::JSNodeFilterCondition::acceptNode):
24518 * bindings/js/ScheduledAction.cpp:
24519 (WebCore::ScheduledAction::execute):
24520 * bindings/js/ScriptController.cpp:
24521 (WebCore::ScriptController::evaluate):
24522 (WebCore::ScriptController::clearWindowShell):
24523 (WebCore::ScriptController::createHTMLEventHandler):
24524 (WebCore::ScriptController::createSVGEventHandler):
24525 (WebCore::ScriptController::initScript):
24526 (WebCore::ScriptController::updateDocument):
24527 (WebCore::ScriptController::bindingRootObject):
24528 (WebCore::ScriptController::windowScriptNPObject):
24529 (WebCore::ScriptController::createScriptObjectForPluginElement):
24530 (WebCore::ScriptController::clearScriptObjects):
24531 * bindings/js/ScriptControllerMac.mm:
24532 (WebCore::ScriptController::windowScriptObject):
24533 * bindings/objc/WebScriptObject.mm:
24534 (_didExecute):
24535 (-[WebScriptObject callWebScriptMethod:withArguments:]):
24536 (-[WebScriptObject evaluateWebScript:]):
24537 (-[WebScriptObject setValue:forKey:]):
24538 (-[WebScriptObject valueForKey:]):
24539 (-[WebScriptObject removeWebScriptKey:]):
24540 (-[WebScriptObject stringRepresentation]):
24541 (-[WebScriptObject webScriptValueAtIndex:]):
24542 (-[WebScriptObject setWebScriptValueAtIndex:value:]):
24543 (+[WebScriptObject _convertValueToObjcValue:originRootObject:rootObject:]):
24544 * bridge/NP_jsobject.cpp:
24545 (_NPN_InvokeDefault):
24546 (_NPN_Invoke):
24547 (_NPN_Evaluate):
24548 (_NPN_GetProperty):
24549 (_NPN_SetProperty):
24550 (_NPN_RemoveProperty):
24551 (_NPN_HasProperty):
24552 (_NPN_HasMethod):
24553 (_NPN_Enumerate):
24554 * bridge/c/c_class.cpp:
24555 (KJS::Bindings::CClass::~CClass):
24556 (KJS::Bindings::CClass::methodsNamed):
24557 (KJS::Bindings::CClass::fieldNamed):
24558 * bridge/c/c_instance.cpp:
24559 (KJS::Bindings::CInstance::invokeMethod):
24560 (KJS::Bindings::CInstance::invokeDefaultMethod):
24561 (KJS::Bindings::CInstance::getPropertyNames):
24562 * bridge/c/c_runtime.cpp:
24563 (KJS::Bindings::CField::valueFromInstance):
24564 (KJS::Bindings::CField::setValueToInstance):
24565 * bridge/c/c_utility.cpp:
24566 (KJS::Bindings::convertValueToNPVariant):
24567 (KJS::Bindings::convertNPVariantToValue):
24568 * bridge/jni/jni_class.cpp:
24569 (JavaClass::JavaClass):
24570 (JavaClass::~JavaClass):
24571 * bridge/jni/jni_instance.cpp:
24572 (JavaInstance::stringValue):
24573 * bridge/jni/jni_jsobject.mm:
24574 (JavaJSObject::call):
24575 (JavaJSObject::eval):
24576 (JavaJSObject::getMember):
24577 (JavaJSObject::setMember):
24578 (JavaJSObject::removeMember):
24579 (JavaJSObject::getSlot):
24580 (JavaJSObject::setSlot):
24581 (JavaJSObject::toString):
24582 (JavaJSObject::convertValueToJObject):
24583 (JavaJSObject::convertJObjectToValue):
24584 * bridge/jni/jni_objc.mm:
24585 (KJS::Bindings::dispatchJNICall):
24586 * bridge/jni/jni_runtime.cpp:
24587 (appendClassName):
24588 (JavaMethod::signature):
24589 * bridge/jni/jni_runtime.h:
24590 (KJS::Bindings::JavaString::JavaString):
24591 (KJS::Bindings::JavaString::_commonInit):
24592 (KJS::Bindings::JavaString::~JavaString):
24593 (KJS::Bindings::JavaString::UTF8String):
24594 * bridge/jni/jni_utility.cpp:
24595 (KJS::Bindings::convertValueToJValue):
24596 * bridge/npruntime.cpp:
24597 (_NPN_GetStringIdentifier):
24598 * bridge/objc/objc_instance.mm:
24599 (ObjcInstance::moveGlobalExceptionToExecState):
24600 (ObjcInstance::invokeMethod):
24601 (ObjcInstance::invokeDefaultMethod):
24602 (ObjcInstance::setValueOfUndefinedField):
24603 (ObjcInstance::getValueOfUndefinedField):
24604 * bridge/objc/objc_runtime.mm:
24605 (ObjcField::valueFromInstance):
24606 (ObjcField::setValueToInstance):
24607 * bridge/objc/objc_utility.mm:
24608 (KJS::Bindings::convertValueToObjcValue):
24609 (KJS::Bindings::convertNSStringToString):
24610 (KJS::Bindings::convertObjcValueToValue):
24611 * bridge/qt/qt_instance.cpp:
24612 (KJS::Bindings::QtRuntimeObjectImp::removeFromCache):
24613 (KJS::Bindings::QtInstance::~QtInstance):
24614 (KJS::Bindings::QtInstance::getQtInstance):
24615 (KJS::Bindings::QtInstance::getRuntimeObject):
24616 * bridge/qt/qt_runtime.cpp:
24617 (KJS::Bindings::convertValueToQVariant):
24618 (KJS::Bindings::convertQVariantToValue):
24619 (KJS::Bindings::QtRuntimeMetaMethod::call):
24620 (KJS::Bindings::QtRuntimeConnectionMethod::call):
24621 (KJS::Bindings::QtConnectionObject::QtConnectionObject):
24622 (KJS::Bindings::QtConnectionObject::execute):
24623 * bridge/runtime.cpp:
24624 (KJS::Bindings::Instance::createRuntimeObject):
24625 * bridge/testbindings.cpp:
24626 (main):
24627 * bridge/testbindings.mm:
24628 (main):
24629 * bridge/testqtbindings.cpp:
24630 (main):
24631 * dom/Document.cpp:
24632 (WebCore::Document::~Document):
24633 * dom/Node.cpp:
24634 (WebCore::Node::setDocument):
24635 * history/CachedPage.cpp:
24636 (WebCore::CachedPage::CachedPage):
24637 (WebCore::CachedPage::restore):
24638 (WebCore::CachedPage::clear):
24639 * loader/FrameLoader.cpp:
24640 (WebCore::getString):
24641 * page/InspectorController.cpp:
24642 (WebCore::ConsoleMessage::ConsoleMessage):
24643 (WebCore::XMLHttpRequestResource::XMLHttpRequestResource):
24644 (WebCore::XMLHttpRequestResource::~XMLHttpRequestResource):
24645 (WebCore::getResourceDocumentNode):
24646 (WebCore::search):
24647 (WebCore::inspectedWindow):
24648 (WebCore::wrapCallback):
24649 (WebCore::currentCallFrame):
24650 (WebCore::profiles):
24651 (WebCore::InspectorController::focusNode):
24652 (WebCore::InspectorController::inspectedWindowScriptObjectCleared):
24653 (WebCore::InspectorController::addDatabaseScriptResource):
24654 (WebCore::InspectorController::addScriptProfile):
24655 * page/JavaScriptCallFrame.cpp:
24656 (WebCore::JavaScriptCallFrame::evaluate):
24657 * page/JavaScriptProfileNode.cpp:
24658 (WebCore::getTotalTime):
24659 (WebCore::getSelfTime):
24660 (WebCore::getTotalPercent):
24661 (WebCore::getSelfPercent):
24662 (WebCore::getNumberOfCalls):
24663 (WebCore::getChildren):
24664 (WebCore::getVisible):
24665 * page/Page.cpp:
24666 * page/mac/FrameMac.mm:
24667 * plugins/PluginView.cpp:
24668 (WebCore::PluginView::start):
24669 (WebCore::getString):
24670 (WebCore::PluginView::performRequest):
24671 (WebCore::PluginView::bindingInstance):
24672 * plugins/gtk/PluginViewGtk.cpp:
24673 (WebCore::PluginView::paint):
24674 (WebCore::PluginView::handleKeyboardEvent):
24675 (WebCore::PluginView::handleMouseEvent):
24676 (WebCore::PluginView::setNPWindowRect):
24677 (WebCore::PluginView::stop):
24678 (WebCore::PluginView::init):
24679 * plugins/qt/PluginViewQt.cpp:
24680 (WebCore::PluginView::setNPWindowRect):
24681 (WebCore::PluginView::stop):
24682 (WebCore::PluginView::init):
24683 * plugins/win/PluginViewWin.cpp:
24684 (WebCore::PluginView::dispatchNPEvent):
24685 (WebCore::PluginView::handleKeyboardEvent):
24686 (WebCore::PluginView::handleMouseEvent):
24687 (WebCore::PluginView::setNPWindowRect):
24688 (WebCore::PluginView::stop):
24689 * xml/XMLHttpRequest.cpp:
24690 (WebCore::XMLHttpRequest::clearResponse):
24691 (WebCore::XMLHttpRequest::didFinishLoading):
24692 (WebCore::XMLHttpRequest::didReceiveData):
24693
eric@webkit.orgbac93762008-08-19 23:33:07 +0000246942008-08-19 Eric Seidel <eric@webkit.org>
24695
24696 Reviewed by Geoff Garen.
24697
24698 Add the beginnings of Skia graphics support to WebCore
24699 as I try to begin the long process of un-forking the changes
24700 needed to WebCore to make Andriod's WebCore build.
24701
24702 I'll follow this up with actual *Skia.cpp files in a separate patch.
24703
24704 * platform/graphics/AffineTransform.h:
24705 * platform/graphics/FloatPoint.h:
24706 * platform/graphics/FloatRect.h:
24707 * platform/graphics/Gradient.h:
24708 * platform/graphics/GraphicsContext.h:
24709 * platform/graphics/Image.h:
24710 * platform/graphics/ImageBuffer.h:
24711 * platform/graphics/ImageSource.h:
24712 * platform/graphics/IntPoint.h:
24713 * platform/graphics/IntRect.h:
24714 * platform/graphics/Path.h:
24715 * platform/graphics/Pattern.h:
24716 * svg/graphics/SVGPaintServerPattern.h:
24717 * svg/graphics/SVGPaintServerSolid.h:
24718
sfalken@apple.com3f69b332008-08-19 22:34:37 +0000247192008-08-19 Steve Falkenburg <sfalken@apple.com>
24720
sfalken@apple.com45d22802008-08-19 22:46:31 +000024721 Fix Windows build more.
24722
24723 * WebCore.vcproj/WebCore.vcproj:
24724
247252008-08-19 Steve Falkenburg <sfalken@apple.com>
24726
sfalken@apple.com3f69b332008-08-19 22:34:37 +000024727 Fix Windows build.
24728
24729 * page/AccessibilityRenderObject.cpp:
24730 (WebCore::AccessibilityRenderObject::canSetFocusAttribute):
24731
mrowe@apple.com37686d42008-09-04 00:10:39 +0000247322008-08-19 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.com7c7b5f32008-08-19 22:05:37 +000024733
24734 Reviewed by Beth Dakin.
24735
24736 <rdar://problem/4003764> Expose tables as AXTables
24737
24738 Tests: accessibility/table-attributes.html
24739 accessibility/table-cell-spans.html
24740 accessibility/table-cells.html
24741 accessibility/table-detection.html
24742 accessibility/table-sections.html
24743 accessibility/table-with-rules.html
24744
24745 * WebCore.xcodeproj/project.pbxproj:
24746 * page/AXObjectCache.cpp:
24747 (WebCore::AXObjectCache::get):
24748 * page/AccessibilityObject.h:
24749 (WebCore::):
24750 (WebCore::AccessibilityObject::isDataTable):
24751 (WebCore::AccessibilityObject::isTableRow):
24752 (WebCore::AccessibilityObject::isTableColumn):
24753 (WebCore::AccessibilityObject::isTableCell):
24754 * page/AccessibilityRenderObject.cpp:
24755 (WebCore::AccessibilityRenderObject::canSetFocusAttribute):
24756 * page/AccessibilityTable.cpp: Added.
24757 (WebCore::AccessibilityTable::AccessibilityTable):
24758 (WebCore::AccessibilityTable::~AccessibilityTable):
24759 (WebCore::AccessibilityTable::create):
24760 (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
24761 (WebCore::AccessibilityTable::clearChildren):
24762 (WebCore::AccessibilityTable::addChildren):
24763 (WebCore::AccessibilityTable::headerContainer):
24764 (WebCore::AccessibilityTable::columns):
24765 (WebCore::AccessibilityTable::rows):
24766 (WebCore::AccessibilityTable::rowHeaders):
24767 (WebCore::AccessibilityTable::columnHeaders):
24768 (WebCore::AccessibilityTable::cells):
24769 (WebCore::AccessibilityTable::columnCount):
24770 (WebCore::AccessibilityTable::rowCount):
24771 (WebCore::AccessibilityTable::cellForColumnAndRow):
24772 (WebCore::AccessibilityTable::roleValue):
24773 (WebCore::AccessibilityTable::accessibilityIsIgnored):
24774 (WebCore::AccessibilityTable::title):
24775 (WebCore::AccessibilityTable::isDataTable):
24776 * page/AccessibilityTable.h: Added.
24777 * page/AccessibilityTableCell.cpp: Added.
24778 (WebCore::AccessibilityTableCell::AccessibilityTableCell):
24779 (WebCore::AccessibilityTableCell::~AccessibilityTableCell):
24780 (WebCore::AccessibilityTableCell::create):
24781 (WebCore::AccessibilityTableCell::accessibilityIsIgnored):
24782 (WebCore::AccessibilityTableCell::rowIndexRange):
24783 (WebCore::AccessibilityTableCell::columnIndexRange):
24784 * page/AccessibilityTableCell.h: Added.
24785 (WebCore::AccessibilityTableCell::isTableCell):
24786 (WebCore::AccessibilityTableCell::roleValue):
24787 * page/AccessibilityTableColumn.cpp: Added.
24788 (WebCore::AccessibilityTableColumn::AccessibilityTableColumn):
24789 (WebCore::AccessibilityTableColumn::~AccessibilityTableColumn):
24790 (WebCore::AccessibilityTableColumn::create):
24791 (WebCore::AccessibilityTableColumn::setParentTable):
24792 (WebCore::AccessibilityTableColumn::elementRect):
24793 (WebCore::AccessibilityTableColumn::size):
24794 (WebCore::AccessibilityTableColumn::children):
24795 (WebCore::AccessibilityTableColumn::headerObject):
24796 (WebCore::AccessibilityTableColumn::headerObjectForSection):
24797 (WebCore::AccessibilityTableColumn::addChildren):
24798 * page/AccessibilityTableColumn.h: Added.
24799 (WebCore::AccessibilityTableColumn::parentObject):
24800 (WebCore::AccessibilityTableColumn::roleValue):
24801 (WebCore::AccessibilityTableColumn::accessibilityIsIgnored):
24802 (WebCore::AccessibilityTableColumn::isTableColumn):
24803 (WebCore::AccessibilityTableColumn::setColumnIndex):
24804 (WebCore::AccessibilityTableColumn::columnIndex):
24805 * page/AccessibilityTableHeaderContainer.cpp: Added.
24806 (WebCore::AccessibilityTableHeaderContainer::AccessibilityTableHeaderContainer):
24807 (WebCore::AccessibilityTableHeaderContainer::~AccessibilityTableHeaderContainer):
24808 (WebCore::AccessibilityTableHeaderContainer::create):
24809 (WebCore::AccessibilityTableHeaderContainer::children):
24810 (WebCore::AccessibilityTableHeaderContainer::elementRect):
24811 (WebCore::AccessibilityTableHeaderContainer::size):
24812 (WebCore::AccessibilityTableHeaderContainer::addChildren):
24813 * page/AccessibilityTableHeaderContainer.h: Added.
24814 (WebCore::AccessibilityTableHeaderContainer::roleValue):
24815 (WebCore::AccessibilityTableHeaderContainer::setParentTable):
24816 (WebCore::AccessibilityTableHeaderContainer::parentObject):
24817 (WebCore::AccessibilityTableHeaderContainer::accessibilityIsIgnored):
24818 * page/AccessibilityTableRow.cpp: Added.
24819 (WebCore::AccessibilityTableRow::AccessibilityTableRow):
24820 (WebCore::AccessibilityTableRow::~AccessibilityTableRow):
24821 (WebCore::AccessibilityTableRow::create):
24822 (WebCore::AccessibilityTableRow::accessibilityIsIgnored):
24823 (WebCore::AccessibilityTableRow::headerObject):
24824 * page/AccessibilityTableRow.h: Added.
24825 (WebCore::AccessibilityTableRow::isTableRow):
24826 (WebCore::AccessibilityTableRow::roleValue):
24827 (WebCore::AccessibilityTableRow::setRowIndex):
24828 (WebCore::AccessibilityTableRow::rowIndex):
24829 * page/mac/AccessibilityObjectWrapper.mm:
24830 (-[AccessibilityObjectWrapper accessibilityAttributeNames]):
24831 (RoleEntry::):
24832 (-[AccessibilityObjectWrapper roleDescription]):
24833 (-[AccessibilityObjectWrapper accessibilityAttributeValue:]):
24834 (-[AccessibilityObjectWrapper accessibilityParameterizedAttributeNames]):
24835 (-[AccessibilityObjectWrapper accessibilityAttributeValue:forParameter:]):
24836
sfalken@apple.comb83d4692008-08-19 18:39:44 +0000248372008-08-19 Steve Falkenburg <sfalken@apple.com>
24838
24839 Build fix.
24840 Add buildfailed support to stop builds early (preventing inaccurate error messages).
24841 Add missing post-build rule to Release.
24842
24843 * WebCore.vcproj/QTMovieWin.vcproj:
24844
timothy@apple.comda3aa632008-08-19 18:33:02 +0000248452008-08-19 Keishi Hattori <casey.hattori@gmail.com>
24846
timothy@apple.com7d08c322008-08-19 18:33:27 +000024847 Added support for console.count in the inspector.
24848
24849 Reviewed by Geoff Garen.
24850
24851 * page/Console.cpp:
24852 (WebCore::Console::count):
24853 * page/Console.h:
24854 * page/Console.idl: Added console.count.
24855 * page/InspectorController.cpp:
24856 (WebCore::InspectorController::didCommitLoad): Clears m_counts.
24857 (WebCore::InspectorController::count): Updates the count number
24858 sing "title@source:line" as the identifier, and adds a
24859 message to the console.
24860 * page/InspectorController.h: Added m_counts.
24861
248622008-08-19 Keishi Hattori <casey.hattori@gmail.com>
24863
timothy@apple.comda3aa632008-08-19 18:33:02 +000024864 Clear console.time timers when changing page.
24865
24866 Reviewed by Geoff Garen.
24867
24868 * page/InspectorController.cpp:
24869 (WebCore::InspectorController::didCommitLoad):
24870
adele@apple.com1f2d7e02008-08-19 17:55:58 +0000248712008-08-19 Eric Carlson <eric.carlson@apple.com>
24872
24873 Reviewed by Adele.
24874
24875 Fix for <rdar://problem/6154695> Full-page movies flicker while playing
24876 https://bugs.webkit.org/show_bug.cgi?id=20404
24877
24878 Ignore setVisible() when visibility doesn't change.
24879
24880 * platform/graphics/mac/MediaPlayerPrivateQTKit.h:
24881 * platform/graphics/mac/MediaPlayerPrivateQTKit.mm:
24882 (WebCore::MediaPlayerPrivate::MediaPlayerPrivate):
24883 (WebCore::MediaPlayerPrivate::setVisible):
24884
timothy@apple.com9d9821a2008-08-19 17:00:26 +0000248852008-08-19 Timothy Hatcher <timothy@apple.com>
24886
timothy@apple.come058a792008-08-19 17:01:12 +000024887 Fixes a bug in the Profile view where switching sort order, then
24888 switching from heavy to tree mode would show the tree in the
24889 previous sort order.
24890
24891 https://bugs.webkit.org/show_bug.cgi?id=20441
24892
24893 Reviewed by Kevin McCullough.
24894
24895 * page/inspector/ProfileView.js:
24896 (WebInspector.ProfileView.prototype._changeView): Call _sortProfile
24897 on the next profile before assigning it to this.profile.
24898 (WebInspector.ProfileView.prototype._sortData): Call _sortProfile.
24899 (WebInspector.ProfileView.prototype._sortProfile): Moves from
24900 _sortData and takes a profile argument. If the profile passed in
24901 matches the this.profile, then call refresh.
24902
249032008-08-18 Timothy Hatcher <timothy@apple.com>
24904
timothy@apple.come525e402008-08-19 17:01:00 +000024905 Changed the default sort order now that heavy view is the default.
24906 Also fixes a bug where the heavy profile was not sorted at first.
24907
24908 https://bugs.webkit.org/show_bug.cgi?id=20440
24909
24910 Reviewed by Kevin McCullough.
24911
24912 * page/inspector/ProfileView.js:
24913 (WebInspector.ProfileView): Changed the default sort column. Also assign
24914 heavyProfile to profile, so the sortSelfTimeDescending call happens
24915 on the heavy profile before assigning to this.profile.
24916
249172008-08-18 Timothy Hatcher <timothy@apple.com>
24918
timothy@apple.comc9287f32008-08-19 17:00:36 +000024919 Add support for editing DOM properties and scope variables by double
24920 clicking a property to enter edit mode.
24921
24922 https://bugs.webkit.org/show_bug.cgi?id=20415
24923
24924 Reviewed by Kevin McCullough.
24925
24926 * page/inspector/ObjectPropertiesSection.js:
24927 (WebInspector.ObjectPropertiesSection): Set editable to true by default.
24928 (WebInspector.ObjectPropertiesSection.prototype.onpopulate):
24929 Factored out code into update, and calls update.
24930 (WebInspector.ObjectPropertiesSection.prototype.update): Moved from onpopulate.
24931 Call removeChildren since this method can be called multiple times now.
24932 (WebInspector.ObjectPropertyTreeElement): Pass an empty title, the title
24933 gets made later in onattach.
24934 (WebInspector.ObjectPropertyTreeElement.prototype.onpopulate): Don't return early
24935 if shouldRefreshChildren is true. Call removeChildren since this method can be
24936 called multiple times now.
24937 (WebInspector.ObjectPropertyTreeElement.prototype.ondblclick): Call startEditing.
24938 (WebInspector.ObjectPropertyTreeElement.prototype.onattach): Call update.
24939 (WebInspector.ObjectPropertyTreeElement.prototype.update): Update the title for
24940 this element (code moved from the constructor.)
24941 (WebInspector.ObjectPropertyTreeElement.prototype.updateSiblings): Recreate all
24942 sibling property elements.
24943 (WebInspector.ObjectPropertyTreeElement.prototype.startEditing): Call
24944 WebInspector.startEditing after rememebring some context.
24945 (WebInspector.ObjectPropertyTreeElement.prototype.editingEnded): Reset the scrollLeft
24946 for the list element, since it might have scrolled during editing.
24947 (WebInspector.ObjectPropertyTreeElement.prototype.editingCancelled): Call editingEnded
24948 then restore the state from the context. Then call update to restore the title.
24949 (WebInspector.ObjectPropertyTreeElement.prototype.editingCommitted): Call editingCancelled
24950 if the user input and the previous input are the same. Call editingEnded, then call applyExpression
24951 to commit the user input.
24952 (WebInspector.ObjectPropertyTreeElement.prototype.applyExpression): Evaluates the input expression
24953 and stores the result on the object for the property name of this element. If the expression is
24954 empty, delete the property and remove the tree element.
24955 * page/inspector/ScopeChainSidebarPane.js:
24956 (WebInspector.ScopeChainSidebarPane.prototype.update): Set the editInSelectedCallFrameWhenPaused
24957 property on each ObjectPropertiesSection.
24958 (WebInspector.ScopeVariableTreeElement.prototype.onattach): Call ObjectPropertyTreeElement's onattach
24959 since it is now implemented.
24960 * page/inspector/ScriptsPanel.js:
24961 (WebInspector.ScriptsPanel.prototype.evaluateInSelectedCallFrame): Added an updateInterface argument
24962 that defaults to true if omitted. It specifies whether to call update on the scope chain.
24963 * page/inspector/inspector.css: New styles.
24964 * page/inspector/treeoutline.js:
24965 (TreeElement.prototype._attach): Fixed an exception that fired when handling the shouldRefreshChildren
24966 change. The nextSibling would exist but have a _listItemNode that didn't match the new parent.
24967
249682008-08-18 Timothy Hatcher <timothy@apple.com>
24969
timothy@apple.com9d9821a2008-08-19 17:00:26 +000024970 Surround the expression to be evaluated in parenthesis so the
24971 result of the eval is the result of the whole expression not
24972 the last potential sub-expression. So evaluating {x: 123}
24973 will show the Object not 123.
24974
24975 https://bugs.webkit.org/show_bug.cgi?id=20428
24976
24977 Reviewed by Kevin McCullough.
24978
24979 * page/inspector/Console.js:
24980 (Console.prototype._evalInInspectedWindow): Add parenthesis
24981 around the expression. And add couple comments.
24982
kmccullough@apple.come8ac2f32008-08-19 16:38:06 +0000249832008-08-19 Kevin McCullough <kmccullough@apple.com>
24984
24985 Reviewed by Geoff.
24986
24987 -Implement a page() function to extract a common code pattern.
24988
24989 * WebCore.xcodeproj/project.pbxproj:
24990 * page/Console.cpp:
24991 (WebCore::Console::addMessage):
24992 (WebCore::Console::error):
24993 (WebCore::Console::info):
24994 (WebCore::Console::log):
24995 (WebCore::Console::dir):
24996 (WebCore::Console::assertCondition):
24997 (WebCore::Console::time):
24998 (WebCore::Console::timeEnd):
24999 (WebCore::Console::group):
25000 (WebCore::Console::groupEnd):
25001 (WebCore::Console::finishedProfiling):
25002 (WebCore::Console::warn):
25003 (WebCore::Console::framePage):
25004 * page/Console.h:
25005
darin@apple.com349e1eb2008-08-19 04:39:04 +0000250062008-08-12 Darin Adler <darin@apple.com>
25007
25008 Reviewed by Geoff.
25009
25010 - eliminate JSValue::type()
25011
25012 * bridge/c/c_instance.cpp:
25013 (KJS::Bindings::CInstance::defaultValue): Take PreferredPrimitiveType
25014 argument instead of JSType argument. Removed unneeded code to handle
25015 boolean, since that's never passed.
25016 * bridge/c/c_instance.h: Ditto.
25017
25018 * bridge/c/c_utility.cpp:
25019 (KJS::Bindings::convertValueToNPVariant): Use JSValue::is functions
25020 instead of JSValue::type(). Removed unneeded code to handle
25021 "unspecified".
25022
25023 * bridge/jni/jni_instance.cpp:
25024 (JavaInstance::defaultValue): Take PreferredPrimitiveType argument
25025 instead of JSType argument. Removed unneeded code to handle boolean.
25026 * bridge/jni/jni_instance.h: Ditto.
25027
25028 * bridge/jni/jni_jsobject.mm:
25029 (JavaJSObject::convertValueToJObject): Use JSValue::is functions
25030 instead of JSValue::type().
25031
25032 * bridge/objc/objc_instance.h: Take PreferredPrimitiveType argument
25033 instead of JSType argument. Removed unused argument.
25034 * bridge/objc/objc_instance.mm:
25035 (ObjcInstance::getValueOfUndefinedField): Removed unused argument.
25036 (ObjcInstance::defaultValue): Take PreferredPrimitiveType argument
25037 instead of JSType argument. Removed unneeded code to handle boolean
25038 and another dead code path for unknown types.
25039
25040 * bridge/objc/objc_runtime.h: Take PreferredPrimitiveType argument
25041 instead of JSType argument. Removed override of type() that caused
25042 the fallback object to return "UndefinedType" when there is no
25043 invokeUndefinedMethodFromWebScript:withArguments: method defined.
25044 That didn't accomplish much, since most checks for undefined don't
25045 ever call type().
25046 * bridge/objc/objc_runtime.mm:
25047 (ObjcFallbackObjectImp::defaultValue): Ditto.
25048
25049 * bridge/qt/qt_instance.cpp:
25050 (KJS::Bindings::QtInstance::defaultValue): Take PreferredPrimitiveType
25051 argument instead of JSType argument. Removed unneeded code to handle
25052 boolean.
25053 * bridge/qt/qt_instance.h: Ditto.
25054
25055 * bridge/runtime.h:
25056 (KJS::Bindings::Instance::getValueOfUndefinedField): Removed
25057 unsed argument.
25058 * bridge/runtime_object.cpp:
25059 (RuntimeObjectImp::defaultValue): Take PreferredPrimitiveType
25060 argument instead of JSType argument.
25061 * bridge/runtime_object.h: Ditto.
25062
britto@apple.comaf7f8382008-08-19 00:42:13 +0000250632008-08-18 Maxime Britto <britto@apple.com>
25064
25065 Reviewed by Adele.
25066
25067 <rdar://6157207> Mouse pointer does not change when new window is opened after pan-scrolling original window
25068 Related to the discussion from rdar://6102511 , we should disable every key event (except for the esc key which stops the panning).
25069 We shouldn't be able to create another window while we are in pan scrolling.
25070 Other browsers behaviors :
25071 FF3 : Most of the keys are disabled, there is no way to create another window while in panscroll mode
25072 IE7 : Keys are not disabled but stops immediately the panning.
25073 This patch matches FF3 behavior by disabling every key but the esc key.
25074
25075 * page/EventHandler.cpp:
25076 (WebCore::EventHandler::stopAutoscrollTimer): Change the cursor back to the regular arrow cursor when the pannning is stopped.
25077 (WebCore::EventHandler::keyEvent): When a key event is received while in panning or autoscroll we swallow the event early.
25078
mitz@apple.com12404d82008-08-19 00:20:38 +0000250792008-08-18 Dan Bernstein <mitz@apple.com>
25080
25081 Reviewed by Dave Hyatt.
25082
25083 - fix <rdar://problem/5862634> REGRESSION (3.1.1): In iChat, inline image not resizable past current size after another IM is received
25084
25085 Test: fast/replaced/max-width-percent.html
25086
25087 Added an includeMaxWidth boolean to RenderBox::calcReplaedWidth().
25088 When false, max-width is not factored into the
25089 calculation.
25090 Changed RenderReplaced and subclasses' calcPrefWidths() to call
25091 calcReplacedWidth(false) and then apply max-width only if it has a
25092 fixed, positive value.
25093
25094 * rendering/RenderBox.cpp:
25095 (WebCore::RenderBox::calcReplacedWidth):
25096 * rendering/RenderBox.h:
25097 * rendering/RenderImage.cpp:
25098 (WebCore::RenderImage::calcReplacedWidth):
25099 (WebCore::RenderImage::calcPrefWidths):
25100 * rendering/RenderImage.h:
25101 * rendering/RenderReplaced.cpp:
25102 (WebCore::RenderReplaced::calcPrefWidths):
25103 * rendering/RenderSVGRoot.cpp:
25104 (WebCore::RenderSVGRoot::calcPrefWidths):
25105 * rendering/RenderVideo.cpp:
25106 (WebCore::RenderVideo::calcReplacedWidth):
25107 (WebCore::RenderVideo::calcPrefWidths):
25108 * rendering/RenderVideo.h:
25109
mrowe@apple.comced88732008-08-18 22:47:28 +0000251102008-08-18 Daniel Macks <dmacks@netspace.org>
25111
25112 Reviewed by Mark Rowe.
25113
25114 https://bugs.webkit.org/show_bug.cgi?id=20410
25115 More portable/self-documenting replacement for SIZE_MAX.
25116
25117 * platform/network/curl/FormDataStreamCurl.cpp:
25118 (WebCore::FormDataStream::read):
25119
251202008-08-18 Simon Fraser <simon.fraser@apple.com>
simon.fraser@apple.com6040db32008-08-18 22:11:10 +000025121
25122 Reviewed by Dave Hyatt
25123
25124 Need to make sure we have an Animation in the AnimationList
25125 before setting the initial value.
25126 https://bugs.webkit.org/show_bug.cgi?id=20408
25127
25128 Test: fast/css/transition_shorthand_parsing.html
25129
25130 * css/CSSStyleSelector.cpp:
25131
kmccullough@apple.com64cb2fd2008-08-18 19:55:35 +0000251322008-08-18 Kevin McCullough <kmccullough@apple.com>
25133
kmccullough@apple.com707bd362008-08-18 20:21:57 +000025134 Reviewed by Tim.
25135
25136 <rdar://problem/6150593> JSProfiler: Empty profiles disappear when there
25137 is another profile.
25138
25139 * page/inspector/ProfilesPanel.js:
25140
251412008-08-18 Kevin McCullough <kmccullough@apple.com>
25142
kmccullough@apple.com64cb2fd2008-08-18 19:55:35 +000025143 Reviewed by Geoff.
25144
25145 <rdar://problem/6150642> REGRESSION: Closing the Web Inspector clears
25146 all console messages
25147
25148 * page/inspector/Console.js:
25149
jmalonzo@webkit.org5d1e0482008-08-18 11:20:11 +0000251502008-08-18 Dirk Schulze <vbs85@gmx.de>
25151
25152 Reviewed by Eric Seidel.
25153
25154 Fixed Canvas for Cairo. Stroke and fill colors didn't work after
25155 the canvas clean up.
25156
25157 https://bugs.webkit.org/show_bug.cgi?id=20405
25158
25159 * html/CanvasRenderingContext2D.cpp:
25160 (WebCore::CanvasRenderingContext2D::fill):
25161 (WebCore::CanvasRenderingContext2D::stroke):
25162 (WebCore::CanvasRenderingContext2D::fillRect):
25163
timothy@apple.comc5e1f8d2008-08-18 03:21:46 +0000251642008-08-17 Timothy Hatcher <timothy@apple.com>
25165
25166 Complete in scope variables in the Console when paused.
25167
25168 https://bugs.webkit.org/show_bug.cgi?id=19115
25169
25170 Reviewed by Geoffrey Garen.
25171
25172 * page/inspector/Console.js:
25173 (WebInspector.Console.prototype.completions): If the expressionString
25174 is null or empty and the debugger is paused, call variablesInScopeForSelectedCallFrame
25175 to get an object that declares all the in scope variables. That way
25176 "top level" expressions are completed.
25177 * page/inspector/ScriptsPanel.js:
25178 (WebInspector.ScriptsPanel.prototype.variablesInScopeForSelectedCallFrame):
25179 Return an object that has all the variables that are in scope for the
25180 selected call frame. The value of each property is just true.
25181 The return object is useful for quick lookups or auto completion.
25182
cwzwarich@webkit.orgac715282008-08-17 21:34:46 +0000251832008-08-17 Cameron Zwarich <cwzwarich@uwaterloo.ca>
25184
25185 Not reviewed.
25186
25187 Speculative Qt build fix.
25188
25189 * bridge/qt/qt_runtime.cpp:
25190 (KJS::Bindings::convertValueToQVariant):
25191 (KJS::Bindings::QtRuntimeMethod::QtRuntimeMethod):
25192
ggaren@apple.comfea43532008-08-17 20:23:49 +0000251932008-08-17 Geoffrey Garen <ggaren@apple.com>
25194
25195 Reviewed by Cameron Zwarich.
ggaren@apple.com6e53d0a2008-08-17 20:28:37 +000025196
25197 Updated project files to XCode 3.1.
25198
25199 * manual-tests/NPN_Invoke/NPN_Invoke.xcodeproj/project.pbxproj:
25200
252012008-08-17 Geoffrey Garen <ggaren@apple.com>
25202
25203 Reviewed by Cameron Zwarich.
ggaren@apple.comfea43532008-08-17 20:23:49 +000025204
25205 Made room for a free word in JSCell.
25206
25207 Changed JSDOMWindowBase to store its auxiliary data in a subclass of
25208 JSGlobalData, so the two could share a pointer.
25209
25210 Added a bunch of ASSERTs, to help catch over-sized objects.
25211
mrowe@apple.com13570292008-08-16 06:48:10 +0000252122008-08-15 Mark Rowe <mrowe@apple.com>
25213
mitz@apple.comb96c1b92008-08-17 03:28:52 +000025214 Reviewed by Dan Bernstein.
25215
25216 Disable dead code stripping in debug builds.
25217
25218 * Configurations/Base.xcconfig:
25219 * WebCore.xcodeproj/project.pbxproj:
25220
252212008-08-15 Mark Rowe <mrowe@apple.com>
25222
mrowe@apple.com13570292008-08-16 06:48:10 +000025223 Rubber-stamped by Geoff Garen.
25224
25225 <rdar://problem/6139914> Please include a _debug version of JavaScriptCore framework
25226
25227 * Configurations/Base.xcconfig: Factor out the debug-only settings so that they can shared
25228 between the Debug configuration and debug Production variant.
25229 * WebCore.xcodeproj/project.pbxproj: Enable the debug variant.
25230
antti@apple.coma05e8b02008-08-15 22:58:06 +0000252312008-08-15 Antti Koivisto <antti@apple.com>
25232
25233 Reviewed by Anders.
25234
25235 Don't start preloading body resources before the head is complete. This prevents
25236 body preloads from slowing down initial display when there is limited amount
25237 of bandwidth available.
25238
25239 Works by queuing up found body preloads to DocLoader and only issuing them
25240 after document has rendering.
25241
25242 With bandwidth capped to 300kbit/s this speeds up cnn.com initial display by ~25% or 5s
25243 without affecting complete load time.
25244
25245 * html/PreloadScanner.cpp:
25246 (WebCore::PreloadScanner::PreloadScanner):
25247 (WebCore::PreloadScanner::scanningBody):
25248 (WebCore::PreloadScanner::emitTag):
25249 (WebCore::PreloadScanner::emitCSSRule):
25250 * html/PreloadScanner.h:
25251 * loader/DocLoader.cpp:
25252 (WebCore::DocLoader::preload):
25253 (WebCore::DocLoader::checkForPendingPreloads):
25254 (WebCore::DocLoader::requestPreload):
25255 * loader/DocLoader.h:
25256 * loader/loader.cpp:
25257 (WebCore::Loader::Host::didFinishLoading):
25258 (WebCore::Loader::Host::didFail):
25259
adachan@apple.com94ac38d2008-08-15 21:08:40 +0000252602008-08-15 Ada Chan <adachan@apple.com>
25261
25262 Use item's computed style if the render style is 0 before falling back to the <select>'s style.
25263 This way style set on an <hr> within a <select> will be honored.
25264
25265 Reviewed by Dave Hyatt and Dan Bernstein.
25266
25267 * rendering/RenderMenuList.cpp:
25268 (WebCore::RenderMenuList::itemStyle):
25269
antti@apple.com9f7911472008-08-15 20:48:06 +0000252702008-08-15 Antti Koivisto <antti@apple.com>
25271
25272 Reviewed by Oliver.
25273
25274 Some loader performance tweaks:
25275 - Make stylesheets highest priority instead of scripts. We block script execution on stylesheets.
25276 Especially if a stylesheet @imports other stylesheets it is important to get them to the front of the queue
25277 to not delay rendering.
25278 - Issue the first resource load for a host immediately even if the resource is low priority. TCP connection setup
25279 can take long time when latency is high so it is good to get started early.
25280 - When the document is fully parsed and stylesheets have been loaded there is no need to keep managing the
25281 load queues. Issue remaining loads to the network layer.
25282
25283 * loader/loader.cpp:
25284 (WebCore::Loader::determinePriority):
25285 (WebCore::Loader::load):
25286 (WebCore::Loader::Host::servePendingRequests):
25287 * loader/loader.h:
25288
timothy@apple.com2d974c32008-08-15 18:35:39 +0000252892008-08-15 Timothy Hatcher <timothy@apple.com>
25290
25291 Detach the script debugger when the Web Inspector's window closes.
25292 This has always been the intended design, but never fully implemented.
25293
25294 https://bugs.webkit.org/show_bug.cgi?id=20402
25295
25296 Reviewed by Adam Roben.
25297
25298 * page/InspectorController.cpp:
25299 (WebCore::InspectorController::setWindowVisible): Call stopDebugging()
25300 if the window is no longer visible.
25301
hausmann@webkit.orgbb4b9142008-08-15 18:11:34 +0000253022008-08-15 HĂĄvard Wall <hwall@trolltech.com>
25303
25304 Reviewed by Simon.
25305
hausmann@webkit.org58144a72008-08-15 18:12:08 +000025306 Fixes: compile with QT_NO_CONTEXTMENU
25307
25308 * platform/qt/PlatformMouseEventQt.cpp:
25309 (WebCore::PlatformMouseEvent::PlatformMouseEvent):
25310 * platform/qt/PlatformScrollBarQt.cpp:
25311 (WebCore::PlatformScrollbar::handleMouseMoveEvent):
25312 (WebCore::PlatformScrollbar::handleContextMenuEvent):
25313
253142008-08-15 HĂĄvard Wall <hwall@trolltech.com>
25315
25316 Reviewed by Simon.
25317
hausmann@webkit.orgbb4b9142008-08-15 18:11:34 +000025318 Fixes: compile with QT_NO_WHEELEVENT
25319
25320 * platform/qt/WheelEventQt.cpp:
25321 (WebCore::PlatformWheelEvent::PlatformWheelEvent):
25322
timothy@apple.com4889e612008-08-15 17:06:14 +0000253232008-08-15 Keishi Hattori <casey.hattori@gmail.com>
25324
timothy@apple.comd64639c2008-08-15 17:48:36 +000025325 Fixed Bug 20210: Console groups are incorrect when closing and reopening the Inspector
25326
25327 https://bugs.webkit.org/show_bug.cgi?id=20210
25328
25329 Reviewed by Tim Hatcher.
25330
25331 * page/Console.cpp:
25332 (WebCore::Console::group):
25333 (WebCore::Console::groupEnd):
25334 * page/Console.h:
25335 (WebCore::): Removed GroupTitleMessageLevel. Added StartGroupMessaageLevel and EndGroupMessageLevel.
25336 * page/InspectorController.cpp:
25337 (WebCore::InspectorController::startGroup): Increments group level by
25338 one and adds console message with StartGroupMessaageLevel.
25339 (WebCore::InspectorController::endGroup): Decrements group level by one
25340 and adds console message with EndGroupMessaageLevel.
25341 * page/InspectorController.h:
25342 * page/inspector/Console.js:
25343 (WebInspector.Console.prototype.addMessage): Creates new ConsoleGroup
25344 if the message is StartGroupMessaageLevel.
25345 (WebInspector.ConsoleMessage.prototype.toMessageElement):
25346 (WebInspector.ConsoleGroup.prototype.addMessage):
25347 * page/inspector/inspector.js:
25348
253492008-08-15 Keishi Hattori <casey.hattori@gmail.com>
25350
timothy@apple.com7310b6a2008-08-15 17:35:22 +000025351 Adds support for console.dir to the Inspector
25352
25353 https://bugs.webkit.org/show_bug.cgi?id=19155
25354
25355 Reviewed by Tim Hatcher.
25356
25357 * bindings/js/JSConsoleCustom.cpp:
25358 (WebCore::JSConsole::dir):
25359 * page/Console.cpp:
25360 (WebCore::Console::dir):
25361 * page/Console.h: Added ObjectMessageLevel.
25362 * page/Console.idl: Added console.dir.
25363 * page/inspector/Console.js:
25364 (WebInspector.ConsoleMessage.prototypet.toMessageElement): Creates an
25365 ObjectPropertiesSection if the MessageLevel is Object.
25366 * page/inspector/ObjectPropertiesSection.js: "in" operator can't be
25367 used on primitive data types.
25368 * page/inspector/inspector.css:
25369
253702008-08-15 Keishi Hattori <casey.hattori@gmail.com>
25371
timothy@apple.com4889e612008-08-15 17:06:14 +000025372 Adds support for clear() in the Inspector console.
25373
25374 https://bugs.webkit.org/show_bug.cgi?id=19873
25375
25376 Reviewed by Tim Hatcher.
25377
25378 * page/inspector/Console.js:
25379
timothy@apple.com12c5b5d2008-08-15 17:02:44 +0000253802008-08-15 Anthony Ricaud <rik24d@gmail.com>
25381
25382 Cmd-F on Mac or Ctrl-F on other platforms now focus the search field.
25383
25384 Platform distinction and modifier key matching adjusted
25385 by Daniel Jalkut <jalkut@red-sweater.com>
25386
25387 Bug 16313: text search (find) keybindings should work in the Web Inspector
25388 https://bugs.webkit.org/show_bug.cgi?id=16313
25389
25390 Reviewed by Tim Hatcher.
25391
25392 * page/inspector/inspector.js: Added a case for the F key
25393
timothy@apple.coma5ba4392008-08-15 16:50:26 +0000253942008-08-15 Keishi Hattori <casey.hattori@gmail.com>
25395
25396 Fix for error when the string doesn't contain a webkit-profile link.
25397
25398 https://bugs.webkit.org/show_bug.cgi?id=20399
25399
25400 Reviewed by Tim Hatcher.
25401
25402 * page/inspector/inspector.js:
25403
timothy@apple.com895b2652008-08-15 16:33:27 +0000254042008-08-15 Timothy Hatcher <timothy@apple.com>
25405
25406 Fixes two bugs where JavaScript could be executed from the page
25407 while the debugger is paused.
25408
25409 The first issue was JSLazyEventListener not checking the paused
25410 state before parsing the code.
25411
25412 The second issue was with the PageGroup version of
25413 JavaScriptDebugServer::setJavaScriptPaused always passing false
25414 to the Page version of JavaScriptDebugServer::setJavaScriptPaused,
25415 and not the paused argument.
25416
25417 https://bugs.webkit.org/show_bug.cgi?id=20284
25418
25419 Reviewed by Adam Roben.
25420
25421 * bindings/js/JSEventListener.cpp:
25422 (WebCore::JSLazyEventListener::parseCode): Check the paused
25423 state of the ScriptController. Return early if paused.
25424 * manual-tests/inspector/debugger-execution-while-paused.html: Added.
25425 * page/JavaScriptDebugServer.cpp:
25426 (WebCore::JavaScriptDebugServer::setJavaScriptPaused):
25427 Pass the paused argument to the Page version of setJavaScriptPaused.
25428
ap@webkit.orgbe495d32008-08-15 07:43:48 +0000254292008-08-15 Alexey Proskuryakov <ap@webkit.org>
25430
25431 Reviewed by Geoff Garen.
25432
25433 JSStringRef is created context-free, but can get linked to one via an identifier table,
25434 breaking an implicit API contract.
25435
25436 * page/InspectorController.cpp:
25437 (WebCore::jsStringRef):
25438 (WebCore::InspectorController::didParseSource):
25439 (WebCore::InspectorController::failedToParseSource):
25440 * page/JavaScriptProfile.cpp:
25441 (WebCore::getTitleCallback):
25442 Updated for JavaScriptCore changes.
25443
kevino@webkit.org8fe09ff2008-08-15 05:10:57 +0000254442008-08-14 Kevin Ollivier <kevino@theolliviers.com>
25445
25446 wx !USE(WXGC) build fix. This is necessary until we find a way to replace GDI with
25447 an alternative that performs reasonably well. (GDI+ is too slow in many cases.)
25448
25449 * platform/graphics/AffineTransform.h:
25450
adele@apple.com2b2e2f82008-08-15 00:53:36 +0000254512008-08-14 Eric Carlson <eric.carlson@apple.com>
25452
25453 Reviewed by Adele.
25454
25455 Fix for https://bugs.webkit.org/show_bug.cgi?id=20388
25456 <video> elements on Windows never becomes visible when a page is restored from the cache
25457
25458 Always pass "set" calls down to MediaPlayerPrivate instead of only when the
25459 value is different from the cached value. Let the implementation decide when
25460 to avoid work because nothing has changed.
25461
25462 * platform/graphics/MediaPlayer.cpp:
25463 (WebCore::MediaPlayer::setVolume):
25464 (WebCore::MediaPlayer::setRate):
25465 (WebCore::MediaPlayer::setRect):
25466 (WebCore::MediaPlayer::setVisible):
25467
timothy@apple.comda810f42008-08-14 23:57:14 +0000254682008-08-14 Keishi Hattori <casey.hattori@gmail.com>
25469
25470 Make Firebug command line API respect predefined variables.
25471
timothy@apple.com90751f02008-08-14 23:58:19 +000025472 https://bugs.webkit.org/show_bug.cgi?id=20385
25473
timothy@apple.comda810f42008-08-14 23:57:14 +000025474 Reviewed by Tim Hatcher.
25475
25476 * page/inspector/Console.js:
25477
weinig@apple.com4b51d002008-08-14 23:33:22 +0000254782008-08-14 Sam Weinig <sam@webkit.org>
25479
25480 Reviewed by Geoffrey Garen and Timothy Hatcher.
25481
25482 Allow programatically setting the HTMLTokenizers time delay and chunk size
25483 which are used for determining how aggressively we yield.
25484
25485 * WebCore.base.exp:
25486 * html/HTMLTokenizer.cpp:
25487 (WebCore::HTMLTokenizer::begin):
25488 (WebCore::HTMLTokenizer::continueProcessing):
25489 * html/HTMLTokenizer.h:
25490 * page/Page.cpp:
25491 (WebCore::Page::Page):
25492 (WebCore::Page::setCustomHTMLTokenizerTimeDelay):
25493 (WebCore::Page::setCustomHTMLTokenizerChunkSize):
25494 * page/Page.h:
25495 (WebCore::Page::hasCustomHTMLTokenizerTimeDelay):
25496 (WebCore::Page::customHTMLTokenizerTimeDelay):
25497 (WebCore::Page::hasCustomHTMLTokenizerChunkSize):
25498 (WebCore::Page::customHTMLTokenizerChunkSize):
25499
eric@webkit.org89613d22008-08-14 23:19:17 +0000255002008-08-14 Eric Seidel <eric@webkit.org>
25501
eric@webkit.org7e897c32008-08-14 23:20:00 +000025502 Reviewed by Beth.
25503
25504 Move us one step closer to cross-platform svg/graphics code
25505
25506 * WebCore.xcodeproj/project.pbxproj:
25507 * html/CanvasStyle.cpp:
25508 * platform/graphics/Color.cpp:
25509 (WebCore::colorWithOverrideAlpha):
25510 * platform/graphics/Color.h:
25511 * svg/graphics/cg/CgSupport.cpp:
25512 (WebCore::applyStrokeStyleToContext):
25513 (WebCore::strokeBoundingBox):
25514 * svg/graphics/cg/SVGPaintServerSolidCg.cpp:
25515 (WebCore::SVGPaintServerSolid::setup):
25516
255172008-08-14 Eric Seidel <eric@webkit.org>
25518
eric@webkit.org4f490652008-08-14 23:19:31 +000025519 Reviewed by Alexey.
25520
eric@webkit.org73fa9d12008-08-14 23:19:44 +000025521 Remove un-need includes from HTMLCanvas and use the
25522 Gradient platform abstraction in one place in CanvasStyle
25523
25524 * html/CanvasRenderingContext2D.cpp:
25525 (WebCore::CanvasRenderingContext2D::fillRect):
25526 * html/CanvasStyle.cpp:
25527 * html/HTMLCanvasElement.cpp:
25528
255292008-08-14 Eric Seidel <eric@webkit.org>
25530
25531 Reviewed by Alexey.
25532
eric@webkit.org4f490652008-08-14 23:19:31 +000025533 Clean up GlyphBuffer.h, removing more #ifdefs
25534
25535 * platform/graphics/GlyphBuffer.h:
25536 (WebCore::GlyphBuffer::glyphAt):
25537 (WebCore::GlyphBuffer::advanceAt):
25538 (WebCore::GlyphBuffer::add):
25539
255402008-08-14 Eric Seidel <eric@webkit.org>
25541
eric@webkit.org89613d22008-08-14 23:19:17 +000025542 Reviewed by Sam.
25543
25544 Clean up AffineTransform.h, removing #ifdefs
25545
25546 * platform/graphics/AffineTransform.h:
25547 * platform/graphics/cairo/AffineTransformCairo.cpp:
25548 * platform/graphics/cg/AffineTransformCG.cpp:
25549 * platform/graphics/qt/AffineTransformQt.cpp:
25550 * platform/graphics/wx/AffineTransformWx.cpp:
25551
mitz@apple.com551d6252008-08-14 23:08:09 +0000255522008-08-14 Dan Bernstein <mitz@apple.com>
25553
mitz@apple.com94c1a7d2008-08-14 23:12:34 +000025554 - fix non-CG builds by adding an ImageSource::frameSizeAtIndex() that returns size().
25555
25556 * platform/graphics/cairo/ImageSourceCairo.cpp:
25557 (WebCore::ImageSource::frameSizeAtIndex):
25558 * platform/graphics/qt/ImageSourceQt.cpp:
25559 (WebCore::ImageSource::frameSizeAtIndex):
25560 * platform/graphics/wx/ImageSourceWx.cpp:
25561 (WebCore::ImageSource::frameSizeAtIndex):
25562
255632008-08-14 Dan Bernstein <mitz@apple.com>
25564
mitz@apple.com551d6252008-08-14 23:08:09 +000025565 Reviewed by Brady Eidson.
25566
25567 - fix <rdar://problem/5993323> REGRESSION (r34210): Apple.com favicon appears stretched/clipped
25568
25569 * platform/graphics/BitmapImage.cpp:
25570 (WebCore::BitmapImage::BitmapImage): Added initialization of
25571 m_hasUniformFrameSize.
25572 (WebCore::BitmapImage::cacheFrame): Added code to get the size of the
25573 cached frame for use in decoded size computation and for setting
25574 m_hasUniformFrameSize.
25575 (WebCore::BitmapImage::currentFrameSize): Added.
25576 (WebCore::BitmapImage::dataChanged): Added code to reset
25577 m_hasUniformFrameSize.
25578 * platform/graphics/BitmapImage.h: Added currentFrameSize() and
25579 m_hasUniformFrameSize.
25580 * platform/graphics/ImageSource.h: Added frameSizeAtIndex().
25581 * platform/graphics/cg/ImageCG.cpp:
25582 (WebCore::BitmapImage::draw): Changed to use currentFrameSize(). This
25583 fixes the bug, which resulted from assuming that the frame being drawn
25584 was the same size as the first frame.
25585 * platform/graphics/cg/ImageSourceCG.cpp:
25586 (WebCore::ImageSource::frameSizeAtIndex): Renamed size() to this and
25587 changed to get the size of the frame at the given index.
25588 (WebCore::ImageSource::size): Added. Returns frameSizeAtIndex(0).
25589
simon.fraser@apple.com50954e52008-08-14 23:04:41 +0000255902008-08-13 Simon Fraser <simon.fraser@apple.com>
25591
25592 Reviewed by Eric Seidel
25593
25594 Fix @font-face inside @media rule crash.
25595 https://bugs.webkit.org/show_bug.cgi?id=20367
25596
25597 Test: fast/css/font-face-in-media-rule.html
25598
25599 * css/CSSStyleSelector.cpp:
25600 (WebCore::CSSRuleSet::addRulesFromSheet):
25601
kevino@webkit.org141c4602008-08-14 22:52:55 +0000256022008-08-14 Kevin Ollivier <kevino@theolliviers.com>
25603
25604 wx build fixes after recent changes to Canvas and Image classes.
25605
25606 * platform/graphics/Pattern.h:
25607 * platform/graphics/wx/GradientWx.cpp:
25608 (WebCore::Gradient::fill):
25609 * platform/graphics/wx/GraphicsContextWx.cpp:
25610 (WebCore::GraphicsContext::applyFillPattern):
25611 (WebCore::GraphicsContext::applyStrokePattern):
25612 * platform/graphics/wx/ImageBufferWx.cpp:
25613 (WebCore::ImageBuffer::image):
25614 * platform/graphics/wx/ImageWx.cpp:
25615 (WebCore::Image::loadPlatformResource):
25616
britto@apple.comd7008662008-08-14 19:26:02 +0000256172008-08-14 Maxime Britto <britto@apple.com>
25618
25619 Reviewed by Sam Weinig.
25620
25621 rdar://6102511
25622 When pan-scrolling, typing on the keyboard should either stop the pan scroll or be ignored
25623 IE and FF are both preventing the keyboard event to interact with the page while scrolling.
25624 Some differences exist between them concerning the kind of key which is pressed :
25625 IE7 : every key leads to a stop of the panning
25626 FF3 : the ESC and TAB keys leads to a stop, the other keys are inactive.
25627 For WebKit this patch is adopting the FF3 behavior except for the TAB key which is inactive too.
25628
25629 * page/EventHandler.cpp:
25630 (WebCore::EventHandler::keyEvent): Verifies which key has been hit and decide either to stop the pan scroll or to swallow the key event.
25631
christian@webkit.org0e20f322008-08-14 19:14:47 +0000256322008-08-14 Christian Dywan <christian@twotoasts.de>
25633
25634 Gtk+/ Cairo build fix, patch by Dirk Schulze.
25635
25636 * html/CanvasStyle.cpp:
25637 * platform/graphics/cairo/PatternCairo.cpp:
25638 (WebCore::Pattern::createPlatformPattern):
25639 * svg/graphics/cairo/SVGResourceMaskerCairo.cpp:
25640
kmccullough@apple.comd2b50f12008-08-14 18:11:20 +0000256412008-08-14 Kevin McCullough <kmccullough@apple.com>
25642
25643 Reviewed by Tim.
25644
25645 <rdar://problem/6115819> Notify of profile in console
25646
25647 * page/InspectorController.cpp:
25648 (WebCore::InspectorController::addProfile):
25649 (WebCore::InspectorController::addProfileMessageToConsole): Called by
25650 addProfile this is the function that adds a message to the console that
25651 a profile finished.
25652 * page/InspectorController.h:
25653 * page/JavaScriptProfile.cpp: Expose the profiler's unique ID to match
25654 the console log to the profile in the web inspector.
25655 (WebCore::getUniqueIdCallback):
25656 (WebCore::ProfileClass):
25657 * page/inspector/ProfilesPanel.js: Created a map of all the profiles by
25658 Id to bring up the requested profile. Also select and reveal the
25659 profile in the profile panel. And created displayTitleForProfileLink()
25660 which formats a title taking into account if it's user initiated or if
25661 there are multiples. Lasty, I put the user initiated profile in a
25662 variable.
25663 * page/inspector/inspector.js: Make the profile title be a clickable
25664 link that will take the user to the identified profile. Also expose
25665 the count of user initiated profiles so they can be displayed in the
25666 console with the correct count.
25667
timothy@apple.comcd7f0f32008-08-14 17:41:05 +0000256682008-08-14 Timothy Hatcher <timothy@apple.com>
25669
25670 Avoid formating ConsoleMessages twice unless the message will be
25671 displayed in bubbles of a SourceFrame.
25672
25673 Reviewed by Kevin McCullough.
25674
25675 * page/inspector/Console.js:
25676 (WebInspector.ConsoleMessage): Only format the plain text message
25677 if the URL and line are valid and the level is error or warning.
25678 (WebInspector.ConsoleMessage.prototype.isErrorOrWarning): Added.
25679 Helper to test for error or warning level.
25680 * page/inspector/SourceFrame.js:
25681 (WebInspector.SourceFrame.prototype.addMessage): Don't add the
25682 message if there is no message or valid line or if the msg
25683 isn't an error or warning.
25684
jmalonzo@webkit.orgb469bb72008-08-14 15:07:41 +0000256852008-08-14 Jan Michael Alonzo <jmalonzo@webkit.org>
25686
25687 partial Gtk build fix, not reviewed
25688
25689 * platform/graphics/cairo/PatternCairo.cpp:
25690
weinig@apple.com45e83142008-08-14 04:49:30 +0000256912008-08-13 Sam Weinig <sam@webkit.org>
25692
weinig@apple.com1c615fe2008-09-29 04:17:33 +000025693 Reviewed by Anders Carlsson.
weinig@apple.com45e83142008-08-14 04:49:30 +000025694
25695 Fix style issue.
25696
25697 * html/HTMLMediaElement.cpp:
25698 (WebCore::HTMLMediaElement::pickMedia):
25699
zimmermann@webkit.org9ae47e92008-08-14 02:22:35 +0000257002008-08-13 Nikolas Zimmermann <zimmermann@kde.org>
25701
zimmermann@webkit.org7a2f53d2008-08-14 03:06:01 +000025702 Build fix for Cairo, not reviewed. (exposed by gtk build slave)
25703 Continue Erics build fixes, after the Image cleanup.
25704
25705 * platform/graphics/cairo/ImageBufferCairo.cpp:
25706 (WebCore::ImageBuffer::image):
25707
257082008-08-13 Nikolas Zimmermann <zimmermann@kde.org>
25709
zimmermann@webkit.org1ef52132008-08-14 02:38:16 +000025710 Build fix for Qt, not reviewed.
25711 Don't declare eventuallyMarkAsParserCreated in a block wrapped by !USE_QXMLSTREAM.
25712
25713 * dom/XMLTokenizer.cpp:
25714 (WebCore::eventuallyMarkAsParserCreated): Was erre
25715
257162008-08-13 Nikolas Zimmermann <zimmermann@kde.org>
25717
zimmermann@webkit.org3e560562008-08-14 02:26:00 +000025718 Build fix, not reviewed.
25719 Add ScriptElement.cpp to Gtk build.
25720
25721 * GNUmakefile.am:
25722
257232008-08-13 Nikolas Zimmermann <zimmermann@kde.org>
25724
zimmermann@webkit.org9ae47e92008-08-14 02:22:35 +000025725 Reviewed by Eric.
25726
25727 Fixes: https://bugs.webkit.org/show_bug.cgi?id=20372
25728
25729 Refactor HTMLScriptElement's code into a common base class: ScriptElement.
25730 SVGScriptElement will be converted to use ScriptElement in a follow-up patch.
25731
25732 This resolves code duplications and allows us to completly replace the old
25733 SVGScriptElement (which doesn't use CachedScript, no dynamic injected scripts etc..)
25734
25735 As ScriptElement, doesn't actually inherit from Element, we may want to rename
25736 it, though StyleElement uses the same naming convention, so I left it as is for now.
25737 Eventually we'll rename both files in future.
25738
25739 No functional changes yet, as SVGScriptElement doesn't yet use the new base class.
25740
25741 * WebCore.pro: Add new ScriptElement.cpp to build.
25742 * WebCore.vcproj/WebCore.vcproj: Ditto.
25743 * WebCore.xcodeproj/project.pbxproj: Ditto.
25744 * WebCoreSources.bkl: Dutto.
25745 * dom/ScriptElement.cpp: Added. 1:1 based on HTMLScriptElement
25746 (WebCore::ScriptElement::insertedIntoDocument):
25747 (WebCore::ScriptElement::removedFromDocument):
25748 (WebCore::ScriptElement::childrenChanged):
25749 (WebCore::ScriptElement::finishParsingChildren):
25750 (WebCore::ScriptElement::handleSourceAttribute):
25751 (WebCore::isSupportedJavaScriptLanguage):
25752 (WebCore::ScriptElementData::ScriptElementData):
25753 (WebCore::ScriptElementData::~ScriptElementData):
25754 (WebCore::ScriptElementData::requestScript):
25755 (WebCore::ScriptElementData::evaluateScript):
25756 (WebCore::ScriptElementData::stopLoadRequest):
25757 (WebCore::ScriptElementData::notifyFinished):
25758 (WebCore::ScriptElementData::ignoresLoadRequest):
25759 (WebCore::ScriptElementData::shouldExecuteAsJavaScript):
25760 (WebCore::ScriptElementData::scriptCharset):
25761 (WebCore::ScriptElementData::scriptContent):
25762 * dom/ScriptElement.h: Added.
25763 (WebCore::ScriptElement::ScriptElement):
25764 (WebCore::ScriptElement::~ScriptElement):
25765 (WebCore::ScriptElementData::element):
25766 (WebCore::ScriptElementData::createdByParser):
25767 (WebCore::ScriptElementData::setCreatedByParser):
25768 * dom/XMLTokenizer.cpp:
25769 (WebCore::isScriptElement):
25770 (WebCore::castToScriptElement):
25771 (WebCore::eventuallyMarkAsParserCreated):
25772 (WebCore::XMLTokenizer::startElementNs):
25773 (WebCore::XMLTokenizer::endElementNs):
25774 (WebCore::createXHTMLParserErrorHeader):
25775 (WebCore::XMLTokenizer::insertErrorMessageBlock):
25776 * html/HTMLScriptElement.cpp: Refactored code, pushed most code down to ScriptElement.
25777 (WebCore::HTMLScriptElement::HTMLScriptElement):
25778 (WebCore::HTMLScriptElement::~HTMLScriptElement):
25779 (WebCore::HTMLScriptElement::isURLAttribute):
25780 (WebCore::HTMLScriptElement::setCreatedByParser):
25781 (WebCore::HTMLScriptElement::shouldExecuteAsJavaScript):
25782 (WebCore::HTMLScriptElement::childrenChanged):
25783 (WebCore::HTMLScriptElement::parseMappedAttribute):
25784 (WebCore::HTMLScriptElement::finishParsingChildren):
25785 (WebCore::HTMLScriptElement::insertedIntoDocument):
25786 (WebCore::HTMLScriptElement::removedFromDocument):
25787 (WebCore::HTMLScriptElement::text):
25788 (WebCore::HTMLScriptElement::setText):
25789 (WebCore::HTMLScriptElement::setHtmlFor):
25790 (WebCore::HTMLScriptElement::setEvent):
25791 (WebCore::HTMLScriptElement::charset):
25792 (WebCore::HTMLScriptElement::src):
25793 (WebCore::HTMLScriptElement::type):
25794 (WebCore::HTMLScriptElement::scriptCharset):
25795 (WebCore::HTMLScriptElement::scriptContent):
25796 (WebCore::HTMLScriptElement::sourceAttributeValue):
25797 (WebCore::HTMLScriptElement::charsetAttributeValue):
25798 (WebCore::HTMLScriptElement::typeAttributeValue):
25799 (WebCore::HTMLScriptElement::languageAttributeValue):
25800 (WebCore::HTMLScriptElement::dispatchLoadEvent):
25801 (WebCore::HTMLScriptElement::dispatchErrorEvent):
25802 * html/HTMLScriptElement.h:
25803 * svg/SVGScriptElement.cpp: Inherit from ScriptElement, don't actually use it yet.
25804 * svg/SVGScriptElement.cpp:
25805 (WebCore::SVGScriptElement::SVGScriptElement):
25806 (WebCore::SVGScriptElement::scriptContent):
25807 (WebCore::SVGScriptElement::sourceAttributeValue):
25808 (WebCore::SVGScriptElement::charsetAttributeValue):
25809 (WebCore::SVGScriptElement::typeAttributeValue):
25810 (WebCore::SVGScriptElement::languageAttributeValue):
25811 (WebCore::SVGScriptElement::dispatchLoadEvent):
25812 (WebCore::SVGScriptElement::dispatchErrorEvent):
25813 * svg/SVGScriptElement.h:
25814 (WebCore::SVGScriptElement::setCreatedByParser):
25815
eric@webkit.org7811ef02008-08-14 00:28:51 +0000258162008-08-13 Eric Seidel <eric@webkit.org>
25817
eric@webkit.org3562c592008-08-14 02:17:29 +000025818 Attempt to fix the Gtk build, no review.
25819
25820 I removed the bogus GraphicsContext::translatePoint() hack for Gtk in the process.
25821
25822 * platform/graphics/GraphicsContext.h:
25823 * platform/graphics/cairo/GraphicsContextCairo.cpp:
25824 * platform/graphics/qt/GradientQt.cpp:
25825 * platform/graphics/qt/GraphicsContextQt.cpp:
25826 * platform/gtk/RenderThemeGtk.cpp:
25827 (WebCore::paintMozWidget):
25828
258292008-08-13 Eric Seidel <eric@webkit.org>
25830
eric@webkit.org2ec42072008-08-14 02:03:09 +000025831 Yet another attempt to fix the Qt build, no review.
25832
25833 * platform/graphics/qt/GradientQt.cpp:
25834 * platform/graphics/qt/GraphicsContextQt.cpp:
25835 (WebCore::GraphicsContext::applyStrokePattern):
25836 (WebCore::GraphicsContext::applyFillPattern):
25837
258382008-08-13 Eric Seidel <eric@webkit.org>
25839
25840 Attempt to fix the Windows build, no review.
25841
25842 * platform/win/CursorWin.cpp:
25843 (WebCore::loadCursorByName):
25844 * platform/win/ScrollViewWin.cpp:
25845 (WebCore::ScrollView::paint):
25846
258472008-08-13 Eric Seidel <eric@webkit.org>
25848
eric@webkit.org508c0282008-08-14 01:29:34 +000025849 Attempt to fix the Windows build, no review.
25850
25851 * platform/win/CursorWin.cpp:
25852 (WebCore::loadCursorByName):
25853 * platform/win/ScrollViewWin.cpp:
25854 (WebCore::ScrollView::paint):
25855
258562008-08-13 Eric Seidel <eric@webkit.org>
25857
eric@webkit.org1bf70ab2008-08-14 01:24:15 +000025858 Attempt to fix the Qt build, no review.
25859
25860 * platform/graphics/qt/ImageBufferQt.cpp:
25861 (WebCore::ImageBuffer::image):
25862
258632008-08-13 Eric Seidel <eric@webkit.org>
25864
eric@webkit.orgf2d7c212008-08-14 01:21:34 +000025865 Attempt to fix the Windows build, no review.
25866
25867 * platform/graphics/win/ImageWin.cpp:
25868 (WebCore::Image::loadPlatformResource):
25869 * plugins/win/PluginViewWin.cpp:
25870 (WebCore::PluginView::paintMissingPluginIcon):
25871
258722008-08-13 Eric Seidel <eric@webkit.org>
25873
eric@webkit.orgac3f6662008-08-14 01:15:50 +000025874 Another attempt to fix the Qt build, no review.
25875
25876 * platform/graphics/qt/ImageQt.cpp:
25877 * platform/graphics/qt/StillImageQt.h:
25878
258792008-08-13 Eric Seidel <eric@webkit.org>
25880
eric@webkit.org31e0d812008-08-14 01:05:42 +000025881 No review, build fix only.
25882
25883 Fix mac build, due to change in new code since my patch was written.
25884
25885 * svg/graphics/cg/SVGResourceMaskerCg.mm:
25886 (WebCore::SVGResourceMasker::applyMask):
25887
258882008-08-13 Eric Seidel <eric@webkit.org>
25889
eric@webkit.orga20a0032008-08-14 00:42:54 +000025890 Build fix only, no review.
25891
25892 Attempt to fix the Qt build.
25893
eric@webkit.org923255c2008-08-14 00:59:20 +000025894 * platform/graphics/qt/ImageBufferQt.cpp:
25895 * platform/graphics/qt/StillImageQt.h:
25896 (WebCore::StillImage::create):
25897 (WebCore::StillImage::destroyDecodedData):
25898 (WebCore::StillImage::decodedSize):
25899
259002008-08-13 Eric Seidel <eric@webkit.org>
25901
25902 Build fix only, no review.
25903
25904 Attempt to fix the Qt build.
25905
eric@webkit.orga20a0032008-08-14 00:42:54 +000025906 * html/CanvasStyle.cpp:
25907 (WebCore::CanvasStyle::applyStrokeColor):
25908 (WebCore::CanvasStyle::applyFillColor):
25909
259102008-08-13 Eric Seidel <eric@webkit.org>
25911
eric@webkit.org4aca3be2008-08-14 00:30:04 +000025912 Reviewed by Sam.
25913
25914 Match HTML5 spec by throwing INVALID_STATE_ERR when
25915 createPattern is called and the HTMLImageElement is not
25916 yet done loading the image (!isComplete)
25917 https://bugs.webkit.org/show_bug.cgi?id=20351
25918
25919 Test: http/misc/canvas-pattern-from-incremental-image.html
25920
25921 * html/CanvasRenderingContext2D.cpp:
25922 (WebCore::CanvasRenderingContext2D::createPattern):
25923
259242008-08-13 Eric Seidel <eric@webkit.org>
25925
eric@webkit.org5b265602008-08-14 00:29:26 +000025926 Reviewed by Niko.
25927
eric@webkit.orgf0124f62008-08-14 00:29:50 +000025928 Split out a Pattern class from CanvasPattern
25929 and remove all the Pattern-related #ifdefs
25930 (This will break non-mac platforms! I will fix them.)
25931 https://bugs.webkit.org/show_bug.cgi?id=20351
25932
25933 * GNUmakefile.am:
25934 * WebCore.pro:
25935 * WebCore.vcproj/WebCore.vcproj:
25936 * WebCore.xcodeproj/project.pbxproj:
25937 * WebCoreSources.bkl:
25938 * html/CanvasPattern.cpp:
25939 (WebCore::CanvasPattern::parseRepetitionType):
25940 (WebCore::CanvasPattern::CanvasPattern):
25941 * html/CanvasPattern.h:
25942 (WebCore::CanvasPattern::create):
25943 (WebCore::CanvasPattern::pattern):
25944 (WebCore::CanvasPattern::originClean):
25945 * html/CanvasRenderingContext2D.cpp:
25946 (WebCore::CanvasRenderingContext2D::createPattern):
25947 (WebCore::CanvasRenderingContext2D::applyStrokePattern):
25948 (WebCore::CanvasRenderingContext2D::applyFillPattern):
25949 * html/CanvasRenderingContext2D.h:
25950 * html/HTMLCanvasElement.cpp:
25951 * html/HTMLCanvasElement.h:
25952 * loader/FrameLoader.cpp:
25953 (WebCore::FrameLoader::createHistoryItem):
25954 * platform/graphics/GraphicsContext.h:
25955 * platform/graphics/cairo/GraphicsContextCairo.cpp:
25956 (WebCore::GraphicsContext::applyStrokePattern):
25957 (WebCore::GraphicsContext::applyFillPattern):
25958 * platform/graphics/cg/GraphicsContextCG.cpp:
25959 (WebCore::GraphicsContext::clipToImageBuffer):
25960 (WebCore::GraphicsContext::applyStrokePattern):
25961 (WebCore::GraphicsContext::applyFillPattern):
25962
259632008-08-13 Eric Seidel <eric@webkit.org>
25964
25965 Reviewed by Niko.
25966
eric@webkit.org5b265602008-08-14 00:29:26 +000025967 Make Images RefCounted (and clean up callers)
25968 https://bugs.webkit.org/show_bug.cgi?id=20351
25969
25970 * editing/DeleteButtonController.cpp:
25971 (WebCore::DeleteButtonController::createDeletionUI):
25972 * loader/CachedImage.cpp:
25973 (WebCore::CachedImage::CachedImage):
25974 (WebCore::brokenImage):
25975 (WebCore::nullImage):
25976 (WebCore::CachedImage::image):
25977 (WebCore::CachedImage::notifyObservers):
25978 (WebCore::CachedImage::createImage):
25979 * loader/CachedImage.h:
25980 * loader/icon/IconRecord.cpp:
25981 (WebCore::IconRecord::setImageData):
25982 (WebCore::IconRecord::loadImageFromResource):
25983 * loader/icon/IconRecord.h:
25984 * platform/graphics/BitmapImage.h:
25985 (WebCore::BitmapImage::create):
25986 * platform/graphics/GeneratedImage.h:
25987 * platform/graphics/Gradient.cpp:
25988 * platform/graphics/Gradient.h:
25989 * platform/graphics/Image.cpp:
25990 (WebCore::Image::nullImage):
25991 * platform/graphics/Image.h:
25992 * platform/graphics/ImageBuffer.h:
25993 * platform/graphics/cairo/ImageBufferCairo.cpp:
25994 (WebCore::ImageBuffer::image):
25995 * platform/graphics/cg/ImageBufferCG.cpp:
25996 (WebCore::ImageBuffer::image):
25997 (WebCore::ImageBuffer::getImageData):
25998 (WebCore::ImageBuffer::putImageData):
25999 * platform/graphics/cg/PDFDocumentImage.h:
26000 (WebCore::PDFDocumentImage::create):
26001 (WebCore::PDFDocumentImage::destroyDecodedData):
26002 (WebCore::PDFDocumentImage::decodedSize):
26003 * platform/graphics/gtk/ImageGtk.cpp:
26004 (WebCore::Image::loadPlatformResource):
26005 * platform/graphics/mac/ImageMac.mm:
26006 (WebCore::Image::loadPlatformResource):
26007 * rendering/RenderImage.cpp:
26008 * rendering/RenderLayer.cpp:
26009 (WebCore::RenderLayer::paintOverflowControls):
26010 * svg/graphics/SVGImage.cpp:
26011 (WebCore::SVGImage::nativeImageForCurrentFrame):
26012 * svg/graphics/SVGImage.h:
26013 (WebCore::SVGImage::create):
26014 (WebCore::SVGImage::destroyDecodedData):
26015 (WebCore::SVGImage::decodedSize):
26016 (WebCore::SVGImage::frameAtIndex):
26017 * svg/graphics/cairo/SVGPaintServerPatternCairo.cpp:
26018 (WebCore::SVGPaintServerPattern::setup):
26019 * svg/graphics/cairo/SVGResourceMaskerCairo.cpp:
26020 (WebCore::SVGResourceMasker::applyMask):
26021 * svg/graphics/cg/SVGPaintServerPatternCg.cpp:
26022 (WebCore::patternCallback):
26023 * svg/graphics/cg/SVGResourceMaskerCg.mm:
26024 (WebCore::SVGResourceMasker::applyMask):
26025
260262008-08-13 Eric Seidel <eric@webkit.org>
26027
26028 Reviewed by Niko.
eric@webkit.org7811ef02008-08-14 00:28:51 +000026029
26030 Remove #ifdefs from CanvasStyle by using platform/Color.h
eric@webkit.org5b265602008-08-14 00:29:26 +000026031 https://bugs.webkit.org/show_bug.cgi?id=20351
eric@webkit.org7811ef02008-08-14 00:28:51 +000026032
26033 There are some down-sides to this commit.
26034 This commit limits us to 255 levels of grey for calls like:
26035 context.setStrokeStyle(.37, 1.0)
26036 previously CG might have used up to 32bits to store the grey level
26037 Since setStrokeStyle is not part of HTML5, I don't suspect the web will notice.
26038
26039 Likewise, setStrokeStyle/setFillStyle calls which used float colors are now limited
26040 to RGBA32 (like all the rest of colors in WebCore), thus:
26041 context.setStrokStyle(.37, .24, .456, .99) will now have the same precision as:
26042 context.strokeStyle = "rgba(.37, .24, .456, .99)", which is to say RGBA32
26043
26044 If this is a problem for Dashboard, we can either roll out this commit
26045 or add a beefier Color abstraction, which can be used internally by GraphicsContext
26046 when keeping state, and then GraphicsContext can grow some additional set* routines
26047 for setting the a grey/float/whatever fill and stroke.
26048
26049 * html/CanvasRenderingContext2D.cpp:
26050 (WebCore::CanvasRenderingContext2D::setFillStyle):
26051 * html/CanvasStyle.cpp:
26052 (WebCore::CanvasStyle::CanvasStyle):
26053 (WebCore::colorWithOverrideAlpha):
26054 (WebCore::CanvasStyle::applyStrokeColor):
26055 (WebCore::CanvasStyle::applyFillColor):
26056 * html/CanvasStyle.h:
26057 * platform/graphics/Color.cpp:
26058 (WebCore::colorFloatToRGBAByte):
26059 (WebCore::makeRGBA32FromFloats):
26060 * platform/graphics/Color.h:
26061
adele@apple.com83e44822008-08-13 23:50:41 +0000260622008-08-13 Eric Carlson <eric.carlson@apple.com>
26063
26064 Reviewed by Adele Peterson.
26065
26066 Fix for <rdar://problem/6137931>
26067 https://bugs.webkit.org/show_bug.cgi?id=20360
26068 Remove all parameters from the MIME type before checking with the MIME type registry
26069
26070 Tests: media/video-source-type-params.html
26071
26072 * html/HTMLMediaElement.cpp:
26073 (WebCore::HTMLMediaElement::pickMedia): only pass the portion before the first ';'
26074 to isSupportedMediaMIMEType()
26075
bdakin@apple.com7bc81bf2008-08-13 21:36:15 +0000260762008-08-13 Beth Dakin <bdakin@apple.com>
26077
26078 Reviewed by Sam Weinig.
26079
26080 Fix for <rdar://problem/6141345>
26081
26082 This patch refines findString and markAllMatchesForText functions'
26083 interactions with disconnected frames. They no longer rely on
26084 knowing where a range is relative to the visible region and work
26085 with disconnected frames that contain frames.
26086
26087 * editing/Editor.cpp:
26088 (WebCore::Editor::insideVisibleArea): Now returns a bool instead of
26089 the visiblity enum.
26090 (WebCore::Editor::firstVisibleRange): This now returns the very
26091 first visible range in the document. It's no longer dependent on
26092 searching forward.
26093 (WebCore::Editor::lastVisibleRange): This now returns the very last
26094 visible range in the document. It's no longer dependent on
26095 searching backwards.
26096 (WebCore::Editor::nextVisibleRange): This returns the next visible
26097 range in the appropriate direction from the current range.
26098 * editing/Editor.h:
26099 * page/Frame.cpp:
26100 (WebCore::Frame::findString):
26101 (WebCore::Frame::markAllMatchesForText):
26102
kevino@webkit.orgee5adc42008-08-13 20:07:16 +0000261032008-08-13 Kevin Ollivier <kevino@theolliviers.com>
26104
26105 wx build fix for case-sensitive platforms, like Linux.
26106
26107 * WebCoreSources.bkl:
26108
jmalonzo@webkit.org210145b2008-08-13 19:56:20 +0000261092008-08-13 Marco Barisione <marco.barisione@collabora.co.uk>
26110
26111 Reviewed by Holger Freyther.
26112
26113 http://bugs.webkit.org/show_bug.cgi?id=16881
26114 [GTK] PlatformScreenGtk is unimplemented
26115
26116 Original patch by Christian Dywan.
26117
26118 * platform/gtk/PlatformScreenGtk.cpp:
26119 (WebCore::screenDepth):
26120 (WebCore::screenDepthPerComponent):
26121 (WebCore::screenIsMonochrome):
26122 (WebCore::screenRect):
26123 (WebCore::screenAvailableRect):
26124
jmalonzo@webkit.orge4693932008-08-13 19:42:08 +0000261252008-08-13 Jan Michael Alonzo <jmalonzo@webkit.org>
26126
26127 Reviewed by Holger Freyther.
26128
26129 http://bugs.webkit.org/show_bug.cgi?id=20318
26130 SharedTimerGtk should use G_PRIORITY_DEFAULT_IDLE for g_idle_add
26131
26132 g_idle_add is the same as g_idle_add_full with a priority of
26133 G_PRIORITY_DEFAULT_IDLE, so we can safely use that.
26134
26135 * platform/gtk/SharedTimerGtk.cpp:
26136 (WebCore::setSharedTimerFireTime):
26137
timothy@apple.comf0426602008-08-13 18:11:01 +0000261382008-08-13 Timothy Hatcher <timothy@apple.com>
26139
26140 Changed the InspectorController so it can be notified when the
26141 attached state of the Inspector changes in WebKit.
26142
26143 Reviewed by Kevin McCullough.
26144
26145 * WebCore.base.exp: Updated the symbol for setWindowVisible.
26146 * page/InspectorController.cpp:
26147 (WebCore::InspectorController::setWindowVisible): Added an attached argument,
26148 that defaults to false.Call setAttachedWindow with the attached argument.
26149 (WebCore::InspectorController::setAttachedWindow): Call the script version
26150 of setAttachedWindow.
26151 * page/InspectorController.h:
26152 * page/inspector/inspector.js:
26153 (WebInspector.setAttachedWindow): Set the attached property.
26154
timothy@apple.com9ea832b2008-08-13 18:10:36 +0000261552008-08-12 Timothy Hatcher <timothy@apple.com>
26156
timothy@apple.com72c92ae2008-08-13 18:10:45 +000026157 Added a close button to the Inspector's toolbar when docked.
26158
26159 https://bugs.webkit.org/show_bug.cgi?id=14270
26160
26161 Reviewed by Kevin McCullough.
26162
26163 * page/InspectorController.cpp:
26164 (WebCore::closeWindow): Call InspectorController::closeWindow.
26165 (WebCore::InspectorController::windowScriptObjectAvailable):
26166 Added closeWindow to the script class.
26167 * page/InspectorController.h:
26168 * page/inspector/Images/closeButtons.png: Added.
26169 * page/inspector/inspector.css: Added and changed styles.
26170 * page/inspector/inspector.html: Added the close button.
26171 * page/inspector/inspector.js:
26172 (WebInspector.loaded): Added click event listener to the close button.
26173 (WebInspector.close): Call InspectorController.closeWindow.
26174
261752008-08-12 Timothy Hatcher <timothy@apple.com>
26176
timothy@apple.com9ea832b2008-08-13 18:10:36 +000026177 Make the docked Web Inspector resizable. This is the cross platform
26178 portion of the code. Each InspectorClient needs to implement the
26179 real resize code.
26180
26181 https://bugs.webkit.org/show_bug.cgi?id=14282
26182
26183 Reviewed by Kevin McCullough.
26184
26185 * loader/EmptyClients.h: Added an empty setAttachedWindowHeight.
26186 * page/InspectorClient.h: Added setAttachedWindowHeight.
26187 * page/InspectorController.cpp:
26188 (WebCore::setAttachedWindowHeight): Call setAttachedWindowHeight
26189 on the InspectorController.
26190 (WebCore::InspectorController::setAttachedWindowHeight): Call
26191 setAttachedWindowHeight on the client.
26192 (WebCore::InspectorController::windowScriptObjectAvailable):
26193 Added setAttachedWindowHeight to the script class.
26194 * page/InspectorController.h:
26195 * page/inspector/inspector.css: Make the cursor on the toolbar be
26196 row-resize when docked.
26197 * page/inspector/inspector.js:
26198 (WebInspector.loaded): Always add the toolbarDragStart event listener.
26199 (WebInspector.toolbarDragStart): Return early if we are not attached
26200 and not on Leopard. Call WebInspector.elementDragStart.
26201 (WebInspector.toolbarDragEnd): Call WebInspector.elementDragEnd.
26202 (WebInspector.toolbarDrag): When attached call setAttachedWindowHeight,
26203 otherwise call moveByUnrestricted.
26204
hausmann@webkit.orgd34f1d22008-08-13 13:43:34 +0000262052008-08-13 Simon Hausmann <hausmann@webkit.org>
26206
26207 Reviewed by Holger.
26208
26209 Initialize m_zoomsTextOnly in the Settings constructor.
26210
26211 * page/Settings.cpp:
26212 (WebCore::Settings::Settings):
26213
hausmann@webkit.org74586d62008-08-13 13:31:11 +0000262142008-08-13 Brad Hughes <bhughes@trolltech.com>
26215
26216 Reviewed by Simon.
26217
26218 Fix compiling of QtWebKit in release mode with the Intel C++ Compiler for Linux
26219
26220 The latest upgrade of the intel compiler allows us to compile all of
26221 Qt with optimizations enabled (yay!).
26222
26223 * WebCore.pro:
26224
hausmann@webkit.org690b7fc2008-08-13 13:24:56 +0000262252008-08-13 Prasanth Ullattil <prasanth.ullattil@trolltech.com>
26226
26227 Reviewed by Simon.
26228
26229 Fix QtWebKit not displaying content on 403 HTTP responses
26230
26231 Just like with 404 responses also display content with 403, as
26232 used by http://audiio.ejamming.proteus-tech.com/audiio/profile/original_signup/
26233
26234 * platform/network/qt/QNetworkReplyHandler.cpp:
26235 (WebCore::QNetworkReplyHandler::finish):
26236
hausmann@webkit.org88c4dc92008-08-13 12:02:00 +0000262372008-08-13 Simon Hausmann <hausmann@webkit.org>
26238
hausmann@webkit.orgd2315e32008-08-13 13:16:15 +000026239 Reviewed by Holger.
26240
26241 Qt part of https://bugs.webkit.org/show_bug.cgi?id=18994
26242
26243 Make the formatting of String::format() locale independent through the use of QString::vsprintf.
26244
26245 * platform/text/String.cpp:
26246 (WebCore::String::format):
26247
262482008-08-13 Simon Hausmann <hausmann@webkit.org>
26249
hausmann@webkit.org88c4dc92008-08-13 12:02:00 +000026250 Reviewed by Lars.
26251
26252 Fix QWebFrame::setHtml() not setting the new contents immediately.
26253
26254 Added a setter to the DocumentLoader to toggle the deferred loading of the main
26255 resource when it comes from substitute data.
26256
26257 Disable deferred loading of the main resource when we have valid substitute data,
26258 as used by QWebFrame::setHtml.
26259
26260 * loader/DocumentLoader.h:
26261
mrowe@apple.com6aa36d12008-08-13 09:58:32 +0000262622008-08-13 Mark Rowe <mrowe@apple.com>
26263
26264 Speculative GTK build fix.
26265
26266 * GNUmakefile.am: Add dependency info for JSSVGElementWrapperFactory.cpp.
26267
hausmann@webkit.org298ce5f2008-08-13 09:11:23 +0000262682008-08-13 Thiago Macieira <tjmaciei@trolltech.com>
26269
26270 Reviewed by Simon.
26271
26272 Fix encoding of [ and ] in the host part of the URL
26273
26274 Until QUrl is fixed (making QUrl's tolerant parser more tolerant), we have to
26275 add this workaround to the QUrl <> WebCore::KURL conversion operator so that it
26276 doesn't encode [ and ] when they are found in the host part. That is, the
26277 following URL:
26278 http://[::1]/
26279 is valid and should not be reencoded to:
26280 http://%5b::1%5d/
26281
26282 * platform/qt/KURLQt.cpp:
26283 (WebCore::KURL::operator QUrl):
26284
mitz@apple.come198b012008-08-12 21:49:07 +0000262852008-08-12 Mihnea Ovidenie <mihnea@adobe.com>
26286
26287 Fix for https://bugs.webkit.org/show_bug.cgi?id=19891
26288 Broken HTML object elements cause de-reference of pointer to freed memory.
26289 If we fail to load an image for an object tag and we no longer believe the object tag points at
26290 an image, then clear m_imageLoader in the HTMLObjectElement so that we attempt to render the
26291 fall back content.
26292
26293 Reviewed by Dave Hyatt and Alexey Proskuryakov.
26294
26295 Test: http/tests/misc/object-image-error-with-onload.html
26296
26297 * html/HTMLObjectElement.cpp:
26298 (WebCore::HTMLObjectElement::renderFallbackContent):
26299 * page/Frame.cpp:
26300 (WebCore::Frame::Frame):
26301
zimmermann@webkit.org36a02512008-08-12 21:11:17 +0000263022008-08-12 Nikolas Zimmermann <zimmermann@kde.org>
26303
26304 Reviewed by Dave.
26305
26306 Fixes: https://bugs.webkit.org/show_bug.cgi?id=19798
26307 Masks are translated, and the mask images are swapped on the y-axis.
26308
26309 Turned out that http://trac.webkit.org/changeset/31830/trunk/WebCore/svg/graphics/cg/SVGResourceMaskerCg.mm
26310 is guilty. GraphicsContext::clipToImageBuffer() does some extra transformations that SVGResourcesMaskerCg does not want.
26311
26312 Long term goal is to remove the SVGResource*/SVGPaintServer* classes anyway, so it's okay to duplicate
26313 the "clip to image buffer" functionality, in the CG specific SVGResourceMaskerCg class - as it was before.
26314
26315 * svg/graphics/cg/SVGResourceMaskerCg.mm:
26316 (WebCore::SVGResourceMasker::applyMask): Changed back to use CG clipping again.
26317
mitz@apple.comf8a98692008-08-12 17:04:42 +0000263182008-08-12 Dan Bernstein <mitz@apple.com>
26319
mitz@apple.com1b7e844f2008-08-12 20:54:12 +000026320 - WebCore part of <rdar://problem/6121636>
26321 Make fast*alloc() abort() on failure and add "try" variants that
26322 return NULL on failure.
26323
26324 Reviewed by Darin Adler.
26325
26326 * platform/Arena.cpp:
26327 (WebCore::ArenaAllocate): Removed null checking of fastMalloc()'s
26328 result.
26329 * platform/graphics/cg/ImageBufferCG.cpp:
26330 (WebCore::ImageBuffer::create): Changed to use tryFastCalloc().
26331
263322008-08-12 Dan Bernstein <mitz@apple.com>
26333
mitz@apple.com1e09cd72008-08-12 18:27:58 +000026334 Reviewed by Darin Adler.
26335
26336 - fix https://bugs.webkit.org/show_bug.cgi?id=19348
26337 <rdar://problem/5978447> REGRESSION (r34193): Setting the size of a frame with javascript document.body.row no longer works
26338
26339 Test: fast/frames/frameset-style-recalc.html
26340
26341 * html/HTMLFrameSetElement.cpp:
26342 (WebCore::HTMLFrameSetElement::recalcStyle): Changed to call the base
26343 class implementation after marking for layout.
26344
263452008-08-12 Dan Bernstein <mitz@apple.com>
26346
mitz@apple.comf8a98692008-08-12 17:04:42 +000026347 Reviewed by John Sullivan.
26348
26349 - move shouldUpdateWhenOffscreen from Settings to FrameView and rename it shouldUpdateWhileHidden
26350
26351 * WebCore.base.exp:
26352 * page/FrameView.cpp:
26353 (WebCore::FrameViewPrivate::FrameViewPrivate):
26354 (WebCore::FrameView::shouldUpdateWhileHidden):
26355 (WebCore::FrameView::setShouldUpdateWhileHidden):
26356 * page/FrameView.h:
26357 * page/Settings.cpp:
26358 * page/Settings.h:
26359
aroben@apple.comeeb8ebb2008-08-12 14:58:51 +0000263602008-08-12 Adam Roben <aroben@apple.com>
26361
26362 Windows build fix
26363
26364 * bindings/js/JSSVGPODTypeWrapper.h: Align
26365 JSSVGDynamicPODTypeWrapper's and JSSVGStaticPODTypeWrapperWithParent's
26366 members on 16-byte boundaries to avoid an alignment warning.
26367
zimmermann@webkit.orge1388112008-08-12 10:27:53 +0000263682008-08-12 Nikolas Zimmermann <zimmermann@kde.org>
26369
26370 Reviewed by Oliver.
26371
zimmermann@webkit.org504f2552008-08-12 10:35:09 +000026372 Add new dynamice-update layout tests covering SVGMarkerElement.
26373 Fix bug: SVGMarkerElement's SVG DOM function calls don't update rendering.
26374 Fix orientAngle/orientType confusion: "auto" orient should always return "0" as angle.
26375
26376 Tests: svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr.html
26377 svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr.html
26378 svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr.html
26379 svg/dynamic-updates/SVGMarkerElement-dom-orient-attr.html
26380 svg/dynamic-updates/SVGMarkerElement-dom-refX-attr.html
26381 svg/dynamic-updates/SVGMarkerElement-dom-refY-attr.html
26382 svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop.html
26383 svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop.html
26384 svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop.html
26385 svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop.html
26386 svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop.html
26387 svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop.html
26388 svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop.html
26389 svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call.html
26390 svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call.html
26391
26392 * svg/SVGMarkerElement.cpp:
26393 (WebCore::SVGMarkerElement::SVGMarkerElement):
26394 (WebCore::SVGMarkerElement::parseMappedAttribute):
26395 (WebCore::SVGMarkerElement::svgAttributeChanged):
26396 (WebCore::SVGMarkerElement::childrenChanged):
26397 (WebCore::SVGMarkerElement::setOrientToAuto):
26398 (WebCore::SVGMarkerElement::setOrientToAngle):
26399 (WebCore::SVGMarkerElement::canvasResource):
26400
264012008-08-12 Nikolas Zimmermann <zimmermann@kde.org>
26402
26403 Reviewed by Oliver.
26404
zimmermann@webkit.orge1388112008-08-12 10:27:53 +000026405 Add new dynamic-update layout tests covering SVGImageElement.
26406 Fix bug: SVGImageElement doesn't react on 'preserveAspectRatio' changes.
26407
26408 Tests: svg/dynamic-updates/SVGImageElement-dom-height-attr.html
26409 svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr.html
26410 svg/dynamic-updates/SVGImageElement-dom-width-attr.html
26411 svg/dynamic-updates/SVGImageElement-dom-x-attr.html
26412 svg/dynamic-updates/SVGImageElement-dom-y-attr.html
26413 svg/dynamic-updates/SVGImageElement-svgdom-height-prop.html
26414 svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop.html
26415 svg/dynamic-updates/SVGImageElement-svgdom-width-prop.html
26416 svg/dynamic-updates/SVGImageElement-svgdom-x-prop.html
26417 svg/dynamic-updates/SVGImageElement-svgdom-y-prop.html
26418
26419 * svg/SVGImageElement.cpp:
26420 (WebCore::SVGImageElement::svgAttributeChanged):
26421
timothy@apple.com93114722008-08-12 04:20:25 +0000264222008-08-11 Anthony Ricaud <rik24d@gmail.com>
26423
timothy@apple.com2f2cde32008-08-12 04:28:16 +000026424 Changed Option/Alt-Up or Down in CSS editing when the value is
26425 near zero to jump to the next integer.
26426
26427 Reviewed by Tim Hatcher.
26428
26429 https://bugs.webkit.org/show_bug.cgi?id=20326
26430
26431 * page/inspector/StylesSidebarPane.js:
26432
264332008-08-11 Anthony Ricaud <rik24d@gmail.com>
26434
timothy@apple.com93114722008-08-12 04:20:25 +000026435 Changed the line highlight transition for an easier animation.
26436
26437 Reviewed by Tim Hatcher.
26438
26439 * page/inspector/SourceFrame.js:
26440
timothy@apple.com24a14852008-08-12 03:57:39 +0000264412008-08-11 Keishi Hattori <casey.hattori@gmail.com>
26442
26443 Added support for some Firebug Command Line APIs.
26444
26445 Reviewed by Tim Hatcher.
26446
26447 https://bugs.webkit.org/show_bug.cgi?id=19867
26448 https://bugs.webkit.org/show_bug.cgi?id=19868
26449 https://bugs.webkit.org/show_bug.cgi?id=19869
26450 https://bugs.webkit.org/show_bug.cgi?id=19875
26451 https://bugs.webkit.org/show_bug.cgi?id=19876
26452 https://bugs.webkit.org/show_bug.cgi?id=19880
26453
26454 * page/inspector/Console.js:
26455 (WebInspector.Console.prototype._evalInInspectedWindow):
26456 Create an object on the inspected window that holds the console
26457 command line API functions. This object is used in a with statement
26458 around the typed expression.
26459
zimmermann@webkit.org0350b6d2008-08-12 02:22:26 +0000264602008-08-11 Nikolas Zimmermann <zimmermann@kde.org>
26461
26462 Reviewed by Antti.
26463
26464 Fixes: http://bugs.webkit.org/show_bug.cgi?id=17736
26465
26466 JS wrapper objects around SVG POD types, that contain other SVG POD types with writable properties
26467 failed to update. Modification of the values were completly ignored (ie. transform.matrix.a = 50, didn't take any effect)
26468
26469 Added tests: svg/custom/svg-modify-currentTranslate.html
26470 svg/custom/tearoffs-with-tearoffs.html
26471 svg/custom/immutable-properties.html
26472
26473 Fixed tests: svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop.html
26474
26475 * bindings/js/JSSVGPODTypeWrapper.h:
26476 (WebCore::JSSVGDynamicPODTypeWrapper::commitChange):
26477 (WebCore::JSSVGStaticPODTypeWrapperWithPODTypeParent::create):
26478 (WebCore::JSSVGStaticPODTypeWrapperWithPODTypeParent::commitChange):
26479 (WebCore::JSSVGStaticPODTypeWrapperWithPODTypeParent::JSSVGStaticPODTypeWrapperWithPODTypeParent):
26480 (WebCore::JSSVGStaticPODTypeWrapperWithParent::create):
26481 (WebCore::JSSVGStaticPODTypeWrapperWithParent::operator PODType):
26482 (WebCore::JSSVGStaticPODTypeWrapperWithParent::commitChange):
26483 (WebCore::JSSVGStaticPODTypeWrapperWithParent::JSSVGStaticPODTypeWrapperWithParent):
26484 * bindings/scripts/CodeGenerator.pm:
26485 * bindings/scripts/CodeGeneratorJS.pm:
26486 * svg/SVGSVGElement.idl: Add [Immutable] markers to SVG POD attributes, that contain POD types with writable attributes.
26487 * svg/SVGZoomEvent.idl: SVG specification explicitely demands these attributes to be readonly, even its content.
26488
beidson@apple.com0e772f72008-08-12 00:34:46 +0000264892008-08-11 Brady Eidson <beidson@apple.com>
26490
26491 Reviewed by John and Anders
26492
26493 Fix for <rdar://problem/6141797>
26494
26495 When WebArchives were entirely a WebKit concept, there was a guarantee that a WebResource
26496 would never have nil data.
26497
26498 When they were pushed down into WebCore, that guarantee was lost, subtly changing a few
26499 semantics with some WebKit applications.
26500
26501 The guarantee was a good one and should be restored.
26502
26503 Note that ApplicationCacheResource doesn't need any updates to follow this rule as it already
26504 creates an empty data object in the case of null data for its own purposes.
26505
26506 * loader/SubstituteResource.h:
26507 (WebCore::SubstituteResource::SubstituteResource): ASSERT that the data is not null. This
26508 well help any future subclassers not make this mistake.
26509
26510 * loader/archive/ArchiveResource.cpp:
26511 (WebCore::ArchiveResource::create): Return 0 if the data is null.
26512
simon.fraser@apple.come0d44792008-08-11 22:44:06 +0000265132008-08-11 Simon Fraser <simon.fraser@apple.com>
26514
26515 Reviewed by Dave Hyatt
26516
26517 https://bugs.webkit.org/show_bug.cgi?id=20328
26518 Fix a problem when an 'all' transition transition with more than
26519 one property changing is interrupted, and did some AnimationController
26520 cleanup.
26521
26522 Test: transitions/interrupted-all-transition.html
26523
26524 * page/AnimationController.cpp:
26525 (WebCore::ImplicitAnimation::ImplicitAnimation):
26526 (WebCore::AnimationControllerPrivate::blendProperties):
26527 (WebCore::CompositeAnimation::updateTransitions):
26528 (WebCore::CompositeAnimation::cleanupFinishedAnimations):
26529 (WebCore::CompositeAnimation::setTransitionStartTime):
26530 (WebCore::CompositeAnimation::overrideImplicitAnimations):
26531 (WebCore::CompositeAnimation::resumeOverriddenImplicitAnimations):
26532 (WebCore::ImplicitAnimation::animate):
26533 (WebCore::ImplicitAnimation::onAnimationEnd):
26534 (WebCore::ImplicitAnimation::sendTransitionEvent):
26535 (WebCore::ImplicitAnimation::affectsProperty):
26536 (WebCore::KeyframeAnimation::endAnimation):
26537 (WebCore::KeyframeAnimation::onAnimationEnd):
26538
kmccullough@apple.com4a967c12008-08-11 20:45:19 +0000265392008-08-11 Kevin McCullough <kmccullough@apple.com>
26540
26541 Reviewed by Tim.
26542
26543 - Because console messages have group levels now, newly created messages
26544 that do not specify the level lose their message since the number of
26545 arguments is wrong.
26546
26547 * page/inspector/Console.js:
26548 * page/inspector/Resource.js:
26549
alp@webkit.orgeeb55142008-08-11 19:52:14 +0000265502008-08-11 Alp Toker <alp@nuanti.com>
26551
26552 Build fix. Add new files from r35666 (WebKitAnimationEvent). Also take
26553 the opportunity to sort the sources lists.
26554
26555 * GNUmakefile.am:
26556
timothy@apple.com9fe09f82008-08-11 18:48:37 +0000265572008-08-11 Timothy Hatcher <timothy@apple.com>
26558
26559 Speed up the the JavaScript syntax highlighter by generating
26560 the finders only once per script instead of per line.
26561
26562 https://bugs.webkit.org/show_bug.cgi?id=20346
26563
26564 Reviewed by Adam Roben.
26565
26566 * page/inspector/SourceFrame.js:
26567 (WebInspector.SourceFrame.prototype._syntaxHighlightJavascriptLine):
26568 Removed, factored into syntaxHighlightJavascript as an inline function.
26569 (WebInspector.SourceFrame.prototype.syntaxHighlightJavascript):
26570 Pulled in the _syntaxHighlightJavascriptLine so it will create a closure.
26571 Generate the finders before iterating the lines.
26572
aroben@apple.com957d2d32008-08-11 18:31:37 +0000265732008-08-11 Adam Roben <aroben@apple.com>
26574
26575 Windows build fix
26576
26577 * WebCore.vcproj/WebCore.vcproj: Added JSWebKitAnimationEvent.cpp and
26578 JSWebKitTransitionEvent.cpp to the project. Let VS reformat the file,
26579 too.
26580
mitz@apple.com3f0060f2008-08-11 18:04:46 +0000265812008-08-11 Dan Bernstein <mitz@apple.com>
26582
26583 Reviewed by Darin Adler.
26584
26585 - fix <rdar://problem/6131096> Reproducible crash in CounterNode::isReset under guard malloc
26586
26587 Test: fast/css/counters/invalidate-cached-counter-node.html
26588
26589 * rendering/RenderContainer.cpp:
26590 (WebCore::RenderContainer::invalidateCounters): Added. Invalidates all
26591 RenderCounters in :before and :after content.
26592 * rendering/RenderContainer.h:
26593 * rendering/RenderCounter.cpp:
26594 (WebCore::RenderCounter::isCounter): Renamed isRenderCounter() to this
26595 to match the RenderObject method.
26596 (WebCore::RenderCounter::invalidate): Added. Resets the cached
26597 CounterNode and invalidates the object's layout and preferred widths.
26598 (WebCore::destroyCounterNodeChildren): Added a call to
26599 invalidateCounters().
26600 * rendering/RenderCounter.h:
26601 * rendering/RenderObject.h:
26602 (WebCore::RenderObject::invalidateCounters):
26603
dino@apple.com2af8c3a2008-08-11 17:24:36 +0000266042008-08-11 Dean Jackson <dino@apple.com>
26605
26606 Implement CSS Animation and Transition Events
26607 https://bugs.webkit.org/show_bug.cgi?id=20337
26608
26609 Implement the events defined in the CSS Animations
26610 and Transitions specifications so code can react
26611 to animations and transitions.
26612
26613 Reviewed by Tim Hatcher and Dave Hyatt.
26614
26615 * DerivedSources.make:
26616 * GNUmakefile.am:
26617 * WebCore.pro:
26618 * WebCore.vcproj/WebCore.vcproj:
26619 * WebCore.xcodeproj/project.pbxproj:
26620 * WebCoreSources.bkl:
26621 Build configs for new files
26622
26623 * bindings/js/JSDOMWindowBase.cpp:
26624 * bindings/js/JSDOMWindowBase.h:
26625 * bindings/js/JSEventCustom.cpp:
26626 * dom/Document.h:
26627 * dom/Event.cpp:
26628 * dom/Event.h:
26629 * dom/EventTarget.cpp:
26630 * dom/EventTargetNode.cpp:
26631 * dom/EventTargetNode.h:
26632 * html/HTMLElement.cpp:
26633 * page/AnimationController.cpp:
26634 do all the new event stuff
26635
26636 * html/HTMLAttributeNames.in:
26637 the onwebkitanimation* and onwebkittransitionend attrs
26638
26639 * dom/WebKitAnimationEvent.cpp: Added.
26640 * dom/WebKitAnimationEvent.h: Added.
26641 * dom/WebKitAnimationEvent.idl: Added.
26642 * dom/WebKitTransitionEvent.cpp: Added.
26643 * dom/WebKitTransitionEvent.h: Added.
26644 * dom/WebKitTransitionEvent.idl: Added.
26645 New files for the events
26646
26647 * manual-tests/transition-events.html: Added.
26648 New testfile
26649
aroben@apple.com3eae8622008-08-11 17:21:23 +0000266502008-08-11 Adam Roben <aroben@apple.com>
26651
26652 Add a ForwardingHeader for wtf/NotFound.h
26653
26654 Rubberstamped by Darin Adler.
26655
26656 * ForwardingHeaders/wtf/NotFound.h: Added.
26657
timothy@apple.com2f5bdf02008-08-11 16:53:30 +0000266582008-08-11 Timothy Hatcher <timothy@apple.com>
26659
26660 Fixes a bug where error bubbles in JavaScript resources would
26661 be clobbered by the syntax highlighter.
26662
26663 https://bugs.webkit.org/show_bug.cgi?id=20345
26664
26665 Reviewed by Adam Roben.
26666
26667 * manual-tests/inspector/resources/script-error.js: Added.
26668 * manual-tests/inspector/styled-error-bubbles-in-scripts.html: Added.
26669 * page/inspector/SourceFrame.js:
26670 (WebInspector.SourceFrame.prototype._addMessageToSource):
26671 Check the nodeType and not the nodeName, this is less fragile.
26672 (WebInspector.SourceFrame.prototype._syntaxHighlightJavascriptLine):
26673 Check if the lastChild is an error bubble, if so remove it before
26674 getting the line's textContent. Add the error bubble back at the end.
26675
mrowe@apple.com4ec50d02008-08-11 05:07:42 +000026676== Rolled over to ChangeLog-2008-08-10 ==