blob: 4154dddffdae27b12baf8770a1551c755a09cb6f [file] [log] [blame]
cfleizach@apple.comcff26212008-09-19 20:04:13 +000012008-09-19 Chris Fleizach <cfleizach@apple.com>
2
3 Reviewed by Darin Adler.
4
5 <rdar://problem/6213171> WebKit should use new array-centric methods for AX performance
6
7 Implement a few AX API methods that will be called by AppKit, which will
8 speed up access to accessibility objects
9
10 * page/mac/AccessibilityObjectWrapper.mm:
11 (-[AccessibilityObjectWrapper accessibilityIndexOfChild:]):
12 (-[AccessibilityObjectWrapper accessibilityArrayAttributeCount:]):
13 (-[AccessibilityObjectWrapper accessibilityArrayAttributeValues:index:maxCount:]):
14
zecke@webkit.org7594eb62008-09-19 11:06:55 +0000152008-09-19 Holger Hans Peter Freyther <zecke@selfish.org>
16
17 Reviewed by Simon Hausmann.
18
zecke@webkit.org3df68032008-09-19 11:43:27 +000019 [qtwebkit] Set the m_should* flags to their proper value on entry
20 With plugins it was possible that we finished a job twice. This was
21 some kind of reentrancy in QNetworkReplyHandler::sendQueuedItems. By
22 setting the flag to (m_loadMode == LoadDeferred) they will always have
23 the right value and we will not send responses twice.
24
25 * platform/network/qt/QNetworkReplyHandler.cpp:
26
272008-09-19 Holger Hans Peter Freyther <zecke@selfish.org>
28
29 Reviewed by Simon Hausmann.
30
zecke@webkit.org7594eb62008-09-19 11:06:55 +000031 [qtwebkit] Pass test 70 of acid3. Handle text decoding errors
32 Handle text decoding errors before instructing the parser to parse. We
33 have converted the text to QString and all encoding errors are gone and
34 the parser will not be able to detect them. So handle them before parsing.
35
36 * dom/XMLTokenizerQt.cpp:
37 (WebCore::XMLTokenizer::doWrite):
38
darin@apple.comc9aea832008-09-19 06:49:35 +0000392008-09-18 Darin Adler <darin@apple.com>
40
41 Reviewed by Maciej Stachowiak.
42
43 - part 1 of https://bugs.webkit.org/show_bug.cgi?id=20858
44 make each distinct C++ class get a distinct JSC::Structure
45
46 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
47 (WebCore::JSCSSStyleDeclaration::customPut): Use setDOMException
48 instead of DOMExceptionTranslator.
49
50 * bindings/js/JSDOMBinding.cpp:
51 (WebCore::getCachedDOMObjectWrapper): Updated function name.
52 (WebCore::cacheDOMObjectWrapper): Ditto.
53 (WebCore::forgetDOMObject): Ditto.
54 (WebCore::getCachedDOMNodeWrapper): Ditto.
55 (WebCore::forgetDOMNode): Ditto.
56 (WebCore::cacheDOMNodeWrapper): Ditto.
57 (WebCore::forgetAllDOMNodesForDocument): Ditto.
58 (WebCore::markDOMNodesForDocument): Ditto.
59 (WebCore::updateDOMNodeDocument): Ditto.
60 (WebCore::getCachedDOMStructure): Added.
61 (WebCore::createDOMStructure): Ditto.
62
63 * bindings/js/JSDOMBinding.h: Get rid of the ScriptInterpreter
64 class and replace the static member functions with non-member
65 functions. Added many other functions for getting at structures,
66 prototypes, wrappers, and creating them. Also moved the
67 cacheGlobalObject function here from JavaScriptCore; eventually
68 I'll remove that once I get rid of the remaining callers. Also
69 removed the DOMExceptionTranslator class.
70
71 * bindings/js/JSDOMWindowBase.h: Added JSDOMStructureMap type,
72 and put one of those maps in each window.
73
74 * bindings/js/JSDOMWindowCustom.cpp:
75 (WebCore::markDOMObjectWrapper): Updated for function name change.
76 (WebCore::JSDOMWindow::mark): Added code to mark all the structures
77 in the structure map.
78
79 * bindings/js/JSEventTargetNode.cpp:
80 (WebCore::JSEventTargetNode::JSEventTargetNode): Changed to take
81 a structure instead of a prototype.
82 * bindings/js/JSEventTargetNode.h: Ditto.
83 * bindings/js/JSHTMLAllCollection.h:
84 (WebCore::JSHTMLAllCollection::JSHTMLAllCollection): Ditto.
85
86 * bindings/js/JSHTMLInputElementBase.cpp:
87 (WebCore::JSHTMLInputElementBase::JSHTMLInputElementBase): Removed
88 use of the JSC_IMPLEMENT_PROTOTYPE macro, and changed to take a
89 structure instead of a prototype.
90 * bindings/js/JSHTMLInputElementBase.h: Removed use of the
91 JSC_DEFINE_PROTOTYPE_WITH_PROTOTYPE macro, and changed constructor
92 to take a structure instead of a prototype. Created a dummy prototype
93 class that causes the HTMLInputElement prototype to have the
94 HTMLElement prototype.
95
96 * bindings/scripts/CodeGeneratorJS.pm: Change constructors to take
97 structures instead of prototypes. Changed the prototype self function
98 to use the getDOMPrototype function -- later we can eliminate it and
99 have callers invoke getDOMPrototype directly instead. Updated other
100 functions that have name changes. Added code to generate the
101 createPrototype member function. Changed use of cacheGlobalObject to
102 get it from the WebCore namespace instead of the JSC namespace.
103 Changed cacheDOMObject calls to use getDOMObjectWrapper instead.
104
105 * dom/Document.cpp:
106 (WebCore::Document::~Document): Updated for name change and also
107 removed unnecessary JSLock use -- there's no need to lock around this.
108 * dom/Node.cpp:
109 (WebCore::Node::setDocument): Ditto.
110
111 * dom/make_names.pl: Changed to use CREATE_DOM_NODE_WRAPPER macro
112 instead of calling new directly.
113
114 * bindings/js/JSCSSRuleCustom.cpp:
115 (WebCore::toJS): Updated for function name changes and used the
116 CREATE_DOM_OBJECT_WRAPPER macro.
117 * bindings/js/JSCSSValueCustom.cpp:
118 (WebCore::toJS): Ditto.
119 * bindings/js/JSCanvasPixelArrayCustom.cpp:
120 (WebCore::toJS): Ditto.
121 * bindings/js/JSDocumentCustom.cpp:
122 (WebCore::JSDocument::mark): Ditto.
123 (WebCore::toJS): Ditto.
124 * bindings/js/JSElementCustom.cpp:
125 (WebCore::toJSNewlyCreated): Ditto.
126 * bindings/js/JSEventCustom.cpp:
127 (WebCore::toJS): Ditto.
128 * bindings/js/JSEventTargetBase.cpp:
129 (WebCore::jsEventTargetDispatchEvent): Use setDOMException instead
130 of DOMExceptionTranslator.
131 (WebCore::toJS): Updated for function name changes and used the
132 CREATE_DOM_OBJECT_WRAPPER macro.
133 * bindings/js/JSHTMLCollectionCustom.cpp:
134 (WebCore::toJS): Ditto.
135 * bindings/js/JSNodeCustom.cpp:
136 (WebCore::JSNode::mark): Ditto.
137 (WebCore::createWrapper): Ditto.
138 (WebCore::toJS): Ditto.
139 * bindings/js/JSSVGPathSegCustom.cpp:
140 (WebCore::toJS): Ditto.
141 * bindings/js/JSStyleSheetCustom.cpp:
142 (WebCore::toJS): Ditto.
143 (WebCore::JSStyleSheet::mark): Ditto.
144 * bindings/js/JSTextCustom.cpp:
145 (WebCore::toJSNewlyCreated): Ditto.
146 * bindings/js/JSXMLHttpRequestConstructor.cpp:
147 (WebCore::constructXMLHttpRequest): Ditto.
148 * bindings/js/JSXMLHttpRequestCustom.cpp:
149 (WebCore::JSXMLHttpRequest::mark): Ditto.
150 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
151 (WebCore::JSXMLHttpRequestUpload::mark): Ditto.
152 * bindings/js/JSXSLTProcessorConstructor.cpp:
153 (WebCore::constructXSLTProcessor): Ditto.
154 * bindings/js/ScriptController.cpp:
155 (WebCore::ScriptController::finishedWithEvent): Ditto.
156 * xml/XMLHttpRequest.cpp:
157 (WebCore::XMLHttpRequest::loadRequestAsynchronously): Ditto.
158 (WebCore::XMLHttpRequest::dropProtection): Ditto.
159
hyatt@apple.com083539d2008-09-19 06:30:16 +00001602008-09-18 David Hyatt <hyatt@apple.com>
161
162 This patch gets a viewless scrollbar working on Mac. It is turned off
163 by default. Hit testing works. For now the scrollbar just paints ugly
164 debug rects in the place of the buttons, track and thumb. It does match
165 Aqua metrics though.
166
167 Reviewed by Sam Weinig
168
169 * WebCore.xcodeproj/project.pbxproj:
170 * page/mac/EventHandlerMac.mm:
171 (WebCore::EventHandler::passMousePressEventToScrollbar):
172 * platform/ScrollbarThemeComposite.cpp:
173 (WebCore::ScrollbarThemeComposite::paint):
174 (WebCore::ScrollbarThemeComposite::trackPosition):
175 * platform/ScrollbarThemeComposite.h:
176 * platform/mac/ScrollViewMac.mm:
177 (WebCore::ScrollView::addChild):
178 * platform/mac/ScrollbarThemeMac.cpp:
179 (WebCore::):
180 (WebCore::ScrollbarThemeMac::hasButtons):
181 (WebCore::ScrollbarThemeMac::hasThumb):
182 (WebCore::buttonRepaintRect):
183 (WebCore::ScrollbarThemeMac::backButtonRect):
184 (WebCore::ScrollbarThemeMac::forwardButtonRect):
185 (WebCore::trackRepaintRect):
186 (WebCore::ScrollbarThemeMac::trackRect):
187 (WebCore::ScrollbarThemeMac::minimumThumbLength):
188 (WebCore::ScrollbarThemeMac::shouldCenterOnThumb):
189 (WebCore::ScrollbarThemeMac::paintTrack):
190 (WebCore::ScrollbarThemeMac::paintButton):
191 (WebCore::ScrollbarThemeMac::paintThumb):
192 * platform/mac/ScrollbarThemeMac.h:
193 (WebCore::ScrollbarThemeMac::supportsControlTints):
194 * platform/qt/ScrollbarThemeQt.cpp:
195 (WebCore::ScrollbarThemeQt::trackPosition):
196
collinj@webkit.org51261aa2008-09-19 06:13:22 +00001972008-09-18 Collin Jackson <collinj@webkit.org>
198
199 Build fix; added missing header file to GNUmakefile.am
200
201 * GNUmakefile.am:
202
weinig@apple.com39aecbe2008-09-19 04:56:21 +00002032008-09-18 Sam Weinig <sam@webkit.org>
204
205 Reviewed by David "the Hair" Hyatt.
206
207 Move DataRef, SVGRenderStyle and SVGRenderStyleDefs in render/style.
208
209 * GNUmakefile.am:
210 * WebCore.pro:
211 * WebCore.vcproj/WebCore.vcproj:
212 * WebCore.xcodeproj/project.pbxproj:
213 * rendering/DataRef.h: Removed.
214 * rendering/SVGRenderStyle.cpp: Removed.
215 * rendering/SVGRenderStyle.h: Removed.
216 * rendering/SVGRenderStyleDefs.cpp: Removed.
217 * rendering/SVGRenderStyleDefs.h: Removed.
218 * rendering/style/DataRef.h: Copied from rendering/DataRef.h.
219 * rendering/style/SVGRenderStyle.cpp: Copied from rendering/SVGRenderStyle.cpp.
220 * rendering/style/SVGRenderStyle.h: Copied from rendering/SVGRenderStyle.h.
221 * rendering/style/SVGRenderStyleDefs.cpp: Copied from rendering/SVGRenderStyleDefs.cpp.
222 * rendering/style/SVGRenderStyleDefs.h: Copied from rendering/SVGRenderStyleDefs.h.
223
mrowe@apple.coma5206592008-09-19 04:47:58 +00002242008-09-18 Mark Rowe <mrowe@apple.com>
225
226 Reviewed by Dan Bernstein.
227
228 Add a means of clearing a FrameTree's name.
229
230 * WebCore.base.exp:
231 * page/FrameTree.cpp:
232 (WebCore::FrameTree::clearName):
233 * page/FrameTree.h:
234
hyatt@apple.com6eeef382008-09-19 04:30:53 +00002352008-09-18 David Hyatt <hyatt@apple.com>
236
237 Eliminate addToSuperview from Widget, since it was only called
238 by ScrollViewMac's addChild method. Just shift the original body
239 of addToSuperView into addChild.
240
241 Reviewed by Sam Weinig
242
243 * platform/Widget.h:
244 * platform/mac/ScrollViewMac.mm:
245 (WebCore::ScrollView::addChild):
246 * platform/mac/WidgetMac.mm:
247
collinj@webkit.org9c672f62008-09-19 04:15:14 +00002482008-09-18 Collin Jackson <collinj@webkit.org>
249
250 Reviewed by Antti Koivisto and Mark Rowe.
251
252 Test: http/tests/misc/dns-prefetch-control.html
253
254 https://bugs.webkit.org/show_bug.cgi?id=20690
255
256 Invoke WebCore::prefetchDNS() on host names that appear in
257 in the href of hyperlinks and <link rel="dns-prefetch">. This
258 can be used to implement DNS prefetching.
259
260 * WebCore.vcproj/WebCore.vcproj:
261 * WebCore.xcodeproj/project.pbxproj:
262 * dom/Document.cpp:
263 (WebCore::Document::Document):
264 (WebCore::Document::processHttpEquiv):
265 (WebCore::Document::setSecurityOrigin):
266 (WebCore::Document::initDNSPrefetch):
267 (WebCore::Document::parseDNSPrefetchControlHeader):
268 * dom/Document.h:
269 (WebCore::Document::isDNSPrefetchEnabled):
270 * html/HTMLAnchorElement.cpp:
271 (WebCore::HTMLAnchorElement::parseMappedAttribute):
272 * html/HTMLLinkElement.cpp:
273 (WebCore::HTMLLinkElement::HTMLLinkElement):
274 (WebCore::HTMLLinkElement::parseMappedAttribute):
275 (WebCore::HTMLLinkElement::tokenizeRelAttribute):
276 (WebCore::HTMLLinkElement::process):
277 * html/HTMLLinkElement.h:
278 * html/PreloadScanner.cpp:
279 (WebCore::PreloadScanner::processAttribute):
280 * loader/FrameLoader.cpp:
281 (WebCore::FrameLoader::begin):
282 * platform/gtk/TemporaryLinkStubs.cpp:
283 (WebCore::prefetchDNS):
284 * platform/network/DNS.h: Added.
285 * platform/network/cf/DNSCFNet.cpp: Added.
286 (WebCore::prefetchDNS):
287 * platform/qt/TemporaryLinkStubs.cpp:
288 (WebCore::prefetchDNS):
289 * platform/wx/TemporaryLinkStubs.cpp:
290 (WebCore::prefetchDNS):
291
hyatt@apple.comc5b931a2008-09-19 00:39:51 +00002922008-09-18 David Hyatt <hyatt@apple.com>
293
hyatt@apple.comcf31c162008-09-19 04:01:56 +0000294 Eliminate the convertToScreenCoordinate method on Widget, since
295 ScrollView has redundant methods that already do the same thing.
296
297 Reviewed by Sam Weinig
298
299 * editing/mac/SelectionControllerMac.mm:
300 (WebCore::SelectionController::notifyAccessibilityForSelectionChange):
301 * platform/Widget.h:
302 * platform/mac/WidgetMac.mm:
303 (WebCore::Widget::containingWindow):
304
3052008-09-18 David Hyatt <hyatt@apple.com>
306
hyatt@apple.com179629b3c2008-09-19 03:16:26 +0000307 Move to only one constructor for Widgets. Rename data to m_data and make
308 it have an #ifdef only for platforms that have platform-specific data (Mac
309 and Gtk).
310
311 Reviewed by Sam Weinig
312
313 * WebCore.base.exp:
314 * platform/Widget.cpp:
315 (WebCore::Widget::init):
316 * platform/Widget.h:
317 * platform/gtk/WidgetGtk.cpp:
318 (WebCore::Widget::Widget):
319 (WebCore::Widget::~Widget):
320 (WebCore::Widget::cursor):
321 (WebCore::Widget::setCursor):
322 * platform/mac/WidgetMac.mm:
323 (WebCore::Widget::Widget):
324 (WebCore::Widget::~Widget):
325 (WebCore::Widget::addToSuperview):
326 (WebCore::Widget::removeFromSuperview):
327 (WebCore::Widget::beforeMouseDown):
328 (WebCore::Widget::afterMouseDown):
329 * platform/qt/WidgetQt.cpp:
330 (WebCore::Widget::Widget):
331 * platform/win/WidgetWin.cpp:
332 (WebCore::Widget::Widget):
333 * platform/wx/WidgetWx.cpp:
334 (WebCore::Widget::Widget):
335
3362008-09-18 David Hyatt <hyatt@apple.com>
337
hyatt@apple.com470d7e72008-09-19 03:01:08 +0000338 Move Qt's isNPAPIPlugin boolean from Widget down to PluginView, since there
339 was no reason for it to be on Widget. This change eliminates Qt ifdefs
340 from Widget.
341
342 Reviewed by Sam Weinig
343
344 * bindings/js/ScriptControllerQt.cpp:
345 (WebCore::ScriptController::createScriptInstanceForWidget):
346 * platform/qt/WidgetQt.cpp:
347 (WebCore::WidgetPrivate::WidgetPrivate):
348 (WebCore::WidgetPrivate::~WidgetPrivate):
349 (WebCore::Widget::Widget):
350 (WebCore::Widget::~Widget):
351 * plugins/PluginView.cpp:
352 (WebCore::PluginView::PluginView):
353 * plugins/PluginView.h:
354 (WebCore::PluginView::isNPAPIPlugin):
355 (WebCore::PluginView::setIsNPAPIPlugin):
356
3572008-09-18 David Hyatt <hyatt@apple.com>
358
hyatt@apple.com557408b2008-09-19 02:36:08 +0000359 Make geometryChanged() cross-platform on Widget. GTK and WIN platform
360 ifdefs are now gone from Widget!
361
362 Reviewed by Sam Weinig
363
364 * platform/Widget.h:
365 (WebCore::Widget::geometryChanged):
366 * platform/gtk/WidgetGtk.cpp:
367 * platform/qt/WidgetQt.cpp:
368
3692008-09-18 David Hyatt <hyatt@apple.com>
370
hyatt@apple.com17e57432008-09-19 02:29:27 +0000371 Consolidate convertTo/FromContainingWindow methods so that all platforms
372 but Mac share the same code.
373
374 Move convertSelfToChild and convertChildToSelf to ScrollView, since
375 Widget should know nothing about children. Make the methods cross-platform
376 on ScrollView.
377
378 Reviewed by Sam Weinig
379
380 * platform/ScrollView.h:
381 (WebCore::ScrollView::convertChildToSelf):
382 (WebCore::ScrollView::convertSelfToChild):
383 * platform/Widget.cpp:
384 (WebCore::Widget::convertToContainingWindow):
385 (WebCore::Widget::convertFromContainingWindow):
386 * platform/Widget.h:
387 (WebCore::Widget::geometryChanged):
388 * platform/gtk/ScrollViewGtk.cpp:
389 (WebCore::ScrollView::isScrollViewScrollbar):
390 * platform/gtk/WidgetGtk.cpp:
391 * platform/mac/ScrollViewMac.mm:
392 (WebCore::ScrollView::isScrollViewScrollbar):
393 * platform/mac/WidgetMac.mm:
394 * platform/qt/ScrollViewQt.cpp:
395 (WebCore::ScrollView::isScrollViewScrollbar):
396 * platform/qt/WidgetQt.cpp:
397 * platform/win/ScrollViewWin.cpp:
398 (WebCore::ScrollView::isScrollViewScrollbar):
399 * platform/win/WidgetWin.cpp:
400
4012008-09-18 David Hyatt <hyatt@apple.com>
402
hyatt@apple.comc5b931a2008-09-19 00:39:51 +0000403 Make the conversion methods that go to and from some containingWindow
404 cross-platform. Implement them on Mac.
405
406 Reviewed by Sam Weinig
407
408 * platform/Widget.h:
409 (WebCore::Widget::setContainingWindow):
410 * platform/mac/WidgetMac.mm:
411 (WebCore::Widget::convertFromContainingWindow):
412 (WebCore::Widget::convertToContainingWindow):
413
weinig@apple.comd1ea02d2008-09-19 00:28:05 +00004142008-09-18 Sam Weinig <sam@webkit.org>
415
416 Rubber-stamped by David "Yeah-yeah" Hyatt.
417
418 Cleanup RenderStyle.
419
420 * WebCore.xcodeproj/project.pbxproj:
421 * rendering/style/CounterContent.h:
422 * rendering/style/RenderStyle.cpp:
423 * rendering/style/RenderStyle.h:
424
dino@apple.comef93f532008-09-19 00:01:07 +00004252008-09-18 Chris Marrin <cmarrin@apple.com>
426
427 Reviewed by Sam Weinig
428
429 Fixed https://bugs.webkit.org/show_bug.cgi?id=20908
430 Now TransformOperations and AnimationList no longer
431 inherit from Vector<> but rather have API to access.
432
433 * css/CSSComputedStyleDeclaration.cpp:
434 (WebCore::computedTransform):
435 (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
436 * css/CSSStyleSelector.cpp:
437 (WebCore::CSSStyleSelector::createTransformOperations):
438 * page/animation/AnimationBase.cpp:
439 (WebCore::blendFunc):
440 * page/animation/CompositeAnimation.cpp:
441 (WebCore::CompositeAnimation::updateTransitions):
442 (WebCore::CompositeAnimation::updateKeyframeAnimations):
443 (WebCore::CompositeAnimation::animate):
444 * page/animation/ImplicitAnimation.cpp:
445 (WebCore::ImplicitAnimation::validateTransformFunctionList):
446 * page/animation/KeyframeAnimation.cpp:
447 (WebCore::KeyframeAnimation::validateTransformFunctionList):
448 * rendering/RenderLayer.cpp:
449 (WebCore::RenderLayer::updateReflectionStyle):
450 * rendering/style/AnimationList.cpp:
451 (WebCore::AnimationList::operator==):
452 * rendering/style/AnimationList.h:
453 (WebCore::AnimationList::operator!=):
454 (WebCore::AnimationList::size):
455 (WebCore::AnimationList::isEmpty):
456 (WebCore::AnimationList::resize):
457 (WebCore::AnimationList::remove):
458 (WebCore::AnimationList::append):
459 (WebCore::AnimationList::animation):
460 * rendering/style/RenderStyle.cpp:
461 (WebCore::StyleRareNonInheritedData::updateKeyframes):
462 (WebCore::RenderStyle::applyTransform):
463 (WebCore::RenderStyle::adjustAnimations):
464 (WebCore::RenderStyle::adjustTransitions):
465 (WebCore::RenderStyle::transitionForProperty):
466 * rendering/style/RenderStyle.h:
467 (WebCore::RenderStyle::hasTransform):
468 * rendering/style/TransformOperations.cpp:
469 (WebCore::TransformOperations::TransformOperations):
470 (WebCore::TransformOperations::operator==):
471 * rendering/style/TransformOperations.h:
472 (WebCore::TransformOperations::apply):
473 (WebCore::TransformOperations::operations):
474
zecke@webkit.org20690ef2008-09-18 23:28:34 +00004752008-09-18 Holger Hans Peter Freyther <zecke@selfish.org>
476
zecke@webkit.org30db7422008-09-19 01:00:18 +0000477 Build fix.
478
479 [qt] Build fixes after the Widget/ScrollView cleanup
480 topLevel() is now root()
481
482
483 * platform/qt/ScrollViewQt.cpp:
484 (WebCore::ScrollView::ScrollViewPrivate::scrollBackingStore):
485 (WebCore::ScrollView::addChild):
486 (WebCore::ScrollView::removeChild):
487
4882008-09-18 Holger Hans Peter Freyther <zecke@selfish.org>
489
zecke@webkit.org20690ef2008-09-18 23:28:34 +0000490 Reviewed by Mark Rowe.
491
492 https://bugs.webkit.org/show_bug.cgi?id=20437
493
494 XMLTokenizer.cpp used to contain two different implementations. One was using
495 libxml2 and the other was using the Qt XML StreamReader. Clean up the code by
496 separating the two implementations from each other.
497 Common code and some small bits are kept inside the XMLTokenizer.cpp, the Qt code
498 was moved to XMLTokenizerQt.cpp and the Libxml2 based code was moved to
499 XMLTokenizerLibxml2.cpp. There should be no functional changes.
500
501 Attempt to add XMLTokenizerLibxml2.cpp to every buildsystem so the build continues
502 to work.
503
504 * GNUmakefile.am:
505 * WebCore.pro:
506 * WebCore.vcproj/WebCore.vcproj:
507 * WebCore.xcodeproj/project.pbxproj:
508 * WebCoreSources.bkl:
509 * dom/XMLTokenizer.cpp:
510 (WebCore::isScriptElement):
511 (WebCore::castToScriptElement):
512 (WebCore::XMLTokenizer::setCurrentNode):
513 (WebCore::XMLTokenizer::write):
514 (WebCore::XMLTokenizer::eventuallyMarkAsParserCreated):
515 (WebCore::XMLTokenizer::enterText):
516 (WebCore::toString):
517 (WebCore::XMLTokenizer::exitText):
518 (WebCore::XMLTokenizer::end):
519 (WebCore::XMLTokenizer::insertErrorMessageBlock):
520 * dom/XMLTokenizer.h:
521 (WebCore::XMLTokenizer::wellFormed):
522 * dom/XMLTokenizerLibxml2.cpp: Copied from WebCore/dom/XMLTokenizer.cpp.
523 (WebCore::createMemoryParser):
524 (WebCore::XMLTokenizer::XMLTokenizer):
525 (WebCore::XMLTokenizer::~XMLTokenizer):
526 (WebCore::XMLTokenizer::doWrite):
527 (WebCore::ignorableWhitespaceHandler):
528 (WebCore::XMLTokenizer::initializeParserContext):
529 (WebCore::XMLTokenizer::doEnd):
530 (WebCore::XMLTokenizer::lineNumber):
531 (WebCore::XMLTokenizer::columnNumber):
532 (WebCore::XMLTokenizer::stopParsing):
533 (WebCore::XMLTokenizer::resumeParsing):
534 (WebCore::parseXMLDocumentFragment):
535 (WebCore::attributesStartElementNsHandler):
536 (WebCore::parseAttributes):
537 * dom/XMLTokenizerQt.cpp: Copied from WebCore/dom/XMLTokenizer.cpp.
538 (WebCore::EntityResolver::resolveUndeclaredEntity):
539 (WebCore::XMLTokenizer::XMLTokenizer):
540 (WebCore::XMLTokenizer::~XMLTokenizer):
541 (WebCore::XMLTokenizer::doWrite):
542 (WebCore::XMLTokenizer::initializeParserContext):
543 (WebCore::XMLTokenizer::doEnd):
544 (WebCore::XMLTokenizer::lineNumber):
545 (WebCore::XMLTokenizer::columnNumber):
546 (WebCore::XMLTokenizer::stopParsing):
547 (WebCore::XMLTokenizer::resumeParsing):
548 (WebCore::parseXMLDocumentFragment):
549 (WebCore::attributesStartElementNsHandler):
550 (WebCore::parseAttributes):
551 (WebCore::):
552
bdakin@apple.com4c244902008-09-18 23:08:35 +00005532008-09-18 Beth Dakin <bdakin@apple.com>
554
555 Reviewed by Geoff Garen.
556
557 Build fix for non-Mac builds.
558
559 * css/CSSPrimitiveValue.cpp:
560 (WebCore::CSSPrimitiveValue::cssText):
561
eric@webkit.org4ac94e62008-09-18 23:07:55 +00005622008-09-18 Peter Kasting <pkasting@google.com>
563
564 Reviewed by hyatt. Landed by eseidel.
565
566 https://bugs.webkit.org/show_bug.cgi?id=20745
567 Animated GIFs do not animate properly with (at least) CG.
568
569 * WebCore\platform\graphics\BitmapImage.cpp:
570 * WebCore\platform\graphics\BitmapImage.h:
571 * WebCore\platform\graphics\cairo\ImageCairo.cpp:
572 * WebCore\platform\graphics\cg\ImageCG.cpp:
573 * WebCore\platform\graphics\qt\ImageQt.cpp:
574 * WebCore\platform\graphics\wx\ImageWx.cpp:
575
cfleizach@apple.com2a72d8f2008-09-18 22:54:37 +00005762008-09-18 Chris Fleizach <cfleizach@apple.com>
577
578 Reviewed by Beth Dakin
579
580 <rdar://problem/6224222> AX: should not expose a <table> as an AXTable if ARIA
581 role specifies otherwise
582
583 If a <table> isn't an AXTable, the rows and cells should default to AccessibilityRenderObject
584
585 Test: accessibility/table-with-aria-role.html
586
587 * page/AccessibilityTable.cpp:
588 (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
589 (WebCore::AccessibilityTable::addChildren):
590 (WebCore::AccessibilityTable::roleValue):
591 (WebCore::AccessibilityTable::accessibilityIsIgnored):
592 (WebCore::AccessibilityTable::title):
593 * page/AccessibilityTableCell.cpp:
594 (WebCore::AccessibilityTableCell::accessibilityIsIgnored):
595 (WebCore::AccessibilityTableCell::isTableCell):
596 (WebCore::AccessibilityTableCell::roleValue):
597 * page/AccessibilityTableCell.h:
598 * page/AccessibilityTableRow.cpp:
599 (WebCore::AccessibilityTableRow::roleValue):
600 (WebCore::AccessibilityTableRow::isTableRow):
601 (WebCore::AccessibilityTableRow::accessibilityIsIgnored):
602 * page/AccessibilityTableRow.h:
603
sfalken@apple.coma96c5d32008-09-18 22:29:34 +00006042008-09-18 Steve Falkenburg <sfalken@apple.com>
605
606 Use higher-resolution timers on all variants of Windows.
607
608 Reviewed by Darin Adler.
609
610 * platform/win/SharedTimerWin.cpp:
611 (WebCore::setSharedTimerFireTime):
612
613
hyatt@apple.comb7d49b62008-09-18 22:21:25 +00006142008-09-18 David Hyatt <hyatt@apple.com>
615
616 Make containingWindow() and setContainingWindow() cross-platform.
617 Add a root() function cross-platform so Qt doesn't have to
618 define its own.
619
620 Reviewed by Darin Adler
621
622 * platform/Widget.cpp:
623 (WebCore::Widget::root):
624 * platform/Widget.h:
625 (WebCore::Widget::setContainingWindow):
626 * platform/gtk/WidgetGtk.cpp:
627 (WebCore::Widget::Widget):
628 (WebCore::Widget::containingWindow):
629 * platform/mac/ScrollViewMac.mm:
630 (WebCore::ScrollView::addChild):
631 (WebCore::ScrollView::removeChild):
632 * platform/mac/WidgetMac.mm:
633 (WebCore::Widget::containingWindow):
634 * platform/qt/WidgetQt.cpp:
635 (WebCore::Widget::invalidateRect):
636 (WebCore::Widget::containingWindow):
637 * platform/win/WidgetWin.cpp:
638 (WebCore::Widget::Widget):
639 (WebCore::Widget::~Widget):
640 (WebCore::Widget::containingWindow):
641
bdakin@apple.comfa1ce162008-09-18 22:18:01 +00006422008-09-18 Beth Dakin <bdakin@apple.com>
643
644 Reviewed by Dave Hyatt.
645
646 Fix for https://bugs.webkit.org/show_bug.cgi?id=20515 Crash upon
647 parsing CSS: unicode-range: searchfield-cancel-buttonpt=-webkit-
648 dashboard-region=
649 and corresponding: <rdar://problem/6174100>
650
651 This patch makes CSSParserValue::createCSSValue handle unknown
652 identifiers.
653
654 * css/CSSParserValues.cpp:
655 (WebCore::CSSParserValue::createCSSValue): If we have an identifier
656 with no id (an unknown identifier) create a CSSPrimitiveValue of
657 type CSS_PARSER_IDENTIFIER
658 * css/CSSPrimitiveValue.cpp:
659 (WebCore::CSSPrimitiveValue::cssText):
660 (WebCore::CSSPrimitiveValue::parserValue):
661 * css/CSSPrimitiveValue.h:
662 (WebCore::CSSPrimitiveValue::):
663
weinig@apple.comfce49be2008-09-18 21:46:14 +00006642008-09-18 Sam Weinig <sam@webkit.org>
665
666 Rubber-stamped by David "I'd prefer not" Hyatt.
667
668 More the remaining class out of RenderStyle.h/cpp
669
670 * GNUmakefile.am:
671 * WebCore.pro:
672 * WebCore.vcproj/WebCore.vcproj:
673 * WebCore.xcodeproj/project.pbxproj:
674 * WebCoreSources.bkl:
675 * rendering/style/CursorData.h: Copied from rendering/style/RenderStyle.h.
676 (WebCore::CursorData::CursorData):
677 (WebCore::CursorData::operator==):
678 (WebCore::CursorData::operator!=):
679 * rendering/style/CursorList.h: Copied from rendering/style/RenderStyle.h.
680 (WebCore::CursorList::operator[]):
681 (WebCore::CursorList::CursorList):
682 * rendering/style/RenderStyle.cpp:
683 * rendering/style/RenderStyle.h:
684 (WebCore::RenderStyle::deref):
685 (WebCore::RenderStyle::hasOneRef):
686 (WebCore::RenderStyle::InheritedFlags::operator!=):
687 (WebCore::RenderStyle::NonInheritedFlags::operator!=):
688 (WebCore::RenderStyle::hasBackground):
689 (WebCore::RenderStyle::outlineWidth):
690 (WebCore::RenderStyle::autoWrap):
691 (WebCore::RenderStyle::preserveNewline):
692 (WebCore::RenderStyle::collapseWhiteSpace):
693 (WebCore::RenderStyle::isCollapsibleWhiteSpace):
694 (WebCore::RenderStyle::breakOnlyAfterWhiteSpace):
695 (WebCore::RenderStyle::breakWords):
696 (WebCore::RenderStyle::outlineOffset):
697 (WebCore::RenderStyle::setLeft):
698 (WebCore::RenderStyle::setRight):
699 (WebCore::RenderStyle::setTop):
700 (WebCore::RenderStyle::setBottom):
701 (WebCore::RenderStyle::setDashboardRegion):
702 (WebCore::RenderStyle::setBackgroundColor):
703 (WebCore::RenderStyle::setBorderImage):
704 (WebCore::RenderStyle::setBorderRadius):
705 (WebCore::RenderStyle::setFontDescription):
706 (WebCore::RenderStyle::adjustBackgroundLayers):
707 (WebCore::RenderStyle::adjustMaskLayers):
708 (WebCore::RenderStyle::deleteBindingURIs):
709 (WebCore::RenderStyle::inheritBindingURIs):
710 (WebCore::RenderStyle::isDisplayReplacedType):
711 (WebCore::RenderStyle::isDisplayInlineType):
712 (WebCore::RenderStyle::isOriginalDisplayInlineType):
713 * rendering/style/StyleInheritedData.cpp: Copied from rendering/style/RenderStyle.cpp.
714 * rendering/style/StyleInheritedData.h: Copied from rendering/style/RenderStyle.h.
715 (WebCore::StyleInheritedData::operator!=):
716 * rendering/style/StyleRareInheritedData.cpp: Copied from rendering/style/RenderStyle.cpp.
717 * rendering/style/StyleRareInheritedData.h: Copied from rendering/style/RenderStyle.h.
718 (WebCore::StyleRareInheritedData::operator!=):
719 * rendering/style/StyleRareNonInheritedData.cpp: Copied from rendering/style/RenderStyle.cpp.
720 * rendering/style/StyleRareNonInheritedData.h: Copied from rendering/style/RenderStyle.h.
721 * rendering/style/StyleReflection.h: Copied from rendering/style/RenderStyle.h.
722
hyatt@apple.com643534d2008-09-18 20:09:41 +00007232008-09-18 David Hyatt <hyatt@apple.com>
724
hyatt@apple.comd23089a2008-09-18 20:24:16 +0000725 Move the concept of suppression invalidation on Widgets to Scrollbar
726 instead. Since this is only used by Scrollbars, there is no need for
727 it to be on Widget.
728
729 Reviewed by Sam Weinig
730
731 * platform/Scrollbar.cpp:
732 (WebCore::Scrollbar::Scrollbar):
733 (WebCore::Scrollbar::invalidateRect):
734 * platform/Scrollbar.h:
735 (WebCore::Scrollbar::suppressInvalidation):
736 (WebCore::Scrollbar::setSuppressInvalidation):
737 * platform/Widget.h:
738 * platform/gtk/WidgetGtk.cpp:
739 (WebCore::Widget::Widget):
740 (WebCore::Widget::invalidateRect):
741 * platform/qt/WidgetQt.cpp:
742 (WebCore::WidgetPrivate::WidgetPrivate):
743 (WebCore::Widget::invalidateRect):
744 * platform/win/WidgetWin.cpp:
745 (WebCore::Widget::Widget):
746 (WebCore::Widget::invalidateRect):
747
7482008-09-18 David Hyatt <hyatt@apple.com>
749
hyatt@apple.com643534d2008-09-18 20:09:41 +0000750 Make invalidate() on Widget non-virtual and make it just call
751 invalidateRect() on the boundsGeometry() of the Widget.
752
753 Reviewed by Dan Bernstein
754
755 * platform/Widget.h:
756 (WebCore::Widget::boundsGeometry):
757 (WebCore::Widget::invalidate):
758 * platform/gtk/WidgetGtk.cpp:
759 * platform/mac/WidgetMac.mm:
760 * platform/qt/WidgetQt.cpp:
761 * platform/win/WidgetWin.cpp:
762 * platform/wx/WidgetWx.cpp:
763
weinig@apple.comcaf2df42008-09-18 19:40:24 +00007642008-09-18 Sam Weinig <sam@webkit.org>
765
766 Rubber-stamped in exile by David Hyatt.
767
768 Split Animation, AnimationList, BindingURI, ContentData, CounterContent,
769 KeyframeList, ShadowData, StyleFlexibleBoxData and TimingFunction out of
770 RenderStyle.h/cpp
771
772 * GNUmakefile.am:
773 * WebCore.pro:
774 * WebCore.vcproj/WebCore.vcproj:
775 * WebCore.xcodeproj/project.pbxproj:
776 * WebCoreSources.bkl:
777 * css/CSSStyleSelector.cpp:
778 * css/CSSStyleSelector.h:
779 * page/animation/CompositeAnimation.cpp:
780 * page/animation/KeyframeAnimation.cpp:
781 * page/animation/KeyframeAnimation.h:
782 * rendering/RenderCounter.h:
783 * rendering/style/Animation.cpp: Copied from rendering/style/RenderStyle.cpp.
784 (WebCore::Animation::~Animation):
785 (WebCore::Animation::animationsMatch):
786 (WebCore::Animation::keyframeList):
787 (WebCore::Animation::setAnimationKeyframe):
788 * rendering/style/Animation.h: Copied from rendering/style/RenderStyle.h.
789 * rendering/style/AnimationList.cpp: Copied from rendering/style/RenderStyle.cpp.
790 * rendering/style/AnimationList.h: Copied from rendering/style/RenderStyle.h.
791 * rendering/style/BindingURI.cpp: Copied from rendering/style/RenderStyle.cpp.
792 * rendering/style/BindingURI.h: Copied from rendering/style/RenderStyle.h.
793 (WebCore::BindingURI::operator!=):
794 * rendering/style/ContentData.cpp: Copied from rendering/style/RenderStyle.cpp.
795 * rendering/style/ContentData.h: Copied from rendering/style/RenderStyle.h.
796 (WebCore::ContentData::ContentData):
797 (WebCore::ContentData::~ContentData):
798 * rendering/style/CounterContent.h: Copied from rendering/style/RenderStyle.h.
799 (WebCore::CounterContent::CounterContent):
800 * rendering/style/CounterDirectives.cpp: Copied from rendering/style/RenderStyle.cpp.
801 * rendering/style/CounterDirectives.h: Copied from rendering/style/RenderStyle.h.
802 (WebCore::CounterDirectives::CounterDirectives):
803 * rendering/style/KeyframeList.cpp: Copied from rendering/style/RenderStyle.cpp.
804 (WebCore::KeyframeList::insert):
805 * rendering/style/KeyframeList.h: Copied from rendering/style/RenderStyle.h.
806 (WebCore::KeyframeValue::KeyframeValue):
807 (WebCore::KeyframeList::create):
808 (WebCore::KeyframeList::KeyframeList):
809 * rendering/style/RenderStyle.cpp:
810 * rendering/style/RenderStyle.h:
811 * rendering/style/ShadowData.cpp: Copied from rendering/style/RenderStyle.cpp.
812 * rendering/style/ShadowData.h: Copied from rendering/style/RenderStyle.h.
813 (WebCore::ShadowData::ShadowData):
814 (WebCore::ShadowData::~ShadowData):
815 (WebCore::ShadowData::operator!=):
816 * rendering/style/StyleFlexibleBoxData.cpp: Copied from rendering/style/RenderStyle.cpp.
817 * rendering/style/StyleFlexibleBoxData.h: Copied from rendering/style/RenderStyle.h.
818 (WebCore::StyleFlexibleBoxData::operator!=):
819 * rendering/style/TimingFunction.h: Copied from rendering/style/RenderStyle.h.
820 (WebCore::TimingFunction::TimingFunction):
821 (WebCore::TimingFunction::operator==):
822
adele@apple.com5b2b5da2008-09-18 18:49:44 +00008232008-09-18 Adele Peterson <adele@apple.com>
824
825 Reviewed by Dan Bernstein.
826
827 Fix RenderStyle leaks.
828
829 * rendering/RenderTextControl.cpp: (WebCore::RenderTextControl::createSubtreeIfNeeded):
830
kmccullough@apple.comd4089752008-09-18 17:21:49 +00008312008-09-18 Kevin McCullough <kmccullough@apple.com>
832
kmccullough@apple.com76c708f2008-09-18 18:03:23 +0000833 Accidentally checked in code.
834
835 * html/HTMLElementFactory.cpp:
836 (WebCore::frameConstructor):
837 (WebCore::iframeConstructor):
838
8392008-09-18 Kevin McCullough <kmccullough@apple.com>
840
kmccullough@apple.comd4089752008-09-18 17:21:49 +0000841 Reviewed by Tim.
842
843 <rdar://problem/5722310> gracefully handle too many console messages
844 (20904)
845 - Keep track of the most previous message and then compare it to the
846 subsequent messages as they come in. If there are multiple of the same
847 message create a count that indicates the current number.
848
849 * manual-tests/inspector/multiple-console-messages.html: Added.
850 * page/inspector/Console.js:
851 * page/inspector/inspector.css:
852
alp@webkit.org18a1fbc2008-09-18 11:50:26 +00008532008-09-18 Jonathon Jongsma <jonathon@quotidian.org>
854
855 Reviewed by Alp Toker
856
857 https://bugs.webkit.org/show_bug.cgi?id=20830
858 [GTK] Don't use deprecated pango API
859
860 Replace deprecated pango functions with non-deprecated ones for newer
861 versions of pango
862
863 * platform/graphics/gtk/FontGtk.cpp:
864 (WebCore::getDefaultPangoLayout):
865 * platform/graphics/gtk/FontPlatformDataPango.cpp:
866 (WebCore::FontPlatformData::FontPlatformData):
867
alp@webkit.org2154ef22008-09-18 08:10:49 +00008682008-09-18 Alp Toker <alp@nuanti.com>
869
870 Build fix for r36587. Add new sources (and sort the lists).
871
872 * GNUmakefile.am:
873
weinig@apple.com3a98b2a2008-09-18 05:51:35 +00008742008-09-17 Sam Weinig <sam@webkit.org>
875
876 Fix Windows build.
877
878 * WebCore.vcproj/WebCore.vcproj:
879
hyatt@apple.comb3699722008-09-18 05:10:03 +00008802008-09-17 David Hyatt <hyatt@apple.com>
881
882 Switch back to having frameGeometry be virtual in order to keep Mac
883 the way it used to be.
884
885 Reviewed by Sam Weinig
886
887 * WebCore.base.exp:
888 * platform/Widget.cpp:
889 (WebCore::Widget::setParent):
890 * platform/Widget.h:
891 * platform/gtk/WidgetGtk.cpp:
892 (WebCore::Widget::frameGeometry):
893 (WebCore::Widget::setFrameGeometry):
894 * platform/mac/WidgetMac.mm:
895 (WebCore::Widget::frameGeometry):
896 (WebCore::Widget::setFrameGeometry):
897 * platform/qt/WidgetQt.cpp:
898 (WebCore::Widget::frameGeometry):
899 (WebCore::Widget::setFrameGeometry):
900 * platform/win/WidgetWin.cpp:
901 (WebCore::Widget::frameGeometry):
902 (WebCore::Widget::setFrameGeometry):
903 * platform/wx/WidgetWx.cpp:
904 (WebCore::Widget::frameGeometry):
905 (WebCore::Widget::setFrameGeometry):
906 * plugins/PluginView.cpp:
907 (WebCore::PluginView::setFrameGeometry):
908 (WebCore::PluginView::geometryChanged):
909 * plugins/PluginView.h:
910 * plugins/gtk/PluginViewGtk.cpp:
911 (WebCore::PluginView::updatePluginWidget):
912 * plugins/qt/PluginViewQt.cpp:
913 (WebCore::PluginView::updatePluginWidget):
914 * plugins/win/PluginViewWin.cpp:
915 (WebCore::PluginView::updatePluginWidget):
916
weinig@apple.com00f4d5c2008-09-18 03:23:08 +00009172008-09-17 Sam Weinig <sam@webkit.org>
918
weinig@apple.com4fd54cd2008-09-18 05:03:21 +0000919 Reviewed by Mark Rowe.
920
921 Fix assertion in DOMWindow::adjustWindowRect where we were passing
922 in garbage values and were getting lucky that they were a not Nan.
923
924 * bindings/js/JSDOMWindowBase.cpp:
925 (WebCore::windowProtoFuncOpen):
926
9272008-09-17 Sam Weinig <sam@webkit.org>
928
weinig@apple.com95b14762008-09-18 04:28:40 +0000929 Fix gtk build.
930
931 * rendering/style/MatrixTransformOperation.cpp:
932
9332008-09-17 Sam Weinig <sam@webkit.org>
934
weinig@apple.com00f4d5c2008-09-18 03:23:08 +0000935 Rubber-stamped with love by David Hyatt.
936
937 Split IdentityTransformOperation, MatrixTransformOperation, RotateTransformOperation,
938 ScaleTransformOperation, SkewTransformOperation, StyleTransformData, TransformOperation,
939 TransformOperations and TranslateTransformOperation out of RenderStyle.h/cpp
940
941 * GNUmakefile.am:
942 * WebCore.pro:
943 * WebCore.vcproj/WebCore.vcproj:
944 * WebCore.xcodeproj/project.pbxproj:
945 * WebCoreSources.bkl:
946 * css/CSSStyleSelector.cpp:
947 * page/animation/AnimationBase.cpp:
948 (WebCore::solveEpsilon):
949 * rendering/RenderLayer.cpp:
950 * rendering/style/IdentityTransformOperation.h: Copied from rendering/style/RenderStyle.h.
951 * rendering/style/MatrixTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
952 * rendering/style/MatrixTransformOperation.h: Copied from rendering/style/RenderStyle.h.
953 (WebCore::MatrixTransformOperation::MatrixTransformOperation):
954 * rendering/style/RenderStyle.cpp:
955 * rendering/style/RenderStyle.h:
956 * rendering/style/RotateTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
957 * rendering/style/RotateTransformOperation.h: Copied from rendering/style/RenderStyle.h.
958 (WebCore::RotateTransformOperation::RotateTransformOperation):
959 * rendering/style/ScaleTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
960 * rendering/style/ScaleTransformOperation.h: Copied from rendering/style/RenderStyle.h.
961 (WebCore::ScaleTransformOperation::ScaleTransformOperation):
962 * rendering/style/SkewTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
963 * rendering/style/SkewTransformOperation.h: Copied from rendering/style/RenderStyle.h.
964 (WebCore::SkewTransformOperation::SkewTransformOperation):
965 * rendering/style/StyleTransformData.cpp: Copied from rendering/style/RenderStyle.cpp.
966 * rendering/style/StyleTransformData.h: Copied from rendering/style/RenderStyle.h.
967 (WebCore::StyleTransformData::operator!=):
968 * rendering/style/TransformOperation.h: Copied from rendering/style/RenderStyle.h.
969 (WebCore::TransformOperation::):
970 * rendering/style/TransformOperations.cpp: Copied from rendering/style/RenderStyle.cpp.
971 (WebCore::TransformOperations::TransformOperations):
972 * rendering/style/TransformOperations.h: Copied from rendering/style/RenderStyle.h.
973 (WebCore::TransformOperations::operator!=):
974 * rendering/style/TranslateTransformOperation.cpp: Copied from rendering/style/RenderStyle.cpp.
975 * rendering/style/TranslateTransformOperation.h: Copied from rendering/style/RenderStyle.h.
976 (WebCore::TranslateTransformOperation::TranslateTransformOperation):
977
mrowe@apple.comdbfa8852008-09-18 02:59:20 +00009782008-09-17 Mark Rowe <mrowe@apple.com>
979
980 Build fix.
981
982 * rendering/style/StyleDashboardRegion.h: PlatformString.h rather than String.h.
983
hyatt@apple.com76057b42008-09-18 02:48:46 +00009842008-09-17 David Hyatt <hyatt@apple.com>
985
986 (1) Inline a bunch of methods for accessing frame geometry.
987 (2) Make sure frameGeometry() works even when you have no underlying
988 native widget.
989 (3) Cache a frame geometry rect cross-platform (even for widgets that
990 have underlying native widgets.
991 (4) PluginView's updateWindow call is now a virtual function on Widget.
992
993 Reviewed by Sam Weinig
994
995 * ChangeLog:
996 * WebCore.base.exp:
997 * platform/Widget.cpp:
998 (WebCore::Widget::setFrameGeometry):
999 * platform/Widget.h:
1000 (WebCore::Widget::x):
1001 (WebCore::Widget::y):
1002 (WebCore::Widget::width):
1003 (WebCore::Widget::height):
1004 (WebCore::Widget::size):
1005 (WebCore::Widget::pos):
1006 (WebCore::Widget::frameGeometry):
1007 (WebCore::Widget::resize):
1008 (WebCore::Widget::move):
1009 (WebCore::Widget::isFrameView):
1010 (WebCore::Widget::windowClipRect):
1011 * platform/mac/WidgetMac.mm:
1012 (WebCore::Widget::~Widget):
1013 (WebCore::Widget::updatePlatformWidgetFrameGeometry):
1014 * platform/win/WidgetWin.cpp:
1015 (WebCore::Widget::updatePlatformWidgetFrameGeometry):
1016 * plugins/PluginView.cpp:
1017 (WebCore::PluginView::setFrameGeometry):
1018 (WebCore::PluginView::geometryChanged):
1019 * plugins/PluginView.h:
1020 * plugins/gtk/PluginViewGtk.cpp:
1021 (WebCore::PluginView::updatePlatformWidgetFrameGeometry):
1022 * plugins/qt/PluginViewQt.cpp:
1023 (WebCore::PluginView::updatePlatformWidgetFrameGeometry):
1024 * plugins/win/PluginViewWin.cpp:
1025 (WebCore::PluginView::updatePlatformWidgetFrameGeometry):
1026 * plugins/wx/PluginViewWx.cpp:
1027
weinig@apple.coma812a3ce2008-09-18 01:46:26 +000010282008-09-17 Sam Weinig <sam@webkit.org>
1029
weinig@apple.comb4b66742008-09-18 02:47:55 +00001030 Reviewed by David "Waterman" Hyatt.
1031
1032 Fix a leak of NSViews in WidgetMac.mm.
1033
1034 * platform/mac/WidgetMac.mm:
1035 (WebCore::Widget::~Widget):
1036
10372008-09-17 Sam Weinig <sam@webkit.org>
1038
weinig@apple.coma812a3ce2008-09-18 01:46:26 +00001039 Rubber-stamped by David Waterman Hyatt.
1040
1041 Split FillLayer, StyleBackgroundData, StyleBoxData, StyleDashboardRegion, StyleMarqueeData
1042 StyleMultiColData and StyleVisualData out of RenderStyle.h/cpp
1043
1044 * GNUmakefile.am:
1045 * WebCore.pro:
1046 * WebCore.vcproj/WebCore.vcproj:
1047 * WebCore.xcodeproj/project.pbxproj:
1048 * WebCoreSources.bkl:
1049 * rendering/style/FillLayer.cpp: Copied from rendering/style/RenderStyle.cpp.
1050 * rendering/style/FillLayer.h: Copied from rendering/style/RenderStyle.h.
1051 (WebCore::FillLayer::operator!=):
1052 (WebCore::FillLayer::hasImage):
1053 (WebCore::FillLayer::hasFixedImage):
1054 * rendering/style/RenderStyle.cpp:
1055 * rendering/style/RenderStyle.h:
1056 * rendering/style/StyleBackgroundData.cpp: Copied from rendering/style/RenderStyle.cpp.
1057 (WebCore::StyleBackgroundData::StyleBackgroundData):
1058 * rendering/style/StyleBackgroundData.h: Copied from rendering/style/RenderStyle.h.
1059 (WebCore::StyleBackgroundData::~StyleBackgroundData):
1060 (WebCore::StyleBackgroundData::operator!=):
1061 * rendering/style/StyleBoxData.cpp: Copied from rendering/style/RenderStyle.cpp.
1062 * rendering/style/StyleBoxData.h: Copied from rendering/style/RenderStyle.h.
1063 (WebCore::StyleBoxData::operator!=):
1064 * rendering/style/StyleDashboardRegion.h: Copied from rendering/style/RenderStyle.h.
1065 (WebCore::StyleDashboardRegion::operator!=):
1066 * rendering/style/StyleMarqueeData.cpp: Copied from rendering/style/RenderStyle.cpp.
1067 * rendering/style/StyleMarqueeData.h: Copied from rendering/style/RenderStyle.h.
1068 (WebCore::StyleMarqueeData::operator!=):
1069 * rendering/style/StyleMultiColData.cpp: Copied from rendering/style/RenderStyle.cpp.
1070 * rendering/style/StyleMultiColData.h: Copied from rendering/style/RenderStyle.h.
1071 (WebCore::StyleMultiColData::operator!=):
1072 (WebCore::StyleMultiColData::ruleWidth):
1073 * rendering/style/StyleVisualData.cpp: Copied from rendering/style/RenderStyle.cpp.
1074 * rendering/style/StyleVisualData.h: Copied from rendering/style/RenderStyle.h.
1075 (WebCore::StyleVisualData::operator==):
1076
hyatt@apple.comb4f28b32008-09-18 00:39:36 +000010772008-09-17 David Hyatt <hyatt@apple.com>
1078
hyatt@apple.com3f19eac2008-09-18 00:56:04 +00001079 Remove WidgetClient from Widget.
1080
1081 Reviewed by Sam Weinig
1082
1083 * WebCore.xcodeproj/project.pbxproj:
1084 * platform/Widget.h:
1085 (WebCore::Widget::setClient):
1086 (WebCore::Widget::client):
1087 * platform/WidgetClient.h: Removed.
1088 * platform/gtk/WidgetGtk.cpp:
1089 * platform/mac/WidgetMac.mm:
1090 (WebCore::Widget::Widget):
1091 (WebCore::Widget::show):
1092 (WebCore::Widget::hide):
1093 * platform/qt/WidgetQt.cpp:
1094 (WebCore::WidgetPrivate::WidgetPrivate):
1095 * platform/win/WidgetWin.cpp:
1096 (WebCore::Widget::Widget):
1097 * platform/wx/WidgetWx.cpp:
1098 (WebCore::Widget::Widget):
1099
11002008-09-17 David Hyatt <hyatt@apple.com>
1101
hyatt@apple.comb4f28b32008-09-18 00:39:36 +00001102 Remove isEnabled/setEnabled from Widget. The concept of being enabled now
1103 only applies to Scrollbars so the method has been moved there and made
1104 cross-platform. Scrollbar subclasses that have a corresponding native
1105 widget can subclass setEnabled to change the enabled state of the native
1106 widget.
1107
1108 Reviewed by Sam Weinig & Darin Adler
1109
1110 * WebCore.base.exp:
1111 * platform/Scrollbar.cpp:
1112 (WebCore::Scrollbar::Scrollbar):
1113 * platform/Scrollbar.h:
1114 (WebCore::Scrollbar::enabled):
1115 (WebCore::Scrollbar::setEnabled):
1116 * platform/Widget.h:
1117 * platform/gtk/ScrollbarGtk.cpp:
1118 (ScrollbarGtk::setEnabled):
1119 * platform/gtk/ScrollbarGtk.h:
1120 * platform/gtk/WidgetGtk.cpp:
1121 * platform/mac/ScrollbarMac.h:
1122 * platform/mac/ScrollbarMac.mm:
1123 (WebCore::ScrollbarMac::scrollbarHit):
1124 (WebCore::ScrollbarMac::setEnabled):
1125 * platform/mac/WidgetMac.mm:
1126 * platform/qt/WidgetQt.cpp:
1127 (WebCore::WidgetPrivate::WidgetPrivate):
1128 * platform/win/WidgetWin.cpp:
1129 (WebCore::Widget::Widget):
1130 * platform/wx/WidgetWx.cpp:
1131
weinig@apple.com1ea40602008-09-17 23:56:27 +000011322008-09-17 Sam Weinig <sam@webkit.org>
1133
1134 Rubber-stamped by David Hyatt.
1135
1136 Split all RenderStyle enums into their own file.
1137
1138 * GNUmakefile.am:
1139 * WebCore.vcproj/WebCore.vcproj:
1140 * WebCore.xcodeproj/project.pbxproj:
1141 * rendering/style/BorderValue.h:
1142 * rendering/style/CollapsedBorderValue.h:
1143 * rendering/style/RenderStyle.h:
1144 * rendering/style/RenderStyleConstants.h: Copied from rendering/style/RenderStyle.h.
1145 (WebCore::):
1146 * rendering/style/StyleCachedImage.h:
1147 * rendering/style/StyleGeneratedImage.h:
1148 * rendering/style/StyleImage.h:
1149
sfalken@apple.combf270912008-09-17 23:53:17 +000011502008-09-17 Steve Falkenburg <sfalken@apple.com>
1151
1152 Add back isFrameView check to fix failed assertion during scroll bar teardown.
1153
1154 Reviewed by Dave Hyatt.
1155
1156 * platform/Scrollbar.cpp:
1157 (WebCore::Scrollbar::setParent):
1158
beidson@apple.com4398e482008-09-17 23:30:00 +000011592008-09-17 Brady Eidson <beidson@apple.com>
1160
1161 Reviewed by Mac build fix
1162
1163 * WebCore.xcodeproj/project.pbxproj: Send appropriate headers to WebKit
1164
sfalken@apple.com85cc1392008-09-17 23:28:13 +000011652008-09-17 Steve Falkenburg <sfalken@apple.com>
1166
1167 Fix build.
1168
1169 * platform/win/ScrollViewWin.cpp:
1170 (WebCore::ScrollView::setParentVisible):
1171 * plugins/win/PluginViewWin.cpp:
1172 (WebCore::PluginView::init):
1173
zecke@webkit.org2ba9a4e2008-09-17 23:25:10 +000011742008-09-17 Holger Hans Peter Freyther <zecke@selfish.org>
1175
1176 Reviewed by Simon.
1177
1178 [QtWebKit] Implement error handling in TextCodecQt::decode
1179 Use the QTextCodec parsing state to set the sawError out variable. This
1180 is needed to pass Test 70 of acid3. The test case for this bug is
1181 fast/encoding/invalid-xml.html that is now partially passed. To pass
1182 it completely the Qt text codecs need to be adjusted to have proper
1183 error handling.
1184
1185 * platform/text/qt/TextCodecQt.cpp:
1186 (WebCore::TextCodecQt::decode):
1187
weinig@apple.comf6f0f112008-09-17 23:03:16 +000011882008-09-17 Sam Weinig <sam@webkit.org>
1189
1190 Rubber-stamped by Dave Hyatt.
1191
1192 Split BorderData, BorderValue, CollapsedBorderValue, OutlineValue and StyleSurroundData
1193 out of RenderStyle.h/cpp
1194
1195 * GNUmakefile.am:
1196 * WebCore.pro:
1197 * WebCore.vcproj/WebCore.vcproj:
1198 * WebCore.xcodeproj/project.pbxproj:
1199 * WebCoreSources.bkl:
1200 * rendering/style/BorderData.h: Copied from rendering/style/RenderStyle.h.
1201 (WebCore::BorderData::hasBorderRadius):
1202 (WebCore::BorderData::borderLeftWidth):
1203 (WebCore::BorderData::borderRightWidth):
1204 (WebCore::BorderData::borderTopWidth):
1205 (WebCore::BorderData::borderBottomWidth):
1206 (WebCore::BorderData::operator!=):
1207 * rendering/style/BorderValue.h: Copied from rendering/style/RenderStyle.h.
1208 (WebCore::):
1209 (WebCore::BorderValue::BorderValue):
1210 (WebCore::BorderValue::nonZero):
1211 (WebCore::BorderValue::isTransparent):
1212 (WebCore::BorderValue::isVisible):
1213 * rendering/style/CollapsedBorderValue.h: Copied from rendering/style/RenderStyle.h.
1214 (WebCore::):
1215 (WebCore::CollapsedBorderValue::CollapsedBorderValue):
1216 (WebCore::CollapsedBorderValue::operator==):
1217 * rendering/style/OutlineValue.h: Copied from rendering/style/RenderStyle.h.
1218 (WebCore::OutlineValue::OutlineValue):
1219 * rendering/style/RenderStyle.cpp:
1220 * rendering/style/RenderStyle.h:
1221 * rendering/style/StyleSurroundData.cpp: Copied from rendering/style/RenderStyle.cpp.
1222 * rendering/style/StyleSurroundData.h: Copied from rendering/style/RenderStyle.h.
1223 (WebCore::StyleSurroundData::operator!=):
1224
bdakin@apple.com06b97182008-09-17 23:00:29 +000012252008-09-17 Beth Dakin <bdakin@apple.com>
1226
1227 Reviewed by Darin Adler.
1228
1229 This is a better fix for: Invalid CSS code crashes Safari
1230 https://bugs.webkit.org/show_bug.cgi?id=20512
1231
1232 The spec indicates that the only valid input for a counter is a
1233 number or an identifier. So that is exactly what we allow.
1234
1235 * css/CSSParser.cpp:
1236 (WebCore::CSSParser::parseCounterContent):
1237
alp@webkit.org97ba9222008-09-17 22:16:26 +000012382008-09-17 Alp Toker <alp@nuanti.com>
1239
1240 GTK+ build fix. Adapt to use PlatformWidget functions.
1241
1242 * platform/gtk/ScrollViewGtk.cpp:
1243 (WebCore::ScrollViewScrollbar::geometryChanged):
1244 (WebCore::ScrollView::addChild):
1245 (WebCore::ScrollView::removeChild):
1246 * platform/gtk/ScrollbarGtk.cpp:
1247 (ScrollbarGtk::ScrollbarGtk):
1248 (ScrollbarGtk::~ScrollbarGtk):
1249 (ScrollbarGtk::geometryChanged):
1250
weinig@apple.com930ed392008-09-17 22:00:45 +000012512008-09-17 Sam Weinig <sam@webkit.org>
1252
1253 Reviewed by Adele Peterson.
1254
1255 Patch for <rdar://problem/6133884>
1256 Calling window.resizeTo() on a subframe shouldn't change the window size
1257
1258 Test: fast/dom/Window/window-resize-and-move-sub-frame.html
1259
1260 * page/DOMWindow.cpp:
1261 (WebCore::DOMWindow::moveBy):
1262 (WebCore::DOMWindow::moveTo):
1263 (WebCore::DOMWindow::resizeBy):
1264 (WebCore::DOMWindow::resizeTo):
1265
bdakin@apple.com8f952d82008-09-17 21:35:02 +000012662008-09-17 Beth Dakin <bdakin@apple.com>
1267
1268 Reviewed by Adam Roben.
1269
1270 Fix for https://bugs.webkit.org/show_bug.cgi?id=20512 Invalid CSS
1271 code crashes Safari
1272 and corresponding: <rdar://problem/6173832>
1273
1274 Reading through the spec, it seems like a function is not valid
1275 input for a counter. So this patch checks for that and bails in the
1276 case of invalid input.
1277
1278 * css/CSSParser.cpp:
1279 (WebCore::CSSParser::parseCounterContent):
1280
antti@apple.comb37d4052008-09-17 21:14:13 +000012812008-09-17 Greg Bolsinga <bolsinga@apple.com>
1282
1283 Reviewed by Antti Koivisto.
1284
1285 Fix <rdar://problem/6227089>
1286 Crash in WebCore::Frame::setNeedsReapplyStyles()
1287
1288 View is null checked elsewhere too.
1289
1290 * page/Frame.cpp:
1291 (WebCore::Frame::setNeedsReapplyStyles):
1292
hyatt@apple.com8e340252008-09-17 20:59:45 +000012932008-09-17 David Hyatt <hyatt@apple.com>
1294
1295 Make the notion of having a native widget backing a Widget cross-platform.
1296 The PlatformWidget abstraction (which already existed) is used for this.
1297 Windows = HWND
1298 Qt = QWidget
1299 Mac = NSView
1300 wx = wxWindow
1301 Gtk = GtkWidget
1302
1303 There are new cross-platform methods that replace all of the unique
1304 platform-specific methods.
1305 platformWidget()
1306 setPlatformWidget()
1307
1308 For plugins, on every platform except Qt on Windows, the plugin's native
1309 widget is now stored in the Widget base class. Since Qt on Windows uses
1310 HWNDs for plugins instead of QWidget, it is the only platform to keep the
1311 m_window variable in PluginView.
1312
1313 Reviewed by Sam Weinig
1314
1315 * WebCore.base.exp:
1316 * bindings/js/ScriptControllerMac.mm:
1317 (WebCore::ScriptController::createScriptInstanceForWidget):
1318 * page/mac/AccessibilityObjectWrapper.mm:
1319 (-[AccessibilityObjectWrapper attachmentView]):
1320 (-[AccessibilityObjectWrapper accessibilityAttributeValue:]):
1321 * page/mac/EventHandlerMac.mm:
1322 (WebCore::EventHandler::passMouseDownEventToWidget):
1323 (WebCore::EventHandler::mouseDownViewIfStillGood):
1324 (WebCore::EventHandler::passWheelEventToWidget):
1325 (WebCore::EventHandler::sendFakeEventsAfterWidgetTracking):
1326 * platform/Widget.cpp:
1327 (WebCore::Widget::init):
1328 (WebCore::Widget::setParent):
1329 (WebCore::Widget::releasePlatformWidget):
1330 (WebCore::Widget::retainPlatformWidget):
1331 * platform/Widget.h:
1332 (WebCore::Widget::platformWidget):
1333 (WebCore::Widget::setPlatformWidget):
1334 * platform/gtk/WidgetGtk.cpp:
1335 (WebCore::Widget::Widget):
1336 (WebCore::Widget::setFocus):
1337 (WebCore::gdkDrawable):
1338 (WebCore::Widget::setCursor):
1339 (WebCore::Widget::show):
1340 (WebCore::Widget::hide):
1341 (WebCore::Widget::setEnabled):
1342 (WebCore::Widget::isEnabled):
1343 (WebCore::Widget::paint):
1344 * platform/mac/PlatformScreenMac.mm:
1345 (WebCore::screenRect):
1346 (WebCore::screenAvailableRect):
1347 * platform/mac/ScrollViewMac.mm:
1348 (WebCore::ScrollView::scrollView):
1349 (WebCore::ScrollView::update):
1350 (WebCore::ScrollView::inWindow):
1351 * platform/mac/ScrollbarMac.mm:
1352 (WebCore::ScrollbarMac::ScrollbarMac):
1353 (WebCore::ScrollbarMac::~ScrollbarMac):
1354 (WebCore::ScrollbarMac::updateThumbPosition):
1355 (WebCore::ScrollbarMac::updateThumbProportion):
1356 (WebCore::ScrollbarMac::scrollbarHit):
1357 * platform/mac/WidgetMac.mm:
1358 (WebCore::Widget::Widget):
1359 (WebCore::Widget::setEnabled):
1360 (WebCore::Widget::isEnabled):
1361 (WebCore::Widget::setFocus):
1362 (WebCore::Widget::getOuterView):
1363 (WebCore::Widget::paint):
1364 (WebCore::Widget::invalidate):
1365 (WebCore::Widget::invalidateRect):
1366 (WebCore::Widget::setIsSelected):
1367 (WebCore::Widget::releasePlatformWidget):
1368 (WebCore::Widget::retainPlatformWidget):
1369 * platform/qt/WidgetQt.cpp:
1370 (WebCore::WidgetPrivate::WidgetPrivate):
1371 (WebCore::Widget::Widget):
1372 (WebCore::Widget::setFrameGeometry):
1373 (WebCore::Widget::show):
1374 (WebCore::Widget::hide):
1375 (WebCore::Widget::isEnabled):
1376 (WebCore::Widget::setEnabled):
1377 (WebCore::Widget::invalidateRect):
1378 (WebCore::Widget::containingWindow):
1379 * platform/win/WidgetWin.cpp:
1380 (WebCore::Widget::Widget):
1381 * platform/wx/WidgetWx.cpp:
1382 (WebCore::Widget::Widget):
1383 (WebCore::Widget::frameGeometry):
1384 (WebCore::Widget::setFocus):
1385 (WebCore::Widget::setCursor):
1386 (WebCore::Widget::show):
1387 (WebCore::Widget::hide):
1388 (WebCore::Widget::setFrameGeometry):
1389 (WebCore::Widget::setEnabled):
1390 (WebCore::Widget::isEnabled):
1391 (WebCore::Widget::invalidate):
1392 (WebCore::Widget::invalidateRect):
1393 (WebCore::Widget::paint):
1394 * plugins/PluginView.cpp:
1395 (WebCore::PluginView::PluginView):
1396 * plugins/PluginView.h:
1397 (WebCore::PluginView::platformPluginWidget):
1398 * plugins/gtk/PluginViewGtk.cpp:
1399 (WebCore::PluginView::updateWindow):
1400 (WebCore::PluginView::setFocus):
1401 (WebCore::PluginView::show):
1402 (WebCore::PluginView::hide):
1403 (WebCore::PluginView::setParent):
1404 (WebCore::PluginView::setNPWindowRect):
1405 (WebCore::PluginView::setParentVisible):
1406 (WebCore::PluginView::getValue):
1407 (WebCore::PluginView::forceRedraw):
1408 (WebCore::PluginView::init):
1409 * plugins/qt/PluginViewQt.cpp:
1410 (WebCore::PluginView::updateWindow):
1411 (WebCore::PluginView::setFocus):
1412 (WebCore::PluginView::show):
1413 (WebCore::PluginView::hide):
1414 (WebCore::PluginView::setParent):
1415 (WebCore::PluginView::setNPWindowRect):
1416 (WebCore::PluginView::setParentVisible):
1417 (WebCore::PluginView::getValue):
1418 (WebCore::PluginView::~PluginView):
1419 (WebCore::PluginView::init):
1420 * plugins/win/PluginViewWin.cpp:
1421 (WebCore::PluginView::updateWindow):
1422 (WebCore::PluginView::setFocus):
1423 (WebCore::PluginView::show):
1424 (WebCore::PluginView::hide):
1425 (WebCore::PluginView::paint):
1426 (WebCore::PluginView::setParent):
1427 (WebCore::PluginView::setParentVisible):
1428 (WebCore::PluginView::setNPWindowRect):
1429 (WebCore::PluginView::stop):
1430 (WebCore::PluginView::invalidateRect):
1431 (WebCore::PluginView::forceRedraw):
1432 (WebCore::PluginView::~PluginView):
1433 (WebCore::PluginView::init):
1434
weinig@apple.comf713d132008-09-17 20:16:48 +000014352008-09-17 Sam Weinig <sam@webkit.org>
1436
1437 Fix assert.
1438
1439 * platform/Widget.cpp:
1440 (WebCore::Widget::setParent):
1441
hyatt@apple.comd9242e32008-09-17 18:46:31 +000014422008-09-17 David Hyatt <hyatt@apple.com>
1443
1444 Beginnings of Widget refactoring (in order to make the mixing of
1445 widgets with and without corresponding native widgets more cross-platform).
1446
1447 This first patch makes the concept of a parent ScrollView cross-platform.
1448
1449 Note the similarity of the show/hide methods on the three PluginViews. This
1450 will be refactored better in a later patch so that they can all share
1451 a base class Widget show/hide method. For now the changes were made
1452 simply to be able to bring WidgetWin's setParent method up into Widget.
1453
1454 Reviewed by Sam Weinig
1455
1456 * WebCore.base.exp:
1457 * platform/ScrollView.h:
1458 * platform/Widget.cpp:
1459 (WebCore::Widget::init):
1460 (WebCore::Widget::setParent):
1461 * platform/Widget.h:
1462 (WebCore::Widget::isSelfVisible):
1463 (WebCore::Widget::isParentVisible):
1464 (WebCore::Widget::isVisible):
1465 (WebCore::Widget::setParentVisible):
1466 (WebCore::Widget::isPluginView):
1467 (WebCore::Widget::parent):
1468 (WebCore::Widget::handleEvent):
1469 (WebCore::Widget::geometryChanged):
1470 * platform/gtk/WidgetGtk.cpp:
1471 (WebCore::Widget::Widget):
1472 * platform/mac/ScrollViewMac.mm:
1473 (WebCore::ScrollView::addChild):
1474 (WebCore::ScrollView::removeChild):
1475 * platform/mac/ScrollbarMac.mm:
1476 (WebCore::ScrollbarMac::~ScrollbarMac):
1477 * platform/mac/WidgetMac.mm:
1478 (WebCore::Widget::Widget):
1479 (WebCore::Widget::~Widget):
1480 * platform/qt/WidgetQt.cpp:
1481 (WebCore::WidgetPrivate::WidgetPrivate):
1482 (WebCore::Widget::Widget):
1483 (WebCore::Widget::topLevel):
1484 * platform/win/ScrollViewWin.cpp:
1485 (WebCore::ScrollView::ScrollViewPrivate::ScrollViewPrivate):
1486 (WebCore::ScrollView::setAncestorVisible):
1487 (WebCore::ScrollView::show):
1488 (WebCore::ScrollView::hide):
1489 * platform/win/WidgetWin.cpp:
1490 (WebCore::Widget::Widget):
1491 (WebCore::Widget::setParent):
1492 * platform/wx/WidgetWx.cpp:
1493 (WebCore::Widget::Widget):
1494 * plugins/PluginView.cpp:
1495 (WebCore::PluginView::PluginView):
1496 * plugins/PluginView.h:
1497 * plugins/gtk/PluginViewGtk.cpp:
1498 (WebCore::PluginView::show):
1499 (WebCore::PluginView::hide):
1500 (WebCore::PluginView::setParentVisible):
1501 * plugins/qt/PluginViewQt.cpp:
1502 (WebCore::PluginView::show):
1503 (WebCore::PluginView::hide):
1504 (WebCore::PluginView::setParentVisible):
1505 * plugins/win/PluginViewWin.cpp:
1506 (WebCore::PluginView::show):
1507 (WebCore::PluginView::hide):
1508 (WebCore::PluginView::setParentVisible):
1509
ap@webkit.org18da1a32008-09-17 16:50:22 +000015102008-09-17 Alexey Proskuryakov <ap@webkit.org>
1511
1512 Reviewed by Adam Roben.
1513
1514 <rdar://problem/6219577> Spew in console at launch about encoding mappings when running with ICU 4.0
1515
1516 * platform/text/TextCodecICU.cpp:
1517 (WebCore::TextCodecICU::registerExtendedEncodingNames): Updated for new encoding names.
1518
vestbo@webkit.orge48e6362008-09-17 13:29:42 +000015192008-09-17 Tor Arne Vestbø <tavestbo@trolltech.com>
1520
1521 Fix the QtWebKit/Mac build
1522
1523 * platform/qt/ScrollViewQt.cpp: add include
1524
ap@webkit.org18da1a32008-09-17 16:50:22 +000015252008-09-17 David Hyatt <hyatt@apple.com>
hyatt@apple.com0f37fb52008-09-17 08:17:26 +00001526
1527 Add a #define to control whether or not to use an NSScroller on Mac.
1528 This ifdef will allow the new NSView-less NSScroller on Mac to be
1529 developed side by side with the current one.
1530
1531 The new scroller paints a debug red if turned on (although due to
1532 Widget issues you won't see anything paint yet).
1533
1534 Reviewed by olliej
1535
1536 * platform/Scrollbar.cpp:
1537 * platform/Scrollbar.h:
1538 * platform/mac/ScrollbarMac.h:
1539 * platform/mac/ScrollbarMac.mm:
1540 * platform/mac/ScrollbarThemeMac.cpp:
1541 (WebCore::ScrollbarThemeMac::paint):
1542 * platform/mac/ScrollbarThemeMac.h:
1543
alp@webkit.orgf06bac02008-09-17 04:30:12 +000015442008-09-16 Marco Barisione <marco.barisione@collabora.co.uk>
1545
1546 Reviewed by Alp Toker.
1547
1548 http://bugs.webkit.org/show_bug.cgi?id=20854
1549 [GTK] Windows can be not realized in ScrollView::update
1550
1551 Do not call gdk_window_invalidate_rect on a non-realized GtkWidget.
1552
1553 * platform/gtk/ScrollViewGtk.cpp:
1554 (WebCore::ScrollView::update):
1555
alp@webkit.org226f72a2008-09-17 04:22:02 +000015562008-09-16 Alp Toker <alp@nuanti.com>
1557
1558 Suggested by Dave Hyatt.
1559
1560 Build fix and cleanup. Rename ScrollBar to Scrollbar.
1561
1562 * GNUmakefile.am:
1563 * WebCore.pro:
1564 * WebCore.vcproj/WebCore.vcproj:
1565 * WebCore.xcodeproj/project.pbxproj:
1566 * WebCoreSources.bkl:
1567 * editing/EditorCommand.cpp:
1568 * page/EventHandler.cpp:
1569 * page/gtk/EventHandlerGtk.cpp:
1570 * page/mac/EventHandlerMac.mm:
1571 * page/mac/FrameMac.mm:
1572 * page/qt/EventHandlerQt.cpp:
1573 * page/wx/EventHandlerWx.cpp:
1574 * platform/PopupMenu.h:
1575 * platform/ScrollBar.cpp: Removed.
1576 * platform/ScrollBar.h: Removed.
1577 * platform/Scrollbar.cpp: Copied from WebCore/platform/ScrollBar.cpp.
1578 * platform/Scrollbar.h: Copied from WebCore/platform/ScrollBar.h.
1579 * platform/gtk/ScrollbarGtk.cpp:
1580 (ScrollbarGtk::ScrollbarGtk):
1581 * platform/gtk/ScrollbarGtk.h:
1582 * platform/mac/ScrollbarMac.h:
1583 * platform/qt/ScrollViewQt.cpp:
1584 * platform/qt/ScrollbarQt.cpp:
1585 * platform/qt/ScrollbarThemeQt.cpp:
1586 * platform/win/PlatformScrollBar.h:
1587 * platform/win/PopupMenuWin.cpp:
1588 * platform/win/ScrollViewWin.cpp:
1589 * platform/win/ScrollbarThemeWin.cpp:
1590 * platform/wx/ScrollViewWx.cpp:
1591 * platform/wx/TemporaryLinkStubs.cpp:
1592 * rendering/HitTestResult.cpp:
1593 * rendering/RenderLayer.cpp:
1594 * rendering/RenderTextControl.cpp:
1595
hyatt@apple.com7597c172008-09-17 02:15:08 +000015962008-09-16 David Hyatt <hyatt@apple.com>
1597
hyatt@apple.comfde412d2008-09-17 03:49:48 +00001598 Fix Qt build bustage by making moveThumb a member of Scrollbar so that
1599 it can be called from ScrollbarQt.
1600
1601 * platform/ScrollBar.cpp:
1602 (WebCore::Scrollbar::moveThumb):
1603 (WebCore::Scrollbar::handleMouseMoveEvent):
1604 (WebCore::Scrollbar::handleMousePressEvent):
1605 * platform/ScrollBar.h:
1606 * platform/qt/ScrollViewQt.cpp:
1607 * platform/qt/ScrollbarQt.cpp:
1608 (WebCore::Scrollbar::handleContextMenuEvent):
1609
16102008-09-16 David Hyatt <hyatt@apple.com>
1611
hyatt@apple.com4e3b8602008-09-17 03:17:11 +00001612 Eliminate PlatformScrollbar. Mac and Gtk now have subclasses for their
1613 native-widget scrollbars (ScrollbarMac and ScrollbarGtk). Other platforms
1614 now just use Scrollbar.
1615
1616 Reviewed by Sam Weinig
1617
1618 * GNUmakefile.am:
1619 * WebCore.pro:
1620 * WebCore.vcproj/WebCore.vcproj:
1621 * WebCore.xcodeproj/project.pbxproj:
1622 * page/mac/FrameMac.mm:
1623 * platform/PopupMenu.h:
1624 (WebCore::PopupMenu::scrollbar):
1625 * platform/ScrollBar.cpp:
1626 (WebCore::createNativeScrollbar):
1627 * platform/ScrollBar.h:
1628 * platform/gtk/PlatformScrollBar.h: Removed.
1629 * platform/gtk/PlatformScrollBarGtk.cpp: Removed.
1630 * platform/gtk/ScrollbarGtk.cpp: Copied from platform/gtk/PlatformScrollBarGtk.cpp.
1631 (gtkScrollEventCallback):
1632 (ScrollbarGtk::ScrollbarGtk):
1633 (ScrollbarGtk::~ScrollbarGtk):
1634 (ScrollbarGtk::updateThumbPosition):
1635 (ScrollbarGtk::updateThumbProportion):
1636 (ScrollbarGtk::setFrameGeometry):
1637 (ScrollbarGtk::geometryChanged):
1638 (ScrollbarGtk::gtkValueChanged):
1639 * platform/gtk/ScrollbarGtk.h: Copied from platform/gtk/PlatformScrollBar.h.
1640 * platform/mac/PlatformScrollBar.h: Removed.
1641 * platform/mac/PlatformScrollBarMac.mm: Removed.
1642 * platform/mac/ScrollbarMac.h: Copied from platform/mac/PlatformScrollBar.h.
1643 * platform/mac/ScrollbarMac.mm: Copied from platform/mac/PlatformScrollBarMac.mm.
1644 (-[WebCoreScrollBar initWithScrollbarMac:]):
1645 (-[WebCoreScrollBar detachScrollbarMac]):
1646 (WebCore::Scrollbar::createNativeScrollbar):
1647 (WebCore::ScrollbarMac::ScrollbarMac):
1648 (WebCore::ScrollbarMac::~ScrollbarMac):
1649 (WebCore::ScrollbarMac::updateThumbPosition):
1650 (WebCore::ScrollbarMac::updateThumbProportion):
1651 (WebCore::ScrollbarMac::scrollbarHit):
1652 * platform/qt/PlatformScrollBar.h: Removed.
1653 * platform/qt/PlatformScrollBarQt.cpp: Removed.
1654 * platform/qt/ScrollbarQt.cpp: Copied from platform/qt/PlatformScrollBarQt.cpp.
1655 (WebCore::Scrollbar::handleContextMenuEvent):
1656 * rendering/HitTestResult.cpp:
1657 * rendering/RenderLayer.cpp:
1658 (WebCore::RenderLayer::createScrollbar):
1659 (WebCore::RenderLayer::destroyScrollbar):
1660 * rendering/RenderLayer.h:
1661 * rendering/RenderListBox.cpp:
1662 (WebCore::RenderListBox::~RenderListBox):
1663 (WebCore::RenderListBox::updateFromElement):
1664 (WebCore::RenderListBox::isPointInOverflowControl):
1665 * rendering/RenderObject.h:
1666 * rendering/RenderTextControl.cpp:
1667
16682008-09-16 David Hyatt <hyatt@apple.com>
1669
hyatt@apple.com7597c172008-09-17 02:15:08 +00001670 Make the scrollbar resizer-dodging logic cross-platform in the
1671 Scrollbar class.
1672
1673 Reviewed by Sam Weinig
1674
1675 * platform/ScrollBar.cpp:
1676 (WebCore::Scrollbar::setFrameGeometry):
1677 (WebCore::Scrollbar::setParent):
1678 (WebCore::Scrollbar::windowClipRect):
1679 * platform/ScrollBar.h:
1680 * platform/ScrollView.h:
1681 (WebCore::ScrollView::windowResizerRect):
1682 (WebCore::ScrollView::resizerOverlapsContent):
1683 (WebCore::ScrollView::adjustOverlappingScrollbarCount):
1684 * platform/Widget.h:
1685 (WebCore::Widget::setParent):
1686 * platform/mac/WidgetMac.mm:
1687 (WebCore::Widget::convertToContainingWindow):
1688 * platform/win/PlatformScrollBar.h:
1689 * platform/win/PlatformScrollBarWin.cpp:
1690
mitz@apple.com6d925202008-09-16 17:34:10 +000016912008-09-16 Dan Bernstein <mitz@apple.com>
1692
mitz@apple.comd9462a52008-09-16 17:40:20 +00001693 Reviewed by Darin Adler.
1694
1695 - fix https://bugs.webkit.org/show_bug.cgi?id=15129
1696 <rdar://problem/4644824> adding a new line with DOM does unnecessary additional repaint
1697
1698 Covered by fast/repaint/4776765.html
1699
1700 * rendering/RenderBlock.cpp:
1701 (WebCore::RenderBlock::layoutBlock): Avoid repainting this object if it
1702 did not have layout in the beginning.
1703 (WebCore::RenderBlock::layoutBlockChildren): If a child did not have
1704 layout in the beginning, repaint it in its new position, to compensate
1705 for the above (regardless of whether it "moved").
1706 * rendering/RenderObject.cpp:
1707 (WebCore::RenderObject::checkForRepaintDuringLayout): Added a comment
1708 about generalizing this fix in the future.
1709
17102008-09-16 Dan Bernstein <mitz@apple.com>
1711
mitz@apple.com6d925202008-09-16 17:34:10 +00001712 Reviewed by Dave Hyatt.
1713
1714 - fix https://bugs.webkit.org/show_bug.cgi?id=15384
1715 Div does not notice when grandparent changes height
1716
1717 Test: fast/block/basic/quirk-percent-height-grandchild.html
1718
1719 - fix https://bugs.webkit.org/show_bug.cgi?id=20714
1720 Resizing Gmail inbox vertically results in whitespace at the bottom of the window
1721
1722 Test: fast/replaced/percent-height-in-anonymous-block.html
1723
1724 Added a two-way mapping between boxes with percentage heights and
1725 their non-parent ancestors up to the one the height is computed relative
1726 to. In quirks mode (the first bug), this can be any number of containing
1727 block with auto height. In strict mode (the second bug) this can be
1728 the containing block of an anonymous block containing a replaced
1729 element.
1730
1731 * rendering/RenderBlock.cpp:
1732 (WebCore::RenderBlock::~RenderBlock): Added code to remove the all the
1733 mapping to/from this block to percentage-height descendants.
1734 (WebCore::RenderBlock::layoutBlockChildren): Added code to mark
1735 percentage-height descendants (and their containing block ancestry chain
1736 up to this block) for layout. This ensures that those descendants whose
1737 height depends on the height of this block (or an ancestor) are updated.
1738 (WebCore::RenderBlock::addPercentHeightDescendant): Added. Establishes
1739 a two-way mapping between this block and the given box.
1740 (WebCore::RenderBlock::removePercentHeightDescendant): Added. Removes
1741 all the mapping to/from this box.
1742 * rendering/RenderBlock.h:
1743 * rendering/RenderBox.cpp:
1744 (WebCore::RenderBox::setStyle): Added calls to
1745 removePercentHeightDescendant() when style changes and the box
1746 previously had a percentage height. An exception is when the style
1747 change does not require layout, in which case the box still has
1748 a percentage height and the mappings are valid. In all other cases,
1749 any required mappings will be (re-)established during layout.
1750 (WebCore::RenderBox::destroy): Added a call to
1751 removePercentHeightDescendant.
1752 (WebCore::RenderBox::calcPercentageHeight): Added code that, in quirks
1753 mode, if a higher-than-parent containing block is affecting the box's
1754 height, creates a mapping between the box and that block.
1755 (WebCore::RenderBox::calcReplacedHeightUsing): Changed to skip over
1756 anonymous containing blocks, if any, and when that happens, use
1757 addPercentHeightDescendant() to ensure that the non-anonymous block
1758 is aware of the dependent percent-height box.
1759
alp@webkit.org1dbd9a92008-09-16 16:59:18 +000017602008-09-16 Dirk Schulze <vbs85@gmx.de>
1761
1762 Reviewed by Oliver Hunt and Alp Toker.
1763
1764 Implemented toDataURL in Cairo. Only PNG support
1765 at the moment.
1766
1767 Qt, Cairo and wx require toDataURL implementations
1768 https://bugs.webkit.org/show_bug.cgi?id=17719
1769
1770 * platform/MIMETypeRegistry.cpp:
1771 (WebCore::initializeSupportedImageMIMETypesForEncoding):
1772 * platform/graphics/cairo/ImageBufferCairo.cpp:
1773 (WebCore::ImageBuffer::ImageBuffer):
1774 (WebCore::writeFunction):
1775 (WebCore::ImageBuffer::toDataURL):
1776
vestbo@webkit.org8963b3c2008-09-16 16:45:20 +000017772008-09-16 Tor Arne Vestbø <tavestbo@trolltech.com>
1778
1779 Reviewed by Simon.
1780
1781 Hide unused media element controls in the QtWebKit port
1782
1783 * platform/qt/html4-adjustments-qt.css
1784
hausmann@webkit.orgcd7a1292008-09-16 14:19:16 +000017852008-09-16 Ariya Hidayat <ariya.hidayat@trolltech.com>
1786
1787 Reviewed by Simon.
1788
1789 Fix compilation of the Qt scrollbar code.
1790
1791 * platform/qt/PlatformScrollBarQt.cpp:
1792 (WebCore::scPart):
1793 (WebCore::styleOptionSlider):
1794 (WebCore::thumbLength):
1795 (WebCore::pixelPosToRangeValue):
1796 (WebCore::PlatformScrollbar::handleContextMenuEvent):
1797
treat@webkit.orga35f6b62008-09-16 14:15:29 +000017982008-09-16 Adam Treat <treat@kde.org>
1799
1800 Reviewed by Anders Carlsson.
1801
1802 Prevent accesses off of the end of the buffer introduced in r36450
1803 and when checking for descriptions of mime. Also, coding style fix.
1804
1805 * plugins/qt/PluginPackageQt.cpp:
1806 (WebCore::PluginPackage::fetchInfo):
1807
rwlbuis@webkit.org8f675dd2008-09-16 11:12:52 +000018082008-09-15 Rob Buis <buis@kde.org>
1809
1810 Reviewed by Eric.
1811
1812 https://bugs.webkit.org/show_bug.cgi?id=20634
1813 SVG transform attribute is ignored by <use> in <clipPath>
1814
1815 Transform the paths with the local transform when part
1816 of a clip path.
1817
1818 Test: svg/custom/use-clipped-transform.svg
1819
1820 * svg/SVGClipPathElement.cpp:
1821 (WebCore::SVGClipPathElement::canvasResource):
1822 * svg/SVGStyledTransformableElement.cpp:
1823 (WebCore::SVGStyledTransformableElement::toClipPath):
1824 * svg/SVGStyledTransformableElement.h:
1825
hyatt@apple.com1cd4bcc2008-09-16 06:53:34 +000018262008-09-15 Dave Hyatt <hyatt@apple.com>
1827
1828 Convert Qt over to its ScrollbarTheme. Add cross-platform support for jumping the thumb location directly
1829 to a pressed location on the track (this is done with the middle mouse on Qt and with Shift-Click on Windows).
1830
1831 Reviewed by Sam Weinig
1832
1833 * platform/ScrollBar.cpp:
1834 (WebCore::thumbUnderMouse):
1835 (WebCore::Scrollbar::autoscrollPressedPart):
1836 (WebCore::Scrollbar::startTimerIfNeeded):
1837 (WebCore::moveThumb):
1838 (WebCore::Scrollbar::handleMouseMoveEvent):
1839 (WebCore::Scrollbar::handleMousePressEvent):
1840 * platform/ScrollBar.h:
1841 (WebCore::Scrollbar::pressedPos):
1842 (WebCore::Scrollbar::pixelStep):
1843 (WebCore::Scrollbar::setPressedPos):
1844 * platform/ScrollbarTheme.h:
1845 (WebCore::ScrollbarTheme::thumbPosition):
1846 (WebCore::ScrollbarTheme::thumbLength):
1847 (WebCore::ScrollbarTheme::trackPosition):
1848 (WebCore::ScrollbarTheme::trackLength):
1849 * platform/ScrollbarThemeComposite.cpp:
1850 (WebCore::ScrollbarThemeComposite::trackPosition):
1851 * platform/ScrollbarThemeComposite.h:
1852 * platform/qt/PlatformScrollBarQt.cpp:
1853 (WebCore::PlatformScrollbar::PlatformScrollbar):
1854 (WebCore::):
1855 * platform/qt/ScrollbarThemeQt.cpp:
1856 (WebCore::styleOptionSlider):
1857 (WebCore::ScrollbarThemeQt::hitTest):
1858 (WebCore::ScrollbarThemeQt::shouldCenterOnThumb):
1859 (WebCore::ScrollbarThemeQt::invalidatePart):
1860 (WebCore::ScrollbarThemeQt::thumbPosition):
1861 (WebCore::):
1862 * platform/qt/ScrollbarThemeQt.h:
1863 * platform/win/ScrollbarThemeSafari.cpp:
1864 (WebCore::ScrollbarThemeSafari::shouldCenterOnThumb):
1865 * platform/win/ScrollbarThemeSafari.h:
1866 * platform/win/ScrollbarThemeWin.cpp:
1867 (WebCore::ScrollbarThemeWin::shouldCenterOnThumb):
1868 * platform/win/ScrollbarThemeWin.h:
1869
dsmith@webkit.orgb3107b532008-09-16 06:14:22 +000018702008-09-15 David Smith <catfish.man@gmail.com>
1871
1872 Reviewed by Sam Weinig.
1873
1874 https://bugs.webkit.org/show_bug.cgi?id=20180
1875
1876 Cache the result of parsing the an+b expression in :nth-child(an+b). Roughly a 2x speedup for :nth-child on SlickSpeed.
1877
1878 * GNUmakefile.am: Add CSSNthSelector
1879 * WebCore.pro: Add CSSNthSelector
1880 * WebCore.vcproj/WebCore.vcproj: Add CSSNthSelector
1881 * WebCore.xcodeproj/project.pbxproj: Add CSSNthSelector
1882 * css/CSSGrammar.y: Create CSSNthSelectors instead of CSSSelectors for :nth-*
1883 * css/CSSNthSelector.cpp: Added.
1884 (WebCore::CSSNthSelector::parseNth): Moved from CSSStyleSelector and modified to cache
1885 (WebCore::CSSNthSelector::matchNth): Moved from CSSStyleSelector and modified to use the cache
1886 * css/CSSNthSelector.h: Added.
1887 (WebCore::CSSNthSelector::CSSNthSelector):
1888 (WebCore::CSSNthSelector::~CSSNthSelector):
1889 * css/CSSParser.cpp:
1890 (WebCore::CSSParser::createFloatingNthSelector):
1891 * css/CSSParser.h:
1892 * css/CSSSelector.h: Use the free bit here to store a flag for CSSNthSelector
1893 (WebCore::CSSSelector::CSSSelector):
1894 * css/CSSStyleSelector.cpp:
1895 (WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector): Take advantage of knowing that all :nth-* selectors are CSSNthSelectors
1896
pewtermoose@webkit.orgfb4d3fb2008-09-16 02:46:39 +000018972008-09-15 Matt Lilek <webkit@mattlilek.com>
1898
1899 Reviewed by Tim Hatcher.
1900
1901 Clean up some inspector JS callbacks to remove an extra return.
1902
1903 * page/InspectorController.cpp:
1904 (WebCore::hideDOMNodeHighlight):
1905 (WebCore::loaded):
1906 (WebCore::unloading):
1907 (WebCore::attach):
1908 (WebCore::detach):
1909 (WebCore::startDebuggingAndReloadInspectedPage):
1910 (WebCore::stopDebugging):
1911 (WebCore::debuggerAttached):
1912 (WebCore::pauseOnExceptions):
1913 (WebCore::pauseInDebugger):
1914 (WebCore::resumeDebugger):
1915 (WebCore::stepOverStatementInDebugger):
1916 (WebCore::stepIntoStatementInDebugger):
1917 (WebCore::stepOutOfFunctionInDebugger):
1918 (WebCore::isWindowVisible):
1919 (WebCore::closeWindow):
1920
hyatt@apple.com8e809932008-09-16 02:29:09 +000019212008-09-15 Dave Hyatt <hyatt@apple.com>
1922
1923 Completely switch Windows scrollbars over to ScrollbarTheme. The Aqua windows scrollbar and native scrollbar
1924 now share most of their code.
1925
1926 Also removing mini size scrollbar support, since it would have crashed Windows had it ever been used, and it
1927 also is never used in our code anyway.
1928
1929 Reviewed by Sam Weinig
1930
1931 * WebCore.vcproj/WebCore.vcproj:
1932 * platform/ScrollTypes.h:
1933 (WebCore::):
1934 * platform/ScrollbarThemeComposite.cpp:
1935 (WebCore::ScrollbarThemeComposite::splitTrack):
1936 (WebCore::ScrollbarThemeComposite::thumbLength):
1937 (WebCore::ScrollbarThemeComposite::minimumThumbLength):
1938 * platform/ScrollbarThemeComposite.h:
1939 * platform/mac/PlatformScrollBarMac.mm:
1940 (NSControlSizeForScrollBarControlSize):
1941 * platform/win/PlatformScrollBar.h:
1942 * platform/win/PlatformScrollBarSafari.cpp: Removed.
1943 * platform/win/PlatformScrollBarWin.cpp:
1944 (WebCore::PlatformScrollbar::PlatformScrollbar):
1945 * platform/win/ScrollbarThemeSafari.cpp:
1946 (WebCore::ScrollbarTheme::nativeTheme):
1947 (WebCore::):
1948 (WebCore::scrollbarControlStateFromThemeState):
1949 (WebCore::ScrollbarThemeSafari::hasButtons):
1950 (WebCore::ScrollbarThemeSafari::hasThumb):
1951 (WebCore::buttonRepaintRect):
1952 (WebCore::ScrollbarThemeSafari::backButtonRect):
1953 (WebCore::ScrollbarThemeSafari::forwardButtonRect):
1954 (WebCore::trackRepaintRect):
1955 (WebCore::ScrollbarThemeSafari::trackRect):
1956 (WebCore::ScrollbarThemeSafari::minimumThumbLength):
1957 (WebCore::ScrollbarThemeSafari::paintTrack):
1958 (WebCore::ScrollbarThemeSafari::paintButton):
1959 (WebCore::ScrollbarThemeSafari::paintThumb):
1960 * platform/win/ScrollbarThemeSafari.h:
1961 * platform/win/ScrollbarThemeWin.cpp:
1962 * platform/win/ScrollbarThemeWin.h:
1963
cfleizach@apple.com0ce07032008-09-16 00:17:58 +000019642008-09-15 Chris Fleizach <cfleizach@apple.com>
1965
1966 Reviewed by Darin Adler, Beth Dakin
1967
1968 <rdar://problem/4003789> Expose lists as AXList
1969 <rdar://problem/5707399> VO: Definition lists not announced in Safari
1970
1971 Lists are now exposed through AX. On the mac (in SnowLeopard) they use two new subroles
1972 AXContentList for <ul>, <ol> and AXDefinitionList for <dl>
1973 Inside the definition list, each <dt> "term" has an accessibility description ("term"),
1974 as does each <dd> tag ("definition")
1975
1976 Test: accessibility/lists.html
1977
1978 * GNUmakefile.am:
1979 * WebCore.pro:
1980 * WebCore.vcproj/WebCore.vcproj:
1981 * WebCore.xcodeproj/project.pbxproj:
1982 * WebCoreSources.bkl:
1983 * page/AXObjectCache.cpp:
1984 * page/AccessibilityList.cpp: Added.
1985 * page/AccessibilityList.h: Added.
1986 * page/AccessibilityObject.h:
1987 * page/AccessibilityRenderObject.cpp:
1988 * page/AccessibilityTable.cpp:
1989 * page/mac/AccessibilityObjectWrapper.mm:
1990 * page/mac/WebCoreViewFactory.h:
1991 * platform/LocalizedStrings.h:
1992 * platform/mac/LocalizedStringsMac.mm:
1993 * platform/qt/Localizations.cpp:
1994
zimmermann@webkit.org8cc8ad02008-09-16 00:01:11 +000019952008-09-15 Nikolas Zimmermann <zimmermann@kde.org>
1996
1997 Reviewed by Eric.
1998
1999 Fixes: https://bugs.webkit.org/show_bug.cgi?id=20865
2000 Prepare HTMLScriptElement & SVGScriptElement unification, and unification of event handling.
2001
2002 Several renames:
2003 dispatchHTMLEvent -> dispatchEventForType
2004 setHTMLEventListener -> setEventListenerForType
2005 getHTMLEventListener -> eventListenerForType
2006 removeHTMLEventListener -> removeEventListenerForType
2007 isHTMLEventListener -> isAttachedToEventTargetNode
2008 ...
2009
2010 Similar renames for the dispatch/get/set/*Window*Event functions.
2011 Kill JSSVGLazyEventListener and merge with JSLazyEventListener.
2012
2013 Most important change: Rename setHTMLEventListener to setEventListenerForTypeAndAttribute,
2014 as there exists a generic createEventListener() method now, taking care of JSLazyEventListener creation.
2015
2016 setHTMLEventListener() used createHTMLEventListener() before and was HTML specific.
2017 SVG is able to use the code as well now. This affects most files in html/.
2018
2019 No functional changes.
2020
2021 * GNUmakefile.am:
2022 * WebCore.pro:
2023 * WebCore.vcproj/WebCore.vcproj:
2024 * WebCore.xcodeproj/project.pbxproj:
2025 * bindings/js/JSDOMWindowBase.cpp:
2026 (WebCore::JSDOMWindowBase::~JSDOMWindowBase):
2027 (WebCore::JSDOMWindowBase::setListener):
2028 (WebCore::JSDOMWindowBase::getListener):
2029 (WebCore::JSDOMWindowBase::findJSEventListener):
2030 (WebCore::JSDOMWindowBase::findOrCreateJSEventListener):
2031 (WebCore::JSDOMWindowBase::findJSUnprotectedEventListener):
2032 (WebCore::JSDOMWindowBase::findOrCreateJSUnprotectedEventListener):
2033 (WebCore::JSDOMWindowBase::jsEventListenersAttachedToEventTargetNodes):
2034 (WebCore::JSDOMWindowBase::jsUnprotectedEventListenersAttachedToEventTargetNodes):
2035 * bindings/js/JSDOMWindowBase.h:
2036 * bindings/js/JSEventListener.cpp:
2037 (WebCore::JSAbstractEventListener::handleEvent):
2038 (WebCore::JSAbstractEventListener::isAttachedToEventTargetNode):
2039 (WebCore::JSUnprotectedEventListener::JSUnprotectedEventListener):
2040 (WebCore::JSUnprotectedEventListener::~JSUnprotectedEventListener):
2041 (WebCore::JSEventListener::JSEventListener):
2042 (WebCore::JSEventListener::~JSEventListener):
2043 (WebCore::JSLazyEventListener::JSLazyEventListener):
2044 (WebCore::eventParameterName):
2045 (WebCore::JSLazyEventListener::parseCode):
2046 (WebCore::getNodeEventListener):
2047 * bindings/js/JSEventListener.h:
2048 (WebCore::JSAbstractEventListener::JSAbstractEventListener):
2049 (WebCore::JSUnprotectedEventListener::create):
2050 (WebCore::JSEventListener::create):
2051 (WebCore::JSLazyEventListener::):
2052 (WebCore::JSLazyEventListener::create):
2053 * bindings/js/JSEventTargetNode.cpp:
2054 (WebCore::JSEventTargetNode::setListener):
2055 (WebCore::JSEventTargetNode::getListener):
2056 * bindings/js/JSSVGLazyEventListener.cpp: Removed.
2057 * bindings/js/JSSVGLazyEventListener.h: Removed.
2058 * bindings/js/ScriptController.cpp:
2059 (WebCore::ScriptController::createHTMLEventHandler):
2060 (WebCore::ScriptController::createSVGEventHandler):
2061 * dom/Document.cpp:
2062 (WebCore::Document::setFocusedNode):
2063 (WebCore::Document::handleWindowEvent):
2064 (WebCore::Document::setWindowEventListenerForType):
2065 (WebCore::Document::windowEventListenerForType):
2066 (WebCore::Document::removeWindowEventListenerForType):
2067 (WebCore::Document::addWindowEventListener):
2068 (WebCore::Document::hasWindowEventListener):
2069 (WebCore::Document::removePendingFrameBeforeUnloadEventCount):
2070 (WebCore::Document::createEventListener):
2071 (WebCore::Document::setWindowEventListenerForTypeAndAttribute):
2072 * dom/Document.h:
2073 * dom/EventListener.h:
2074 (WebCore::EventListener::isAttachedToEventTargetNode):
2075 * dom/EventTargetNode.cpp:
2076 (WebCore::EventTargetNode::dispatchFocusEvent):
2077 (WebCore::EventTargetNode::dispatchBlurEvent):
2078 (WebCore::EventTargetNode::dispatchEventForType):
2079 (WebCore::EventTargetNode::removeEventListenerForType):
2080 (WebCore::EventTargetNode::setEventListenerForType):
2081 (WebCore::EventTargetNode::setEventListenerForTypeAndAttribute):
2082 (WebCore::EventTargetNode::eventListenerForType):
2083 * dom/EventTargetNode.h:
2084 * dom/XMLTokenizer.cpp:
2085 (WebCore::XMLTokenizer::notifyFinished):
2086 * editing/ReplaceSelectionCommand.cpp:
2087 (WebCore::ReplacementFragment::ReplacementFragment):
2088 * html/HTMLBodyElement.cpp:
2089 (WebCore::HTMLBodyElement::parseMappedAttribute):
2090 * html/HTMLButtonElement.cpp:
2091 (WebCore::HTMLButtonElement::parseMappedAttribute):
2092 * html/HTMLElement.cpp:
2093 (WebCore::HTMLElement::parseMappedAttribute):
2094 (WebCore::HTMLElement::checkDTD):
2095 * html/HTMLElement.h:
2096 * html/HTMLFormControlElement.cpp:
2097 (WebCore::HTMLFormControlElement::onChange):
2098 * html/HTMLFormElement.cpp:
2099 (WebCore::HTMLFormElement::prepareSubmit):
2100 (WebCore::HTMLFormElement::reset):
2101 (WebCore::HTMLFormElement::parseMappedAttribute):
2102 * html/HTMLFrameElementBase.cpp:
2103 (WebCore::HTMLFrameElementBase::parseMappedAttribute):
2104 * html/HTMLFrameSetElement.cpp:
2105 (WebCore::HTMLFrameSetElement::parseMappedAttribute):
2106 * html/HTMLImageElement.cpp:
2107 (WebCore::HTMLImageElement::parseMappedAttribute):
2108 * html/HTMLImageLoader.cpp:
2109 (WebCore::HTMLImageLoader::dispatchLoadEvent):
2110 * html/HTMLInputElement.cpp:
2111 (WebCore::HTMLInputElement::parseMappedAttribute):
2112 (WebCore::HTMLInputElement::setValueFromRenderer):
2113 (WebCore::HTMLInputElement::onSearch):
2114 * html/HTMLMediaElement.cpp:
2115 (WebCore::HTMLMediaElement::asyncEventTimerFired):
2116 (WebCore::HTMLMediaElement::load):
2117 (WebCore::HTMLMediaElement::mediaPlayerNetworkStateChanged):
2118 (WebCore::HTMLMediaElement::setReadyState):
2119 (WebCore::HTMLMediaElement::seek):
2120 (WebCore::HTMLMediaElement::mediaPlayerTimeChanged):
2121 (WebCore::HTMLMediaElement::willSaveToCache):
2122 * html/HTMLObjectElement.cpp:
2123 (WebCore::HTMLObjectElement::parseMappedAttribute):
2124 * html/HTMLScriptElement.cpp:
2125 (WebCore::HTMLScriptElement::parseMappedAttribute):
2126 (WebCore::HTMLScriptElement::dispatchLoadEvent):
2127 (WebCore::HTMLScriptElement::dispatchErrorEvent):
2128 * html/HTMLSelectElement.cpp:
2129 (WebCore::HTMLSelectElement::parseMappedAttribute):
2130 * html/HTMLTextAreaElement.cpp:
2131 (WebCore::HTMLTextAreaElement::parseMappedAttribute):
2132 * html/HTMLTokenizer.cpp:
2133 (WebCore::HTMLTokenizer::notifyFinished):
2134 * page/AccessibilityRenderObject.cpp:
2135 (WebCore::AccessibilityRenderObject::mouseButtonListener):
2136 * page/EventHandler.cpp:
2137 (WebCore::EventHandler::canMouseDownStartSelect):
2138 (WebCore::EventHandler::canMouseDragExtendSelect):
2139 * page/Frame.cpp:
2140 (WebCore::Frame::sendScrollEvent):
2141 * page/Page.cpp:
2142 (WebCore::networkStateChanged):
2143 * rendering/RenderListBox.cpp:
2144 (WebCore::RenderListBox::valueChanged):
2145 * rendering/RenderTextControl.cpp:
2146 (WebCore::RenderTextControl::selectionChanged):
2147 * svg/SVGDocumentExtensions.cpp:
2148 * svg/SVGDocumentExtensions.h:
2149 * svg/SVGElement.cpp:
2150 (WebCore::SVGElement::parseMappedAttribute):
2151 (WebCore::SVGElement::finishParsingChildren):
2152 * svg/SVGElement.h:
2153 * svg/SVGSVGElement.cpp:
2154 (WebCore::SVGSVGElement::parseMappedAttribute):
2155 * svg/SVGSVGElement.h:
2156
hyatt@apple.com63739ce2008-09-15 23:44:10 +000021572008-09-15 Dave Hyatt <hyatt@apple.com>
2158
2159 Convert PlatformScrollbarWin to use ScrollbarTheme for hit testing. PlatformScrollbarQt/Gtk still
2160 need to be converted.
2161
2162 Reviewed by Sam Weinig
2163
2164 * platform/ScrollBar.cpp:
2165 (WebCore::Scrollbar::Scrollbar):
2166 (WebCore::Scrollbar::updateThumbPosition):
2167 (WebCore::Scrollbar::updateThumbProportion):
2168 (WebCore::Scrollbar::autoscrollPressedPart):
2169 (WebCore::Scrollbar::startTimerIfNeeded):
2170 * platform/ScrollBar.h:
2171 * platform/ScrollbarTheme.h:
2172 (WebCore::ScrollbarTheme::invalidateParts):
2173 * platform/ScrollbarThemeComposite.cpp:
2174 (WebCore::ScrollbarThemeComposite::hitTest):
2175 (WebCore::ScrollbarThemeComposite::invalidatePart):
2176 (WebCore::ScrollbarThemeComposite::thumbPosition):
2177 (WebCore::ScrollbarThemeComposite::thumbLength):
2178 (WebCore::ScrollbarThemeComposite::trackLength):
2179 * platform/ScrollbarThemeComposite.h:
2180 * platform/win/PlatformScrollBarSafari.cpp:
2181 (WebCore::PlatformScrollbar::PlatformScrollbar):
2182 * platform/win/PlatformScrollBarWin.cpp:
2183 (WebCore::PlatformScrollbar::PlatformScrollbar):
2184
dsmith@webkit.orgaa780ed2008-09-15 23:08:07 +000021852008-09-15 David Smith <catfish.man@gmail.com>
2186
2187 "Just do it"'d by Mark Rowe
2188
2189 https://bugs.webkit.org/show_bug.cgi?id=20856
2190 Add missing license header
2191
2192 * dom/NodeRenderStyle.h:
2193
dino@apple.combf52b682008-09-15 21:31:43 +000021942008-09-15 Dean Jackson <dino@apple.com>
2195
2196 Reviewed by Tim Hatcher.
2197
dino@apple.com3db0b8f2008-09-15 21:52:23 +00002198 Add default constructor for ShadowData
2199 https://bugs.webkit.org/show_bug.cgi?id=20757
2200
2201 Test: transitions/shadow.html
2202
2203 * rendering/style/RenderStyle.h:
2204
22052008-09-15 Dean Jackson <dino@apple.com>
2206
2207 Reviewed by Tim Hatcher.
2208
dino@apple.com03abdce2008-09-15 21:40:52 +00002209 RenderStyle should update keyframes.
2210 http://bugs.webkit.org/show_bug.cgi?id=20756
2211
2212 * rendering/style/RenderStyle.cpp:
2213 (WebCore::StyleRareNonInheritedData::updateKeyframes):
2214
22152008-09-15 Dean Jackson <dino@apple.com>
2216
2217 Reviewed by Tim Hatcher.
2218
dino@apple.combf52b682008-09-15 21:31:43 +00002219 Unnecessary ASSERT in ImplicitAnimation destructor.
2220 https://bugs.webkit.org/show_bug.cgi?id=20817
2221
2222 * page/animation/ImplicitAnimation.cpp:
2223 (WebCore::ImplicitAnimation::~ImplicitAnimation):
2224
treat@webkit.org7e5abc22008-09-15 20:53:49 +000022252008-09-15 Adam Treat <treat@kde.org>
2226
2227 Reviewed by Simon.
2228
2229 Fix plugin extension info. It was returning the mimetype where the
2230 extension was given.
2231
2232 * plugins/qt/PluginPackageQt.cpp:
2233 (WebCore::PluginPackage::fetchInfo):
2234
dino@apple.comecc18dc2008-09-15 20:40:28 +000022352008-09-15 Dean Jackson <dino@apple.com>
2236
2237 Reviewed by Tim Hatcher
2238
2239 Coding style violation!!!! Cleanup AnimationBase.cpp
2240
2241 * page/animation/AnimationBase.cpp:
2242 (WebCore::blendFunc):
2243
hyatt@apple.comf4a9d932008-09-15 20:03:25 +000022442008-09-15 David Hyatt <hyatt@apple.com>
2245
2246 Move all hit testing code for scrollbars into the base class. Refactor
2247 it to accommodate all platform-specific behaviors using virtual ScrollbarTheme
2248 functions.
2249
2250 No platform is using this code yet. Although it has been moved and compiles
2251 (even on Mac), it is not being used on any platform.
2252
2253 Reviewed by Sam Weinig
2254
2255 * platform/ScrollBar.cpp:
2256 (WebCore::Scrollbar::autoscrollPressedPart):
2257 (WebCore::Scrollbar::startTimerIfNeeded):
2258 (WebCore::Scrollbar::handleMouseMoveEvent):
2259 (WebCore::Scrollbar::handleMouseOutEvent):
2260 (WebCore::Scrollbar::handleMouseReleaseEvent):
2261 (WebCore::Scrollbar::handleMousePressEvent):
2262 * platform/ScrollBar.h:
2263 (WebCore::Scrollbar::handleContextMenuEvent):
2264 * platform/ScrollbarTheme.h:
2265 (WebCore::ScrollbarTheme::hitTest):
2266 (WebCore::ScrollbarTheme::invalidateOnMouseEnterExit):
2267 (WebCore::ScrollbarTheme::invalidatePart):
2268 (WebCore::ScrollbarTheme::shouldCenterOnThumb):
2269 (WebCore::ScrollbarTheme::centerOnThumb):
2270 (WebCore::ScrollbarTheme::thumbPosition):
2271 (WebCore::ScrollbarTheme::thumbLength):
2272 (WebCore::ScrollbarTheme::trackLength):
2273 (WebCore::ScrollbarTheme::initialAutoscrollTimerDelay):
2274 (WebCore::ScrollbarTheme::autoscrollTimerDelay):
2275 * platform/Widget.h:
2276 (WebCore::Widget::parent):
2277 * platform/mac/PlatformScrollBar.h:
2278 (WebCore::PlatformScrollbar::handleMouseMoveEvent):
2279 (WebCore::PlatformScrollbar::handleMouseOutEvent):
2280 (WebCore::PlatformScrollbar::handleMousePressEvent):
2281 (WebCore::PlatformScrollbar::handleMouseReleaseEvent):
2282 * platform/mac/WidgetMac.mm:
2283 (WebCore::Widget::convertFromContainingWindow):
2284 * platform/win/ScrollbarThemeWin.cpp:
2285 (WebCore::ScrollbarThemeWin::invalidateOnMouseEnterExit):
2286 * platform/win/ScrollbarThemeWin.h:
2287
mitz@apple.comd17dc392008-09-15 18:48:20 +000022882008-09-15 Dan Bernstein <mitz@apple.com>
2289
2290 Reviewed by Sam Weinig.
2291
2292 - fix <rdar://problem/5842247> Single long breakable word takes O(n^2) to lay out
2293
2294 Cache the next breakable position for text nodes in InlineIterator.
2295
2296 * rendering/bidi.cpp:
2297 (WebCore::InlineIterator::InlineIterator):
2298 (WebCore::InlineIterator::increment):
2299 (WebCore::RenderBlock::findNextLineBreak):
2300
simon.fraser@apple.comda604642008-09-15 17:10:48 +000023012008-09-15 Simon Fraser <simon.fraser@apple.com>
2302
2303 Reviewed by Dan Bernstein
2304
2305 Fix assertion and integral pixel issue when creating subimages.
2306 https://bugs.webkit.org/show_bug.cgi?id=20786
2307
2308 * platform/graphics/cg/ImageCG.cpp:
2309 (WebCore::BitmapImage::draw):
2310
vestbo@webkit.orge7eda302008-09-15 12:43:37 +000023112008-09-15 Tor Arne Vestbø <tavestbo@trolltech.com>
2312
2313 Reviewed by Simon.
2314
2315 Implment seek() and clean up and improve debugging output
2316
2317 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
2318 (debugMediaObject):
2319 (WebCore::MediaPlayerPrivate::seek):
2320 (WebCore::MediaPlayerPrivate::setVolume):
2321 (WebCore::MediaPlayerPrivate::setMuted):
2322 (WebCore::MediaPlayerPrivate::updateStates):
2323 (WebCore::MediaPlayerPrivate::naturalSize):
2324 (WebCore::MediaPlayerPrivate::paint):
2325 (WebCore::MediaPlayerPrivate::stateChanged):
2326 (WebCore::MediaPlayerPrivate::tick):
2327
vestbo@webkit.orgaba01e62008-09-15 11:40:22 +000023282008-09-15 Holger Hans Peter Freyther <zecke@selfish.org>
2329
2330 Reviewed by Simon.
2331
2332 Remove bogus Q_ASSERTs from the MediaPlayer Phonon implementation
2333
2334 m_mediaObject, m_audioOutput, m_videoWidget get created in the
2335 c'tor and will only be deleted in the c'tor. The Q_ASSERTs would
2336 only check if we use the MediaPlayerPrivate after it has been deleted.
2337
2338 Acked-by: Tor Arne Vestbø <tavestbo@trolltech.com>
2339
2340 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
2341 (WebCore::MediaPlayerPrivate::play):
2342 (WebCore::MediaPlayerPrivate::setVolume):
2343 (WebCore::MediaPlayerPrivate::updateStates):
2344
andersca@apple.com18d62682008-09-15 11:35:22 +000023452008-09-15 Anders Carlsson <andersca@apple.com>
2346
2347 Reviewed by Maciej.
2348
2349 <rdar://problem/6163988>
2350 https://bugs.webkit.org/show_bug.cgi?id=20457
2351 Canvas: createPattern crashes WebKit in WTF::RefPtr<WebCore::Image>::operator!() const + 9 with a 1D pattern
2352
2353 Check the width and height and throw an exception if any of them are 0.
2354
2355 * html/CanvasRenderingContext2D.cpp:
2356 (WebCore::CanvasRenderingContext2D::createPattern):
2357
vestbo@webkit.org3a27e182008-09-15 11:28:59 +000023582008-09-15 Tor Arne Vestbø <tavestbo@trolltech.com>
2359
2360 Reviewed by Simon.
2361
2362 Render media element controls with antialiasing enabled
2363
2364 * platform/qt/RenderThemeQt.cpp:
2365 (WebCore::RenderThemeQt::paintMediaMuteButton):
2366 (WebCore::RenderThemeQt::paintMediaPlayButton):
2367 (WebCore::RenderThemeQt::paintMediaSliderTrack):
2368 (WebCore::RenderThemeQt::paintMediaSliderThumb):
2369
vestbo@webkit.org17e4bfc2008-09-15 11:27:25 +000023702008-09-15 Ariya Hidayat <ariya.hidayat@trolltech.com>
2371
2372 Reviewed by Simon.
2373
2374 Upon non fatal error, switch to the pause state (so that playback can continue)
2375
2376 * platform/graphics/qt/MediaPlayerPrivatePhonon.cpp:
2377 (WebCore::MediaPlayerPrivate::updateStates):
2378
vestbo@webkit.org12a59572008-09-15 11:16:13 +000023792008-09-15 Tor Arne Vestbø <tavestbo@trolltech.com>
2380
2381 Reviewed by Simon.
2382
vestbo@webkit.org1d1f05e2008-09-15 11:22:05 +00002383 Don't set WTF_USE_JSC in WebCore.pro now that it's set in config.h
2384
2385 * WebCore.pro:
2386
23872008-09-15 Tor Arne Vestbø <tavestbo@trolltech.com>
2388
2389 Reviewed by Simon.
2390
vestbo@webkit.org12a59572008-09-15 11:16:13 +00002391 Make QtInstance::create() private and fix caching
2392
2393 * bindings/js/ScriptControllerQt.cpp:
2394 (WebCore::ScriptController::createScriptInstanceForWidget):
2395 * bridge/qt/qt_instance.cpp:
2396 (JSC::Bindings::QtInstance::getQtInstance):
2397 (JSC::Bindings::QtInstance::getRuntimeObject):
2398 * bridge/qt/qt_instance.h:
2399 (JSC::Bindings::QtInstance::create):
2400 * bridge/qt/qt_runtime.cpp:
2401 (JSC::Bindings::convertQVariantToValue):
2402 (JSC::Bindings::QtConnectionObject::execute):
2403
dsmith@webkit.orgaba15862008-09-15 08:45:35 +000024042008-09-15 David Smith <catfish.man@gmail.com>
2405
2406 Reviewed by Dave Hyatt.
2407
2408 https://bugs.webkit.org/show_bug.cgi?id=20180
2409
2410 >2x speedup on querySelector[All] with :nth-child by removing the collectRulesOnly argument on SelectorChecker.
2411 With collectRulesOnly set to true (the default) an optimization is turned off, and no callers were intentionally leaving it true.
2412 querySelector[All] assumed that the default was probably the right way to go, and so ended up being slow.
2413
2414 * css/CSSStyleSelector.cpp:
2415 (WebCore::CSSStyleSelector::CSSStyleSelector):
2416 (WebCore::CSSStyleSelector::SelectorChecker::SelectorChecker):
2417 * css/CSSStyleSelector.h:
2418
hyatt@apple.com065494e2008-09-15 06:33:40 +000024192008-09-14 Dave Hyatt <hyatt@apple.com>
2420
2421 Refactor PlatformScrollbarWin's painting so that it is now done by ScrollbarThemeWin. PlatformScrollbarSafari
2422 is still painting itself (a subsequent patch will move its painting into ScrollbarThemeSafari).
2423
2424 Reviewed by Sam Weinig
2425
2426 * platform/ScrollBar.h:
2427 (WebCore::Scrollbar::client):
2428 (WebCore::Scrollbar::currentPos):
2429 (WebCore::Scrollbar::totalSize):
2430 * platform/ScrollbarTheme.h:
2431 * platform/ScrollbarThemeComposite.cpp:
2432 (WebCore::pageForScrollView):
2433 (WebCore::ScrollbarThemeComposite::paint):
2434 * platform/ScrollbarThemeComposite.h:
2435 (WebCore::ScrollbarThemeComposite::trackIsSinglePiece):
2436 * platform/win/PlatformScrollBar.h:
2437 * platform/win/PlatformScrollBarSafari.cpp:
2438 * platform/win/PlatformScrollBarWin.cpp:
2439 * platform/win/ScrollbarThemeSafari.h:
2440 (WebCore::ScrollbarThemeSafari::hasButtons):
2441 (WebCore::ScrollbarThemeSafari::hasThumb):
2442 (WebCore::ScrollbarThemeSafari::backButtonRect):
2443 (WebCore::ScrollbarThemeSafari::forwardButtonRect):
2444 (WebCore::ScrollbarThemeSafari::trackRect):
2445 (WebCore::ScrollbarThemeSafari::splitTrack):
2446 (WebCore::ScrollbarThemeSafari::paintTrack):
2447 (WebCore::ScrollbarThemeSafari::paintButton):
2448 (WebCore::ScrollbarThemeSafari::paintThumb):
2449 * platform/win/ScrollbarThemeWin.cpp:
2450 (WebCore::isRunningOnVistaOrLater):
2451 (WebCore::checkAndInitScrollbarTheme):
2452 (WebCore::ScrollbarThemeWin::ScrollbarThemeWin):
2453 (WebCore::ScrollbarThemeWin::themeChanged):
2454 (WebCore::ScrollbarThemeWin::hasThumb):
2455 (WebCore::ScrollbarThemeWin::backButtonRect):
2456 (WebCore::ScrollbarThemeWin::forwardButtonRect):
2457 (WebCore::ScrollbarThemeWin::trackRect):
2458 (WebCore::ScrollbarThemeWin::splitTrack):
2459 (WebCore::ScrollbarThemeWin::paintTrack):
2460 (WebCore::ScrollbarThemeWin::paintButton):
2461 (WebCore::gripperRect):
2462 (WebCore::paintGripper):
2463 (WebCore::ScrollbarThemeWin::paintThumb):
2464 (WebCore::ScrollbarThemeWin::thumbPosition):
2465 (WebCore::ScrollbarThemeWin::thumbLength):
2466 (WebCore::ScrollbarThemeWin::trackLength):
2467 * platform/win/ScrollbarThemeWin.h:
2468 (WebCore::ScrollbarThemeWin::hasButtons):
2469 (WebCore::ScrollbarThemeWin::trackIsSinglePiece):
2470
timothy@apple.comd91172c2008-09-15 05:38:00 +000024712008-09-14 Anthony Ricaud <rik24d@gmail.com>
2472
2473 Moving all resource graphs under the same container for future scalable feature.
2474 This is a speedup on resize but maybe a loss on changing the sorting function.
2475
2476 https://bugs.webkit.org/show_bug.cgi?id=20555
2477
2478 Reviewed by Timothy Hatcher.
2479
2480 * page/inspector/ResourcesPanel.js: Added a container for all resource graphs.
2481 Added WebInspector.ResourceGraph. No more _updateGraphBars on resize.
2482 * page/inspector/inspector.css: Edited corresponding rules and removed unnecessaries.
2483
ap@webkit.orga14074b2008-09-15 04:52:44 +000024842008-09-14 Alexey Proskuryakov <ap@webkit.org>
2485
2486 Reviewed by Maciej Stachowiak.
2487
2488 https://bugs.webkit.org/show_bug.cgi?id=20738
2489 compareBoundaryPoints gives incorrect results
2490
2491 Test: fast/dom/Range/compareBoundaryPoints-2.html
2492
2493 * dom/Range.cpp: (WebCore::Range::compareBoundaryPoints): Correct meanings of START_TO_END
2494 and END_TO_START.
2495 * page/DOMSelection.cpp: (WebCore::DOMSelection::addRange): Updated for this change.
2496
mjs@apple.com285bdcf2008-09-15 02:55:16 +000024972008-09-14 Maciej Stachowiak <mjs@apple.com>
2498
2499 Unreviewed build fix.
2500
mjs@apple.comcbb31e52008-09-15 03:10:35 +00002501 Trying again.
2502
2503 * bindings/js/JSQuarantinedObjectWrapper.cpp:
2504 (WebCore::JSQuarantinedObjectWrapper::hasInstance):
2505
25062008-09-14 Maciej Stachowiak <mjs@apple.com>
2507
2508 Unreviewed build fix.
2509
mjs@apple.com285bdcf2008-09-15 02:55:16 +00002510 Blind attempt to fix build. Correct parameters for hasInstance.
2511
2512 * bindings/js/JSQuarantinedObjectWrapper.cpp:
2513 (WebCore::JSQuarantinedObjectWrapper::hasInstance):
2514 * bindings/js/JSQuarantinedObjectWrapper.h:
2515
mitz@apple.come85f7362008-09-15 02:23:24 +000025162008-09-14 Dan Bernstein <mitz@apple.com>
2517
2518 Rubber-stamped by Sam Weinig.
2519
2520 - revert <http://trac.webkit.org/changeset/36382> because it exposed
2521 <https://bugs.webkit.org/show_bug.cgi?id=20846> and resulted in crashes
2522 on Tiger.
2523
2524 * platform/graphics/mac/FontCacheMac.mm:
2525 (WebCore::FontCache::getFontDataForCharacters):
2526 (WebCore::FontCache::getLastResortFallbackFont):
2527
hyatt@apple.comf18feec2008-09-15 00:56:11 +000025282008-09-14 Dave Hyatt <hyatt@apple.com>
2529
2530 Add a new ScrollbarThemeComposite base class that is shared by ScrollbarThemeSafari and
2531 ScrollbarThemeWin. Any scrollbar that wants to render by ScrollbarPart can subclass from this
2532 theme.
2533
2534 Reviewed by Sam Weinig
2535
2536 * WebCore.vcproj/WebCore.vcproj:
2537 * platform/win/ScrollbarThemeSafari.h:
2538 * platform/win/ScrollbarThemeWin.h:
2539
alp@webkit.orgd694e942008-09-15 00:20:15 +000025402008-09-14 Alp Toker <alp@nuanti.com>
2541
2542 https://bugs.webkit.org/show_bug.cgi?id=20320
2543 [GTK] A white rectangle is visible behind widgets with rounded corners
2544
2545 Sync bundled gtk2drawing.c to the latest version from Mozilla (coding
2546 style exempt).
2547
2548 Requested by Michael Monreal.
2549
2550 * platform/gtk/RenderThemeGtk.cpp:
2551 (WebCore::RenderThemeGtk::RenderThemeGtk):
2552 * platform/gtk/gtk2drawing.c:
2553 (moz_gtk_set_widget_name):
2554 (ensure_window_widget):
2555 (setup_widget_prototype):
2556 (ensure_button_arrow_widget):
2557 (moz_gtk_get_combo_box_inner_button):
2558 (moz_gtk_get_combo_box_button_inner_widgets):
2559 (ensure_combo_box_widgets):
2560 (moz_gtk_get_combo_box_entry_inner_widgets):
2561 (moz_gtk_get_combo_box_entry_arrow):
2562 (ensure_combo_box_entry_widgets):
2563 (ensure_toolbar_widget):
2564 (ensure_tooltip_widget):
2565 (ensure_menu_bar_widget):
2566 (ensure_menu_bar_item_widget):
2567 (ensure_menu_popup_widget):
2568 (ensure_menu_item_widget):
2569 (ensure_image_menu_item_widget):
2570 (ensure_menu_separator_widget):
2571 (ensure_check_menu_item_widget):
2572 (ensure_tree_header_cell_widget):
2573 (ensure_scrolled_window_widget):
2574 (moz_gtk_button_paint):
2575 (moz_gtk_init):
2576 (moz_gtk_button_get_inner_border):
2577 (moz_gtk_toggle_paint):
2578 (calculate_button_inner_rect):
2579 (calculate_arrow_rect):
2580 (moz_gtk_scrollbar_button_paint):
2581 (moz_gtk_scrollbar_thumb_paint):
2582 (moz_gtk_caret_paint):
2583 (moz_gtk_entry_paint):
2584 (moz_gtk_treeview_paint):
2585 (moz_gtk_tree_header_cell_paint):
2586 (moz_gtk_combo_box_paint):
2587 (moz_gtk_downarrow_paint):
2588 (moz_gtk_combo_box_entry_button_paint):
2589 (moz_gtk_toolbar_paint):
2590 (moz_gtk_tab_scroll_arrow_paint):
2591 (moz_gtk_menu_bar_paint):
2592 (moz_gtk_menu_item_paint):
2593 (moz_gtk_get_widget_border):
2594 (moz_gtk_get_combo_box_entry_button_size):
2595 (moz_gtk_get_tab_scroll_arrow_size):
2596 (moz_gtk_get_downarrow_size):
2597 (moz_gtk_images_in_menus):
2598 (moz_gtk_widget_paint):
2599 (moz_gtk_shutdown):
2600 * platform/gtk/gtkdrawing.h:
2601
hyatt@apple.com3ab48302008-09-14 23:55:16 +000026022008-09-14 David Hyatt <hyatt@apple.com>
2603
2604 Convert Mac, Gtk, wx and Qt over to the new ScrollbarTheme for
2605 painting. Mac and Gtk themes don't do anything and just let the
2606 underlying widget paint. Qt now uses the theme to paint. wx doesn't
2607 do anything yet.
2608
2609 Reviewed by Sam Weinig
2610
2611 * platform/ScrollBar.cpp:
2612 (WebCore::Scrollbar::paint):
2613 * platform/ScrollBar.h:
2614 (WebCore::Scrollbar::value):
2615 (WebCore::Scrollbar::visibleSize):
2616 (WebCore::Scrollbar::maximum):
2617 (WebCore::Scrollbar::lineStep):
2618 (WebCore::Scrollbar::pageStep):
2619 (WebCore::Scrollbar::pixelStep):
2620 (WebCore::Scrollbar::pressedPart):
2621 (WebCore::Scrollbar::hoveredPart):
2622 (WebCore::Scrollbar::theme):
2623 * platform/ScrollbarTheme.h:
2624 (WebCore::ScrollbarTheme::paint):
2625 (WebCore::ScrollbarTheme::scrollbarThickness):
2626 (WebCore::ScrollbarTheme::supportsControlTints):
2627 (WebCore::ScrollbarTheme::themeChanged):
2628 * platform/gtk/PlatformScrollBar.h:
2629 * platform/gtk/PlatformScrollBarGtk.cpp:
2630 * platform/mac/PlatformScrollBar.h:
2631 * platform/mac/PlatformScrollBarMac.mm:
2632 * platform/qt/PlatformScrollBar.h:
2633 * platform/qt/PlatformScrollBarQt.cpp:
2634 * platform/qt/ScrollbarThemeQt.cpp:
2635 (WebCore::styleOptionSlider):
2636 * platform/qt/ScrollbarThemeQt.h:
2637 (WebCore::ScrollbarThemeQt::paint):
2638 * platform/win/PlatformScrollBarSafari.cpp:
2639 (WebCore::PlatformScrollbar::paint):
2640 * platform/win/ScrollbarThemeSafari.h:
2641 (WebCore::ScrollbarThemeSafari::supportsControlTints):
2642 * platform/wx/PlatformScrollBar.h:
2643 * platform/wx/TemporaryLinkStubs.cpp:
2644 (PlatformScrollbar::~PlatformScrollbar):
2645
weinig@apple.comcb93e262008-09-14 21:36:11 +000026462008-09-14 Sam Weinig <sam@webkit.org>
2647
weinig@apple.com6ef2b872008-09-14 22:15:28 +00002648 Qt build fix.
2649
2650 * platform/qt/PlatformScrollBarQt.cpp:
2651
26522008-09-14 Sam Weinig <sam@webkit.org>
2653
weinig@apple.com064861a2008-09-14 22:12:49 +00002654 Reviewed by Mark Rowe.
2655
2656 Remove extraneous semicolons.
2657
2658 * bindings/scripts/CodeGeneratorObjC.pm:
2659 * html/HTMLLinkElement.cpp:
2660 (WebCore::HTMLLinkElement::tokenizeRelAttribute):
2661 * html/HTMLScriptElement.cpp:
2662 (WebCore::HTMLScriptElement::charsetAttributeValue):
2663 (WebCore::HTMLScriptElement::typeAttributeValue):
2664 * platform/graphics/qt/GradientQt.cpp:
2665 (WebCore::Gradient::platformGradient):
2666 * platform/qt/ScrollViewQt.cpp:
2667 (WebCore::ScrollView::ScrollViewPrivate::setHasHorizontalScrollbar):
2668 * platform/win/ScrollViewWin.cpp:
2669 (WebCore::ScrollView::updateScrollbars):
2670 * rendering/RenderBlock.cpp:
2671 (WebCore::RenderBlock::paintEllipsisBoxes):
2672 * svg/SVGPathSegList.cpp:
2673 (WebCore::SVGPathSegList::toPathData):
2674
26752008-09-14 Sam Weinig <sam@webkit.org>
2676
weinig@apple.comcb93e262008-09-14 21:36:11 +00002677 Qt build fix.
2678
weinig@apple.com31311a62008-09-14 22:00:15 +00002679 * platform/qt/ScrollViewQt.cpp:
2680 (WebCore::ScrollView::updateScrollbars):
2681
26822008-09-14 Sam Weinig <sam@webkit.org>
2683
2684 Qt build fix.
2685
weinig@apple.comcb93e262008-09-14 21:36:11 +00002686 * platform/qt/PlatformScrollBarQt.cpp:
2687 (WebCore::PlatformScrollbar::PlatformScrollbar):
2688 (WebCore::PlatformScrollbar::paint):
2689
jmalonzo@webkit.org65e836c2008-09-14 01:57:13 +000026902008-09-13 Jan Michael Alonzo <jmalonzo@webkit.org>
2691
2692 Gtk build fix, not reviewed.
2693
2694 * platform/gtk/PlatformScrollBarGtk.cpp:
2695 (PlatformScrollbar::PlatformScrollbar):
2696 * platform/gtk/ScrollViewGtk.cpp:
2697 (WebCore::ScrollView::updateScrollbars):
2698
hyatt@apple.comd62f5bf2008-09-14 00:32:19 +000026992008-09-13 Dave Hyatt <hyatt@apple.com>
2700
hyatt@apple.com21ab7c62008-09-14 01:26:22 +00002701 Remove scrollbar's setRect method. Clients can now just call setFrameGeometry (the corresponding Widget) method
2702 to set the dimensions of a scrollbar.
2703
2704 Reviewed by Sam Weinig
2705
2706 * platform/ScrollBar.h:
2707 * platform/gtk/PlatformScrollBar.h:
2708 * platform/gtk/PlatformScrollBarGtk.cpp:
2709 (PlatformScrollbar::setFrameGeometry):
2710 * platform/gtk/ScrollViewGtk.cpp:
2711 (WebCore::ScrollView::updateScrollbars):
2712 * platform/mac/PlatformScrollBarMac.mm:
2713 * platform/qt/PlatformScrollBarQt.cpp:
2714 * platform/qt/ScrollViewQt.cpp:
2715 (WebCore::ScrollView::updateScrollbars):
2716 * platform/win/PlatformScrollBar.h:
2717 * platform/win/PlatformScrollBarSafari.cpp:
2718 (WebCore::PlatformScrollbar::PlatformScrollbar):
2719 (WebCore::PlatformScrollbar::setFrameGeometry):
2720 * platform/win/PlatformScrollBarWin.cpp:
2721 (WebCore::PlatformScrollbar::PlatformScrollbar):
2722 (WebCore::PlatformScrollbar::setFrameGeometry):
2723 * platform/win/PopupMenuWin.cpp:
2724 (WebCore::PopupWndProc):
2725 * platform/win/ScrollViewWin.cpp:
2726 (WebCore::ScrollView::updateScrollbars):
2727 * platform/wx/PlatformScrollBar.h:
2728 * platform/wx/TemporaryLinkStubs.cpp:
2729 (PlatformScrollbar::updateThumbProportion):
2730 * rendering/RenderLayer.cpp:
2731 (WebCore::RenderLayer::positionOverflowControls):
2732 * rendering/RenderListBox.cpp:
2733 (WebCore::RenderListBox::paintScrollbar):
2734
27352008-09-13 Dave Hyatt <hyatt@apple.com>
2736
hyatt@apple.comed9485a2008-09-14 01:06:57 +00002737 Remove setEnabled() from all Scrollbar classes that were just using their Widget base class methods.
2738
2739 Reviewed by Sam Weinig
2740
2741 * platform/ScrollBar.h:
2742 * platform/gtk/PlatformScrollBar.h:
2743 * platform/gtk/PlatformScrollBarGtk.cpp:
2744 * platform/mac/PlatformScrollBar.h:
2745 * platform/mac/PlatformScrollBarMac.mm:
2746 * platform/win/PlatformScrollBar.h:
2747 * platform/win/PlatformScrollBarSafari.cpp:
2748 * platform/win/PlatformScrollBarWin.cpp:
2749 * platform/wx/PlatformScrollBar.h:
2750 * platform/wx/TemporaryLinkStubs.cpp:
2751 (PlatformScrollbar::~PlatformScrollbar):
2752
27532008-09-13 Dave Hyatt <hyatt@apple.com>
2754
hyatt@apple.com64d98032008-09-14 00:58:29 +00002755 Remove width()/height() from Scrollbar now that it derives from Widget. Remove width()/height() from
2756 all PlatformScrollbar subclasses that just called the Widget base class versions of those methods.
2757
2758 Reviewed by Sam Weinig
2759
2760 * platform/ScrollBar.h:
2761 * platform/gtk/PlatformScrollBar.h:
2762 * platform/gtk/PlatformScrollBarGtk.cpp:
2763 * platform/mac/PlatformScrollBar.h:
2764 * platform/mac/PlatformScrollBarMac.mm:
2765 * platform/win/PlatformScrollBarSafari.cpp:
2766 * platform/win/PlatformScrollBarWin.cpp:
2767 * platform/wx/PlatformScrollBar.h:
2768 * platform/wx/TemporaryLinkStubs.cpp:
2769 (PlatformScrollbar::~PlatformScrollbar):
2770
27712008-09-13 Dave Hyatt <hyatt@apple.com>
2772
hyatt@apple.comd62f5bf2008-09-14 00:32:19 +00002773 Move stopTimerIfNeeded out of PlatformScrollbar destructors and into Scrollbar.
2774
2775 Reviewed by Sam Weinig
2776
2777 * platform/ScrollBar.cpp:
2778 (WebCore::Scrollbar::~Scrollbar):
2779 * platform/ScrollBar.h:
2780 * platform/qt/PlatformScrollBarQt.cpp:
2781 (WebCore::PlatformScrollbar::~PlatformScrollbar):
2782 * platform/win/PlatformScrollBarSafari.cpp:
2783 (WebCore::PlatformScrollbar::~PlatformScrollbar):
2784 * platform/win/PlatformScrollBarWin.cpp:
2785 (WebCore::PlatformScrollbar::~PlatformScrollbar):
2786
hyatt@apple.coma3c52492008-09-13 23:57:08 +000027872008-09-13 David Hyatt <hyatt@apple.com>
2788
2789 Move maximum() from Qt's PlatformScrollbar to be a cross-platform
2790 function on Scrollbar. Fixes Qt build bustage.
2791
2792 Reviewed by Sam Weinig
2793
2794 * platform/ScrollBar.h:
2795 (WebCore::Scrollbar::orientation):
2796 (WebCore::Scrollbar::value):
2797 (WebCore::Scrollbar::maximum):
2798 * platform/qt/PlatformScrollBar.h:
2799
mitz@apple.comb3d22882008-09-13 23:06:59 +000028002008-09-13 Dan Bernstein <mitz@apple.com>
2801
2802 Reviewed by Sam Weinig.
2803
2804 - use the LastResort font for missing glyphs instead of showing the
2805 primary font's missing glyph
2806
2807 Test: platform/mac/fast/text/last-resort-font.html
2808
2809 * platform/graphics/mac/FontCacheMac.mm:
2810 (WebCore::FontCache::getFontDataForCharacters): Changed to return the
2811 last resort font if a substitute font cannot be found.
2812 (WebCore::FontCache::getLastResortFallbackFont): Removed an outdated
2813 comment (the user's preferred standard font is included in the search
2814 thanks to code in FontCache::getFontData()) and changed to return the
2815 LastResort font.
2816
hyatt@apple.com0c378c72008-09-13 22:59:05 +000028172008-09-13 Dave Hyatt <hyatt@apple.com>
2818
2819 This patch adds ScrollbarTheme to the build. ScrollbarTheme is similar to RenderTheme (but for
2820 scrollbars only). For now ScrollbarTheme just handles returning the size of scrollbars. Subsequent
2821 patches will move rendering and hit testing functionality into this class.
2822
2823 Implemented ScrollbarTheme subclasses for four ports (Mac, Win, Gtk, Qt). The wxWidgets port does not
2824 implement scrollbars yet, so I added a temporary link stub to keep things compiling on wx.
2825
2826 Reviewed by Sam Weinig
2827
2828 * GNUmakefile.am:
2829 * WebCore.pro:
2830 * WebCore.vcproj/WebCore.vcproj:
2831 * platform/ScrollBar.cpp:
2832 (WebCore::Scrollbar::Scrollbar):
2833 * platform/ScrollBar.h:
2834 * platform/ScrollbarTheme.h: Added.
2835 (WebCore::ScrollbarTheme::~ScrollbarTheme):
2836 (WebCore::ScrollbarTheme::scrollbarThickness):
2837 (WebCore::ScrollbarTheme::themeChanged):
2838 * platform/gtk/ScrollbarThemeGtk.cpp: Added.
2839 (WebCore::ScrollbarTheme::nativeTheme):
2840 (WebCore::ScrollbarThemeGtk::~ScrollbarThemeGtk):
2841 (WebCore::ScrollbarThemeGtk::scrollbarThickness):
2842 * platform/gtk/ScrollbarThemeGtk.h: Added.
2843 * platform/mac/PlatformScrollBar.h:
2844 * platform/mac/ScrollbarThemeMac.cpp: Added.
2845 (WebCore::ScrollbarTheme::nativeTheme):
2846 (WebCore::):
2847 (WebCore::ScrollbarThemeMac::~ScrollbarThemeMac):
2848 (WebCore::ScrollbarThemeMac::scrollbarThickness):
2849 * platform/mac/ScrollbarThemeMac.h: Added.
2850 * platform/qt/PlatformScrollBarQt.cpp:
2851 * platform/qt/ScrollbarThemeQt.cpp: Added.
2852 (WebCore::ScrollbarTheme::nativeTheme):
2853 (WebCore::ScrollbarThemeQt::~ScrollbarThemeQt):
2854 (WebCore::ScrollbarThemeQt::scrollbarThickness):
2855 * platform/qt/ScrollbarThemeQt.h: Added.
2856 * platform/win/PlatformScrollBar.h:
2857 * platform/win/PlatformScrollBarSafari.cpp:
2858 * platform/win/PlatformScrollBarWin.cpp:
2859 * platform/win/PopupMenuWin.cpp:
2860 (WebCore::PopupMenu::calculatePositionAndSize):
2861 * platform/win/ScrollViewWin.cpp:
2862 (WebCore::ScrollView::updateScrollbars):
2863 (WebCore::ScrollView::themeChanged):
2864 * platform/win/ScrollbarThemeSafari.cpp: Added.
2865 (WebCore::ScrollbarTheme::nativeTheme):
2866 (WebCore::):
2867 (WebCore::ScrollbarThemeSafari::~ScrollbarThemeSafari):
2868 (WebCore::ScrollbarThemeSafari::scrollbarThickness):
2869 * platform/win/ScrollbarThemeSafari.h: Added.
2870 * platform/win/ScrollbarThemeWin.cpp: Added.
2871 (WebCore::ScrollbarTheme::nativeTheme):
2872 (WebCore::ScrollbarThemeWin::~ScrollbarThemeWin):
2873 (WebCore::ScrollbarThemeWin::scrollbarThickness):
2874 (WebCore::ScrollbarThemeWin::themeChanged):
2875 * platform/win/ScrollbarThemeWin.h: Added.
2876 * platform/wx/TemporaryLinkStubs.cpp:
2877 (ScrollbarTheme::nativeTheme):
2878 * rendering/RenderLayer.cpp:
2879 (WebCore::scrollCornerRect):
2880 * rendering/RenderTextControl.cpp:
2881 (WebCore::RenderTextControl::calcHeight):
2882 (WebCore::RenderTextControl::calcPrefWidths):
2883
cfleizach@apple.comd26c2762008-09-13 21:05:18 +000028842008-09-13 Chris Fleizach <cfleizach@apple.com>
2885
2886 Reviewed by Timothy Hatcher.
2887
2888 <rdar://problem/5060439> Web elements should have an AXTopLevelUIElement
2889
2890 * page/mac/AccessibilityObjectWrapper.mm:
2891 (-[AccessibilityObjectWrapper accessibilityAttributeNames]):
2892
mitz@apple.com6307c9f2008-09-13 20:27:37 +000028932008-09-13 Dan Bernstein <mitz@apple.com>
2894
2895 Reviewed by Timothy Hatcher.
2896
2897 - fix <rdar://problem/6171280> REGRESSION (r35667): Assertion failure in WebCore::FrameView::scheduleRelayout() when releasing a page with counters from the b/f cache
2898
2899 No regression test because the back/forward cache is disabled in DumpRenderTree
2900
2901 * rendering/RenderContainer.cpp:
2902 (WebCore::RenderContainer::invalidateCounters): Bail out if the document
2903 is being destroyed.
2904
kevino@webkit.org1e178ee2008-09-13 18:48:39 +000029052008-09-13 Kevin Ollivier <kevino@theolliviers.com>
2906
2907 wx build fixes for new methods recently introduced.
2908
2909 * platform/graphics/wx/AffineTransformWx.cpp:
2910 (WebCore::AffineTransform::AffineTransform):
2911 (WebCore::AffineTransform::setMatrix):
2912 (WebCore::AffineTransform::setA):
2913 (WebCore::AffineTransform::setB):
2914 (WebCore::AffineTransform::setC):
2915 (WebCore::AffineTransform::setD):
2916 (WebCore::AffineTransform::setE):
2917 (WebCore::AffineTransform::setF):
2918 * platform/wx/LocalizedStringsWx.cpp:
2919 (WebCore::AXDefinitionListTermText):
2920 (WebCore::AXDefinitionListDefinitionText):
2921
hyatt@apple.com30ed5442008-09-13 18:39:58 +000029222008-09-12 Dave Hyatt <hyatt@apple.com>
2923
2924 Move the member variables of PlatformScrollbar up into Scrollbar. Move autoscroll timer handling
2925 up into scrollbar. Make sure a bunch of cross-platform code now just uses "Scrollbar" instead of
2926 "PlatformScrollbar."
2927
2928 Reviewed by Sam Weinig
2929
2930 * WebCore.vcproj/WebCore.vcproj:
2931 * editing/EditorCommand.cpp:
2932 * page/EventHandler.cpp:
2933 (WebCore::EventHandler::selectCursor):
2934 (WebCore::EventHandler::handleMousePressEvent):
2935 (WebCore::EventHandler::handleMouseMoveEvent):
2936 * page/EventHandler.h:
2937 * page/MouseEventWithHitTestResults.cpp:
2938 (WebCore::MouseEventWithHitTestResults::scrollbar):
2939 * page/MouseEventWithHitTestResults.h:
2940 * page/gtk/EventHandlerGtk.cpp:
2941 (WebCore::EventHandler::passMousePressEventToScrollbar):
2942 * page/mac/EventHandlerMac.mm:
2943 (WebCore::EventHandler::passMousePressEventToScrollbar):
2944 * page/qt/EventHandlerQt.cpp:
2945 (WebCore::EventHandler::passMousePressEventToScrollbar):
2946 * page/win/EventHandlerWin.cpp:
2947 (WebCore::EventHandler::passMousePressEventToScrollbar):
2948 * page/wx/EventHandlerWx.cpp:
2949 (WebCore::EventHandler::passMousePressEventToScrollbar):
2950 * platform/PopupMenu.h:
2951 * platform/ScrollBar.cpp:
2952 (WebCore::Scrollbar::Scrollbar):
2953 (WebCore::Scrollbar::autoscrollTimerFired):
2954 (WebCore::Scrollbar::autoscrollPressedPart):
2955 (WebCore::Scrollbar::startTimerIfNeeded):
2956 (WebCore::Scrollbar::stopTimerIfNeeded):
2957 (WebCore::Scrollbar::pressedPartScrollDirection):
2958 (WebCore::Scrollbar::pressedPartScrollGranularity):
2959 * platform/ScrollBar.h:
2960 (WebCore::Scrollbar::handleMousePressEvent):
2961 (WebCore::Scrollbar::invalidatePart):
2962 (WebCore::Scrollbar::thumbUnderMouse):
2963 * platform/ScrollView.h:
2964 * platform/ScrollbarClient.h: Added.
2965 (WebCore::ScrollbarClient::~ScrollbarClient):
2966 * platform/gtk/ScrollViewGtk.cpp:
2967 (WebCore::ScrollView::scrollbarUnderMouse):
2968 * platform/qt/PlatformScrollBar.h:
2969 * platform/qt/PlatformScrollBarQt.cpp:
2970 (WebCore::PlatformScrollbar::PlatformScrollbar):
2971 (WebCore::scrollbarPart):
2972 (WebCore::PlatformScrollbar::handleMouseMoveEvent):
2973 (WebCore::PlatformScrollbar::handleMouseOutEvent):
2974 (WebCore::PlatformScrollbar::handleMousePressEvent):
2975 (WebCore::PlatformScrollbar::handleMouseReleaseEvent):
2976 * platform/qt/ScrollViewQt.cpp:
2977 (WebCore::ScrollView::scrollbarUnderMouse):
2978 (WebCore::ScrollView::wheelEvent):
2979 * platform/win/PlatformScrollBar.h:
2980 * platform/win/PlatformScrollBarSafari.cpp:
2981 (WebCore::PlatformScrollbar::PlatformScrollbar):
2982 * platform/win/PlatformScrollBarWin.cpp:
2983 (WebCore::PlatformScrollbar::PlatformScrollbar):
2984 * platform/win/ScrollViewWin.cpp:
2985 (WebCore::ScrollView::scrollbarUnderMouse):
2986 * rendering/HitTestResult.cpp:
2987 (WebCore::HitTestResult::setScrollbar):
2988 * rendering/HitTestResult.h:
2989 (WebCore::HitTestResult::scrollbar):
2990 * rendering/RenderLayer.cpp:
2991 (WebCore::RenderLayer::hitTestOverflowControls):
2992 * rendering/RenderLayer.h:
2993 * rendering/RenderListBox.h:
2994
sfalken@apple.comb4e407e2008-09-13 02:59:00 +000029952008-09-12 Steve Falkenburg <sfalken@apple.com>
2996
2997 Fix Mac build.
2998
2999 * css/CSSStyleSelector.cpp:
3000 (WebCore::getTransformOperationType):
3001
dino@apple.comf937dc62008-09-13 00:45:39 +000030022008-09-12 Chris Marrin <cmarrin@apple.com>
3003
3004 Reviewed by Dave Hyatt.
3005
3006 Make transform animation behavior match spec
3007 https://bugs.webkit.org/show_bug.cgi?id=20770
3008
3009 Tests: transitions/transform-op-list-match.html
3010 transitions/transform-op-list-no-match.html
3011
3012 * css/CSSStyleSelector.cpp:
3013 * css/CSSStyleSelector.h:
3014 * page/animation/AnimationBase.cpp:
3015 * page/animation/AnimationBase.h:
3016 * page/animation/ImplicitAnimation.cpp:
3017 * page/animation/ImplicitAnimation.h:
3018 * page/animation/KeyframeAnimation.cpp:
3019 * page/animation/KeyframeAnimation.h:
3020 * rendering/RenderLayer.cpp:
3021 * rendering/style/RenderStyle.cpp:
3022 * rendering/style/RenderStyle.h:
3023
timothy@apple.comab374dd2008-09-12 22:43:38 +000030242008-09-12 Ojan Vafai <ojan@chromium.org>
3025
3026 Properly escape contents of links added to the inspector.
3027 For now, just build the link with the DOM and get the
3028 outerHTML. Eventually, we probably just want to do
3029 this entirely with the DOM.
3030
3031 Reviewed by Timothy Hatcher.
3032
3033 https://bugs.webkit.org/show_bug.cgi?id=20684
3034
3035 * manual-tests/inspector/escape-links.html: Added.
3036 * page/inspector/StylesSidebarPane.js:
3037 * page/inspector/inspector.js:
3038 * page/inspector/utilities.js:
3039
adele@apple.com87fb3c72008-09-12 22:14:13 +000030402008-09-12 Adele Peterson <adele@apple.com>
3041
3042 Reviewed by John Sullivan and Kevin McCullough.
3043
3044 Fix for <rdar://problem/6216951> REGRESSION (r36000?): Crash due to infinite recursion into EventHandler::hitTestResultAtPoint() with disconnected frames
3045
3046 * page/EventHandler.cpp: (WebCore::EventHandler::hitTestResultAtPoint):
3047 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
3048 cause infinite recursion. This change checks that we're not already on the main frame before hit testing again.
3049
kmccullough@apple.combdba2e32008-09-12 22:08:56 +000030502008-09-12 Kevin McCullough <kmccullough@apple.com>
3051
3052 RS by Tim .
3053
3054 Re-introducing the code since it was not the cause of the crash.
3055 See r36343.
3056
3057 * rendering/RenderObject.cpp:
3058 (WebCore::RenderObject::canBeProgramaticallyScrolled):
3059 * rendering/RenderObject.h:
3060
dino@apple.comf712ed02008-09-12 21:54:57 +000030612008-09-12 Chris Marrin <cmarrin@apple.com>
3062
3063 Reviewed by Dave Hyatt.
3064
3065 When changing one animation in a list, don't reset other animations
3066 https://bugs.webkit.org/show_bug.cgi?id=20675
3067
3068 Test: animations/change-one-anim.html
3069
3070 * page/animation/AnimationBase.cpp:
3071 (WebCore::AnimationBase::getNumProperties):
3072 * page/animation/AnimationBase.h:
3073 * page/animation/AnimationController.cpp:
3074 * page/animation/CompositeAnimation.cpp:
3075 (WebCore::CompositeAnimation::updateKeyframeAnimations):
3076 * page/animation/CompositeAnimation.h:
3077 * page/animation/ImplicitAnimation.cpp:
3078 * page/animation/KeyframeAnimation.cpp:
3079 * page/animation/KeyframeAnimation.h:
3080 (WebCore::KeyframeAnimation::setIndex):
3081
beidson@apple.com521e2b52008-09-12 18:40:03 +000030822008-09-12 Brady Eidson <beidson@apple.com>
3083
3084 Reviewed by Mitz Pettel
3085
3086 Fix the ASSERT and failure in webarchive/archive-empty-frame-source.html
3087
3088 * loader/DocumentLoader.cpp:
3089 (WebCore::DocumentLoader::mainResource): Further restoration of original WebArchive behavior.
3090 Subresources can never be created from nil data, but there is always a MainResource, whether
3091 or not there's any data. So in the case where the main resource has no data, fake it for the
3092 sake of creating the ArchiveResource.
3093
hyatt@apple.com818ffe92008-09-12 18:37:23 +000030942008-09-12 Dave Hyatt <hyatt@apple.com>
3095
3096 Preparation for major scrollbar rearchitecture. Eliminate the concept of non-widget based
3097 scrollbars (which we never supported anyway). Make Scrollbar derive from Widget directly.
3098 Remove all the isWidget and hasPlatformScrollbars guards.
3099
3100 Reviewed by Tim Hatcher
3101
3102 * platform/ScrollBar.h:
3103 * platform/gtk/PlatformScrollBar.h:
3104 * platform/mac/PlatformScrollBar.h:
3105 * platform/qt/PlatformScrollBar.h:
3106 * platform/win/PlatformScrollBar.h:
3107 * platform/win/ScrollViewWin.cpp:
3108 (WebCore::ScrollView::ScrollViewPrivate::setHasHorizontalScrollbar):
3109 (WebCore::ScrollView::ScrollViewPrivate::setHasVerticalScrollbar):
3110 * platform/wx/PlatformScrollBar.h:
3111 * rendering/RenderLayer.cpp:
3112 (WebCore::RenderLayer::horizontalScrollbarWidget):
3113 (WebCore::RenderLayer::verticalScrollbarWidget):
3114 (WebCore::RenderLayer::createScrollbar):
3115 (WebCore::RenderLayer::destroyScrollbar):
3116 * rendering/RenderListBox.cpp:
3117 (WebCore::RenderListBox::~RenderListBox):
3118 (WebCore::RenderListBox::updateFromElement):
3119 (WebCore::RenderListBox::isPointInOverflowControl):
3120
mitz@apple.com0bef1302008-09-12 18:22:07 +000031212008-09-12 Dan Bernstein <mitz@apple.com>
3122
3123 Reviewed by Sam Weinig.
3124
3125 - https://bugs.webkit.org/show_bug.cgi?id=20793 clean up page/animation
3126
3127 * page/animation/AnimationController.cpp:
3128 * page/animation/AnimationController.h:
3129 * page/animation/CompositeAnimation.cpp:
3130 * page/animation/CompositeAnimation.h:
3131 * page/animation/ImplicitAnimation.cpp:
3132 * page/animation/ImplicitAnimation.h:
3133 * page/animation/KeyframeAnimation.cpp:
3134 * page/animation/KeyframeAnimation.h:
3135
timothy@apple.com43203432008-09-12 04:44:40 +000031362008-09-11 Timothy Hatcher <timothy@apple.com>
3137
3138 Add a renderedImage method to DOMNode to get an image
3139 of the rendering for the node and it's descendants.
3140
3141 <rdar://problem/5849349> Would like API to create
3142 an image for a DOM node
3143
3144 Reviewed by Oliver Hunt.
3145
3146 * bindings/objc/DOM.mm:
3147 (-[DOMNode renderedImage]): Call Frame::nodeImage.
3148 * bindings/objc/DOMPrivate.h:
3149 * page/Frame.h:
3150 * page/mac/FrameMac.mm:
3151 (WebCore::Frame::nodeImage):
3152
dino@apple.com9300a0b2008-09-12 00:36:31 +000031532008-09-08 Chris Marrin <cmarrin@apple.com>
3154
3155 Reviewed by Dave Hyatt
3156
3157 Need to support comma separated list of key times in keyframes selectors
3158 https://bugs.webkit.org/show_bug.cgi?id=20680
3159
3160 Test: animations/keyframes-comma-separated.html
3161
3162 * css/CSSGrammar.y:
3163 * css/CSSParser.cpp:
3164 (WebCore::CSSParser::createKeyframeRule):
3165 * css/CSSParser.h:
3166 * css/CSSStyleSelector.cpp:
3167 (WebCore::CSSStyleSelector::addKeyframeStyle):
3168 * css/WebKitCSSKeyframeRule.cpp:
3169 (WebCore::WebKitCSSKeyframeRule::WebKitCSSKeyframeRule):
3170 (WebCore::WebKitCSSKeyframeRule::cssText):
3171 (WebCore::WebKitCSSKeyframeRule::parseKeyString):
3172 * css/WebKitCSSKeyframeRule.h:
3173 (WebCore::WebKitCSSKeyframeRule::keyText):
3174 (WebCore::WebKitCSSKeyframeRule::setKeyText):
3175 (WebCore::WebKitCSSKeyframeRule::getKeys):
3176 * css/WebKitCSSKeyframesRule.cpp:
3177 (WebCore::WebKitCSSKeyframesRule::append):
3178 (WebCore::WebKitCSSKeyframesRule::insertRule):
3179 (WebCore::WebKitCSSKeyframesRule::deleteRule):
3180 (WebCore::WebKitCSSKeyframesRule::findRule):
3181 (WebCore::WebKitCSSKeyframesRule::findRuleIndex):
3182 * css/WebKitCSSKeyframesRule.h:
3183 * page/animation/AnimationBase.cpp:
3184 (WebCore::AnimationBase::blendProperties):
3185
kmccullough@apple.com0f9f23a2008-09-11 22:57:09 +000031862008-09-11 Kevin McCullough <kmccullough@apple.com>
3187
3188 RS by Tim.
3189
3190 Reverting because this caused a crash.
3191
3192 * rendering/RenderObject.cpp:
3193 (WebCore::RenderObject::canBeProgramaticallyScrolled):
3194 (WebCore::RenderObject::hasScrollableView):
3195 * rendering/RenderObject.h:
3196
dino@apple.com19853b32008-09-11 21:59:08 +000031972008-09-11 Dean Jackson <dino@apple.com>
3198
3199 Reviewed by Dan Bernstein.
3200
3201 Fix assertion on transition property "none"
3202 https://bugs.webkit.org/show_bug.cgi?id=20751
3203
3204 Test: transitions/transition-end-event-set-none.html
3205
3206 * page/animation/CompositeAnimation.cpp:
3207 (WebCore::CompositeAnimation::updateTransitions):
3208
dsmith@webkit.orge6ea48f2008-09-11 21:41:33 +000032092008-09-11 David Smith <catfish.man@gmail.com>
3210
dsmith@webkit.org08103d92008-09-11 21:54:30 +00003211 Rubber-stamped by mitzpettel.
3212
3213 Remove an accidentally added extra file.
3214
3215 * WebCore: Removed.
3216
32172008-09-11 David Smith <catfish.man@gmail.com>
3218
dsmith@webkit.orge6ea48f2008-09-11 21:41:33 +00003219 Reviewed by Darin
3220
3221 https://bugs.webkit.org/show_bug.cgi?id=20180
3222
3223 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.
3224
3225 * WebCore.xcodeproj/project.pbxproj: Add NodeRenderStyle.h
3226 * css/CSSStyleSelector.cpp: include NodeRenderStyle.h
3227 * dom/Element.cpp: include NodeRenderStyle.h
3228 * dom/Node.cpp: Remove the definition of renderStyle()
3229 (WebCore::Node::nonRendererRenderStyle):
3230 * dom/Node.h: Make renderStyle() nonvirtual and add nonRendererRenderStyle()
3231 * dom/NodeRenderStyle.h: Added.
3232 (WebCore::Node::renderStyle): Inline the common case of this, call nonRendererRenderStyle for the part that needed to be virtual
3233 * html/HTMLOptGroupElement.cpp: include NodeRenderStyle.h
3234 * html/HTMLOptGroupElement.h:
3235 (WebCore::HTMLOptGroupElement::nonRendererRenderStyle): override to return m_style
3236 * html/HTMLOptionElement.cpp: include NodeRenderStyle.h
3237 * html/HTMLOptionElement.h:
3238 (WebCore::HTMLOptionElement::nonRendererRenderStyle): override to return m_style
3239 * rendering/RenderListBox.cpp: include NodeRenderStyle.h
3240 * rendering/RenderMenuList.cpp: include NodeRenderStyle.h
3241 * svg/SVGUseElement.cpp: include NodeRenderStyle.h
3242
kmccullough@apple.com38d3b0f2008-09-11 17:39:12 +000032432008-09-11 Kevin McCullough <kmccullough@apple.com>
3244
3245 Reviewed by Adele and Tim.
3246
3247 <rdar://problem/6100597> REGRESSION: clicking on search results in Web
3248 Inspector does not scroll to the line of the results (20167)
3249 - This was put in by Max to fix auto scrolling but is not correct for
3250 the whole web: rdar://problem/6213098
3251
3252 * rendering/RenderObject.cpp:
3253 (WebCore::RenderObject::canBeProgramaticallyScrolled):
3254 * rendering/RenderObject.h:
3255
cfleizach@apple.com6a3b1452008-09-11 16:24:09 +000032562008-09-11 Chris Fleizach <cfleizach@apple.com>
3257
3258 Reviewed by Beth Dakin
3259
3260 <rdar://problem/6210511> AX: if a frame has a title, that should be reported as the AXWebArea's title
3261
3262 Test: accessibility/frame-with-title.html
3263
3264 * page/AccessibilityRenderObject.cpp:
3265 (WebCore::AccessibilityRenderObject::accessibilityDescription):
3266
hausmann@webkit.orge8f8ffd2008-09-11 07:34:42 +000032672008-09-11 Dirk Schulze <vbs85@gmx.de>
3268
3269 Reviewed by Simon.
3270
hausmann@webkit.orgea57c432008-09-11 08:03:07 +00003271 Fixed stroke() and strokeRect() to support gradients
3272 and patterns on Qt.
3273
3274 [Qt] Canvas stroke don't work for gradients and patterns
3275 [https://bugs.webkit.org/show_bug.cgi?id=20749]
3276
3277 * platform/graphics/qt/GraphicsContextQt.cpp:
3278 (WebCore::GraphicsContext::strokePath):
3279 (WebCore::GraphicsContext::strokeRect):
3280
32812008-09-11 Dirk Schulze <vbs85@gmx.de>
3282
3283 Reviewed by Simon.
3284
hausmann@webkit.orgc11e3b72008-09-11 07:37:42 +00003285 https://bugs.webkit.org/show_bug.cgi?id=20729
3286
3287 Fixed canvas gradients for Qt
3288
3289 [Qt] Canvas gradients don't work as expected
3290 [https://bugs.webkit.org/show_bug.cgi?id=20729]
3291
3292 * platform/graphics/qt/GradientQt.cpp:
3293 (WebCore::Gradient::platformGradient):
3294
32952008-09-11 Dirk Schulze <vbs85@gmx.de>
3296
3297 Reviewed by Simon.
3298
hausmann@webkit.orge8f8ffd2008-09-11 07:34:42 +00003299 https://bugs.webkit.org/show_bug.cgi?id=20568
3300
3301 Add support for patterns to Qt.
3302
3303 * platform/graphics/qt/PatternQt.cpp:
3304 (WebCore::Pattern::createPlatformPattern):
3305
mitz@apple.com442c5892008-09-10 18:21:14 +000033062008-09-10 Dan Bernstein <mitz@apple.com>
3307
3308 Reviewed by Sam Weinig.
3309
3310 - clean up AnimationBase
3311
3312 * page/animation/AnimationBase.cpp:
3313 * page/animation/AnimationBase.h:
3314 * page/animation/CompositeAnimation.cpp:
3315 * page/animation/ImplicitAnimation.cpp:
3316 * page/animation/ImplicitAnimation.h:
3317 * page/animation/KeyframeAnimation.cpp:
3318 * page/animation/KeyframeAnimation.h:
3319
ap@webkit.orgbaf12872008-09-10 16:42:10 +000033202008-09-10 Alexey Proskuryakov <ap@webkit.org>
3321
3322 Reviewed by Darin Adler.
3323
3324 https://bugs.webkit.org/show_bug.cgi?id=20741
3325 REGRESSION: ISO-8859-8-I encoding is registered incorrectly
3326
3327 Turns out that there were no real behavior changes for 8859-8, as it was only a debug-only
3328 check to ignore this specific registration that was failing. Yet, I decided to add a bunch of
3329 tests for ISO-8859-8 encoding aliases, as we handle them in a quite complicated manner.
3330
3331 I also found and fixed a potential crasher for non-Mac ports.
3332
3333 Tests: fast/encoding/hebrew/8859-8-e.html
3334 fast/encoding/hebrew/8859-8-i.html
3335 fast/encoding/hebrew/8859-8.html
3336 fast/encoding/hebrew/csISO88598I.html
3337 fast/encoding/hebrew/hebrew.html
3338 fast/encoding/hebrew/iso-ir-138.html
3339 fast/encoding/hebrew/logical.html
3340
3341 * platform/text/TextEncodingRegistry.cpp: (WebCore::checkExistingName): Check for iso-8859-8
3342 (case-insensitively, because different versions of ICU report this MIME name in different
3343 case).
3344
3345 * platform/text/TextCodecICU.cpp:
3346 (WebCore::TextCodecICU::registerExtendedEncodingNames): Updated some comments.
3347 (WebCore::TextCodecICU::registerExtendedCodecs): Try both MIME and IANA names here, too.
3348 There are four names in ICU that only have MIME names (x-mac-* ones), so we could end up
3349 with an encoding map entry, but no codec for these. This was not an issue on the Mac, as
3350 we also support these via TEC (which we should stop doing), but on Windows, this would
3351 likely crash.
3352
hyatt@apple.com0197e6b2008-09-10 05:29:46 +000033532008-09-09 Dave Hyatt <hyatt@apple.com
3354
3355 Resurrect PlatformScrollbarWin.
3356
3357 Reviewed by Adam Roben
3358
3359 * WebCore.vcproj/WebCore.vcproj:
3360 * platform/win/PlatformScrollBarWin.cpp:
3361 (WebCore::isRunningOnVistaOrLater):
3362 (WebCore::checkAndInitScrollbarTheme):
3363 (WebCore::PlatformScrollbar::PlatformScrollbar):
3364 (WebCore::PlatformScrollbar::invalidateTrack):
3365 (WebCore::PlatformScrollbar::invalidatePart):
3366 (WebCore::PlatformScrollbar::paint):
3367 (WebCore::PlatformScrollbar::hasButtons):
3368 (WebCore::PlatformScrollbar::hasThumb):
3369 (WebCore::PlatformScrollbar::backButtonRect):
3370 (WebCore::PlatformScrollbar::forwardButtonRect):
3371 (WebCore::PlatformScrollbar::trackRect):
3372 (WebCore::PlatformScrollbar::gripperRect):
3373 (WebCore::PlatformScrollbar::thumbLength):
3374 (WebCore::PlatformScrollbar::paintButton):
3375 (WebCore::PlatformScrollbar::paintTrack):
3376 (WebCore::PlatformScrollbar::paintThumb):
3377 (WebCore::PlatformScrollbar::paintGripper):
3378 (WebCore::PlatformScrollbar::hitTest):
3379 (WebCore::PlatformScrollbar::handleMouseMoveEvent):
3380 (WebCore::PlatformScrollbar::handleMouseOutEvent):
3381 (WebCore::PlatformScrollbar::themeChanged):
3382
cwzwarich@webkit.org8a334572008-09-10 03:22:04 +000033832008-09-09 Cameron Zwarich <cwzwarich@uwaterloo.ca>
3384
3385 Reviewed by Maciej Stachowiak.
3386
3387 Bug 20759: Remove MacroAssembler
3388 <https://bugs.webkit.org/show_bug.cgi?id=20759>
3389
3390 Make the necessary changes to ForwardingHeaders to remove
3391 MacroAssembler.
3392
3393 * ForwardingHeaders/masm/IA32MacroAsm.h: Removed.
3394 * ForwardingHeaders/masm/MacroAssembler.h: Removed.
3395 * ForwardingHeaders/masm/X86Assembler.h: Added.
3396
alp@webkit.org509e3d42008-09-10 01:26:20 +000033972008-09-09 Alp Toker <alp@nuanti.com>
3398
3399 Reviewed by Dave Hyatt.
3400
3401 https://bugs.webkit.org/show_bug.cgi?id=16792
3402 [GTK] Fails to render Japanese/Chinese text with simple path
3403
3404 https://bugs.webkit.org/show_bug.cgi?id=16942
3405 [GTK] Oddities in font selection and fall back
3406
3407 https://bugs.webkit.org/show_bug.cgi?id=16862
3408 [GTK] Custom fonts hard-coded to use grayscale antialiasing and no hinting
3409
3410 GTK+ font fixes and enhancements.
3411
3412 Implement font fallback for the simple FontConfig-based text path and
3413 improve the Pango-based complex text path to make use of requested
3414 font properties and available font selection.
3415
3416 Add text shadow support to the complex path.
3417
3418 * platform/graphics/gtk/FontCacheGtk.cpp:
3419 (WebCore::FontCache::getFontDataForCharacters):
3420 (WebCore::FontCache::getSimilarFontPlatformData):
3421 * platform/graphics/gtk/FontGtk.cpp:
3422 (WebCore::setPangoAttributes):
3423 (WebCore::Font::drawComplexText):
3424 (WebCore::getDefaultPangoLayout):
3425 (WebCore::Font::floatWidthForComplexText):
3426 (WebCore::Font::offsetForPositionForComplexText):
3427 (WebCore::Font::selectionRectForComplexText):
3428 * platform/graphics/gtk/FontPlatformData.h:
3429 (WebCore::FontPlatformData::FontPlatformData):
3430 (WebCore::FontPlatformData::hash):
3431 * platform/graphics/gtk/FontPlatformDataGtk.cpp:
3432 (WebCore::FontPlatformData::FontPlatformData):
3433 * platform/graphics/gtk/SimpleFontDataGtk.cpp:
3434 (WebCore::SimpleFontData::platformDestroy):
3435
hyatt@apple.com33f37f62008-09-09 23:51:46 +000034362008-09-09 Dave Hyatt <hyatt@apple.com>
3437
3438 Make the Windows classic case work again. Overlap in slider constants and other constants broke
3439 the push state for buttons and checkboxes. Make sure to check the RenderObject's appearance
3440 value to make sure it's really a slider thumb to resolve this conflict.
3441
3442 Reviewed by Adam Roben
3443
3444 * rendering/RenderThemeWin.cpp:
3445 (WebCore::drawControl):
3446
dino@apple.com442d0652008-09-09 23:36:56 +000034472008-09-05 Chris Marrin <cmarrin@apple.com>
3448
3449 Reviewed by Sam Weinig.
3450
3451 Need to handle the case when 0% or 100% keyframe is omitted
3452 https://bugs.webkit.org/show_bug.cgi?id=20679
3453
3454 Tests: animations/keyframes-from-missing.html
3455 animations/keyframes-to-missing.html
3456
3457 * css/CSSStyleSelector.cpp:
3458 (WebCore::CSSStyleSelector::addKeyframeStyle):
3459
hyatt@apple.com419d0ad2008-09-09 23:11:14 +000034602008-09-09 Dave Hyatt <hyatt@apple.com>
3461
3462 Resurrect Safari's original RenderThemeWin and bring it up to date with ToT. Having a current
3463 RenderThemeWin that does not have any Skia dependencies should provide a good basis for a potential
3464 merge of Google Chrome's RenderThemeWin (to help us see where the Skia stuff can be cut and to see
3465 what changes have been made as compared with the old RenderThemeWin).
3466
3467 Fix CSS2 system fonts to properly set both the rendering mode (so that they properly pick up GDI vs. CG
3468 text rendering modes) and the printer font setting (so that OS X system fonts properly pick up screen
3469 vs. printer advancement rounding).
3470
3471 Reviewed by Adam/Sam
3472
3473 * css/CSSStyleSelector.cpp:
3474 (WebCore::CSSStyleSelector::applyProperty):
3475 * platform/graphics/Icon.h:
3476 (WebCore::Icon::create):
3477 * rendering/RenderThemeWin.cpp:
3478 (WebCore::RenderThemeWin::RenderThemeWin):
3479 (WebCore::RenderThemeWin::~RenderThemeWin):
3480 (WebCore::RenderThemeWin::buttonTheme):
3481 (WebCore::RenderThemeWin::textFieldTheme):
3482 (WebCore::RenderThemeWin::menuListTheme):
3483 (WebCore::RenderThemeWin::sliderTheme):
3484 (WebCore::RenderThemeWin::close):
3485 (WebCore::RenderThemeWin::themeChanged):
3486 (WebCore::RenderThemeWin::supportsHover):
3487 (WebCore::fillFontDescription):
3488 (WebCore::RenderThemeWin::systemFont):
3489 (WebCore::RenderThemeWin::supportsFocus):
3490 (WebCore::RenderThemeWin::determineClassicState):
3491 (WebCore::RenderThemeWin::determineState):
3492 (WebCore::RenderThemeWin::determineSliderThumbState):
3493 (WebCore::RenderThemeWin::getClassicThemeData):
3494 (WebCore::RenderThemeWin::getThemeData):
3495 (WebCore::drawControl):
3496 (WebCore::RenderThemeWin::paintButton):
3497 (WebCore::RenderThemeWin::paintTextField):
3498 (WebCore::RenderThemeWin::paintMenuList):
3499 (WebCore::RenderThemeWin::adjustMenuListStyle):
3500 (WebCore::RenderThemeWin::adjustMenuListButtonStyle):
3501 (WebCore::RenderThemeWin::paintMenuListButton):
3502 (WebCore::RenderThemeWin::paintSliderTrack):
3503 (WebCore::RenderThemeWin::paintSliderThumb):
3504 (WebCore::RenderThemeWin::adjustSliderThumbSize):
3505 (WebCore::RenderThemeWin::paintSearchField):
3506 (WebCore::RenderThemeWin::adjustSearchFieldStyle):
3507 (WebCore::RenderThemeWin::paintSearchFieldCancelButton):
3508 (WebCore::RenderThemeWin::adjustSearchFieldCancelButtonStyle):
3509 (WebCore::RenderThemeWin::adjustSearchFieldDecorationStyle):
3510 (WebCore::RenderThemeWin::adjustSearchFieldResultsDecorationStyle):
3511 (WebCore::RenderThemeWin::paintSearchFieldResultsDecoration):
3512 (WebCore::RenderThemeWin::adjustSearchFieldResultsButtonStyle):
3513 (WebCore::RenderThemeWin::paintSearchFieldResultsButton):
3514 * rendering/RenderThemeWin.h:
3515 (WebCore::ThemeData::ThemeData):
3516 (WebCore::RenderThemeWin::paintSearchFieldDecoration):
3517 (WebCore::RenderThemeWin::adjustButtonStyle):
3518 (WebCore::RenderThemeWin::adjustTextFieldStyle):
3519 (WebCore::RenderThemeWin::adjustTextAreaStyle):
3520
dino@apple.comd511ce52008-09-09 19:50:25 +000035212008-09-09 Dean Jackson <dino@apple.com>
3522
3523 Reviewed by Sam Weinig.
3524
3525 Document::createEvent missing cases for animation and
3526 transition events.
3527 https://bugs.webkit.org/show_bug.cgi?id=20734
3528
3529 Test: transitions/transition-end-event-create.html
3530 Test: animations/animation-events-create.html
3531
3532 * dom/Document.cpp:
3533 (WebCore::Document::createEvent):
3534 - add the two cases
3535
mitz@apple.com1da7b882008-09-09 18:12:06 +000035362008-09-09 Dan Bernstein <mitz@apple.com>
3537
mitz@apple.com54921562008-09-09 18:48:34 +00003538 - Tiger build fix
3539
3540 * WebCore.Tiger.exp:
3541 * WebCore.base.exp:
3542 * platform/mac/WebCoreSystemInterface.h:
3543 * platform/mac/WebCoreSystemInterface.mm:
3544
35452008-09-09 Dan Bernstein <mitz@apple.com>
3546
mitz@apple.com1da7b882008-09-09 18:12:06 +00003547 Reviewed by Darin Adler.
3548
3549 - WebCore part of <rdar://problem/6206244> Use alternate character-to-glyph interface on Leopard
3550
3551 * WebCore.Tiger.exp:
3552 * WebCore.base.exp:
3553 * platform/graphics/SimpleFontData.h:
3554 * platform/graphics/mac/GlyphPageTreeNodeMac.cpp:
3555 (WebCore::GlyphPage::fill):
3556 * platform/graphics/mac/SimpleFontDataMac.mm:
3557 (WebCore::initFontData):
3558 (WebCore::SimpleFontData::platformInit):
3559 (WebCore::SimpleFontData::platformDestroy):
3560 * platform/mac/WebCoreSystemInterface.h:
3561 * platform/mac/WebCoreSystemInterface.mm:
3562
kmccullough@apple.com5ba965b2008-09-09 16:40:31 +000035632008-09-09 Kevin McCullough <kmccullough@apple.com>
3564
3565 Reviewed by Tim.
3566
3567 <rdar://problem/6198545> REGRESSION: Inspector debugger barfs on
3568 breakpoints inside eval.
3569
3570 * page/inspector/inspector.js:
3571
hausmann@webkit.orgdab0e872008-09-09 14:17:21 +000035722008-09-09 Joerg Bornemann <joerg.bornemann@trolltech.com>
3573
3574 Reviewed by Simon.
3575
3576 Fix compilation of the Qt port with disabled plugins on Windows
3577
3578 * WebCore.pro:
3579 * plugins/PluginView.cpp:
3580 (WebCore::PluginView::PluginView):
3581 * plugins/PluginView.h:
3582
ap@webkit.org2ba74d32008-09-09 08:11:01 +000035832008-09-09 Jungshik Shin <jungshik.shin@gmail.com>
3584
3585 Reviewed by Alexey Proskuryakov.
3586
3587 Try MIME charset names before trying IANA names
3588 ( https://bugs.webkit.org/show_bug.cgi?id=17537 )
3589
3590 With this change, shorter and more widely used names (preferred MIME
3591 names) are returned by document.charset, document.characterSet,
3592 document.inputEncoding rather than IANA names. This helps
3593 fixing bug 18085 in addition to web developers who are more familiar
3594 with MIME names. For instance, EUC-JP, ISO-8859-X and US-ASCII will be
3595 returned instead of Extended_UNIX_Code_Packed_Format_for_Japanese,
3596 ISO-8859-X:19xx, and ANSI_X3.4-1968. It also replaces IBM8xx with cp8xx.
3597 Note that cp/IBM 8xx are extremly rare in today's web. Even if they're
3598 used, the former is still recognized as aliases to the latter so that
3599 there's very little, if any, to worry about.
3600
3601 * platform/text/TextCodecICU.cpp:
3602 (WebCore::TextCodecICU::registerExtendedEncodingNames):
3603
weinig@apple.com22294302008-09-09 06:55:39 +000036042008-09-08 Sam Weinig <sam@webkit.org>
3605
3606 Reviewed by Maciej Stachowiak and Oliver Hunt.
3607
3608 Add forwarding headers.
3609
3610 * ForwardingHeaders/wtf/HashFunctions.h: Added.
3611
dino@apple.comd9962af2008-09-09 01:02:00 +000036122008-09-05 Dean Jackson <dino@apple.com>
3613
3614 Reviewed by Dan Bernstein.
3615
3616 Update grammar so that we can add a keyframe rule via the DOM.
3617 https://bugs.webkit.org/show_bug.cgi?id=20613
3618
3619 * css/CSSGrammar.y:
3620 * css/tokenizer.flex:
3621
antti@apple.com4b17a932008-09-09 00:40:45 +000036222008-09-08 Antti Koivisto <antti@apple.com>
3623
3624 Reviewed by Dan Bernstein.
3625
3626 Allow <br> for simple UA stylesheet. Editing code generates them. It does not
3627 actually show up in any of the default stylesheets.
3628
3629 * css/CSSStyleSelector.cpp:
3630 (WebCore::elementCanUseSimpleDefaultStyle):
3631
mitz@apple.com66fa91a2008-09-09 00:35:22 +000036322008-09-08 Dimitri Glazkov <dglazkov@google.com>
3633
3634 Reviewed by Dan Bernstein.
3635
3636 - fix https://bugs.webkit.org/show_bug.cgi?id=20237
3637 Zero width and space characters are displayed incorrectly if not contained in a fallback font
3638
3639 Adds an extra check for Object Replacement Character (U+FFFC) to address
3640 the issue with fast/text/zero-width-characters.html test when run
3641 with Windows system default fonts.
3642
3643 * platform/graphics/Font.h:
3644 (WebCore::Font::treatAsZeroWidthSpace):
3645
dino@apple.comf0a4b212008-09-08 22:51:49 +000036462008-09-08 Dean Jackson <dino@apple.com>
3647
3648 Reviewed by Sam Weinig.
3649
3650 Code style issue I forgot to fix from previous commit.
3651
3652 * platform/graphics/AffineTransform.cpp:
3653 (WebCore::AffineTransform::blend):
3654
dino@apple.com26625122008-09-08 22:46:41 +000036552008-09-08 Chris Marrin <cmarrin@apple.com>
3656
3657 Reviewed by Sam Weinig
3658
3659 - Animation of -webkit-transform matrix() function should not do linear interpolation
3660 https://bugs.webkit.org/show_bug.cgi?id=20667
3661
3662 Test: animations/matrix-anim.html
3663
3664 * ChangeLog:
3665 * platform/graphics/AffineTransform.cpp:
3666 (WebCore::affineTransformDecompose):
3667 (WebCore::affineTransformCompose):
3668 (WebCore::AffineTransform::blend):
3669 * platform/graphics/AffineTransform.h:
3670 * rendering/style/RenderStyle.cpp:
3671 (WebCore::MatrixTransformOperation::blend):
3672
ap@webkit.org243a9752008-09-08 16:21:16 +000036732008-09-08 Alexey Proskuryakov <ap@webkit.org>
3674
3675 Reviewed by Darin Adler.
3676
3677 https://bugs.webkit.org/show_bug.cgi?id=20668
3678 multipart/form-data does not always include Content-type for submitted files
3679
3680 Cannot be tested with DRT or manual tests.
3681
3682 * platform/MIMETypeRegistry.cpp:
3683 (WebCore::initializeSupportedNonImageMimeTypes): Fix spacing.
3684 (WebCore::MIMETypeRegistry::getMIMETypeForPath): Default to application/octet-stream for
3685 unknown extensions, not just missing ones.
3686
hausmann@webkit.orgaf796ea2008-09-08 13:00:19 +000036872008-09-08 Simon Hausmann <hausmann@webkit.org>
3688
3689 Build fix for the Qt/Windows build, define USE_JSC to
3690 enable the WebCore::String -> JSC::UString operator that
3691 MSVC insists on seeing
3692
3693 * WebCore.pro:
3694
andersca@apple.com3ac4f552008-09-08 11:39:34 +000036952008-09-08 Anders Carlsson <andersca@apple.com>
3696
3697 Reviewed by Maciej.
3698
3699 <rdar://problem/5850387> Showing bookmarks reloads Google Reader instead.
3700
3701 In some cases, timeouts scheduled by a page in the onunload handler could fire even when the
3702 page had been unloaded and replaced by a non-HTML representation based view (such as the bookmarks view).
3703
3704 Fix this by clearing timeouts for pages that aren't cached when the provisional load is committed.
3705
3706 * bindings/js/JSDOMWindowBase.h:
3707 * loader/FrameLoader.cpp:
3708 (WebCore::FrameLoader::commitProvisionalLoad):
3709
antti@apple.com57b3a102008-09-08 07:01:36 +000037102008-09-07 Antti Koivisto <antti@apple.com>
3711
3712 Reviewed by Dave Hyatt.
3713
3714 Don't leak the simple stylesheet.
3715 Also call RenderTheme::adjustDefaultStyleSheet() in right place.
3716
3717 * css/CSSStyleSelector.cpp:
3718 (WebCore::loadFullDefaultStyle):
3719 (WebCore::loadSimpleDefaultStyle):
3720 (WebCore::CSSStyleSelector::styleForElement):
3721
cwzwarich@webkit.org3f782f62008-09-08 01:28:33 +000037222008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
3723
cwzwarich@webkit.org951b1452008-09-08 04:25:32 +00003724 Reviewed by Oliver Hunt.
3725
3726 Bug 20711: Change KJS prefix on preprocessor macros to JSC
3727 <https://bugs.webkit.org/show_bug.cgi?id=20711>
3728
3729 * bindings/js/JSEventTargetBase.h:
3730 * bindings/js/JSHTMLInputElementBase.cpp:
3731 * bindings/js/JSHTMLInputElementBase.h:
3732 * bindings/scripts/CodeGeneratorJS.pm:
3733
37342008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
3735
cwzwarich@webkit.org3f782f62008-09-08 01:28:33 +00003736 Reviewed by Maciej Stachowiak.
3737
3738 Bug 20704: Replace the KJS namespace
3739 <https://bugs.webkit.org/show_bug.cgi?id=20704>
3740
3741 Rename the KJS namespace to JSC. There are still some uses of KJS in the
3742 names of JNI functions, and I will check if these are safe to change
3743 as well.
3744
3745 * WebCore.base.exp:
3746 * bindings/js/GCController.cpp:
3747 * bindings/js/JSAttrCustom.cpp:
3748 * bindings/js/JSAudioConstructor.cpp:
3749 * bindings/js/JSAudioConstructor.h:
3750 (WebCore::JSAudioConstructor::classInfo):
3751 * bindings/js/JSCSSRuleCustom.cpp:
3752 * bindings/js/JSCSSStyleDeclarationCustom.cpp:
3753 * bindings/js/JSCSSValueCustom.cpp:
3754 * bindings/js/JSCanvasPixelArrayCustom.cpp:
3755 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
3756 * bindings/js/JSClipboardCustom.cpp:
3757 * bindings/js/JSConsoleCustom.cpp:
3758 * bindings/js/JSCustomSQLStatementCallback.cpp:
3759 (WebCore::JSCustomSQLStatementCallback::handleEvent):
3760 * bindings/js/JSCustomSQLStatementCallback.h:
3761 (WebCore::JSCustomSQLStatementCallback::create):
3762 * bindings/js/JSCustomSQLStatementErrorCallback.cpp:
3763 (WebCore::JSCustomSQLStatementErrorCallback::handleEvent):
3764 * bindings/js/JSCustomSQLStatementErrorCallback.h:
3765 (WebCore::JSCustomSQLStatementErrorCallback::create):
3766 * bindings/js/JSCustomSQLTransactionCallback.cpp:
3767 (WebCore::JSCustomSQLTransactionCallback::handleEvent):
3768 * bindings/js/JSCustomSQLTransactionCallback.h:
3769 (WebCore::JSCustomSQLTransactionCallback::create):
3770 * bindings/js/JSCustomSQLTransactionErrorCallback.cpp:
3771 (WebCore::JSCustomSQLTransactionErrorCallback::handleEvent):
3772 * bindings/js/JSCustomSQLTransactionErrorCallback.h:
3773 (WebCore::JSCustomSQLTransactionErrorCallback::create):
3774 * bindings/js/JSCustomVoidCallback.cpp:
3775 (WebCore::JSCustomVoidCallback::handleEvent):
3776 * bindings/js/JSCustomVoidCallback.h:
3777 (WebCore::JSCustomVoidCallback::create):
3778 * bindings/js/JSCustomXPathNSResolver.cpp:
3779 (WebCore::JSCustomXPathNSResolver::create):
3780 * bindings/js/JSCustomXPathNSResolver.h:
3781 * bindings/js/JSDOMApplicationCacheCustom.cpp:
3782 (WebCore::JSDOMApplicationCache::dispatchEvent):
3783 * bindings/js/JSDOMBinding.cpp:
3784 (WebCore::jsOwnedStringOrNull):
3785 * bindings/js/JSDOMBinding.h:
3786 (WebCore::DOMObject::DOMObject):
3787 (WebCore::cacheDOMObject):
3788 (WebCore::cacheSVGDOMObject):
3789 (WebCore::DOMExceptionTranslator::DOMExceptionTranslator):
3790 (WebCore::toJS):
3791 * bindings/js/JSDOMWindowBase.cpp:
3792 * bindings/js/JSDOMWindowBase.h:
3793 (WebCore::JSDOMWindowBase::classInfo):
3794 (WebCore::JSDOMWindowBase::d):
3795 * bindings/js/JSDOMWindowCustom.cpp:
3796 (WebCore::JSDOMWindow::getPropertyAttributes):
3797 * bindings/js/JSDOMWindowCustom.h:
3798 (WebCore::asJSDOMWindow):
3799 (WebCore::JSDOMWindow::customGetOwnPropertySlot):
3800 (WebCore::JSDOMWindow::customPut):
3801 (WebCore::JSDOMWindowBase::allowsAccessFrom):
3802 (WebCore::JSDOMWindowBase::allowsAccessFromNoErrorMessage):
3803 * bindings/js/JSDOMWindowShell.cpp:
3804 (WebCore::JSDOMWindowShell::getPropertyAttributes):
3805 * bindings/js/JSDOMWindowShell.h:
3806 (WebCore::JSDOMWindowShell::classInfo):
3807 * bindings/js/JSDatabaseCustom.cpp:
3808 * bindings/js/JSDocumentCustom.cpp:
3809 * bindings/js/JSDocumentFragmentCustom.cpp:
3810 * bindings/js/JSElementCustom.cpp:
3811 * bindings/js/JSEventCustom.cpp:
3812 * bindings/js/JSEventListener.cpp:
3813 * bindings/js/JSEventListener.h:
3814 (WebCore::JSUnprotectedEventListener::create):
3815 (WebCore::JSEventListener::create):
3816 * bindings/js/JSEventTargetBase.cpp:
3817 * bindings/js/JSEventTargetBase.h:
3818 (WebCore::JSEventTargetBase::getValueProperty):
3819 (WebCore::JSEventTargetBase::putValueProperty):
3820 (WebCore::JSEventTargetBase::getOwnPropertySlot):
3821 (WebCore::JSEventTargetBase::put):
3822 (WebCore::JSEventTargetPrototype::JSEventTargetPrototype):
3823 (WebCore::JSEventTargetPrototype::self):
3824 (WebCore::JSEventTargetPrototype::getOwnPropertySlot):
3825 (WebCore::JSEventTargetPrototype::classInfo):
3826 * bindings/js/JSEventTargetNode.cpp:
3827 * bindings/js/JSEventTargetNode.h:
3828 (WebCore::JSEventTargetNode::getOwnPropertySlot):
3829 (WebCore::JSEventTargetNode::getValueProperty):
3830 (WebCore::JSEventTargetNode::put):
3831 (WebCore::JSEventTargetNode::putValueProperty):
3832 * bindings/js/JSHTMLAllCollection.h:
3833 (WebCore::JSHTMLAllCollection::JSHTMLAllCollection):
3834 (WebCore::JSHTMLAllCollection::toBoolean):
3835 * bindings/js/JSHTMLAppletElementCustom.cpp:
3836 * bindings/js/JSHTMLCollectionCustom.cpp:
3837 * bindings/js/JSHTMLDocumentCustom.cpp:
3838 * bindings/js/JSHTMLElementCustom.cpp:
3839 * bindings/js/JSHTMLEmbedElementCustom.cpp:
3840 * bindings/js/JSHTMLFormElementCustom.cpp:
3841 * bindings/js/JSHTMLFrameElementCustom.cpp:
3842 * bindings/js/JSHTMLFrameSetElementCustom.cpp:
3843 * bindings/js/JSHTMLIFrameElementCustom.cpp:
3844 * bindings/js/JSHTMLInputElementBase.cpp:
3845 (WebCore::JSHTMLInputElementBase::JSHTMLInputElementBase):
3846 (WebCore::JSHTMLInputElementBase::getOwnPropertySlot):
3847 * bindings/js/JSHTMLInputElementBase.h:
3848 (WebCore::JSHTMLInputElementBase::classInfo):
3849 * bindings/js/JSHTMLObjectElementCustom.cpp:
3850 * bindings/js/JSHTMLOptionElementConstructor.cpp:
3851 * bindings/js/JSHTMLOptionElementConstructor.h:
3852 (WebCore::JSHTMLOptionElementConstructor::classInfo):
3853 * bindings/js/JSHTMLOptionsCollectionCustom.cpp:
3854 * bindings/js/JSHTMLSelectElementCustom.cpp:
3855 (WebCore::selectIndexSetter):
3856 (WebCore::JSHTMLSelectElement::indexSetter):
3857 * bindings/js/JSHTMLSelectElementCustom.h:
3858 * bindings/js/JSHistoryCustom.cpp:
3859 * bindings/js/JSImageConstructor.cpp:
3860 * bindings/js/JSImageConstructor.h:
3861 (WebCore::JSImageConstructor::classInfo):
3862 * bindings/js/JSInspectedObjectWrapper.cpp:
3863 * bindings/js/JSInspectedObjectWrapper.h:
3864 (WebCore::JSInspectedObjectWrapper::wrapOutgoingValue):
3865 (WebCore::JSInspectedObjectWrapper::classInfo):
3866 * bindings/js/JSInspectorCallbackWrapper.cpp:
3867 * bindings/js/JSInspectorCallbackWrapper.h:
3868 (WebCore::JSInspectorCallbackWrapper::classInfo):
3869 (WebCore::JSInspectorCallbackWrapper::wrapOutgoingValue):
3870 * bindings/js/JSJavaScriptCallFrameCustom.cpp:
3871 * bindings/js/JSLocationCustom.cpp:
3872 * bindings/js/JSMimeTypeArrayCustom.cpp:
3873 * bindings/js/JSNSResolver.cpp:
3874 * bindings/js/JSNSResolver.h:
3875 (WebCore::JSNSResolver::create):
3876 * bindings/js/JSNamedNodeMapCustom.cpp:
3877 * bindings/js/JSNamedNodesCollection.cpp:
3878 (WebCore::JSNamedNodesCollection::JSNamedNodesCollection):
3879 * bindings/js/JSNamedNodesCollection.h:
3880 (WebCore::JSNamedNodesCollection::classInfo):
3881 * bindings/js/JSNavigatorCustom.cpp:
3882 * bindings/js/JSNodeCustom.cpp:
3883 * bindings/js/JSNodeFilterCondition.cpp:
3884 (WebCore::JSNodeFilterCondition::acceptNode):
3885 * bindings/js/JSNodeFilterCondition.h:
3886 (WebCore::JSNodeFilterCondition::create):
3887 * bindings/js/JSNodeFilterCustom.cpp:
3888 * bindings/js/JSNodeIteratorCustom.cpp:
3889 * bindings/js/JSNodeListCustom.cpp:
3890 * bindings/js/JSPluginArrayCustom.cpp:
3891 * bindings/js/JSPluginCustom.cpp:
3892 * bindings/js/JSPluginElementFunctions.cpp:
3893 (WebCore::getRuntimeObject):
3894 * bindings/js/JSPluginElementFunctions.h:
3895 * bindings/js/JSQuarantinedObjectWrapper.cpp:
3896 (WebCore::JSQuarantinedObjectWrapper::construct):
3897 (WebCore::JSQuarantinedObjectWrapper::call):
3898 * bindings/js/JSQuarantinedObjectWrapper.h:
3899 (WebCore::JSQuarantinedObjectWrapper::unwrappedObject):
3900 (WebCore::JSQuarantinedObjectWrapper::unwrappedGlobalObject):
3901 (WebCore::JSQuarantinedObjectWrapper::className):
3902 * bindings/js/JSRGBColor.cpp:
3903 * bindings/js/JSRGBColor.h:
3904 (WebCore::JSRGBColor::classInfo):
3905 * bindings/js/JSSQLResultSetRowListCustom.cpp:
3906 * bindings/js/JSSQLTransactionCustom.cpp:
3907 * bindings/js/JSSVGLazyEventListener.cpp:
3908 * bindings/js/JSSVGLazyEventListener.h:
3909 * bindings/js/JSSVGLengthCustom.cpp:
3910 * bindings/js/JSSVGMatrixCustom.cpp:
3911 (WebCore::JSSVGMatrix::inverse):
3912 (WebCore::JSSVGMatrix::rotateFromVector):
3913 * bindings/js/JSSVGPathSegCustom.cpp:
3914 * bindings/js/JSSVGPathSegListCustom.cpp:
3915 (WebCore::JSSVGPathSegList::initialize):
3916 (WebCore::JSSVGPathSegList::getItem):
3917 (WebCore::JSSVGPathSegList::insertItemBefore):
3918 (WebCore::JSSVGPathSegList::replaceItem):
3919 (WebCore::JSSVGPathSegList::removeItem):
3920 (WebCore::JSSVGPathSegList::appendItem):
3921 * bindings/js/JSSVGPointListCustom.cpp:
3922 * bindings/js/JSSVGTransformListCustom.cpp:
3923 * bindings/js/JSStorageCustom.cpp:
3924 * bindings/js/JSStyleSheetCustom.cpp:
3925 * bindings/js/JSStyleSheetListCustom.cpp:
3926 * bindings/js/JSTextCustom.cpp:
3927 * bindings/js/JSTreeWalkerCustom.cpp:
3928 * bindings/js/JSXMLHttpRequestConstructor.cpp:
3929 * bindings/js/JSXMLHttpRequestConstructor.h:
3930 (WebCore::JSXMLHttpRequestConstructor::classInfo):
3931 * bindings/js/JSXMLHttpRequestCustom.cpp:
3932 * bindings/js/JSXMLHttpRequestUploadCustom.cpp:
3933 * bindings/js/JSXSLTProcessorConstructor.cpp:
3934 * bindings/js/JSXSLTProcessorConstructor.h:
3935 (WebCore::JSXSLTProcessorConstructor::classInfo):
3936 * bindings/js/JSXSLTProcessorCustom.cpp:
3937 * bindings/js/ScheduledAction.cpp:
3938 * bindings/js/ScheduledAction.h:
3939 * bindings/js/ScriptController.cpp:
3940 (WebCore::ScriptController::attachDebugger):
3941 (WebCore::ScriptController::windowScriptNPObject):
3942 * bindings/js/ScriptController.h:
3943 * bindings/js/ScriptControllerGtk.cpp:
3944 (WebCore::ScriptController::createScriptInstanceForWidget):
3945 * bindings/js/ScriptControllerMac.mm:
3946 (WebCore::ScriptController::createScriptInstanceForWidget):
3947 (WebCore::ScriptController::windowScriptObject):
3948 (WebCore::ScriptController::clearPlatformScriptObjects):
3949 (WebCore::updateRenderingForBindings):
3950 (WebCore::ScriptController::initJavaJSBindings):
3951 * bindings/js/ScriptControllerQt.cpp:
3952 (WebCore::ScriptController::createScriptInstanceForWidget):
3953 * bindings/js/ScriptControllerWin.cpp:
3954 (WebCore::ScriptController::createScriptInstanceForWidget):
3955 * bindings/js/ScriptControllerWx.cpp:
3956 (WebCore::ScriptController::createScriptInstanceForWidget):
3957 * bindings/js/StringSourceProvider.h:
3958 (WebCore::StringSourceProvider::getRange):
3959 * bindings/objc/DOM.mm:
3960 (-[DOMNode JSC::Bindings::]):
3961 * bindings/objc/DOMInternal.h:
3962 * bindings/objc/DOMInternal.mm:
3963 (-[WebScriptObject _initializeScriptDOMNodeImp]):
3964 * bindings/objc/DOMUtility.mm:
3965 (JSC::createDOMWrapper):
3966 (WebCore::createDOMWrapper):
3967 * bindings/objc/WebScriptObject.mm:
3968 (WebCore::createJSWrapper):
3969 (-[WebScriptObject _initWithJSObject:JSC::originRootObject:JSC::Bindings::rootObject:JSC::Bindings::]):
3970 * bindings/objc/WebScriptObjectPrivate.h:
3971 * bindings/scripts/CodeGeneratorJS.pm:
3972 * bridge/NP_jsobject.cpp:
3973 * bridge/NP_jsobject.h:
3974 * bridge/c/c_class.cpp:
3975 * bridge/c/c_class.h:
3976 * bridge/c/c_instance.cpp:
3977 * bridge/c/c_instance.h:
3978 * bridge/c/c_runtime.cpp:
3979 * bridge/c/c_runtime.h:
3980 * bridge/c/c_utility.cpp:
3981 * bridge/c/c_utility.h:
3982 * bridge/jni/jni_class.cpp:
3983 * bridge/jni/jni_class.h:
3984 * bridge/jni/jni_instance.cpp:
3985 * bridge/jni/jni_instance.h:
3986 * bridge/jni/jni_jsobject.h:
3987 * bridge/jni/jni_jsobject.mm:
3988 (JavaJSObject::call):
3989 (JavaJSObject::convertJObjectToValue):
3990 * bridge/jni/jni_objc.mm:
3991 (JSC::Bindings::dispatchJNICall):
3992 * bridge/jni/jni_runtime.cpp:
3993 * bridge/jni/jni_runtime.h:
3994 * bridge/jni/jni_utility.cpp:
3995 * bridge/jni/jni_utility.h:
3996 * bridge/npruntime.cpp:
3997 (_NPN_GetStringIdentifier):
3998 * bridge/objc/WebScriptObject.h:
3999 * bridge/objc/objc_class.h:
4000 * bridge/objc/objc_class.mm:
4001 * bridge/objc/objc_instance.h:
4002 * bridge/objc/objc_instance.mm:
4003 * bridge/objc/objc_runtime.h:
4004 * bridge/objc/objc_runtime.mm:
4005 * bridge/objc/objc_utility.h:
4006 * bridge/objc/objc_utility.mm:
4007 * bridge/qt/qt_class.cpp:
4008 * bridge/qt/qt_class.h:
4009 * bridge/qt/qt_instance.cpp:
4010 * bridge/qt/qt_instance.h:
4011 * bridge/qt/qt_runtime.cpp:
4012 (JSC::Bindings::convertQVariantToValue):
4013 (JSC::Bindings::):
4014 * bridge/qt/qt_runtime.h:
4015 * bridge/runtime.cpp:
4016 * bridge/runtime.h:
4017 * bridge/runtime_array.cpp:
4018 * bridge/runtime_array.h:
4019 * bridge/runtime_method.cpp:
4020 * bridge/runtime_method.h:
4021 * bridge/runtime_object.cpp:
4022 * bridge/runtime_object.h:
4023 * bridge/runtime_root.cpp:
4024 (JSC::Bindings::RootObject::invalidate):
4025 (JSC::Bindings::RootObject::gcProtect):
4026 (JSC::Bindings::RootObject::gcUnprotect):
4027 * bridge/runtime_root.h:
4028 * bridge/testbindings.cpp:
4029 * bridge/testbindings.mm:
4030 * bridge/testqtbindings.cpp:
4031 * dom/Document.cpp:
4032 (WebCore::Document::~Document):
4033 * dom/NSResolver.h:
4034 * dom/Node.cpp:
4035 (WebCore::Node::setDocument):
4036 (WebCore::ResolveNamespaceFunctor::ResolveNamespaceFunctor):
4037 (WebCore::resolveNamespacesForSelector):
4038 (WebCore::Node::querySelector):
4039 (WebCore::Node::querySelectorAll):
4040 * dom/Node.h:
4041 * dom/NodeFilter.cpp:
4042 * dom/NodeFilter.h:
4043 * dom/NodeFilterCondition.cpp:
4044 * dom/NodeFilterCondition.h:
4045 * dom/NodeIterator.cpp:
4046 * dom/NodeIterator.h:
4047 * dom/Traversal.cpp:
4048 * dom/Traversal.h:
4049 * dom/TreeWalker.cpp:
4050 * dom/TreeWalker.h:
4051 * dom/make_names.pl:
4052 * history/CachedPage.cpp:
4053 * history/CachedPage.h:
4054 * html/HTMLPlugInElement.cpp:
4055 (WebCore::HTMLPlugInElement::getInstance):
4056 * html/HTMLPlugInElement.h:
4057 * loader/FrameLoader.cpp:
4058 * loader/FrameLoader.h:
4059 * loader/icon/IconDatabase.cpp:
4060 (WebCore::iconDatabase):
4061 * page/Console.cpp:
4062 * page/Console.h:
4063 * page/InspectorController.cpp:
4064 (WebCore::XMLHttpRequestResource::XMLHttpRequestResource):
4065 (WebCore::XMLHttpRequestResource::~XMLHttpRequestResource):
4066 (WebCore::InspectorResource::setXMLHttpRequestProperties):
4067 (WebCore::InspectorResource::sourceString):
4068 (WebCore::getResourceDocumentNode):
4069 (WebCore::search):
4070 (WebCore::InspectorController::focusNode):
4071 (WebCore::InspectorController::inspectedWindowScriptObjectCleared):
4072 (WebCore::InspectorController::addDatabaseScriptResource):
4073 (WebCore::InspectorController::resourceRetrievedByXMLHttpRequest):
4074 * page/InspectorController.h:
4075 (WebCore::InspectorController::profiles):
4076 * page/JavaScriptCallFrame.cpp:
4077 (WebCore::JavaScriptCallFrame::scopeChain):
4078 * page/JavaScriptCallFrame.h:
4079 (WebCore::JavaScriptCallFrame::create):
4080 (WebCore::JavaScriptCallFrame::update):
4081 * page/JavaScriptDebugListener.h:
4082 * page/JavaScriptDebugServer.cpp:
4083 (WebCore::dispatchDidParseSource):
4084 * page/JavaScriptDebugServer.h:
4085 * page/JavaScriptProfile.cpp:
4086 * page/JavaScriptProfile.h:
4087 * page/JavaScriptProfileNode.cpp:
4088 (WebCore::getTotalTime):
4089 (WebCore::getSelfTime):
4090 (WebCore::getTotalPercent):
4091 (WebCore::getSelfPercent):
4092 (WebCore::getNumberOfCalls):
4093 (WebCore::getChildren):
4094 (WebCore::getVisible):
4095 * page/JavaScriptProfileNode.h:
4096 * page/Page.cpp:
4097 (WebCore::Page::setDebuggerForAllPages):
4098 (WebCore::Page::setDebugger):
4099 * page/Page.h:
4100 (WebCore::Page::debugger):
4101 * page/mac/FrameMac.mm:
4102 * platform/KURL.h:
4103 (WebCore::KURL::operator JSC::UString):
4104 * platform/text/AtomicString.cpp:
4105 (WebCore::AtomicString::add):
4106 (WebCore::AtomicString::find):
4107 * platform/text/AtomicString.h:
4108 (WebCore::AtomicString::AtomicString):
4109 * platform/text/PlatformString.h:
4110 * platform/text/String.cpp:
4111 (WebCore::charactersToDouble):
4112 * platform/win/BString.cpp:
4113 * platform/win/BString.h:
4114 * plugins/MimeTypeArray.h:
4115 * plugins/Plugin.h:
4116 * plugins/PluginArray.h:
4117 * plugins/PluginView.cpp:
4118 (WebCore::PluginView::start):
4119 (WebCore::PluginView::performRequest):
4120 (WebCore::PluginView::bindingInstance):
4121 * plugins/PluginView.h:
4122 * plugins/gtk/PluginViewGtk.cpp:
4123 (WebCore::PluginView::paint):
4124 (WebCore::PluginView::handleKeyboardEvent):
4125 (WebCore::PluginView::handleMouseEvent):
4126 (WebCore::PluginView::setNPWindowRect):
4127 (WebCore::PluginView::stop):
4128 (WebCore::PluginView::init):
4129 * plugins/qt/PluginViewQt.cpp:
4130 (WebCore::PluginView::setNPWindowRect):
4131 (WebCore::PluginView::stop):
4132 (WebCore::PluginView::init):
4133 * plugins/win/PluginViewWin.cpp:
4134 (WebCore::PluginView::dispatchNPEvent):
4135 (WebCore::PluginView::handleKeyboardEvent):
4136 (WebCore::PluginView::handleMouseEvent):
4137 (WebCore::PluginView::setNPWindowRect):
4138 (WebCore::PluginView::stop):
4139 * storage/Database.cpp:
4140 (WebCore::Database::Database):
4141 * xml/XMLHttpRequest.cpp:
4142 (WebCore::XMLHttpRequest::responseText):
4143 (WebCore::XMLHttpRequest::loadRequestAsynchronously):
4144 (WebCore::XMLHttpRequest::clearResponse):
4145 (WebCore::XMLHttpRequest::dropProtection):
4146 (WebCore::XMLHttpRequest::didFinishLoading):
4147 (WebCore::XMLHttpRequest::didReceiveData):
4148 * xml/XMLHttpRequest.h:
4149
abarth@webkit.orge17b6052008-09-08 00:03:30 +000041502008-09-07 Adam Barth <abarth@webkit.org>
4151
4152 Reviewed by Sam Weinig.
4153
4154 Adopt opener restriction on frame navigation.
4155 https://bugs.webkit.org/show_bug.cgi?id=20642
4156
4157 This restriction helps prevent an attacker from navigating top-level
4158 windows that were created by another web site.
4159
4160 Tests: http/tests/security/frameNavigation/not-opener.html
4161 http/tests/security/frameNavigation/opener.html
4162
4163 * loader/FrameLoader.cpp:
4164 (WebCore::canAccessAncestor):
4165 (WebCore::FrameLoader::shouldAllowNavigation):
4166
mitz@apple.com83469af2008-09-07 22:29:56 +000041672008-09-07 Dan Bernstein <mitz@apple.com>
4168
mitz@apple.com08ff58c2008-09-07 23:19:11 +00004169 Reviewed by Maciej Stachowiak.
4170
4171 - use the correct sign for vertical offsets of combining marks
4172
4173 * platform/graphics/win/UniscribeController.cpp:
4174 (WebCore::UniscribeController::shapeAndPlaceItem):
4175
41762008-09-07 Dan Bernstein <mitz@apple.com>
4177
mitz@apple.com83469af2008-09-07 22:29:56 +00004178 Reviewed by Dave Hyatt.
4179
mitz@apple.com78685b22008-09-07 22:30:29 +00004180 - add the combining mark offsets in two places where I forgot them
4181
4182 * platform/graphics/win/FontCGWin.cpp:
4183 (WebCore::Font::drawGlyphs):
4184
41852008-09-07 Dan Bernstein <mitz@apple.com>
4186
4187 Reviewed by Dave Hyatt.
4188
mitz@apple.com83469af2008-09-07 22:29:56 +00004189 - correct glyph advances in complex text using web fonts rendered with
4190 Core Graphics
4191
4192 * platform/graphics/win/FontCustomPlatformData.cpp:
4193 (WebCore::FontCustomPlatformData::fontPlatformData):
4194
timothy@apple.com968ebc92008-09-07 16:48:41 +000041952008-09-07 Keishi Hattori <casey.hattori@gmail.com>
4196
4197 Adds console.dirxml support to the Web Inspector.
4198
4199 https://bugs.webkit.org/show_bug.cgi?id=19156
4200
4201 Reviewed by Timothy Hatcher.
4202
4203 * WebCore.vcproj/WebCore.vcproj: Added ElementsTreeOutline.js.
4204 * bindings/js/JSConsoleCustom.cpp:
4205 (WebCore::JSConsole::dirxml):
4206 * page/Console.cpp:
4207 (WebCore::Console::dirxml): Adds a ConsoleMessage with NodeMessageLevel.
4208 * page/Console.h:
4209 (WebCore::): Added NodeMessageLevel.
4210 * page/Console.idl: Added console.dirxml.
4211 * page/inspector/Console.js: A NodeMessage creates a ElementsTreeOutline.
4212 * page/inspector/ElementsPanel.js: Modified to use ElementsTreeOutline. The ElementsTreeOutline
4213 in the ElementsPanel has includeRootDOMNode and selectEnabled set to true.
4214 * page/inspector/ElementsTreeOutline.js: Added.
4215 (WebInspector.ElementsTreeOutline): A subclass of TreeOutline for displaying a DOM node tree.
4216 (WebInspector.ElementsTreeElement): A subclass of TreeElement for ElementsTreeOutline.
4217 * page/inspector/WebKit.qrc: Added ElementsTreeOutline.js.
4218 * page/inspector/inspector.css:
4219 * page/inspector/inspector.html: Added ElementsTreeOutline.js.
4220 * page/inspector/inspector.js: Moved hover related methods to WebInspector.
4221 (WebInspector.altKeyDown):
4222 (WebInspector.forceHoverHighlight):
4223 (WebInspector.hoveredDOMNode):
4224 (WebInspector._updateHoverHighlightSoon):
4225 (WebInspector._updateHoverHighlight):
4226 (WebInspector.documentKeyDown): Updates WebInspector.altKeyDown
4227 (WebInspector.documentKeyUp): Updates WebInspector.altKeyDown
4228 * page/inspector/utilities.js: Added getDocumentForNode, parentNodeOrFrameElement,
4229 isAncestorIncludingParentFrames.
4230
mrowe@apple.com61ba5f52008-09-07 06:08:56 +000042312008-09-06 Mark Rowe <mrowe@apple.com>
4232
4233 Qt build fix.
4234
4235 * bridge/qt/qt_runtime.cpp:
4236 (KJS::Bindings::convertQVariantToValue):
4237
mrowe@apple.comf88a4632008-09-07 05:44:58 +00004238=== End merge of squirrelfish-extreme ===
4239
42402008-09-05 Oliver Hunt <oliver@apple.com>
4241
4242 Start bringing up SFX on windows.
4243
4244 Reviewed by Mark Rowe and Sam Weinig
4245
4246 Start doing the work to bring up SFX on windows. Initially
4247 just working on WREC, as it does not make any calls so reduces
4248 the amount of code that needs to be corrected.
4249
4250 Add forwarding headers
4251
4252 * ChangeLog:
4253 * ForwardingHeaders/masm/MacroAssembler.h: Added.
4254 * WebCore.vcproj/WebCore.vcproj:
4255
42562008-08-27 Mark Rowe <mrowe@apple.com>
4257
4258 Reviewed by Oliver Hunt.
4259
4260 Fix the build of the full WebKit stack.
4261
4262 Add forwarding headers.
4263
4264 * ForwardingHeaders/masm/IA32MacroAsm.h: Added.
4265 * ForwardingHeaders/wrec/WREC.h: Added.
4266
4267=== Start merge of squirrelfish-extreme ===
4268
antti@apple.com13c24932008-09-07 03:54:21 +000042692008-09-06 Antti Koivisto <antti@apple.com>
4270
4271 Reviewed by Dave Hyatt.
4272
4273 <rdar://problem/6187043>
4274 Don't parse full HTML user agent style sheet unless it is actually needed
4275 <rdar://problem/6131889>
4276 WebView is significantly more expensive to create recently
4277
4278 Parsing the html4.css takes significant amount of time and memory (~50kb) on application
4279 startup. Some clients may never use most of the rules.
4280
4281 With this patch we use simplified UA stylesheet until we hit something it can't handle.
4282 This avoids full stylesheet parsing on application startup (due to empty document construction)
4283 and also makes it possible for clients with very simple demands (divs and spans only) never to load
4284 the full style.
4285
4286 It also delays view source style parsing until it is used.
4287
4288 * css/CSSStyleSelector.cpp:
4289 (WebCore::elementCanUseSimpleDefaultStyle):
4290 (WebCore::CSSStyleSelector::CSSStyleSelector):
4291 (WebCore::loadFullDefaultStyle):
4292 (WebCore::loadSimpleDefaultStyle):
4293 (WebCore::loadViewSourceStyle):
4294 (WebCore::CSSStyleSelector::matchUARules):
4295 (WebCore::CSSStyleSelector::styleForElement):
4296
kevino@webkit.orgd15b50f2008-09-07 03:46:50 +000042972008-09-06 Kevin Ollivier <kevino@theolliviers.com>
4298
4299 wx build fix.
4300
4301 * WebCoreSources.bkl:
4302
antti@apple.come953f862008-09-06 23:27:09 +000043032008-09-06 Antti Koivisto <antti@apple.com>
4304
antti@apple.com00dfa532008-09-06 23:32:26 +00004305 Reverting r35953 which was causing problems on Windows which relies on
4306 WebCore timers in nested event loops. r36132 did alternative fix.
4307
4308 * page/Chrome.cpp:
4309 (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer):
4310 (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
4311
43122008-09-06 Antti Koivisto <antti@apple.com>
4313
antti@apple.come953f862008-09-06 23:27:09 +00004314 Reviewed by Dan Bernstein.
4315
4316 Fix <rdar://problem/6201644>
4317 https://bugs.webkit.org/show_bug.cgi?id=20493
4318 Crash after OK in dialog box and reloading page in secure mode
4319
4320 Limited loader only fix since the general timer fix is causing problems on Windows.
4321
4322 * loader/loader.cpp:
4323 (WebCore::Loader::servePendingRequests):
4324 (WebCore::Loader::Host::Host):
4325 (WebCore::Loader::Host::didFinishLoading):
4326 (WebCore::Loader::Host::didFail):
4327 (WebCore::Loader::Host::didReceiveData):
4328 * loader/loader.h:
4329 (WebCore::Loader::Host::processingResource):
4330
mitz@apple.com046bf642008-09-06 08:31:02 +000043312008-09-06 Dan Bernstein <mitz@apple.com>
4332
4333 Reviewed by Dave Hyatt.
4334
mitz@apple.comc0b050b2008-09-06 22:39:34 +00004335 The initial Core Text adoption prototype was made by Daniel Fenwick.
4336
4337 - <rdar://problem/5158514> Add a Core Text-based complex text code path
4338
4339 Currently the Core Text code path is not used in any configuration.
4340
4341 * WebCore.xcodeproj/project.pbxproj: Added files.
4342 * config.h: Defined WTF_USE_ATSUI and WTF_USE_CORE_TEXT.
4343 * platform/graphics/Font.cpp:
4344 (WebCore::WidthIterator::advance): Moved the spacingDisabled() test out
4345 of the loop.
4346 * platform/graphics/GlyphBuffer.h:
4347 (WebCore::GlyphBuffer::add): Added this version that takes an advance.
4348 * platform/graphics/SimpleFontData.h: Added ATSUI and CORE_TEXT #ifdefs.
4349 Added getCTFont() and getCFStringAttributes() and corresponding data
4350 members for Core Text.
4351 * platform/graphics/mac/CoreTextController.cpp: Added.
4352 (WebCore::roundCGFloat): Helper function.
4353 (WebCore::ceilCGFloat): Helper function.
4354 (WebCore::CoreTextController::CoreTextRun::CoreTextRun):
4355 (WebCore::CoreTextController::CoreTextController):
4356 (WebCore::CoreTextController::offsetForPosition):
4357 (WebCore::CoreTextController::collectCoreTextRuns): Added. Segments the
4358 run into subruns as necessary such that each subrun can be rendered with
4359 a single font. Also separates out soft hyphens and replaces them with
4360 real hyphens, because Core Text does not emit a glyph for soft hyphens.
4361 Then calls collectCoreTextRunsForCharacters() on each subrun.
4362 (WebCore::CoreTextController::advance):
4363 (WebCore::CoreTextController::collectCoreTextRunsForCharacters): Creates
4364 a CTLine from the given subrun and collects its CoreTextRuns.
4365 (WebCore::CoreTextController::adjustGlyphsAndAdvances): Applies the
4366 rounding hacks, letter- and word-spacing and glyph substitutions and
4367 stores the resulting adjusted glyphs and advances.
4368 * platform/graphics/mac/CoreTextController.h: Copied from WebCore/platform/graphics/win/UniscribeController.h.
4369 (WebCore::CoreTextController::totalWidth):
4370 (WebCore::CoreTextController::finalRoundingWidth):
4371 (WebCore::CoreTextController::CoreTextRun::ctRun):
4372 (WebCore::CoreTextController::CoreTextRun::glyphCount):
4373 (WebCore::CoreTextController::CoreTextRun::fontData):
4374 (WebCore::CoreTextController::CoreTextRun::characters):
4375 (WebCore::CoreTextController::CoreTextRun::stringLocation):
4376 (WebCore::CoreTextController::CoreTextRun::stringLength):
4377 (WebCore::CoreTextController::CoreTextRun::indexAt):
4378 * platform/graphics/mac/FontMac.mm: Moved the ATSUI-specific parts to
4379 FontMacATSUI.mm.
4380 * platform/graphics/mac/FontMacATSUI.mm: Copied from WebCore/platform/graphics/mac/FontMac.mm.
4381 (WebCore::disableLigatures): Changed to call
4382 FontPlatformData::allowsLigatures().
4383 (WebCore::overrideLayoutOperation): Changed to call
4384 FontPlatformData::roundsGlyphAdvances().
4385 * platform/graphics/mac/FontMacCoreText.cpp: Copied from WebCore/platform/graphics/win/FontWin.cpp.
4386 (WebCore::Font::selectionRectForComplexText): Changed to use
4387 totalWidth() instead of advancing to the end and using runWidthSoFar().
4388 (WebCore::Font::drawComplexText):
4389 (WebCore::Font::floatWidthForComplexText): Ditto.
4390 (WebCore::Font::offsetForPositionForComplexText):
4391 * platform/graphics/mac/FontPlatformData.h:
4392 * platform/graphics/mac/FontPlatformDataMac.mm:
4393 (WebCore::FontPlatformData::setFont):
4394 (WebCore::FontPlatformData::roundsGlyphAdvances): Added. Checks the
4395 AppKit rendering mode.
4396 (WebCore::FontPlatformData::allowsLigatures): Added. Implements the
4397 heuristic that allows ligatures in fonts that do not have a glyph for
4398 'a', based on the assumption that such fonts are only used in complex
4399 text.
4400 * platform/graphics/mac/SimpleFontDataMac.mm:
4401 (WebCore::SimpleFontData::platformInit):
4402 (WebCore::SimpleFontData::platformDestroy):
4403 (WebCore::SimpleFontData::getCTFont): Added.
4404 (WebCore::SimpleFontData::getCFStringAttributes): Added. Caches and
4405 returns an attributes dictionary.
4406 * platform/text/mac/ShapeArabic.c: Added ATSUI #ifdefs.
4407 * platform/text/mac/ShapeArabic.h: Ditto.
4408
44092008-09-06 Dan Bernstein <mitz@apple.com>
4410
4411 Reviewed by Dave Hyatt.
4412
mitz@apple.com046bf642008-09-06 08:31:02 +00004413 - make combining mark offsets work in CG text on Windows
4414
4415 * platform/graphics/win/FontCGWin.cpp:
4416 (WebCore::Font::drawGlyphs): The old code tried to translate the text
4417 matrix, but failed for two reasons: it did not actually change the
4418 matrix, and even if it did, CGContextSetTextPosition overwrites the
4419 translation values in the text matrix. Instead, just added the
4420 translation to the anchor point.
4421
alp@webkit.org369cdca2008-09-06 04:08:30 +000044222008-09-05 Gustavo Noronha Silva <gns@gnome.org>
4423
4424 Reviewed by Alp Toker.
4425
4426 https://bugs.webkit.org/show_bug.cgi?id=18346
4427 [GTK] Remove build warnings
4428
4429 Applied some casts, and removed an unused typedef to make the
4430 compiler happy, printing less warnings when building.
4431
4432 * page/gtk/AccessibilityObjectWrapperAtk.cpp:
4433 * platform/graphics/gtk/SimpleFontDataPango.cpp:
4434 (WebCore::SimpleFontData::containsCharacters):
4435 * platform/graphics/gtk/VideoSinkGStreamer.cpp:
4436 (webkit_video_sink_set_caps):
4437 * platform/network/soup/ResourceHandleSoup.cpp:
4438
eric@webkit.org3cb292c2008-09-05 22:17:56 +000044392008-09-05 Eric Seidel <eric@webkit.org>
4440
eric@webkit.org5ac37902008-09-06 00:21:58 +00004441 Reviewed by Adam Roben.
4442
4443 Build fix for WebKitWin and Chromium
4444
4445 * platform/FileSystem.h:
4446
44472008-09-05 Eric Seidel <eric@webkit.org>
4448
eric@webkit.org3cb292c2008-09-05 22:17:56 +00004449 Reviewed by Darin Adler.
4450
4451 Try to make Chromium compile with ToT:
4452 - Wrap a few places which depend on KJS:: in #if USE(JSC)
4453 - Include some windows forward declarations
4454
4455 * dom/Node.h:
4456 * page/Console.h:
4457 * page/animation/CompositeAnimation.h:
4458 * platform/FileSystem.h:
4459 * platform/graphics/Image.h:
4460 * platform/text/AtomicString.h:
4461 * platform/text/String.cpp:
4462 * rendering/style/RenderStyle.h:
4463
hyatt@apple.comff85d5e2008-09-05 21:52:08 +000044642008-09-05 Dave Hyatt <hyatt@apple.com>
4465
4466 Add support for runtime switchability of the Aqua look and the native look on Windows.
4467 Make RenderThemeWin compile by default even when USE(SAFARI_THEME) is set.
4468
4469 Reviewed by Adam Roben
4470
4471 * WebCore.vcproj/WebCore.vcproj:
4472 * page/Settings.cpp:
4473 (WebCore::Settings::setShouldPaintNativeControls):
4474 * page/Settings.h:
4475 (WebCore::Settings::shouldPaintNativeControls):
4476 * rendering/RenderThemeSafari.cpp:
4477 (WebCore::theme):
4478 * rendering/RenderThemeWin.cpp:
4479
antti@apple.combced97f2008-09-05 18:52:05 +000044802008-09-05 Antti Koivisto <antti@apple.com>
4481
4482 Qt build fix.
4483
4484 * svg/SVGFEImageElement.cpp:
4485 (WebCore::SVGFEImageElement::build):
4486
aroben@apple.comca0c3362008-09-05 15:33:28 +000044872008-09-05 Dirk Schulze <vbs85@gmx.de>
4488
4489 Gtk build fix
4490
4491 * GNUmakefile.am:
4492
antti@apple.com72e4a842008-09-05 09:28:11 +000044932008-09-05 Antti Koivisto <antti@apple.com>
4494
antti@apple.com49e46662008-09-05 10:36:59 +00004495 Another build fix.
4496
4497 * svg/SVGFEImageElement.cpp:
4498 (WebCore::SVGFEImageElement::notifyFinished):
4499
45002008-09-05 Antti Koivisto <antti@apple.com>
4501
antti@apple.comfeec2582008-09-05 10:03:39 +00004502 Build fixes.
4503
4504 * WebCore.xcodeproj/project.pbxproj:
4505 * svg/graphics/filters/SVGFEImage.cpp:
4506 (WebCore::FEImage::cachedImage):
4507
45082008-09-05 Antti Koivisto <antti@apple.com>
4509
darin@apple.com07c80c62008-09-05 18:15:43 +00004510 Reviewed by Darin Adler.
antti@apple.com72e4a842008-09-05 09:28:11 +00004511
4512 Most of the implementation for https://bugs.webkit.org/show_bug.cgi?id=17998
4513 When a resource is cached locally, WebKit should follow RFC 2616 "Specific end-to-end revalidation" instead of "Unspecified end-to-end revalidation"
4514
4515 Implement HTTP 1.1 "Specific end-to-end revalidation" for WebCore memory cache. This patch does
4516 not yet enable it for the biggest use case, reloading. However it is good for general browsing as
4517 well. Doing this in WebCore level as opposed to relying on disk cache has big benefit that
4518 we avoid re-decoding resources, especially images.
4519
4520 To be exact the enabled case is not actually the "Specific end-to-end revalidation" since it does not include
4521 CacheControl: max-age=0 header. That would be added in reload case.
4522
4523 The approach for revalidation is to kick the original resource out from the memory cache
4524 and create a new CachedResource that represents the revalidation request. In case
4525 we get 304 back for the request we put the original resource back to the cache, update
4526 its expiration date and switch the clients registered to revalidation resource to be
4527 clients of the original resource.
4528
4529 All heap allocated CachedImage pointers now use CachedResourceHandle<CachedImage> (and so on) instead.
4530 This allows updating the handles to point to the original resource when the revalidation succeeds. It
4531 also acts as refcounting smart pointer.
4532
4533 * WebCore.pro:
4534 * WebCore.vcproj/WebCore.vcproj:
4535 * WebCore.xcodeproj/project.pbxproj:
4536 * css/CSSFontFaceSource.h:
4537 * css/CSSImportRule.h:
4538 * dom/Clipboard.h:
4539 (WebCore::Clipboard::dragImage):
4540 * dom/ProcessingInstruction.h:
4541 * dom/ScriptElement.h:
4542 * dom/XMLTokenizer.cpp:
4543 (WebCore::XMLTokenizer::isWaitingForScripts):
4544 * dom/XMLTokenizer.h:
4545 * html/HTMLImageLoader.cpp:
4546 (WebCore::HTMLImageLoader::setImage):
4547 (WebCore::HTMLImageLoader::updateFromElement):
4548 (WebCore::HTMLImageLoader::notifyFinished):
4549 * html/HTMLImageLoader.h:
4550 (WebCore::HTMLImageLoader::image):
4551 * html/HTMLLinkElement.h:
4552 * html/HTMLTokenizer.cpp:
4553 (WebCore::HTMLTokenizer::reset):
4554 (WebCore::HTMLTokenizer::scriptHandler):
4555 (WebCore::HTMLTokenizer::notifyFinished):
4556 * html/HTMLTokenizer.h:
4557 * loader/Cache.cpp:
4558 (WebCore::Cache::revalidateResource):
4559 (WebCore::Cache::revalidationSucceeded):
4560 (WebCore::Cache::revalidationFailed):
4561 * loader/Cache.h:
4562 * loader/CachedResource.cpp:
4563 (WebCore::CachedResource::CachedResource):
4564 (WebCore::CachedResource::~CachedResource):
4565 (WebCore::CachedResource::isExpired):
4566 (WebCore::CachedResource::setResponse):
4567 (WebCore::CachedResource::deleteIfPossible):
4568 (WebCore::CachedResource::setResourceToRevalidate):
4569 (WebCore::CachedResource::clearResourceToRevalidate):
4570 (WebCore::CachedResource::switchClientsToRevalidatedResource):
4571 (WebCore::CachedResource::canUseCacheValidator):
4572 (WebCore::CachedResource::mustRevalidate):
4573 * loader/CachedResource.h:
4574 (WebCore::CachedResource::canDelete):
4575 (WebCore::CachedResource::registerHandle):
4576 (WebCore::CachedResource::unregisterHandle):
4577 (WebCore::CachedResource::isCacheValidator):
4578 (WebCore::CachedResource::resourceToRevalidate):
4579 (WebCore::CachedResource::setExpirationDate):
4580 * loader/CachedResourceHandle.cpp: Added.
4581 (WebCore::CachedResourceHandleBase::setResource):
4582 * loader/CachedResourceHandle.h: Added.
4583 (WebCore::CachedResourceHandleBase::~CachedResourceHandleBase):
4584 (WebCore::CachedResourceHandleBase::get):
4585 (WebCore::CachedResourceHandleBase::operator!):
4586 (WebCore::CachedResourceHandleBase::operator UnspecifiedBoolType):
4587 (WebCore::CachedResourceHandleBase::CachedResourceHandleBase):
4588 (WebCore::CachedResourceHandleBase::operator=):
4589 (WebCore::CachedResourceHandle::CachedResourceHandle):
4590 (WebCore::CachedResourceHandle::get):
4591 (WebCore::CachedResourceHandle::operator->):
4592 (WebCore::CachedResourceHandle::operator=):
4593 (WebCore::CachedResourceHandle::operator==):
4594 (WebCore::CachedResourceHandle::operator!=):
4595 (WebCore::operator==):
4596 (WebCore::operator!=):
4597 * loader/DocLoader.cpp:
4598 (WebCore::DocLoader::checkForReload):
4599 * loader/UserStyleSheetLoader.h:
4600 * loader/loader.cpp:
4601 (WebCore::Loader::Host::servePendingRequests):
4602 (WebCore::Loader::Host::didFinishLoading):
4603 (WebCore::Loader::Host::didFail):
4604 (WebCore::Loader::Host::didReceiveResponse):
4605 (WebCore::Loader::Host::didReceiveData):
4606 * page/EventHandler.cpp:
4607 (WebCore::EventHandler::selectCursor):
4608 * rendering/RenderImage.cpp:
4609 (WebCore::RenderImage::setCachedImage):
4610 (WebCore::RenderImage::imageChanged):
4611 * rendering/RenderImage.h:
4612 (WebCore::RenderImage::cachedImage):
4613 (WebCore::RenderImage::imagePtr):
4614 * rendering/style/RenderStyle.h:
4615 * rendering/style/StyleCachedImage.h:
4616 (WebCore::StyleCachedImage::data):
4617 (WebCore::StyleCachedImage::cachedImage):
4618 * svg/SVGFEImageElement.h:
4619 * svg/graphics/filters/SVGFEImage.h:
4620 * xml/XSLImportRule.h:
4621
beidson@apple.comab60d982008-09-05 04:58:12 +000046222008-09-04 Brady Eidson <beidson@apple.com>
4623
4624 Reviewed by Mitz
4625
4626 <rdar://problem/6180236> - Safari times out connections after 1 or 2 minutes
4627
4628 A 60-second default timeout was added in http://trac.webkit.org/changeset/17144 in an attempt
4629 to model default NSURLRequest behavior in a cross-platform manner.
4630
4631 Sadly by always enforcing this 60 second timeout, WebCore was stomping over the wishes of any Webkit
4632 client that wished to enforce a much larger default timeout using NSURLRequest API.
4633
4634 Additionally, upon reviewing what all other browsers do, it seems apparent that "no limit" is desirable
4635 behavior on the web and this restores previous Safari/WebKit behavior.
4636
4637 It would be easy to write a layout test for this, but to be effective it would have
4638 to run for at least 61 seconds, which seems insane until will can parallelize run-webkit-tests
4639
4640 * manual-tests/timeout-test.html: Added.
4641 * manual-tests/timeout-test.php: Added.
4642
4643 * platform/network/ResourceRequestBase.h:
4644 (WebCore::ResourceRequestBase::ResourceRequestBase): Rename the constant to "unspecifiedTimeoutInterval"
4645 and make it UINT_MAX so platforms that do set it have an effective "no timeout." (Windows, for example)
4646 * platform/network/mac/ResourceRequestMac.mm:
4647 (WebCore::ResourceRequest::doUpdatePlatformRequest): If the timeout for this request is
4648 "unspecifiedTimeoutInterval", then don't bother setting the timeout using NSURLRequest API, allowing
4649 WebKit applications to enforce their own default timeout.
4650
mitz@apple.com20268542008-09-05 04:26:32 +000046512008-09-04 Dan Bernstein <mitz@apple.com>
4652
4653 Reviewed by Beth Dakin.
4654
4655 - fix <rdar://problem/6198514> Changing a button's opacity triggers relayout
4656
4657 Test: fast/repaint/button-spurious-layout-hint.html
4658
4659 * rendering/RenderButton.cpp:
4660 (WebCore::RenderButton::setStyle): Reset the inner block's style box
4661 flex to 0 to avoid getting a spurious layout hint.
4662
kevino@webkit.org3e8c4072008-09-04 23:53:04 +000046632008-09-04 Kevin Ollivier <kevino@theolliviers.com>
4664
4665 wx build fixes.
4666
4667 * WebCoreSources.bkl:
4668 * bindings/js/ScriptControllerWx.cpp: Added.
4669 (WebCore::ScriptController::createScriptInstanceForWidget):
4670 * page/wx/AccessibilityObjectWx.cpp: Added.
4671 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
4672 * platform/graphics/wx/GraphicsContextWx.cpp:
4673 * webcore-base.bkl:
4674 * webcore-wx.bkl:
4675
mitz@apple.com95a87502008-09-04 23:27:19 +000046762008-09-04 Dan Bernstein <mitz@apple.com>
4677
4678 Reviewed by Mark Rowe.
4679
4680 - roll out r36050 because it made svg/custom/invalid-fill-hex.svg fail,
4681 and fixing https://bugs.webkit.org/show_bug.cgi?id=15360 appears to
4682 require a different approach
4683
4684 * css/CSSGrammar.y:
4685
mrowe@apple.com12b7c2d2008-09-04 21:00:02 +000046862008-09-04 Mark Rowe <mrowe@apple.com>
4687
mrowe@apple.com5bc4ea82008-09-04 21:44:28 +00004688 Reviewed by Eric Seidel.
4689
4690 Fix https://bugs.webkit.org/show_bug.cgi?id=20639.
4691 Bug 20639: ENABLE_DASHBOARD_SUPPORT does not need to be a FEATURE_DEFINE
4692
4693 * Configurations/WebCore.xcconfig: Remove ENABLE_DASHBOARD_SUPPORT from FEATURE_DEFINES.
4694 * DerivedSources.make: Revert to checking for ENABLE_DASHBOARD_SUPPORT rather than looking
4695 for ENABLE_DASHBOARD_SUPPORT in FEATURE_DEFINES.
4696
46972008-09-04 Mark Rowe <mrowe@apple.com>
4698
mrowe@apple.com12b7c2d2008-09-04 21:00:02 +00004699 Mac build fix.
4700
4701 * config.h: Only check the value of HAVE_CONFIG_H if it is defined.
4702
eric@webkit.org0716a542008-09-04 20:44:12 +000047032008-09-04 Eric Seidel <eric@webkit.org>
4704
4705 Build fix only, no review.
4706
4707 * dom/XMLTokenizer.cpp: Fix the Chromium merge build by adding a missing header (the Mac files must include it somewhere).
4708
jmalonzo@webkit.org6afc5d42008-09-04 20:26:16 +000047092008-09-04 Marco Barisione <marco.barisione@collabora.co.uk>
4710
4711 Reviewed by Eric Seidel.
4712
4713 http://bugs.webkit.org/show_bug.cgi?id=20380
4714 [GTK][AUTOTOOLS] Include autotoolsconfig.h from config.h
4715
4716 * config.h: Include the configuration header generated by autotools if
4717 available.
4718
mitz@apple.com9d7e4262008-09-04 18:15:25 +000047192008-09-04 Dan Bernstein <mitz@apple.com>
4720
4721 Rubber-stamped by Dave Hyatt.
4722
4723 - rename CachedResource::allReferencesRemoved() to allClientsRemoved()
4724
4725 * loader/CachedFont.cpp:
4726 (WebCore::CachedFont::allClientsRemoved):
4727 * loader/CachedFont.h:
4728 * loader/CachedImage.cpp:
4729 (WebCore::CachedImage::allClientsRemoved):
4730 * loader/CachedImage.h:
4731 * loader/CachedResource.cpp:
4732 (WebCore::CachedResource::removeClient):
4733 * loader/CachedResource.h:
4734 (WebCore::CachedResource::allClientsRemoved):
4735
aroben@apple.com0da404d2008-09-04 16:09:33 +000047362008-09-04 Adam Roben <aroben@apple.com>
4737
aroben@apple.comdd3861a2008-09-04 16:09:53 +00004738 Windows build fix after r36071
4739
4740 We were getting these errors:
4741
4742 error C2356: initialization segment must not change during translation
4743 unit
4744
4745 This was happening because multiple files #included by
4746 DerivedSources.cpp were themselves #including StaticConstructors.h. I
4747 fixed the error by adding header guards to StaticConstructors.h so its
4748 contents will only be included once.
4749
4750 But it's also not a good idea for StaticConstructors.h to end up in
4751 DerivedSources.cpp, since it ends up "polluting" all the source files
4752 we have in there. So I removed all the files that include
4753 StaticConstructors.h and added some preprocessor directives to
4754 DerivedSources.cpp to catch this error in the future.
4755
4756 * DerivedSources.cpp: Removed the *Names.cpp files, which include
4757 StaticConstructors.h, and added some preprocessor directives to make
4758 sure we don't end up accidentally including StaticConstructors.h in
4759 the future.
4760 * WebCore.vcproj/WebCore.vcproj: Added the *Names.cpp files.
4761 * platform/StaticConstructors.h: Added header guards.
4762
47632008-09-04 Adam Roben <aroben@apple.com>
4764
aroben@apple.com0da404d2008-09-04 16:09:33 +00004765 Windows build fix
4766
4767 * platform/graphics/win/FontPlatformData.h: Added a missing #include
4768 of PassRefPtr.h, and corrected the capitalization of RefCounted.h.
4769 * platform/text/PlatformString.h: Added a missing #include of
4770 PassRefPtr.h.
4771
vestbo@webkit.orgc0aeddf2008-09-04 11:44:17 +000047722008-09-04 Tor Arne Vestbø <tavestbo@trolltech.com>
4773
4774 Reviewed by Simon.
4775
vestbo@webkit.orgb82da912008-09-04 14:24:58 +00004776 Fix the QtWebKit build to match changes in r36016
4777
4778 * WebCore.pro:
4779 * bridge/qt/qt_instance.cpp:
4780 (KJS::Bindings::QtInstance::getRuntimeObject):
4781 * bridge/qt/qt_runtime.cpp:
4782 (KJS::Bindings::convertQVariantToValue):
4783 (KJS::Bindings::QtConnectionObject::execute):
4784
47852008-09-04 Tor Arne Vestbø <tavestbo@trolltech.com>
4786
4787 Reviewed by Simon.
4788
vestbo@webkit.orgc0aeddf2008-09-04 11:44:17 +00004789 Re-enable support for user stylesheets in QtWebKit
4790
4791 QtWebKit now follows the FRAME_LOADS_USER_STYLESHEET
4792 code path, which allows us to keep API support for
4793 loading user style sheets from remote URLs.
4794
4795 As part of the change UserStyleSheetLoader.cpp/h was
4796 moved from WebCore/loader/mac to WebCore/loader.
4797
4798 * WebCore.pro:
4799 * WebCore.xcodeproj/project.pbxproj:
4800 * dom/Document.h:
4801 * loader/UserStyleSheetLoader.cpp: Renamed from WebCore/loader/mac/UserStyleSheetLoader.cpp.
4802 (UserStyleSheetLoader::UserStyleSheetLoader):
4803 (UserStyleSheetLoader::~UserStyleSheetLoader):
4804 * loader/UserStyleSheetLoader.h: Renamed from WebCore/loader/mac/UserStyleSheetLoader.h.
4805 * page/qt/FrameQt.cpp:
4806 (WebCore::Frame::setUserStyleSheetLocation):
4807 (WebCore::Frame::setUserStyleSheet):
4808
alp@webkit.org539ff852008-09-04 09:14:42 +000048092008-09-04 Alp Toker <alp@nuanti.com>
4810
4811 Reviewed by Eric.
4812
4813 Remove left-over QT and CAIRO platform checks.
4814
4815 * html/CanvasRenderingContext2D.cpp:
4816
eric@webkit.orgbc0aab82008-09-04 08:39:51 +000048172008-09-04 Eric Seidel <eric@webkit.org>
4818
4819 Reviewed by Mark Rowe.
4820
mitz@apple.com9388d252008-09-04 08:58:58 +00004821 Fix leak of TextMetrics due to over-ref as see on buildbot.
eric@webkit.orgbc0aab82008-09-04 08:39:51 +00004822
4823 * html/TextMetrics.h: use adoptRef since RefCounted starts @ refcount 1 instead of 0 now.
4824
mitz@apple.com89557c52008-09-04 07:26:53 +000048252008-09-04 Dan Bernstein <mitz@apple.com>
4826
4827 Reviewed by Dave Hyatt.
4828
4829 - fix https://bugs.webkit.org/show_bug.cgi?id=19717
4830 <rdar://problem/6026832> REGRESSION (r31876): menu items render horizontally at the Economist
4831
4832 * rendering/RenderBlock.cpp:
4833 (WebCore::RenderBlock::layoutOnlyPositionedObjects): In the
4834 positioned movement only case, call
4835 tryLayoutDoingPositionedMovementOnly() and fall back on doing a full
4836 layout if that fails.
4837 (WebCore::RenderBlock::layoutPositionedObjects): Ditto.
4838 * rendering/RenderBox.h:
4839 (WebCore::RenderBox::tryLayoutDoingPositionedMovementOnly): Renamed
4840 layoutDoingPositionedMovementOnly to this, and made this function
4841 check if the width changed. If it did, return, leaving the object
4842 dirty. The caller can then call layout(). The width can change even
4843 in the "positioned movement only" case if the object is shrink-to-fit
4844 and the available width constraint is met. (This was the case in the
4845 bug).
4846 * rendering/RenderObject.h:
4847 (WebCore::RenderObject::tryLayoutDoingPositionedMovementOnly):
4848 Renamed layoutDoingPositionedMovementOnly() to this.
4849
eric@webkit.org8883b4a2008-09-04 06:31:37 +000048502008-09-03 Eric Seidel <eric@webkit.org>
4851
4852 No review, build fix only.
4853
4854 Attempt to fix the Qt build.
4855
4856 * WebCore.pro: add page/animation to include path
4857
mrowe@apple.comaa4bb8d2008-09-04 03:20:30 +000048582008-09-03 Mark Rowe <mrowe@apple.com>
4859
4860 Mac build fix. Correctly detect whether dashboard support is enabled.
4861
4862 * DerivedSources.make:
4863
eric@webkit.org3eefe672008-09-04 01:32:26 +000048642008-09-03 Eric Seidel <eric@webkit.org>
4865
4866 Reviewed by Sam.
4867
eric@webkit.org5e069092008-09-04 01:32:51 +00004868 Clean up Platform.h and add PLATFORM(CHROMIUM), PLATFORM(SKIA) and USE(V8_BINDINGS)
4869
4870 * Configurations/WebCore.xcconfig: add missing ENABLE_*
4871 * config.h: add rules for V8_BINDINGS
4872
48732008-09-03 Eric Seidel <eric@webkit.org>
4874
4875 Reviewed by Sam.
4876
eric@webkit.org3eefe672008-09-04 01:32:26 +00004877 https://bugs.webkit.org/show_bug.cgi?id=20620
4878
4879 Add #if USE(JSC) around KJS dependencies
4880 Remove !USE(JAVASCRIPTCORE_BINDINGS) support for 3 reasons:
4881 1. Most platforms have it on anyway
4882 2. V8 is going to want to share some of that code
4883 3. Those platforms which want it off, should have a separate file instead of an #ifdef in our .cpp
4884
4885 * bindings/js/JSPluginElementFunctions.cpp: remove !USE(JAVASCRIPTCORE_BINDINGS) support
4886 * config.h: change JAVASCRIPTCORE_BINDINGS to JSC and add USE(V8)
4887 * html/HTMLAppletElement.cpp: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
4888 * html/HTMLAppletElement.h: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
4889 * html/HTMLEmbedElement.cpp: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
4890 * html/HTMLEmbedElement.h: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
4891 * html/HTMLObjectElement.cpp: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
4892 * html/HTMLObjectElement.h: remove USE(JAVASCRIPTCORE_BINDINGS) wrappers
4893 * html/HTMLPlugInElement.cpp: replace USE(JAVASCRIPTCORE_BINDINGS) with USE(JSC) where needed
4894 * html/HTMLPlugInElement.h: replace USE(JAVASCRIPTCORE_BINDINGS) with USE(JSC) where needed
4895 * platform/text/AtomicString.cpp: add USE(JSC)
4896 * platform/text/AtomicString.h: add USE(JSC)
4897 * platform/text/PlatformString.h: add USE(JSC)
4898 * platform/text/String.cpp: add USE(JSC)
4899 * platform/text/StringImpl.cpp: add USE(JSC)
4900 * platform/text/StringImpl.h: add USE(JSC)
4901
mrowe@apple.comfbe724c2008-09-03 23:46:54 +000049022008-09-03 Dean McNamee <deanm@chromium.org>
4903
4904 Reviewed by Darin Adler.
4905
4906 Fix https://bugs.webkit.org/show_bug.cgi?id=20511
4907 Bug 20511: Remove static initializers on Windows
4908
4909 Avoid static initializers on Windows by forcing Visual C++ to put
4910 all static initializers in a code segment that is never executed.
4911
4912 * config.h:
4913 * css/MediaFeatureNames.cpp:
4914 * dom/EventNames.cpp:
4915 * dom/QualifiedName.cpp:
4916 * dom/make_names.pl:
4917 * platform/StaticConstructors.h:
4918 * platform/text/AtomicString.cpp:
4919
mrowe@apple.com3aa63182008-09-03 23:40:49 +000049202008-09-03 Dirk Schulze <vbs85@gmx.de>
4921
4922 Reviewed by Dave Hyatt.
4923
4924 Make FontCairo draw TextStroke and TextFill separately.
4925
4926 [CAIRO] draw TextFill and TextStroke separately.
4927 [https://bugs.webkit.org/show_bug.cgi?id=20631]
4928
4929 * platform/graphics/cairo/FontCairo.cpp:
4930 (WebCore::Font::drawGlyphs):
4931
eric@webkit.org4ac94e62008-09-18 23:07:55 +000049322008-09-03 Peter Kasting <pkasting@google.com>
mrowe@apple.comdcd72b72008-09-03 23:34:40 +00004933
4934 Reviewed by Dave Hyatt.
4935
4936 https://bugs.webkit.org/show_bug.cgi?id=19663
4937 Account for paint and timer lag when animating images. Also pretend
4938 that images whose animations were paused (by becoming invisible)
4939 continued to animate, by "catching up" to the correct frame when they're
4940 shown again.
4941
4942 * platform/graphics/BitmapImage.cpp:
4943 (WebCore::BitmapImage::BitmapImage):
4944 (WebCore::BitmapImage::startAnimation):
4945 (WebCore::BitmapImage::advanceAnimation):
4946 (WebCore::BitmapImage::internalAdvanceAnimation):
4947 (WebCore::BitmapImage::notifyObserverAndTrimDecodedData):
4948 * platform/graphics/BitmapImage.h:
4949 * platform/graphics/cairo/ImageCairo.cpp:
4950 (WebCore::BitmapImage::draw):
4951 * platform/graphics/cg/ImageCG.cpp:
4952 (WebCore::BitmapImage::draw):
4953 * platform/graphics/qt/ImageQt.cpp:
4954 (WebCore::BitmapImage::draw):
4955 * platform/graphics/wx/ImageWx.cpp:
4956 (WebCore::BitmapImage::draw):
4957
kmccullough@apple.comb0f4c622008-09-03 21:53:17 +000049582008-09-03 Kevin McCullough <kmccullough@apple.com>
4959
4960 Reviewed by Tim.
4961
4962 Remove the rest of the "zombie" code from the profiler.
4963 - There is no longer a need for the ProfilerClient callback mechanism.
4964
4965 * page/Console.cpp:
4966 (WebCore::Console::Console):
4967 (WebCore::Console::profile):
4968 (WebCore::Console::profileEnd): Move the variables from the header to
4969 here since we don't have to wait for a callback to use them.
4970 * page/Console.h:
4971 * page/InspectorController.cpp:
4972 (WebCore::InspectorController::startUserInitiatedProfiling):
4973 (WebCore::InspectorController::stopUserInitiatedProfiling):
4974 * page/InspectorController.h:
4975
adachan@apple.com38c66182008-09-03 21:43:44 +000049762008-09-03 Ada Chan <adachan@apple.com>
4977
4978 Windows build fix.
4979
4980 * WebCore.vcproj/WebCore.vcproj: Added JSWebKitCSSKeyframeRule.cpp and JSWebKitCSSKeyframesRule.cpp to the project.
4981
dino@apple.com5c917622008-09-03 21:15:53 +000049822008-09-01 Dean Jackson <dino@apple.com>
4983
4984 Reviewed by Dave Hyatt.
4985
4986 https://bugs.webkit.org/show_bug.cgi?id=20594
4987 Add DOM interfaces for WebKitCSSKeyframeRule
4988 and WebKitCSSKeyframesRule.
4989
4990 TEST: LayoutTests/css3/keyframes-rule.html
4991
4992 * css/WebKitCSSKeyframeRule.idl: Added
4993 * css/WebKitCSSKeyframesRule.idl: Added
4994
4995 * bindings/js/JSCSSRuleCustom.cpp:
4996 (WebCore::toJS):
4997 Add return of new JS Keyframe rules
4998 * bindings/objc/DOMInternal.h:
4999 Include new internal header
5000
5001 * DerivedSources.make:
5002 * GNUmakefile.am:
5003 * WebCore.pro:
5004 * WebCore.vcproj/WebCore.vcproj:
5005 * WebCore.xcodeproj/project.pbxproj:
5006 * WebCoreSources.bkl:
5007 Build configs for new files
5008
aroben@apple.com1f51bfa2008-09-03 20:30:59 +000050092008-09-03 Adam Roben <aroben@apple.com>
5010
5011 Windows build fix
5012
5013 * DerivedSources.cpp: Add JSTextMetrics.cpp to fix the build.
5014 * WebCore.vcproj/WebCore.vcproj: Add JSTextMetrics.h for
5015 convenience/consistency.
5016
adele@apple.com27713582008-09-03 20:13:41 +000050172008-09-03 Adele Peterson <adele@apple.com>
5018
5019 Build fix.
5020
5021 * WebCore.vcproj/WebCore.vcproj:
5022
hyatt@apple.com4b38ed82008-09-03 18:32:05 +000050232008-09-03 David Hyatt <hyatt@apple.com>
5024
5025 Fix for bug 18203, right floats should be allowed to overflow past the left border edge.
5026
5027 Reviewed by Darin (ages ago)
5028
5029 Added fast/block/float/clamped-right-float.html
5030
5031 * rendering/RenderBlock.cpp:
5032 (WebCore::RenderBlock::positionNewFloats):
5033
hyatt@apple.comafe62052008-09-03 18:13:39 +000050342008-09-02 David Hyatt <hyatt@apple.com>
5035
5036 Add support for canvas text drawing APIs.
5037
5038 Reviewed by olliej
5039
5040 Tests added as fast/canvas/canvas-text-*.html
5041
5042 * DerivedSources.make:
5043 * WebCore.xcodeproj/project.pbxproj:
5044 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
5045 (WebCore::JSCanvasRenderingContext2D::fillText):
5046 (WebCore::JSCanvasRenderingContext2D::strokeText):
5047 * css/CSSStyleSelector.cpp:
5048 (WebCore::CSSStyleSelector::initForStyleResolve):
5049 (WebCore::CSSStyleSelector::applyPropertyToStyle):
5050 * css/CSSStyleSelector.h:
5051 * html/CanvasRenderingContext2D.cpp:
5052 (WebCore::CanvasRenderingContext2D::State::State):
5053 (WebCore::CanvasRenderingContext2D::font):
5054 (WebCore::CanvasRenderingContext2D::setFont):
5055 (WebCore::CanvasRenderingContext2D::textAlign):
5056 (WebCore::CanvasRenderingContext2D::setTextAlign):
5057 (WebCore::CanvasRenderingContext2D::textBaseline):
5058 (WebCore::CanvasRenderingContext2D::setTextBaseline):
5059 (WebCore::CanvasRenderingContext2D::fillText):
5060 (WebCore::CanvasRenderingContext2D::strokeText):
5061 (WebCore::CanvasRenderingContext2D::measureText):
5062 (WebCore::CanvasRenderingContext2D::drawTextInternal):
5063 (WebCore::CanvasRenderingContext2D::accessFont):
5064 * html/CanvasRenderingContext2D.h:
5065 * html/CanvasRenderingContext2D.idl:
5066 * html/TextMetrics.h: Added.
5067 (WebCore::TextMetrics::create):
5068 (WebCore::TextMetrics::width):
5069 (WebCore::TextMetrics::setWidth):
5070 (WebCore::TextMetrics::TextMetrics):
5071 * html/TextMetrics.idl: Added.
5072 * platform/graphics/Font.cpp:
5073 (WebCore::Font::lineGap):
5074 * platform/graphics/Font.h:
5075 * platform/graphics/GraphicsContext.cpp:
5076 (WebCore::GraphicsContext::drawBidiText):
5077 * platform/graphics/GraphicsContext.h:
5078 * platform/graphics/GraphicsTypes.cpp:
5079 (WebCore::textAlignName):
5080 (WebCore::parseTextAlign):
5081 (WebCore::textBaselineName):
5082 (WebCore::parseTextBaseline):
5083 * platform/graphics/GraphicsTypes.h:
5084 (WebCore::):
5085
sullivan@apple.combc066af2008-09-03 17:37:24 +000050862008-09-03 John Sullivan <sullivan@apple.com>
5087
5088 Fixed <rdar://problem/6193022> <rdar://problem/6193022> Crash occurs at WebCore::AnimationBase::propertiesEqual () after certain steps
5089
5090 Fixed by Darin, reviewed by me
5091
5092 * page/animation/AnimationBase.cpp:
5093 (WebCore::AnimationBase::propertiesEqual):
5094 added ensurePropertyMap() to this static function
5095 (WebCore::AnimationBase::getPropertyAtIndex):
5096 ditto
5097 (WebCore::AnimationBase::getNumProperties):
5098 ditto
5099
kmccullough@apple.com70168ee2008-09-03 17:35:42 +000051002008-09-03 Kevin McCullough <kmccullough@apple.com>
5101
5102 Reviewed by Darin and Tim.
5103
5104 Remove most of the "zombie" mode from the profiler. Next we will need
5105 to remove the client callback mechanism in profiles.
5106 - These changes are a result of changes to JSCore.
5107
5108 * manual-tests/inspector/profiler-test-nested-start-and-stop-profiler.html:
5109 * page/Console.cpp:
5110 (WebCore::retrieveLastCaller):
5111 (WebCore::Console::profileEnd):
5112 * page/InspectorController.cpp:
5113 (WebCore::InspectorController::stopUserInitiatedProfiling):
5114
adele@apple.com643616b2008-09-03 16:57:58 +000051152008-09-03 Adele Peterson <adele@apple.com>
5116
5117 Reviewed by Darin Adler.
5118
5119 Test: fast/forms/search-display-none-cancel-button.html
5120
5121 Allow display:none to work on a search field's cancel button. Prepare for adding more style-ability for the results button too.
5122
5123 * css/html4.css: Set display:inline-block for these buttons. Now they can be overridden by a web author.
5124
5125 * rendering/RenderTextControl.cpp:
5126 (WebCore::RenderTextControl::setStyle): Add nil checks for the button renderers.
5127 (WebCore::RenderTextControl::createResultsButtonStyle): Don't set the display explicitly. This is now done in html4.css.
5128 (WebCore::RenderTextControl::createCancelButtonStyle): ditto.
5129 (WebCore::RenderTextControl::createSubtreeIfNeeded):
5130 Reorganize this code so our complicated way of adding shadow nodes is abstracted out into the TextControlInnerElement class.
5131 (WebCore::RenderTextControl::updateFromElement): Added nil checks for the button renderers.
5132 (WebCore::RenderTextControl::subtreeHasChanged): ditto.
5133 (WebCore::RenderTextControl::calcHeight): ditto.
5134 (WebCore::RenderTextControl::nodeAtPoint): ditto.
5135 (WebCore::RenderTextControl::layout): ditto.
5136 (WebCore::RenderTextControl::calcPrefWidths): ditto.
5137 (WebCore::RenderTextControl::clientPaddingLeft): ditto.
5138 (WebCore::RenderTextControl::clientPaddingRight): ditto.
5139
5140 * rendering/TextControlInnerElements.cpp:
5141 (WebCore::RenderTextControlInnerBlock::RenderTextControlInnerBlock): Moved from RenderTextControl.cpp.
5142 (WebCore::RenderTextControlInnerBlock::nodeAtPoint): ditto.
5143 (WebCore::TextControlInnerElement::attachInnerElement): Added.
5144 This does all the separate steps of attaching a shadow node that used to be repeated in RenderTextControl::createSubtreeIfNeeded for each element.
5145 (WebCore::TextControlInnerTextElement::createRenderer): Added. Creates a RenderTextControlInnerBlock.
5146 * rendering/TextControlInnerElements.h:
5147
ap@webkit.orgacd84142008-09-03 08:08:19 +000051482008-08-28 Alexey Proskuryakov <ap@webkit.org>
5149
5150 Reviewed by Maciej.
5151
5152 Elminate SQLiteAuthorizer class.
5153
5154 * WebCore.xcodeproj/project.pbxproj:
5155 * WebCore.vcproj/WebCore.vcproj:
5156 * GNUmakefile.am
5157 Removed SQLiteAuthorizer.h.
5158
5159 * platform/sql/SQLiteAuthorizer.cpp:
5160 * platform/sql/SQLiteAuthorizer.h: Removed.
5161 * platform/sql/SQLiteDatabase.cpp:
5162 (WebCore::SQLiteDatabase::authorizerFunction):
5163 (WebCore::SQLiteDatabase::setAuthorizer):
5164 * platform/sql/SQLiteDatabase.h:
5165 * storage/DatabaseAuthorizer.h:
5166 (WebCore::DatabaseAuthorizer::create):
5167 (WebCore::DatabaseAuthorizer::createView):
5168 (WebCore::DatabaseAuthorizer::createTempView):
5169 (WebCore::DatabaseAuthorizer::dropView):
5170 (WebCore::DatabaseAuthorizer::dropTempView):
5171 (WebCore::DatabaseAuthorizer::allowSelect):
5172 (WebCore::DatabaseAuthorizer::allowReindex):
5173 Merge SQLiteAuthorizer and DatabaseAuthorizer, as keeping them separate serves no purpose.
5174
mrowe@apple.com2ecd4862008-09-03 07:05:48 +000051752008-09-03 Dirk Schulze <vbs85@gmx.de>
5176
5177 Reviewed by Mark Rowe.
5178
5179 WebKitGtk build fix.
5180
5181 * GNUmakefile.am:
5182 * page/animation/AnimationController.h:
5183
mrowe@apple.come344ad02008-09-03 06:59:03 +000051842008-09-02 Robert Blaut <webkit@blaut.biz>
5185
5186 Reviewed by Geoff Garen.
5187
5188 Fix for <https://bugs.webkit.org/show_bug.cgi?id=16913>
5189 Misplaced elements should not close DL lists.
5190
5191 Test: fast/invalid/test-case-tr-th-td-should-not-close-dl-list.html
5192
5193 * html/HTMLParser.cpp:
5194 (WebCore::HTMLParser::handleError):
5195
mrowe@apple.com7a909462008-09-03 06:51:31 +000051962008-09-02 Glenn Wilson <wilsong@gmail.com>
5197
5198 Reviewed by Darin Adler.
5199
5200 Fix for <https://bugs.webkit.org/show_bug.cgi?id=15360>
5201 Bug 15360: color:#{predefined colorName} is treated as colorName in Safari
5202
5203 We would inappropriately interpret and apply an invalid CSS "color" property
5204 when the value is a predefined color preceded by a '#' symbol. For example,
5205 style="color:#gray;" would apply the color gray when it should not.
5206
5207 In the bison template, "hexcolor" was defined as both "HEX maybe_space" OR "IDENT maybe_space".
5208 This caused identifiers not fitting the appropriate hex format but preceded by a '#' to be
5209 interpreted as a valid color (CSSPrimitiveValue::CSS_PARSER_HEXCOLOR), when it was really just
5210 an ignorable token.
5211
5212 To correct this, "IDENT maybe_space" was removed from "hexcolor" and added under "term" as
5213 '#' IDENT maybe_space, which is then processed as a CSSPrimitiveValue::CSS_STRING instead of
5214 CSSPrimitiveValue::CSS_PARSER_HEXCOLOR.
5215
5216 Test: css1/color_and_background/invalid_color.html
5217
5218 * css/CSSGrammar.y:
5219
mrowe@apple.comda9a1442008-09-03 06:22:12 +000052202008-09-02 Mihnea Ovidenie <mihnea@adobe.com>
5221
5222 Reviewed by Darin Adler.
5223
5224 Fix for https://bugs.webkit.org/show_bug.cgi?id=19964
5225 Bug 19964: Divide by zero crash in RenderBox::calculateBackgroundSize with 0,0 bmp background image
5226
5227 Add a check to RenderBox::repaintLayerRectsForImage to make sure the current layer image can be rendered.
5228
5229 Test: css3/khtml-background-size-0x0-bmp.html
5230
5231 * rendering/RenderBox.cpp:
5232 (WebCore::RenderBox::repaintLayerRectsForImage):
5233
mrowe@apple.com6625ae52008-09-03 06:12:30 +000052342008-09-02 Glenn Wilson <wilsong@gmail.com>
5235
5236 Reviewed by Eric Seidel.
5237
5238 Fix https://bugs.webkit.org/show_bug.cgi?id=20397
5239 Bug 20397: Invalid webkit-border-bottom-left-radius property causes crash
5240
5241 The function checkForOrphanedUnits() would change the length of a list whose size was
5242 was already determined before the call to checkForOrphanedUnits was made. Later in
5243 the caller, the old size was being used for boundary management.
5244
5245 This has been fixed by moving the call to checkForOrphanedUnits() earlier in the
5246 calling function, before the size of the list is determined.
5247
5248 Test: fast/css/orphaned_units_crash.html
5249
5250 * css/CSSParser.cpp:
5251 (WebCore::CSSParser::parseValue): Moved call to checkForOrphanedUnits() earlier in the function.
5252
mrowe@apple.com170bd522008-09-03 05:49:51 +000052532008-09-02 Dirk Schulze <vbs85@gmx.de>
5254
5255 Reviewed by Darin Adler.
5256
mrowe@apple.comeb877a52008-09-03 06:01:15 +00005257 Fallback on invalid fill or stroke styles in Canvas was
5258 transparent black. Changed it to last valid style.
5259
5260 Canvas fillStyle() and strokeStyle() needs fallback
5261 https://bugs.webkit.org/show_bug.cgi?id=20474
5262
5263 Tests: fast/canvas/canvas-invalid-fillstyle.html
5264 fast/canvas/canvas-invalid-strokestyle.html
5265
5266 * html/CanvasStyle.cpp:
5267 (WebCore::CanvasStyle::applyStrokeColor):
5268 (WebCore::CanvasStyle::applyFillColor):
5269
52702008-09-02 Dirk Schulze <vbs85@gmx.de>
5271
5272 Reviewed by Darin Adler.
5273
mrowe@apple.com170bd522008-09-03 05:49:51 +00005274 Fix https://bugs.webkit.org/show_bug.cgi?id=20468
5275 Updated drawImage() in canvas to match the current specification.
5276
5277 Test: fast/canvas/drawImage-with-negative-source-destination.html
5278
5279 * html/CanvasRenderingContext2D.cpp:
5280 (WebCore::normalizeRect):
5281 (WebCore::CanvasRenderingContext2D::drawImage):
5282
mrowe@apple.com96916d12008-09-03 05:41:44 +000052832008-08-26 Mark Rowe <mrowe@apple.com>
5284
5285 Reviewed by Darin Adler.
5286
5287 <rdar://problem/5768210> Switch back to the system version of SQLite
5288
5289 Use the system version of SQLite when it is new enough to provide the functionality
5290 that WebCore requires.
5291
5292 * Configurations/Base.xcconfig:
5293 * Configurations/DebugRelease.xcconfig:
5294 * Configurations/WebCore.xcconfig:
5295
mitz@apple.comce268c12008-09-03 02:59:00 +000052962008-09-02 Dan Bernstein <mitz@apple.com>
5297
5298 - build fix
5299
5300 * page/animation/AnimationBase.h:
5301
dino@apple.com7e49a7a2008-09-03 01:32:14 +000053022008-09-02 Chris Marrin <cmarrin@apple.com>
5303
5304 Reviewed by Dave Hyatt.
5305
5306 AnimationController.cpp should be split into separate files
5307 https://bugs.webkit.org/show_bug.cgi?id=20604
5308
5309 Note: All makefiles, except WebCore.xcodeproj have been changed without testing, upon
5310 recommendation of Dave Hyatt.
5311
5312 * GNUmakefile.am:
5313 * WebCore.pro:
5314 * WebCore.vcproj/WebCore.vcproj:
5315 * WebCore.xcodeproj/project.pbxproj:
5316 * WebCoreSources.bkl:
5317 Build files.
5318
5319 * page/AnimationController.cpp: Removed.
5320 * page/AnimationController.h: Removed.
5321 * page/animation: Added.
5322 * page/animation/AnimationBase.cpp: Added.
5323 * page/animation/AnimationBase.h: Added.
5324 * page/animation/AnimationController.cpp: Copied from WebCore/page/AnimationController.cpp.
5325 * page/animation/AnimationController.h: Copied from WebCore/page/AnimationController.h.
5326 * page/animation/CompositeAnimation.cpp: Added.
5327 * page/animation/CompositeAnimation.h: Added.
5328 * page/animation/ImplicitAnimation.cpp: Added.
5329 * page/animation/ImplicitAnimation.h: Added.
5330 * page/animation/KeyframeAnimation.cpp: Added.
5331 * page/animation/KeyframeAnimation.h: Added.
5332
mitz@apple.comcb917a22008-09-03 00:57:37 +000053332008-09-02 Dan Bernstein <mitz@apple.com>
5334
5335 - release build fix
5336
5337 * platform/graphics/cg/GraphicsContextCG.cpp:
5338 (WebCore::calculateDrawingMode):
5339
timothy@apple.comf3aa7342008-09-02 21:30:26 +000053402008-09-02 Timothy Hatcher <timothy@apple.com>
5341
timothy@apple.comc33ff3c2008-09-02 21:35:02 +00005342 Make console functions log the correct resource URL and
5343 line number for where the call originated.
5344
5345 https://bugs.webkit.org/show_bug.cgi?id=17234
5346 <rdar://problem/5732837>
5347
5348 Reviewed by Kevin McCullough.
5349
5350 Test: manual-tests/inspector/console-call-line-numbers.html
5351
5352 * bindings/js/JSConsoleCustom.cpp:
5353 (WebCore::JSConsole::count): Call the impl.
5354 (WebCore::JSConsole::timeEnd): Ditto.
5355 * manual-tests/inspector/console-call-line-numbers.html: Added.
5356 * manual-tests/inspector/resources/script-console-calls.js: Added.
5357 * page/Console.cpp:
5358 (WebCore::retrieveLastCaller): Helper to get the URL and line.
5359 (WebCore::Console::error): Call retrieveLastCaller to get the URL and
5360 line number to pass to addMessageToConsole.
5361 (WebCore::Console::info): Ditto.
5362 (WebCore::Console::log): Ditto.
5363 (WebCore::Console::assertCondition): Ditto.
5364 (WebCore::Console::count): Ditto.
5365 (WebCore::Console::timeEnd): Ditto.
5366 (WebCore::Console::warn): Ditto.
5367 * page/Console.h:
5368 * page/Console.idl: Make count and timeEnd custom.
5369
53702008-09-02 Timothy Hatcher <timothy@apple.com>
5371
timothy@apple.comf3aa7342008-09-02 21:30:26 +00005372 Removed IDL files from WebCore's framework resources.
5373
5374 * WebCore.xcodeproj/project.pbxproj:
5375
mitz@apple.comfb6ad392008-09-02 20:39:29 +000053762008-09-02 Dan Bernstein <mitz@apple.com>
5377
5378 Reviewed by Dave Hyatt.
5379
5380 - <rdar://problem/5681647> pages at http://www.stendmarsofa.com/ are so slow to calculate style it seems like a hang
5381
5382 * html/HTMLParser.cpp:
5383 (WebCore::HTMLParser::handleResidualStyleCloseTagAcrossBlocks): Added a
5384 cap on the number of consecutive identical residual style tags to
5385 reopen.
5386 (WebCore::HTMLParser::popBlock): Ditto.
5387
ap@webkit.org879328b2008-09-02 16:16:06 +000053882008-09-02 Alexey Proskuryakov <ap@webkit.org>
5389
5390 Reviewed by Adam Roben.
5391
5392 A little database quota management cleanup.
5393
5394 * storage/OriginQuotaManager.cpp:
5395 (WebCore::OriginQuotaManager::OriginQuotaManager):
5396 (WebCore::OriginQuotaManager::lock):
5397 (WebCore::OriginQuotaManager::unlock):
5398 (WebCore::OriginQuotaManager::trackOrigin):
5399 (WebCore::OriginQuotaManager::tracksOrigin):
5400 (WebCore::OriginQuotaManager::addDatabase):
5401 (WebCore::OriginQuotaManager::removeDatabase):
5402 (WebCore::OriginQuotaManager::removeOrigin):
5403 (WebCore::OriginQuotaManager::markDatabase):
5404 (WebCore::OriginQuotaManager::diskUsage):
5405 * storage/OriginQuotaManager.h:
5406 Changed to assert that a lock is taken more directly and reliably. Removed comments about
5407 main/background threads, as this is likely to stop being true with synchronous Database calls
5408 being made on worker threads.
5409
5410 * storage/OriginUsageRecord.cpp:
5411 (WebCore::OriginUsageRecord::OriginUsageRecord):
5412 (WebCore::OriginUsageRecord::addDatabase):
5413 (WebCore::OriginUsageRecord::removeDatabase):
5414 (WebCore::OriginUsageRecord::markDatabase):
5415 (WebCore::OriginUsageRecord::diskUsage):
5416 * storage/OriginUsageRecord.h:
5417 (WebCore::OriginUsageRecord::DatabaseEntry::DatabaseEntry):
5418 Don't use a magic value for unknown. It is totally unnecessary for DatabaseEntry, and
5419 can be replaced with a single boolean for OriginUsageRecord.
5420 Added assertions for string parameters being unshared.
5421
5422
abarth@webkit.orgaea97a02008-09-02 04:26:15 +000054232008-09-01 Adam Barth <abarth@webkit.org>
5424
5425 Reviewed by Sam Weinig.
5426
5427 https://bugs.webkit.org/show_bug.cgi?id=19760
5428
5429 Make granting LoadLocalResources conditional on a policy.
5430
5431 * WebCore.base.exp:
5432 * dom/Document.cpp:
5433 (WebCore::Document::initSecurityContext):
5434 * loader/FrameLoader.cpp:
5435 (WebCore::FrameLoader::setLocalLoadPolicy):
5436 (WebCore::FrameLoader::restrictAccessToLocal):
5437 * loader/FrameLoader.h:
5438 (WebCore::FrameLoader::):
5439 * platform/SecurityOrigin.cpp:
5440 (WebCore::SecurityOrigin::grantLoadLocalResources):
5441 * platform/SecurityOrigin.h:
5442
dino@apple.com6e2db502008-09-01 23:05:28 +000054432008-09-01 Dean Jackson <dino@apple.com>
5444
dino@apple.com59ca9f52008-09-01 23:34:13 +00005445 Reviewed by Sam Weinig.
5446
5447 https://bugs.webkit.org/show_bug.cgi?id=20571
5448 Make sure Window object can assign Animation/Transition event
5449 listeners via attributes.
5450
5451 Also added a bunch of transition event tests, although
5452 only transition-end-event-window is directly relevant to this patch.
5453
5454 (WebCore::JSDOMWindowBase::put):
5455
5456 Tests: transitions/transition-end-event-all-properties.html
5457 transitions/transition-end-event-attributes.html
5458 transitions/transition-end-event-container.html
5459 transitions/transition-end-event-left.html
5460 transitions/transition-end-event-multiple-01.html
5461 transitions/transition-end-event-multiple-02.html
5462 transitions/transition-end-event-multiple-03.html
5463 transitions/transition-end-event-multiple-04.html
5464 transitions/transition-end-event-nested.html
5465 transitions/transition-end-event-transform.html
5466 transitions/transition-end-event-window.html
5467
54682008-09-01 Dean Jackson <dino@apple.com>
5469
dino@apple.com6e2db502008-09-01 23:05:28 +00005470 Reviewed by Sam Weinig
5471
5472 Code styling cleanup.
5473
5474 * bindings/js/JSDOMWindowBase.cpp:
5475 (WebCore::JSDOMWindowBase::getValueProperty):
5476 (WebCore::JSDOMWindowBase::put):
5477
weinig@apple.com3412bb42008-09-01 21:22:54 +000054782008-09-01 Geoffrey Garen <ggaren@apple.com>
5479
5480 Reviewed by Darin Adler.
5481
5482 First cut at inline caching for access to vanilla JavaScript properties.
5483
5484 Updated for JavaScriptCore changes. Mostly mechanical addition of StructureIDs
5485 to WebCore classes, and PutPropertySlot& arguments to put functions.
5486
5487 (WebCore::JSCSSStyleDeclaration::customPut): Be sure to play nice with
5488 inline caching for global properties, so global assignment can be optimized.
5489
5490 * ForwardingHeaders/kjs/StructureID.h: Added.
5491 * bindings/js/JSDOMBinding.h:
5492 (WebCore::DOMObject::DOMObject):
5493 * bindings/js/JSDOMWindowBase.cpp:
5494 (WebCore::JSDOMWindowBase::put):
5495 * bindings/js/JSDOMWindowBase.h:
5496 * bindings/js/JSDOMWindowCustom.h:
5497 (WebCore::JSDOMWindow::customPut):
5498 * bindings/js/JSDOMWindowShell.cpp:
5499 (WebCore::JSDOMWindowShell::JSDOMWindowShell):
5500 (WebCore::JSDOMWindowShell::put):
5501 * bindings/js/JSDOMWindowShell.h:
5502 * bindings/js/JSEventTargetBase.h:
5503 (WebCore::JSEventTargetBase::put):
5504 * bindings/js/JSEventTargetNode.h:
5505 (WebCore::JSEventTargetNode::put):
5506 * bindings/js/JSHTMLAppletElementCustom.cpp:
5507 (WebCore::JSHTMLAppletElement::customPut):
5508 * bindings/js/JSHTMLEmbedElementCustom.cpp:
5509 (WebCore::JSHTMLEmbedElement::customPut):
5510 * bindings/js/JSHTMLInputElementBase.cpp:
5511 (WebCore::JSHTMLInputElementBase::put):
5512 * bindings/js/JSHTMLInputElementBase.h:
5513 * bindings/js/JSHTMLObjectElementCustom.cpp:
5514 (WebCore::JSHTMLObjectElement::customPut):
5515 * bindings/js/JSHistoryCustom.cpp:
5516 (WebCore::JSHistory::customPut):
5517 * bindings/js/JSInspectedObjectWrapper.cpp:
5518 (WebCore::JSInspectedObjectWrapper::wrap):
5519 (WebCore::JSInspectedObjectWrapper::JSInspectedObjectWrapper):
5520 * bindings/js/JSInspectedObjectWrapper.h:
5521 * bindings/js/JSInspectorCallbackWrapper.cpp:
5522 (WebCore::JSInspectorCallbackWrapper::wrap):
5523 (WebCore::JSInspectorCallbackWrapper::JSInspectorCallbackWrapper):
5524 * bindings/js/JSInspectorCallbackWrapper.h:
5525 * bindings/js/JSLocationCustom.cpp:
5526 (WebCore::JSLocation::customPut):
5527 * bindings/js/JSPluginElementFunctions.cpp:
5528 (WebCore::runtimeObjectCustomPut):
5529 * bindings/js/JSPluginElementFunctions.h:
5530 * bindings/js/JSQuarantinedObjectWrapper.cpp:
5531 (WebCore::JSQuarantinedObjectWrapper::JSQuarantinedObjectWrapper):
5532 (WebCore::JSQuarantinedObjectWrapper::put):
5533 * bindings/js/JSQuarantinedObjectWrapper.h:
5534 * bindings/js/JSStorageCustom.cpp:
5535 (WebCore::JSStorage::customPut):
5536 * bindings/objc/WebScriptObject.mm:
5537 (-[WebScriptObject setValue:forKey:]):
5538 * bindings/scripts/CodeGeneratorJS.pm:
5539 * bridge/NP_jsobject.cpp:
5540 (_NPN_SetProperty):
5541 * bridge/jni/jni_jsobject.mm:
5542 (JavaJSObject::setMember):
5543 * bridge/objc/objc_class.mm:
5544 (KJS::Bindings::ObjcClass::fallbackObject):
5545 * bridge/objc/objc_runtime.h:
5546 * bridge/objc/objc_runtime.mm:
5547 (ObjcFallbackObjectImp::ObjcFallbackObjectImp):
5548 (ObjcFallbackObjectImp::put):
5549 * bridge/runtime.cpp:
5550 (KJS::Bindings::Instance::createRuntimeObject):
5551 * bridge/runtime_array.cpp:
5552 (RuntimeArray::put):
5553 * bridge/runtime_array.h:
5554 * bridge/runtime_object.cpp:
5555 (RuntimeObjectImp::RuntimeObjectImp):
5556 (RuntimeObjectImp::put):
5557 * bridge/runtime_object.h:
5558
jmalonzo@webkit.org1f770ba2008-09-01 12:43:34 +000055592008-09-01 Dirk Schulze <vbs85@gmx.de>
5560
5561 Reviewed by Eric Seidel.
5562
jmalonzo@webkit.org37f07882008-09-01 12:43:48 +00005563 Fixed border-radius for Cairo.
5564
5565 * platform/graphics/cairo/GraphicsContextCairo.cpp:
5566 (WebCore::GraphicsContext::strokeArc):
5567
55682008-09-01 Dirk Schulze <vbs85@gmx.de>
5569
5570 Reviewed by Eric Seidel.
5571
jmalonzo@webkit.org1f770ba2008-09-01 12:43:34 +00005572 Added canvas's globalAlpha to cairo.
5573
5574 * platform/graphics/GraphicsContext.h:
5575 * platform/graphics/cairo/GraphicsContextCairo.cpp:
5576 (WebCore::GraphicsContext::fillPath):
5577 (WebCore::GraphicsContext::strokePath):
5578 (WebCore::GraphicsContext::setAlpha):
5579 (WebCore::GraphicsContext::getAlpha):
5580 * platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h:
5581 (WebCore::GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate):
5582 * platform/graphics/cairo/ImageCairo.cpp:
5583 (WebCore::BitmapImage::draw):
5584
hausmann@webkit.orgecd099d2008-08-31 13:13:28 +000055852008-08-31 Simon Hausmann <hausmann@webkit.org>
5586
5587 Unreviewed Qt build fix.
5588
5589 * WebCore.pro: Add TextControlInnerElements.cpp to SOURCES instead of
5590 the .h file
5591
darin@apple.come7945852008-08-31 06:58:07 +000055922008-08-30 Darin Adler <darin@apple.com>
5593
5594 Reviewed by Maciej.
5595
5596 - adopt some new JavaScriptCore functions where appropriate
5597
5598 * bindings/js/JSDOMWindowBase.cpp:
5599 (WebCore::windowProtoFuncAToB): Adopted jsEmptyString.
5600 (WebCore::windowProtoFuncBToA): Ditto.
5601 * bindings/js/JSEventListener.cpp:
5602 (WebCore::JSLazyEventListener::eventParameterName): Adopted
5603 jsNontrivialString.
5604 * bindings/js/JSSVGLazyEventListener.cpp:
5605 (WebCore::JSSVGLazyEventListener::eventParameterName): Ditto.
5606
beidson@apple.com21c821f2008-08-30 00:26:01 +000056072008-08-29 Brady Eidson <beidson@apple.com>
5608
beidson@apple.come1bd6032008-08-30 00:30:11 +00005609 Reviewed by Anders' rubberstamp
5610
5611 Style cleanup to match MediaTokenizer::writeRawData()
5612
5613 * loader/PluginDocument.cpp:
5614 (WebCore::PluginTokenizer::writeRawData):
5615
56162008-08-29 Brady Eidson <beidson@apple.com>
5617
beidson@apple.com21c821f2008-08-30 00:26:01 +00005618 Reviewed by Anders
5619
5620 Fix regression I introducted in 35946
5621 Already covered by media/video-click-dlbclick-standalone.html
5622
5623 * loader/MediaDocument.cpp:
5624 (WebCore::MediaTokenizer::createDocumentStructure): Don't cancel the load here - too early!
5625 (WebCore::MediaTokenizer::writeRawData): Call finish() here so onload() can be called. Also add
5626 an ASSERT signifying that this method should only be called once, to more closely follow the
5627 PluginDocument case.
5628
bdakin@apple.com7ee298c2008-08-30 00:00:30 +000056292008-08-29 Beth Dakin <bdakin@apple.com>
5630
5631 Reviewed by Sam Weinig.
5632
5633 Fix for <rdar://problem/6181588>
5634
5635 This patch makes hit testing take into account the new concept of a
5636 disconnected frame, in which some of the content may not be
5637 visible. The current hit testing mechanism starts at a target frame
5638 and drills down for a HitTestResult. In some cases, drilling down
5639 will find a non-visible result. When this happens, we need to try
5640 again, starting at a higher level -- namely, starting at the main
5641 frame.
5642
5643 * editing/Editor.cpp:
5644 (WebCore::Editor::insideVisibleArea): New function that tests if a
5645 point is inside the visible area for a disconnected frame.
5646 * editing/Editor.h:
5647 * page/EventHandler.cpp:
5648 (WebCore::EventHandler::hitTestResultAtPoint):
5649
adele@apple.comfb903062008-08-29 22:30:18 +000056502008-08-29 Adele Peterson <adele@apple.com>
5651
5652 Reviewed by Adam Roben.
5653
5654 Rename HTMLTextFieldInnerElement.h/.cpp to TextControlInnerElements.h/.cpp
5655
5656 * GNUmakefile.am:
5657 * WebCore.pro:
5658 * WebCore.vcproj/WebCore.vcproj:
5659 * WebCore.xcodeproj/project.pbxproj:
5660 * WebCoreSources.bkl:
5661 * html/HTMLTextFieldInnerElement.cpp: Removed.
5662 * html/HTMLTextFieldInnerElement.h: Removed.
5663 * rendering/RenderTextControl.cpp:
5664 (WebCore::RenderTextControl::createSubtreeIfNeeded):
5665 * rendering/RenderTextControl.h:
5666 * rendering/TextControlInnerElements.cpp: Copied from html/HTMLTextFieldInnerElement.cpp.
5667 (WebCore::TextControlInnerElement::TextControlInnerElement):
5668 (WebCore::TextControlInnerTextElement::TextControlInnerTextElement):
5669 (WebCore::TextControlInnerTextElement::defaultEventHandler):
5670 (WebCore::SearchFieldResultsButtonElement::SearchFieldResultsButtonElement):
5671 (WebCore::SearchFieldResultsButtonElement::defaultEventHandler):
5672 (WebCore::SearchFieldCancelButtonElement::SearchFieldCancelButtonElement):
5673 (WebCore::SearchFieldCancelButtonElement::defaultEventHandler):
5674 * rendering/TextControlInnerElements.h: Copied from html/HTMLTextFieldInnerElement.h.
5675
eric@webkit.org298c65b2008-08-29 21:39:32 +000056762008-08-29 Eric Seidel <eric@webkit.org>
5677
eric@webkit.org77837ce2008-08-29 21:40:07 +00005678 Rubber-stamped by aroben.
5679
5680 Add GraphicsContext.h include to GraphcisContextPrivate.h
5681
5682 GraphicsContextPrivate uses StrokeStyle which is defined
5683 in GraphicsContext.h but it doesn't include that header.
5684 CoreGraphics build doesn't fail here due to the order
5685 it happens to include files.
5686
5687 * platform/graphics/GraphicsContextPrivate.h:
5688
56892008-08-29 Eric Seidel <eric@webkit.org>
5690
eric@webkit.org298c65b2008-08-29 21:39:32 +00005691 Reviewed by hyatt.
5692
5693 Fix GeneratedImage to respect Image's refcounting
5694 Fixing potential crashers (future if not current)
5695 https://bugs.webkit.org/show_bug.cgi?id=20567
5696
5697 I don't know if it's possible to make the current code
5698 crash, thus I've not made a test.
5699
5700 * css/CSSGradientValue.cpp:
5701 (WebCore::CSSGradientValue::image):
5702 * css/CSSImageGeneratorValue.cpp:
5703 (WebCore::CSSImageGeneratorValue::removeClient):
5704 (WebCore::CSSImageGeneratorValue::getImage):
5705 * css/CSSImageGeneratorValue.h:
5706 * platform/graphics/GeneratedImage.h:
5707 (WebCore::GeneratedImage::GeneratedImage):
5708 * rendering/style/RenderStyle.cpp:
5709 (WebCore::RenderStyle::setContent):
5710 * rendering/style/RenderStyle.h:
5711
eric.carlson@apple.comddeafd42008-08-29 20:07:19 +000057122008-08-29 Eric Carlson <eric.carlson@apple.com>
5713
5714 Reviewed by Adele.
5715
eric.carlson@apple.com850c77c2008-08-29 20:24:50 +00005716 Fix for <rdar://problem/6093767>
5717 https://bugs.webkit.org/show_bug.cgi?id=20526
5718
5719 Don't allow video to render until unsupported track types have been disabled.
5720
5721 * platform/graphics/win/QTMovieWin.cpp:
5722 (QTMovieWinPrivate::task):
5723 (QTMovieWinPrivate::drawingComplete):
5724 (QTMovieWinPrivate::clearGWorld):
5725
57262008-08-29 Eric Carlson <eric.carlson@apple.com>
5727
5728 Reviewed by Adele.
5729
eric.carlson@apple.comddeafd42008-08-29 20:07:19 +00005730 Fix for https://bugs.webkit.org/show_bug.cgi?id=20525
5731 <rdar://problem/6169301>
5732
5733 Return the size of the movie data instead of 1000.
5734
5735 Test: media/progress-event-total.html
5736
5737 * platform/graphics/win/QTMovieWin.cpp:
5738 (QTMovieWin::dataSize):
5739
hausmann@webkit.org0367b582008-08-29 15:56:02 +000057402008-08-29 Holger Hans Peter Freyther <zecke@selfish.org>
5741
hausmann@webkit.orgfe7f2ac2008-08-29 15:57:44 +00005742 Reviewed by Eric Seidel.
5743
5744 [janitor/qt] Start replacing port specific getters with the generic native getter
5745 To get the native presentation of an image we currently have platform
5746 specific #ifdef's and a generic getter using NativeImagePtr. This patch
5747 extends this to the ImageBuffer and updates the Qt platform to get rid
5748 of the special #ifdefs.
5749
5750 https://bugs.webkit.org/attachment.cgi?id=22861
5751
5752 * platform/graphics/BitmapImage.h:
5753 * platform/graphics/Image.h:
5754 * platform/graphics/qt/ImageQt.cpp:
5755 * platform/graphics/qt/StillImageQt.cpp:
5756 * platform/graphics/qt/StillImageQt.h:
5757 * platform/qt/ClipboardQt.cpp:
5758 (WebCore::ClipboardQt::createDragImage):
5759 (WebCore::ClipboardQt::declareAndWriteDragImage):
5760 * platform/qt/CursorQt.cpp:
5761 * platform/qt/PasteboardQt.cpp:
5762 (WebCore::Pasteboard::writeImage):
5763
57642008-08-29 Holger Hans Peter Freyther <zecke@selfish.org>
5765
hausmann@webkit.org0367b582008-08-29 15:56:02 +00005766 Reviewed by Simon.
5767
hausmann@webkit.orgb99266e2008-08-29 15:56:59 +00005768 [svg/qt] Stop crashing... when no RenderPath/RenderObject is given...
5769
5770 * svg/graphics/qt/SVGPaintServerQt.cpp:
5771 (WebCore::SVGPaintServer::renderPath):
5772 * svg/graphics/qt/SVGPaintServerSolidQt.cpp:
5773 (WebCore::SVGPaintServerSolid::setup):
5774
57752008-08-29 Holger Hans Peter Freyther <zecke@selfish.org>
5776
5777 Reviewed by Simon.
5778
hausmann@webkit.org0367b582008-08-29 15:56:02 +00005779 [network/qt] Implement defering of loading ResourceHandle's
5780 This is needed otherwise we end in an ASSERT in the MainResourceLoader. The
5781 implementation is simply not forwarding anything to the
5782 ResourceHandleClient until we are allowed to. This might lead to a deadlock
5783 in Qt as we do not empty the QNetworkReply input buffer and wait until we
5784 are allowed to read. If that happens we are forced to buffer the data
5785 within QNetworkReplyHandler, for now this is not done.
5786
5787 Manual test:
5788 - Open http://acid3.acidtests.org
5789 - Wait for the test to complete
5790 - Click on the Reference Rendering link
5791 - Be fast and see the results of acid3
5792 => assert
5793
5794 * platform/network/qt/QNetworkReplyHandler.cpp:
5795 (WebCore::QNetworkReplyHandler::QNetworkReplyHandler):
5796 (WebCore::QNetworkReplyHandler::setLoadMode):
5797 (WebCore::QNetworkReplyHandler::finish):
5798 (WebCore::QNetworkReplyHandler::sendResponseIfNeeded):
5799 (WebCore::QNetworkReplyHandler::forwardData):
5800 (WebCore::QNetworkReplyHandler::start):
5801 (WebCore::QNetworkReplyHandler::resetState):
5802 (WebCore::QNetworkReplyHandler::sendQueuedItems):
5803 * platform/network/qt/QNetworkReplyHandler.h:
5804 (WebCore::QNetworkReplyHandler::):
5805 * platform/network/qt/ResourceHandleQt.cpp:
5806 (WebCore::ResourceHandle::start):
5807 (WebCore::ResourceHandle::loadResourceSynchronously):
5808 (WebCore::ResourceHandle::setDefersLoading):
5809
hausmann@webkit.org2f2621f2008-08-29 10:21:38 +000058102008-08-29 Simon Hausmann <hausmann@webkit.org>
5811
hausmann@webkit.orgf5864402008-08-29 12:35:59 +00005812 Reviewed by Holger.
5813
5814 Don't crash when drawing patterns with the HTML canvas. Patterns
5815 remain unimplemented but at least they don't crash anymore. This is
5816 done by changing the PlatformPatternPtr to be a brush for the Qt
5817 platform.
5818
5819 * platform/graphics/Pattern.h:
5820 * platform/graphics/qt/GraphicsContextQt.cpp:
5821 (WebCore::GraphicsContext::fillPath):
5822 (WebCore::GraphicsContext::strokePath):
5823 (WebCore::GraphicsContext::fillRect):
5824 * platform/graphics/qt/PatternQt.cpp:
5825 (WebCore::Pattern::createPlatformPattern):
5826
58272008-08-29 Simon Hausmann <hausmann@webkit.org>
5828
hausmann@webkit.org2f2621f2008-08-29 10:21:38 +00005829 Fix the Qt build, fontSelector() is not used by the Qt port yet
5830 and we just return 0 in Font::fontSelector().
5831
5832 * platform/graphics/Font.h:
5833
alp@webkit.org97d8c102008-08-29 05:09:39 +000058342008-08-28 Alp Toker <alp@nuanti.com>
5835
5836 GTK+ dist/build fix. List newly added header files.
5837
5838 * GNUmakefile.am:
5839
simon.fraser@apple.com8f30d022008-08-28 23:04:18 +000058402008-08-28 Simon Fraser <simon.fraser@apple.com>
5841
5842 Reviewed by Dave Hyatt
5843
5844 Various WebKitCSSTransformValue-related fixes
5845 https://bugs.webkit.org/show_bug.cgi?id=20562
5846
5847 Test: css3/transform-value-types.html
5848
5849 * bindings/js/JSCSSValueCustom.cpp:
5850 (WebCore::toJS):
5851 * css/CSSValue.h:
5852 * css/WebKitCSSTransformValue.cpp:
5853 (WebCore::WebKitCSSTransformValue::cssText):
5854 * css/WebKitCSSTransformValue.h:
5855 (WebCore::WebKitCSSTransformValue::):
5856 * css/WebKitCSSTransformValue.idl:
5857
mitz@apple.comd7222352008-08-28 22:53:31 +000058582008-08-28 Dan Bernstein <mitz@apple.com>
5859
5860 Reviewed by Steve Falkenburg.
5861
5862 - do not let the "last chance" WM_TIMER trigger WebCore timers when they should be deferred
5863
5864 * platform/win/SharedTimerWin.cpp:
5865 (WebCore::TimerWindowWndProc):
5866
hyatt@apple.com7d335232008-08-28 21:38:45 +000058672008-08-28 David Hyatt <hyatt@apple.com>
5868
5869 RenderStyle cleanup.
5870
5871 Break out StyleImage, StyleGeneratedImage, StyleCachedImage and NinePieceImage into separate files.
5872
5873 Reviewed by Adam
5874
5875 * css/CSSImageGeneratorValue.cpp:
5876 * css/CSSImageValue.cpp:
5877 * css/CSSStyleSelector.cpp:
5878 * rendering/RenderImageGeneratedContent.cpp:
5879 * rendering/style/NinePieceImage.cpp: Added.
5880 * rendering/style/NinePieceImage.h: Added.
5881 * rendering/style/RenderStyle.cpp:
5882 (WebCore::FillLayer::operator==):
5883 (WebCore::FillLayer::containsImage):
5884 (WebCore::StyleInheritedData::operator==):
5885 (WebCore::RenderStyle::contentDataEquivalent):
5886 * rendering/style/RenderStyle.h:
5887 * rendering/style/StyleCachedImage.cpp: Added.
5888 * rendering/style/StyleCachedImage.h: Added.
5889 * rendering/style/StyleGeneratedImage.cpp: Added.
5890 * rendering/style/StyleGeneratedImage.h: Added.
5891 * rendering/style/StyleImage.h: Added.
5892
simon.fraser@apple.com28bad1a2008-08-28 21:29:21 +000058932008-08-28 Simon Fraser <simon.fraser@apple.com>
5894
5895 Reviewed by Dave Hyatt
5896
5897 Make all the 'isFoo()' methods on CSSValue const,
5898 and fix the subclasses.
5899
5900 https://bugs.webkit.org/show_bug.cgi?id=20561
5901
5902 * css/CSSTimingFunctionValue.h:
5903 * css/CSSValue.h:
5904 (WebCore::CSSValue::isFontValue):
5905 (WebCore::CSSValue::isImageGeneratorValue):
5906 (WebCore::CSSValue::isImageValue):
5907 (WebCore::CSSValue::isImplicitInitialValue):
5908 * css/CSSValueList.h:
5909 * css/FontValue.h:
5910
hyatt@apple.com550a95c2008-08-28 19:53:56 +000059112008-08-28 David Hyatt <hyatt@apple.com>
5912
hyatt@apple.comcb3eb812008-08-28 20:08:03 +00005913 The great RenderStyle cleanup begins!
5914
5915 Move LengthBox and LengthSize out of RenderStyle and into Length.
5916
5917 Reviewed by Adam
5918
5919 * rendering/Length.h:
5920 (WebCore::):
5921 (WebCore::Length::Length):
5922 (WebCore::Length::operator==):
5923 (WebCore::Length::operator!=):
5924 (WebCore::Length::value):
5925 (WebCore::Length::rawValue):
5926 (WebCore::Length::percent):
5927 (WebCore::Length::type):
5928 (WebCore::Length::quirk):
5929 (WebCore::Length::setValue):
5930 (WebCore::Length::setRawValue):
5931 (WebCore::Length::calcValue):
5932 (WebCore::Length::calcMinValue):
5933 (WebCore::Length::calcFloatValue):
5934 (WebCore::Length::isUndefined):
5935 (WebCore::Length::isZero):
5936 (WebCore::Length::isPositive):
5937 (WebCore::Length::isNegative):
5938 (WebCore::Length::isAuto):
5939 (WebCore::Length::isRelative):
5940 (WebCore::Length::isPercent):
5941 (WebCore::Length::isFixed):
5942 (WebCore::Length::isStatic):
5943 (WebCore::Length::isIntrinsicOrAuto):
5944 (WebCore::Length::blend):
5945 (WebCore::LengthBox::LengthBox):
5946 (WebCore::LengthBox::operator=):
5947 (WebCore::LengthBox::operator==):
5948 (WebCore::LengthBox::operator!=):
5949 (WebCore::LengthBox::nonZero):
5950 (WebCore::LengthSize::LengthSize):
5951 * rendering/style/RenderStyle.h:
5952
59532008-08-28 David Hyatt <hyatt@apple.com>
5954
hyatt@apple.com550a95c2008-08-28 19:53:56 +00005955 Reviewed by Darin
5956
5957 https://bugs.webkit.org/show_bug.cgi?id=18091
5958
5959 font-size should be animatable using -webkit-transition.
5960
5961 * page/AnimationController.cpp:
5962 (WebCore::AnimationControllerPrivate::ensurePropertyMap):
5963 * rendering/style/RenderStyle.h:
5964 (WebCore::RenderStyle::setFontSize):
5965
mitz@apple.com30923ad2008-08-28 17:45:47 +000059662008-08-28 Brad Garcia <bgarcia@google.com>
5967
5968 Reviewed by Dan Bernstein.
5969
5970 https://bugs.webkit.org/show_bug.cgi?id=20549
5971 Correctly determine when cursor is over a resizable border within
5972 a nested frameset.
5973
5974 * rendering/RenderFrameSet.cpp:
5975 (WebCore::RenderFrameSet::canResizeRow):
5976 (WebCore::RenderFrameSet::canResizeColumn):
5977
simon.fraser@apple.comae77c412008-08-28 17:30:07 +000059782008-08-28 Simon Fraser <simon.fraser@apple.com>
5979
5980 Reviewed by Eric Seidel
5981
5982 Add RuleTypes to CSSRule.idl for keyframes and keyframe rules.
5983 https://bugs.webkit.org/show_bug.cgi?id=20552
5984
5985 Test: animations/animation-css-rule-types.html
5986
5987 * css/CSSRule.idl:
5988
andersca@apple.com12399c32008-08-28 17:26:46 +000059892008-08-28 Anders Carlsson <andersca@apple.com>
5990
5991 Reviewed by Kevin and Darin.
5992
5993 <rdar://problem/6182541>
5994 https://bugs.webkit.org/show_bug.cgi?id=20202
5995 Missing http status line from the http headers.
5996
5997 Add a status line to the header string.
5998
5999 * plugins/PluginStream.cpp:
6000 (WebCore::PluginStream::startStream):
6001
zecke@webkit.orgf1daa422008-08-28 15:56:01 +000060022008-08-28 Holger Hans Peter Freyther <zecke@selfish.org>
6003
6004 Rubber-stamped by Darin Adler.
6005
6006 https://bugs.webkit.org/show_bug.cgi?id=17261
6007
6008 Make it possible to theme the default Url icon and enable this for
6009 the Qt port. To have a minimal usage of #ifdef in the code the setting
6010 of the icon was moved to a new method which comes in two flavors.
6011
6012 * loader/icon/IconDatabase.cpp:
6013 (WebCore::loadDefaultIconRecord): Load or set the default icon
6014 (WebCore::IconDatabase::defaultIcon):
6015
zecke@webkit.org1887dc82008-08-28 15:03:21 +000060162008-08-28 Holger Hans Peter Freyther <zecke@selfish.org>
6017
6018 Unreviewed compile fix
6019
6020 * platform/graphics/qt/GraphicsContextQt.cpp: Remove redefinitions
6021
aroben@apple.comfacf5032008-08-28 13:34:01 +000060222008-08-28 Adam Roben <aroben@apple.com>
6023
6024 Windows (and others?) build fix
6025
6026 * page/Chrome.cpp: Added a missing #include.
6027 (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): Fixed typo.
6028
eric@webkit.org22794fd2008-08-28 12:04:40 +000060292008-08-27 Eric Seidel <eric@webkit.org>
6030
6031 Reviewed by Oliver Hunt.
6032
eric@webkit.org5f874e92008-08-28 12:04:55 +00006033 Qt and Cairo support from krit (and blind stab @ wx compile support)
6034 https://bugs.webkit.org/show_bug.cgi?id=20373
6035
6036 * platform/graphics/cairo/GraphicsContextCairo.cpp:
6037 (WebCore::GraphicsContext::fillPath):
6038 (WebCore::GraphicsContext::strokePath):
6039 (WebCore::GraphicsContext::drawPath):
6040 (WebCore::GraphicsContext::fillRect):
6041 (WebCore::GraphicsContext::setPlatformFillColor):
6042 (WebCore::GraphicsContext::setPlatformStrokeColor):
6043 (WebCore::GraphicsContext::setPlatformStrokeStyle):
6044 (WebCore::GraphicsContext::strokeRect):
6045 (WebCore::GraphicsContext::setImageInterpolationQuality):
6046 (WebCore::GraphicsContext::imageInterpolationQuality):
6047 (WebCore::GraphicsContext::setPlatformFillPattern):
6048 (WebCore::GraphicsContext::setPlatformStrokePattern):
6049 (WebCore::GraphicsContext::setPlatformFillGradient):
6050 (WebCore::GraphicsContext::setPlatformStrokeGradient):
6051 * platform/graphics/qt/GraphicsContextQt.cpp:
6052 (WebCore::GraphicsContext::fillPath):
6053 (WebCore::GraphicsContext::strokePath):
6054 (WebCore::GraphicsContext::fillRect):
6055 (WebCore::GraphicsContext::strokeRect):
6056 (WebCore::GraphicsContext::clipToImageBuffer):
6057 (WebCore::GraphicsContext::setPlatformFillPattern):
6058 (WebCore::GraphicsContext::setPlatformStrokePattern):
6059 (WebCore::GraphicsContext::setPlatformFillGradient):
6060 (WebCore::GraphicsContext::setPlatformStrokeGradient):
6061 (WebCore::GraphicsContext::setImageInterpolationQuality):
6062 (WebCore::GraphicsContext::imageInterpolationQuality):
6063 * platform/graphics/wx/GraphicsContextWx.cpp:
6064 (WebCore::GraphicsContext::clipToImageBuffer):
6065 (WebCore::GraphicsContext::setImageInterpolationQuality):
6066 (WebCore::GraphicsContext::imageInterpolationQuality):
6067 (WebCore::GraphicsContext::fillPath):
6068 (WebCore::GraphicsContext::strokePath):
6069 (WebCore::GraphicsContext::drawPath):
6070 (WebCore::GraphicsContext::fillRect):
6071 (WebCore::GraphicsContext::setPlatformFillPattern):
6072 (WebCore::GraphicsContext::setPlatformStrokePattern):
6073 (WebCore::GraphicsContext::setPlatformFillGradient):
6074
60752008-08-27 Eric Seidel <eric@webkit.org>
6076
6077 Reviewed by Oliver Hunt.
6078
eric@webkit.org22794fd2008-08-28 12:04:40 +00006079 Add stroke/fill Gradient and Pattern support to GraphicsContext and update <canvas> to use it.
6080 https://bugs.webkit.org/show_bug.cgi?id=20373
6081
6082 Changed pattern() to canvasPattern() on CanvasStyle to match canvasGradient()
6083
6084 Made Generator (aka Gradient) RefCounted so that GraphicsContext didn't
6085 have to store large Gradient objects in the GraphicsContextState
6086
6087 Made Pattern RefCounted for the same reason.
6088
6089 Many updates to GraphicsContext to support easier drawing with
6090 Patterns and Gradients.
6091
6092 * WebCore.xcodeproj/project.pbxproj: Add pre-existing GraphicsContextPrivate.h
6093 * bindings/js/JSCanvasRenderingContext2DCustom.cpp:
6094 (WebCore::toJS):
6095 * css/CSSGradientValue.cpp:
6096 (WebCore::CSSGradientValue::createGradient):
6097 * css/CSSGradientValue.h:
6098 * html/CanvasGradient.cpp:
6099 (WebCore::CanvasGradient::CanvasGradient):
6100 * html/CanvasGradient.h:
6101 (WebCore::CanvasGradient::gradient):
6102 (WebCore::CanvasGradient::addColorStop):
6103 (WebCore::CanvasGradient::getColor):
6104 * html/CanvasPattern.cpp:
6105 * html/CanvasPattern.h:
6106 (WebCore::CanvasPattern::pattern):
6107 (WebCore::CanvasPattern::originClean):
6108 * html/CanvasRenderingContext2D.cpp:
6109 (WebCore::CanvasRenderingContext2D::State::State):
6110 (WebCore::CanvasRenderingContext2D::setStrokeStyle):
6111 (WebCore::CanvasRenderingContext2D::setFillStyle):
6112 (WebCore::CanvasRenderingContext2D::fill):
6113 (WebCore::CanvasRenderingContext2D::stroke):
6114 (WebCore::CanvasRenderingContext2D::fillRect):
6115 (WebCore::CanvasRenderingContext2D::strokeRect):
6116 * html/CanvasRenderingContext2D.h:
6117 * html/CanvasStyle.cpp:
6118 (WebCore::CanvasStyle::applyStrokeColor):
6119 (WebCore::CanvasStyle::applyFillColor):
6120 * html/CanvasStyle.h:
6121 * platform/graphics/GeneratedImage.h:
6122 (WebCore::GeneratedImage::GeneratedImage):
6123 * platform/graphics/Generator.h:
6124 * platform/graphics/Gradient.h:
6125 (WebCore::Gradient::create):
6126 * platform/graphics/GraphicsContext.cpp:
6127 (WebCore::GraphicsContext::fillRule):
6128 (WebCore::GraphicsContext::setFillRule):
6129 (WebCore::GraphicsContext::setStrokePattern):
6130 (WebCore::GraphicsContext::setFillPattern):
6131 (WebCore::GraphicsContext::setStrokeGradient):
6132 (WebCore::GraphicsContext::setFillGradient):
6133 * platform/graphics/GraphicsContext.h:
6134 * platform/graphics/GraphicsContextPrivate.h:
6135 (WebCore::):
6136 (WebCore::GraphicsContextState::GraphicsContextState):
6137 * platform/graphics/GraphicsTypes.h:
6138 * platform/graphics/Path.h:
6139 * platform/graphics/Pattern.h:
6140 (WebCore::Pattern::create):
6141 (WebCore::Pattern::tileImage):
6142 * platform/graphics/cg/GraphicsContextCG.cpp:
6143 (WebCore::GraphicsContext::drawRect):
6144 (WebCore::GraphicsContext::drawEllipse):
6145 (WebCore::GraphicsContext::drawConvexPolygon):
6146 (WebCore::calculateDrawingMode):
6147 (WebCore::GraphicsContext::drawPath):
6148 (WebCore::fillPathWithFillRule):
6149 (WebCore::GraphicsContext::fillPath):
6150 (WebCore::GraphicsContext::strokePath):
6151 (WebCore::GraphicsContext::fillRect):
6152 (WebCore::GraphicsContext::fillRoundedRect):
6153 (WebCore::GraphicsContext::setPlatformStrokePattern):
6154 (WebCore::GraphicsContext::setPlatformFillPattern):
6155 (WebCore::GraphicsContext::setPlatformStrokeGradient):
6156 (WebCore::GraphicsContext::setPlatformFillGradient):
6157
eric@webkit.org70b099f2008-08-28 11:42:26 +000061582008-08-20 Eric Seidel <eric@webkit.org>
6159
6160 Reviewed by Darin and Alexey.
6161
6162 Close a leak of PausedTimeouts if the JavaScriptDebugServer was destroyed
6163 with timeouts paused.
6164 https://bugs.webkit.org/show_bug.cgi?id=20469
6165
6166 I attempted to clean up the memory management of PausedTimeouts, I'm not
6167 sure the solution I came up with is "cleaner", but it's in some ways
6168 "safer", since it no longer uses raw pointers and manual new/delete.
6169
6170 This also now prevents CachedPage from needlessly creating Window
6171 objects when caching pages which didn't already have one. :)
6172
6173 I also made Chrome.cpp no longer depend on the JavaScript bindings
6174 (aka JSDOMWindowBase.h), since there was no real reason for it to.
6175
6176 * bindings/js/JSDOMWindowBase.cpp:
6177 (WebCore::JSDOMWindowBase::pauseTimeouts):
6178 (WebCore::JSDOMWindowBase::resumeTimeouts):
6179 * bindings/js/JSDOMWindowBase.h:
6180 * bindings/js/ScriptController.cpp:
6181 (WebCore::ScriptController::pauseTimeouts):
6182 (WebCore::ScriptController::resumeTimeouts):
6183 * bindings/js/ScriptController.h:
6184 * history/CachedPage.cpp:
6185 (WebCore::CachedPage::CachedPage):
6186 (WebCore::CachedPage::restore):
6187 * page/Chrome.cpp:
6188 (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer):
6189 (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
6190 * page/JavaScriptDebugServer.cpp:
6191 (WebCore::JavaScriptDebugServer::~JavaScriptDebugServer):
6192 (WebCore::JavaScriptDebugServer::setJavaScriptPaused):
6193
zecke@webkit.org7d0df9e2008-08-28 03:36:31 +000061942008-08-27 Holger Hans Peter Freyther <zecke@selfish.org>
6195
6196 Unreviewed compile fix
6197
6198 Add the stub for the Qt port.
6199
6200 * WebCore.pro:
6201 * page/qt/AccessibilityObjectQt.cpp: Added.
6202 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
6203
zecke@webkit.orged5c2fe2008-08-28 02:15:20 +000062042008-08-27 Alp Toker <alp@nuanti.com>
6205
6206 Reviewed by Eric.
6207
6208 https://bugs.webkit.org/show_bug.cgi?id=20551
zecke@webkit.org81540882008-08-28 02:18:20 +00006209 [GTK] search popup crash
6210
6211 * platform/gtk/SearchPopupMenuGtk.cpp:
6212 (WebCore::SearchPopupMenu::enabled):
6213 Fix a search popup crasher by disabling the history popup since we
6214 don't support this feature yet in the GTK+ port.
6215
62162008-08-27 Alp Toker <alp@nuanti.com>
6217
6218 Reviewed by Eric.
6219
6220 https://bugs.webkit.org/show_bug.cgi?id=20551
zecke@webkit.orged5c2fe2008-08-28 02:15:20 +00006221 [GTK] curl crashers
6222
6223 * platform/network/curl/ResourceHandleManager.cpp:
6224 (WebCore::ResourceHandleManager::startScheduledJobs):
6225 Remove the resource handle from the pending list before starting the
6226 job, not afterwards. Fixes crashers in the test suite.
6227
6228 Test: fast/dom/clientWidthAfterDocumentIsRemoved.html
6229 Test: fast/encoding/char-encoding.html
6230
eric@webkit.org712cb892008-08-28 00:26:15 +000062312008-08-27 Dirk Schulze <vbs85@gmx.de>
6232
6233 Reviewed by eseidel.
6234
6235 Fix canvas drawImage to support composite operations.
6236 Composite had no effect on canvas elements like these:
6237 http://philip.html5.org/tests/canvas/suite/tests/index.2d.composite.canvas.html
6238
6239 [CAIRO] Canvas composite don't work on canvas-elements.
6240 https://bugs.webkit.org/show_bug.cgi?id=20548
6241
6242 * html/CanvasRenderingContext2D.cpp:
6243 (WebCore::CanvasRenderingContext2D::drawImage): pass the current composite operator to the drawImage call
6244
eric@webkit.org75c83a02008-08-28 00:04:59 +000062452008-08-27 Mario Bensi <mbensi@pleyo.com>
6246
6247 Reviewed by Eric Seidel.
6248
6249 Fix the data content of an image with a base64.
6250
6251 * platform/network/curl/ResourceHandleManager.cpp:
6252 (WebCore::parseDataUrl): Remove the String and use only the data
6253 Vector because the data.latin1().data() convert the data content and
6254 the image test ( https://bugs.webkit.org/attachment.cgi?id=21726 ) is
6255 not drawn correctly.
6256
antti@apple.comf66a86b2008-08-27 23:59:50 +000062572008-08-27 Antti Koivisto <antti@apple.com>
6258
6259 Reviewed by Eric Seidel.
6260
6261 Crash after OK in dialog box and reloading page in secure mode
6262 https://bugs.webkit.org/show_bug.cgi?id=20493
6263
6264 The new run loop spawned by a modal dialog causes a timer in the loader to run
6265 synchronously inside didFinishLoading() deleting "this" object.
6266
6267 Defer all WebCore timers when a modal dialog is up. They are not
6268 safe to execute.
6269
6270 * page/Chrome.cpp:
6271 (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer):
6272 (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
6273
simon.fraser@apple.com7dbde252008-08-27 23:16:36 +000062742008-08-27 Chris Marrin <cmarrin@apple.com>
6275
6276 Reviewed by Dave Hyatt
6277
6278 Memory leaks when animating transforms
6279 https://bugs.webkit.org/show_bug.cgi?id=20532
6280
6281 * rendering/style/RenderStyle.cpp:
6282 (WebCore::ScaleTransformOperation::blend):
6283 (WebCore::RotateTransformOperation::blend):
6284 (WebCore::SkewTransformOperation::blend):
6285 (WebCore::TranslateTransformOperation::blend):
6286 (WebCore::MatrixTransformOperation::blend):
6287 * rendering/style/RenderStyle.h:
6288
timothy@apple.com79cb13a2008-08-27 22:03:24 +000062892008-08-27 Timothy Hatcher <timothy@apple.com>
6290
6291 Add support for support for -webkit-appearance: default-button on the Mac platform.
6292
6293 <rdar://problem/6173530>
6294
6295 Reviewed by Dave Hyatt.
6296
6297 * WebCore.base.exp: Export new symbols.
6298 * platform/mac/WebCoreSystemInterface.h: Add wkAdvanceDefaultButtonPulseAnimation.
6299 * platform/mac/WebCoreSystemInterface.mm: Ditto.
6300 * rendering/RenderButton.cpp:
6301 (WebCore::RenderButton::RenderButton): Remove #if PLATFORM(WIN).
6302 (WebCore::RenderButton::setStyle): Ditto.
6303 * rendering/RenderButton.h: Ditto.
6304 * rendering/RenderThemeMac.mm:
6305 (WebCore::RenderThemeMac::adjustRepaintRect): Add a case for DefaultButtonAppearance.
6306 (WebCore::RenderThemeMac::setButtonCellState): Set the key equivalent to the return
6307 key if the button is default, otherwise reset the key equivalent.
6308 (WebCore::RenderThemeMac::paintButton): If the button is default call setDefaultButtonCell:
6309 on the window, then wkAdvanceDefaultButtonPulseAnimation before painting. Restore
6310 the window's previous default button cell when finished.
6311
hyatt@apple.comf0ec84d2008-08-27 21:18:15 +000063122008-08-26 David Hyatt <hyatt@apple.com>
6313
6314 First cut at making form controls on OS X respect full page zoom. There are lots of bugs.
6315
6316 Reviewed by weinig
6317
6318 Added fast/forms/zoomed-controls.html
6319
6320 * css/CSSStyleSelector.cpp:
6321 (WebCore::addIntrinsicMargins):
6322 * rendering/RenderSlider.cpp:
6323 (WebCore::RenderSlider::calcPrefWidths):
6324 * rendering/RenderThemeMac.h:
6325 * rendering/RenderThemeMac.mm:
6326 (WebCore::RenderThemeMac::adjustRepaintRect):
6327 (WebCore::RenderThemeMac::inflateRect):
6328 (WebCore::RenderThemeMac::baselinePosition):
6329 (WebCore::RenderThemeMac::setControlSize):
6330 (WebCore::RenderThemeMac::sizeForFont):
6331 (WebCore::RenderThemeMac::sizeForSystemFont):
6332 (WebCore::RenderThemeMac::setFontFromControlSize):
6333 (WebCore::RenderThemeMac::paintCheckbox):
6334 (WebCore::RenderThemeMac::setCheckboxCellState):
6335 (WebCore::RenderThemeMac::paintRadio):
6336 (WebCore::RenderThemeMac::setRadioCellState):
6337 (WebCore::RenderThemeMac::setButtonPaddingFromControlSize):
6338 (WebCore::RenderThemeMac::adjustButtonStyle):
6339 (WebCore::RenderThemeMac::setButtonCellState):
6340 (WebCore::RenderThemeMac::paintButton):
6341 (WebCore::RenderThemeMac::paintMenuList):
6342 (WebCore::RenderThemeMac::paintMenuListButton):
6343 (WebCore::RenderThemeMac::popupInternalPaddingLeft):
6344 (WebCore::RenderThemeMac::popupInternalPaddingRight):
6345 (WebCore::RenderThemeMac::popupInternalPaddingTop):
6346 (WebCore::RenderThemeMac::popupInternalPaddingBottom):
6347 (WebCore::RenderThemeMac::setPopupButtonCellState):
6348 (WebCore::RenderThemeMac::paintSliderTrack):
6349 (WebCore::RenderThemeMac::paintSliderThumb):
6350 (WebCore::RenderThemeMac::adjustSliderThumbSize):
6351 (WebCore::RenderThemeMac::paintSearchField):
6352 (WebCore::RenderThemeMac::adjustSearchFieldStyle):
6353 (WebCore::RenderThemeMac::paintSearchFieldCancelButton):
6354 (WebCore::RenderThemeMac::paintSearchFieldResultsButton):
6355
beidson@apple.comd0793872008-08-27 19:59:55 +000063562008-08-27 Brady Eidson <beidson@apple.com>
6357
6358 Reviewed by Anders
6359
6360 <rdar://problem/6134133> - Crash when loading large movie as a standalone document
6361
6362 We hand off these loads to Quicktime which manages and spools the data itself, but we also continued
6363 to load and buffer the data for the movie in WebCore. With large media files, this results in blowing
6364 away the virtual address space and a crash.
6365
6366 * loader/EmptyClients.h:
6367 (WebCore::EmptyFrameLoaderClient::pluginWillHandleLoadError):
6368 * loader/FrameLoaderClient.h: Added client method to get platform specific error for
6369 "plugin will handle load"
6370
6371 * loader/MediaDocument.cpp:
6372 (WebCore::MediaTokenizer::createDocumentStructure): Tell the MainResourceLoader to not buffer data,
6373 and cancel the WebCore-managed load
6374 (WebCore::MediaTokenizer::writeRawData):
6375 (WebCore::MediaTokenizer::finish):
6376
simon.fraser@apple.come74d6712008-08-27 18:19:55 +000063772008-08-26 Simon Fraser <simon.fraser@apple.com>
6378
6379 Reviewed by Eric Seidel
6380
6381 Linear timing functions should have control points 0, 0, 1, 1.
6382 https://bugs.webkit.org/show_bug.cgi?id=20535
6383
6384 * css/CSSStyleSelector.cpp:
6385 (WebCore::CSSStyleSelector::mapAnimationTimingFunction):
6386 * rendering/style/RenderStyle.h:
6387
aroben@apple.com8cfb6c62008-08-27 14:52:17 +000063882008-08-27 Adam Roben <aroben@apple.com>
6389
6390 Windows build fix
6391
6392 * WebCore.vcproj/WebCore.vcproj: Fix file extension.
6393
mrowe@apple.com37686d42008-09-04 00:10:39 +000063942008-08-26 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.com33a556b2008-08-26 22:29:14 +00006395
cfleizach@apple.comc6ebe3d2008-08-26 22:43:22 +00006396 Reviewed by Beth Dakin.
6397
cfleizach@apple.com2a505f42008-08-26 22:56:03 +00006398 <rdar://problem/6069462> REGRESSION: webkit is returning flash objects as AXUnknown
6399
6400 Added platform-specific accessibilityIgnoreAttachment, which allows the platform
6401 to determine if an attachment is ignored through accessibility. Added equivalent
6402 methods in Gtk, Win and Mac
6403
6404 Test: accessibility/plugin.html
6405
6406 * GNUmakefile.am:
6407 * WebCore.vcproj/WebCore.vcproj:
6408 * WebCore.xcodeproj/project.pbxproj:
6409 * page/AccessibilityObject.h:
6410 * page/AccessibilityRenderObject.cpp:
6411 (WebCore::AccessibilityRenderObject::accessibilityIsIgnored):
6412 * page/gtk/AccessibilityObjectAtk.cpp: Added.
6413 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
6414 * page/mac/AccessibilityObjectMac.mm: Added.
6415 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
6416 * page/mac/AccessibilityObjectWrapper.h:
6417 * page/win/AccessibilityObjectWin.cpp: Added.
6418 (WebCore::AccessibilityObject::accessibilityIgnoreAttachment):
6419
mrowe@apple.com37686d42008-09-04 00:10:39 +000064202008-08-26 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.com2a505f42008-08-26 22:56:03 +00006421
6422 Reviewed by Beth Dakin.
6423
cfleizach@apple.comc6ebe3d2008-08-26 22:43:22 +00006424 <rdar://problem/5817770> can't bring up contextual menu for embedded objects in WebText
6425
6426 * page/mac/AccessibilityObjectWrapper.mm:
6427 (-[AccessibilityObjectWrapper accessibilityPerformShowMenuAction]):
6428 (-[AccessibilityObjectWrapper accessibilityShowContextMenu]):
6429
mrowe@apple.com37686d42008-09-04 00:10:39 +000064302008-08-26 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.comc6ebe3d2008-08-26 22:43:22 +00006431
cfleizach@apple.com33a556b2008-08-26 22:29:14 +00006432 Reviewed by Darin Adler.
6433
6434 <rdar://problem/6176924> CrashTracer: [USER] 4 crashes in Safari at com.apple.WebCore: WebCore::RenderTableSection::numColumns
6435
6436 Tests: accessibility/table-notbody.html
6437
6438 * page/AccessibilityTable.cpp:
6439 (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
6440
weinig@apple.com33705852008-08-26 19:51:28 +000064412008-08-26 Sam Weinig <sam@webkit.org>
6442
weinig@apple.comf6f553a2008-08-26 21:21:26 +00006443 Reviewed by Beth Dakin.
6444
6445 Fix typo.
6446
6447 * dom/DOMCoreException.h:
6448
64492008-08-26 Sam Weinig <sam@webkit.org>
6450
weinig@apple.com0f34f002008-08-26 19:56:54 +00006451 Reviewed by Oliver Hunt.
6452
6453 Fix https://bugs.webkit.org/show_bug.cgi?id=20479
6454 <rdar://problem/6167660>
6455 Take image redirects into account when tainting the canvas.
6456
6457 Test: http/tests/security/canvas-remote-read-redirect-to-remote-image.html
6458
6459 * html/CanvasRenderingContext2D.cpp:
6460 (WebCore::CanvasRenderingContext2D::drawImage):
6461 (WebCore::CanvasRenderingContext2D::drawImageFromRect):
6462
64632008-08-26 Sam Weinig <sam@webkit.org>
6464
weinig@apple.com33705852008-08-26 19:51:28 +00006465 Reviewed by Darin Adler.
6466
6467 Change canvas tainting logic to ask the image if it contains
6468 any resources outside of its own origin. Since there is no
6469 way to determine if SVG images contain any resources outside its
6470 origin, we always assume it does.
6471
6472 * html/CanvasRenderingContext2D.cpp:
6473 (WebCore::CanvasRenderingContext2D::drawImage):
6474 (WebCore::CanvasRenderingContext2D::drawImageFromRect):
6475 * platform/graphics/BitmapImage.h:
6476 (WebCore::BitmapImage::hasSingleSecurityOrigin):
6477 * platform/graphics/GeneratedImage.h:
6478 (WebCore::GeneratedImage::hasSingleSecurityOrigin):
6479 * platform/graphics/Image.h:
6480 (WebCore::Image::hasSingleSecurityOrigin):
6481 * platform/graphics/cg/PDFDocumentImage.h:
6482 (WebCore::PDFDocumentImage::hasSingleSecurityOrigin):
6483 * svg/graphics/SVGImage.h:
6484
britto@apple.com616ef6d2008-08-26 17:51:03 +000064852008-08-26 Maxime Britto <britto@apple.com>
6486
6487 Reviewed by Adele.
6488
6489 <rdar://6159244> Pan-scrolling does not work on particular sites (starmagazine.com, nytimes.com)
6490 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.
6491 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.
6492
6493 * page/EventHandler.cpp:
6494 (WebCore::EventHandler::updateAutoscrollRenderer): if we switch to the parent layer to do the scroll we want to change the renderer for the panning
6495 * page/EventHandler.h:
6496 * rendering/RenderLayer.cpp:
6497 (WebCore::RenderLayer::panScrollFromPoint): now calls the scrollByRecursively method when it has computed the xDelta and yDelta
6498 (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.
6499 * rendering/RenderLayer.h:
6500 * rendering/RenderObject.cpp:
6501 (WebCore::RenderObject::canBeProgramaticallyScrolled): a RenderObject must have a RenderLayer to be programatically scrolled
6502 (WebCore::RenderObject::autoscroll): No need to check for the layer anymore since we verify it's present in the upmentionned method
6503 (WebCore::RenderObject::panScroll): No need to check for the layer anymore too.
6504
jchaffraix@webkit.orge6915392008-08-26 10:27:33 +000065052008-08-25 Julien Chaffraix <jchaffraix@webkit.org>
6506
darin@apple.com07c80c62008-09-05 18:15:43 +00006507 Reviewed by Darin Adler.
jchaffraix@webkit.orge6915392008-08-26 10:27:33 +00006508
6509 Bug 20247: setAttributeNode() does not work when attribute name has a capital letter in it
6510 https://bugs.webkit.org/show_bug.cgi?id=20247
6511
6512 <rdar://problem/6118218>
6513
6514 Add a boolean parameter to getAttributeItem to choose between case sensitive and case insensitive
6515 check. This keeps the behaviour for setAttribute / hasAttribute (case sensitive) and getAttribute
6516 (case insensitive for HTML elements).
6517
6518 Test: fast/dom/Element/getAttribute-check-case-sensitivity.html
6519
6520 * dom/Element.cpp:
6521 (WebCore::Element::getAttribute):
6522 * dom/NamedAttrMap.cpp:
6523 (WebCore::NamedAttrMap::getNamedItem):
6524 (WebCore::NamedAttrMap::getAttributeItem):
6525 * dom/NamedAttrMap.h:
6526
weinig@apple.comb4ce06e2008-08-26 01:52:51 +000065272008-08-25 Sam Weinig <sam@webkit.org>
6528
weinig@apple.com8d3ea722008-08-26 04:19:07 +00006529 Reviewed by Oliver Hunt.
6530
6531 Fix for https://bugs.webkit.org/show_bug.cgi?id=20514
6532 <rdar://problem/6174096>
6533 Treat SVG images as dirty when drawing to a canvas.
6534
6535 Test: http/tests/security/canvas-remote-read-svg-image.html
6536
6537 * html/CanvasRenderingContext2D.cpp:
6538 (WebCore::CanvasRenderingContext2D::drawImage):
6539 (WebCore::CanvasRenderingContext2D::drawImageFromRect):
6540 * platform/graphics/Image.h:
6541 (WebCore::Image::isSVGImage):
6542 * svg/graphics/SVGImage.h:
6543 (WebCore::SVGImage::isSVGImage):
6544
65452008-08-25 Sam Weinig <sam@webkit.org>
6546
weinig@apple.comb4ce06e2008-08-26 01:52:51 +00006547 Reviewed by Mark Rowe.
6548
6549 Fix https://bugs.webkit.org/show_bug.cgi?id=20377
6550 Leak in XMLHttpRequest.
6551
6552 * xml/XMLHttpRequest.cpp:
6553 (WebCore::XMLHttpRequest::makeCrossSiteAccessRequestWithPreflight):
6554
beidson@apple.com46421212008-08-25 21:48:56 +000065552008-08-25 Brady Eidson <beidson@apple.com>
6556
6557 Reviewed by Anders
6558
6559 Speculative fix for <rdar://problem/6173217>
6560
6561 Moves the "clearArchivedResources()" call to exactly where it used to be in the old version of WebArchive code.
6562 Also, adds a null check for m_documentLoader since DocumentLoader::stopLoading() can end up clearing it, rendering
6563 the first null check invalid.
6564
6565 * loader/FrameLoader.cpp:
6566 (WebCore::FrameLoader::stopAllLoaders):
6567
6568
kmccullough@apple.com7b85fbb2008-08-25 21:28:40 +000065692008-08-25 Kevin McCullough <kmccullough@apple.com>
6570
6571 Reviewed by Tim.
6572
6573 <rdar://problem/6157711> Heavy/Tree view selector is not grayed out if
6574 there is no profile, can cause crash
6575
6576 * page/inspector/ProfilesPanel.js:
6577
dino@apple.com1baeea62008-08-25 21:06:21 +000065782008-08-25 Dean Jackson <dino@apple.com>
6579
6580 Reviewed by Dave Hyatt
6581
6582 Make sure 'inherit' is handled by transition property.
6583 https://bugs.webkit.org/show_bug.cgi?id=20513
6584
6585 Test: transitions/inherit.html
6586 Test: transitions/inherit-other-props.html
6587
6588 * css/CSSStyleSelector.cpp:
6589 fix macro to check existence of list before getting size
6590
andersca@apple.com2866b8302008-08-25 20:56:21 +000065912008-08-25 Anders Carlsson <andersca@apple.com>
6592
6593 Reviewed by Mark.
6594
6595 <rdar://problem/6149787> crash @ com.apple.JavaScriptCore: WTF::callOnMainThread + 37.
6596
6597 Initialize threading in the call to WebCoreObjCFinalizeOnMainThread. We currently assume
6598 (safely) that any class that needs finalization on the main thread will also need to be deallocated
6599 on the main thread, and calling initializeThreading from WebCoreObjCFinalizeOnMainThread instead of
6600 calling it from WebCoreObjCScheduleDeallocateOnMainThread seems safer.
6601
6602 * platform/mac/WebCoreObjCExtras.c:
6603 (WebCoreObjCFinalizeOnMainThread):
6604
antti@apple.com60381cb2008-08-25 20:41:11 +000066052008-08-25 Antti Koivisto <antti@apple.com>
6606
6607 Reviewed by Dan Bernstein.
6608
6609 Rename CachedResource::referenced() to CachedResource::hasClients() to
6610 match previous ref() -> addClient() rename.
6611
6612 * loader/Cache.cpp:
6613 (WebCore::Cache::pruneLiveResources):
6614 (WebCore::Cache::pruneDeadResources):
6615 (WebCore::Cache::remove):
6616 (WebCore::Cache::getStatistics):
6617 (WebCore::Cache::dumpLRULists):
6618 * loader/CachedResource.cpp:
6619 (WebCore::CachedResource::addClient):
6620 (WebCore::CachedResource::removeClient):
6621 (WebCore::CachedResource::setDecodedSize):
6622 (WebCore::CachedResource::setEncodedSize):
6623 * loader/CachedResource.h:
6624 (WebCore::CachedResource::hasClients):
6625 (WebCore::CachedResource::canDelete):
6626
timothy@apple.com7d809242008-08-25 18:33:05 +000066272008-08-25 Anthony Ricaud <rik24d@gmail.com>
6628
6629 Add a missing Inspector localized string for "other".
6630
6631 https://bugs.webkit.org/show_bug.cgi?id=20509
6632
6633 Reviewed by Tim Hatcher.
6634
6635 * English.lproj/localizedStrings.js:
6636
kmccullough@apple.com560f5fe2008-08-25 18:18:01 +000066372008-08-22 Kevin McCullough <kmccullough@apple.com>
6638
6639 Reviewed by Geoff, Mark and Tim.
6640
6641 <rdar://problem/6150623> JSProfiler: It would be nice if the profiles
6642 in the console said what file and line number they came from
6643 - Lay the foundation for getting line numbers and other data from the
6644 JavaScript engine.
6645
6646 * ForwardingHeaders/VM: Added.
6647 * ForwardingHeaders/VM/Machine.h: Added.
6648 * page/Console.cpp: Gather the line number and file information when
6649 profileEnd has been called, but don't use it until didFinishProfiling is
6650 called. We won't need to wait once we remove the profiler "zombie" mode
6651 which this patch helps pave the foundation for.
6652 (WebCore::Console::Console):
6653 (WebCore::Console::profileEnd):
6654 (WebCore::Console::finishedProfiling):
6655 * page/Console.h:
6656 * page/InspectorController.cpp: Modify calls to
6657 addProfileMessageToConsole to satisfy the new arguments it takes.
6658 (WebCore::InspectorController::finishedProfiling):
6659 (WebCore::InspectorController::addProfile):
6660 (WebCore::InspectorController::addProfileMessageToConsole):
6661 (WebCore::InspectorController::finishedProfiling):
6662 * page/InspectorController.h:
6663
hausmann@webkit.orgf305df42008-08-25 10:06:53 +000066642008-08-25 Holger Hans Peter Freyther <zecke@selfish.org>
6665
6666 Reviewed by Simon.
6667
6668 [inspector] Update the WebKit.qrc Qt resources file
6669 Catchup with the changes in the directory.
6670
6671 * page/inspector/WebKit.qrc:
6672
hausmann@webkit.org5f13af32008-08-25 07:10:22 +000066732008-08-25 Dirk Schulze <vbs85@gmx.de>
6674
6675 Reviewed by Simon.
6676
6677 Transformed the radian to degree, to get rotate()
6678 in canvas work as expected.
6679
6680 [Qt] Canvas.rotate() doesn't work
6681 https://bugs.webkit.org/show_bug.cgi?id=20496
6682
6683 * platform/graphics/qt/GraphicsContextQt.cpp:
6684 (WebCore::GraphicsContext::rotate):
6685
sfalken@apple.com9d442862008-08-25 05:43:33 +000066862008-08-24 Steve Falkenburg <sfalken@apple.com>
6687
6688 Add a "last chance" WM_TIMER to the Windows shared timer.
6689
6690 The last chance timer fires every 5 seconds to run any lost WM_TIMER based timers.
6691 Failure to fire a timer is fatal to the cross-platform Timer code, since it won't re-schedule
6692 timers if a timer with an earlier expiration is already pending. This results in no timers
6693 firing from that point on.
6694
6695 We lose WM_TIMER messages occasionally (in the neighborhood of 1 per hour) probably due to a
6696 buggy window message hook.
6697
6698 This timer will start when the first WM_TIMER is scheduled, and will
6699 fire every 5 seconds thereafter, causing any lost timers to be fired.
6700
6701 Found this via one of its symptoms: leaking WebFrames. The fix prevents timers from stalling
6702 and prevents the WebFrame leak.
6703
6704 Reviewed by Darin Adler, Geoff Garen.
6705
6706 * platform/win/SharedTimerWin.cpp:
6707 (WebCore::):
6708 (WebCore::TimerWindowWndProc):
6709 (WebCore::setSharedTimerFireTime):
6710
mitz@apple.com771fb752008-08-25 03:22:44 +000067112008-08-24 Dan Bernstein <mitz@apple.com>
6712
6713 Reviewed by Darin Adler.
6714
6715 - fix <rdar://problem/6065547> REGRESSION (r34879): "Subject" in unread emails in Yahoo mail is not shown in bold
6716
6717 Test: fast/css/font-property-priority.html
6718
6719 * css/CSSParser.cpp:
6720 (WebCore::CSSParser::parseValue): Changed to pass the 'important' flag
6721 to the font-property-parsing functions.
6722 (WebCore::CSSParser::parseFontStyle): Added an 'important' argument and
6723 changed to use it rather than the m_important member.
6724 (WebCore::CSSParser::parseFontVariant): Ditto.
6725 (WebCore::CSSParser::parseFontWeight): Ditto.
6726 * css/CSSParser.h:
6727
timothy@apple.com4cea2632008-08-24 22:28:44 +000067282008-08-24 Timothy Hatcher <timothy@apple.com>
6729
6730 Fixes a bug where the Inspector's UI would not animate or
6731 fully function because JavaScript timeouts, intervals and
6732 CSS animation timers where not firing while paused at a
6733 a breakpoint in the inspected page.
6734
6735 https://bugs.webkit.org/show_bug.cgi?id=20042
6736
6737 Reviewed by Darin Adler.
6738
6739 Test: manual-tests/inspector/forzen-ui-while-paused.html
6740
6741 * page/JavaScriptDebugServer.cpp:
6742 (WebCore::JavaScriptDebugServer::pauseIfNeeded):
6743 Add a call to TimerBase::fireTimersInNestedEventLoop before
6744 spinning the EventLoop.
6745
rwlbuis@webkit.org8a772442008-08-24 18:07:32 +000067462008-08-24 Rob Buis <buis@kde.org>
6747
6748 Reviewed by Sam Weinig.
6749
6750 https://bugs.webkit.org/show_bug.cgi?id=20324
6751 A change in SVG Glyph wont show up
6752
6753 Invalidate the glyph cache when the d attribute is set.
6754
6755 Test: svg/custom/glyph-setting-d-attribute.svg
6756
6757 * svg/SVGGlyphElement.cpp:
6758 (WebCore::SVGGlyphElement::invalidateGlyphCache):
6759 (WebCore::SVGGlyphElement::parseMappedAttribute):
6760 (WebCore::SVGGlyphElement::insertedIntoDocument):
6761 (WebCore::SVGGlyphElement::removedFromDocument):
6762 * svg/SVGGlyphElement.h:
6763
mitz@apple.com5b2c3cc2008-08-24 09:18:39 +000067642008-08-24 Dan Bernstein <mitz@apple.com>
6765
6766 Reviewed by Sam Weinig.
6767
6768 - fix https://bugs.webkit.org/show_bug.cgi?id=13864
6769 <rdar://problem/5451470> REGRESSION: Uninitialized value in RenderBlock::calcInlinePrefWidths()
6770
6771 * rendering/RenderText.cpp:
6772 (WebCore::RenderText::trimmedPrefWidths): Moved the assignment to
6773 beginWS and endWS before the early return to ensure that they are
6774 initialized in that case.
6775
cwzwarich@webkit.org53ddf172008-08-23 08:16:54 +000067762008-08-23 Cameron Zwarich <cwzwarich@uwaterloo.ca>
6777
6778 Rubber-stamped by Mark Rowe.
6779
6780 Remove modelines.
6781
6782 * WebCore.pro:
6783 * bridge/testbindings.cpp:
6784 * dom/DocPtr.h:
6785 * loader/SubstituteData.h:
6786 * page/Chrome.cpp:
6787 * page/Chrome.h:
6788 * page/ChromeClient.h:
6789 * page/Frame.h:
6790 * page/FrameLoadRequest.h:
6791 * page/FrameTree.cpp:
6792 * page/FrameTree.h:
6793 * page/Page.h:
6794 * page/mac/ChromeMac.mm:
6795 * platform/network/HTTPHeaderMap.h:
6796 * platform/network/ResourceErrorBase.cpp:
6797 * platform/network/ResourceErrorBase.h:
6798 * platform/network/ResourceHandleInternal.h:
6799 * platform/network/ResourceRequestBase.cpp:
6800 * platform/network/ResourceRequestBase.h:
6801 * platform/network/ResourceResponseBase.cpp:
6802 * platform/network/ResourceResponseBase.h:
6803 * platform/network/cf/ResourceError.h:
6804 * platform/network/cf/ResourceRequest.h:
6805 * platform/network/cf/ResourceRequestCFNet.h:
6806 * platform/network/cf/ResourceResponse.h:
6807 * platform/network/cf/ResourceResponseCFNet.h:
6808 * platform/network/curl/ResourceError.h:
6809 * platform/network/curl/ResourceRequest.h:
6810 * platform/network/curl/ResourceResponse.h:
6811 * platform/network/mac/ResourceError.h:
6812 * platform/network/mac/ResourceErrorMac.mm:
6813 * platform/network/mac/ResourceRequest.h:
6814 * platform/network/mac/ResourceRequestMac.mm:
6815 * platform/network/mac/ResourceResponse.h:
6816 * platform/network/mac/ResourceResponseMac.mm:
6817 * platform/network/qt/ResourceError.h:
6818 * platform/network/qt/ResourceRequest.h:
6819 * platform/network/qt/ResourceResponse.h:
6820 * platform/network/soup/CookieJarSoup.cpp:
6821 * platform/network/soup/ResourceError.h:
6822 * platform/network/soup/ResourceRequest.h:
6823 * platform/network/soup/ResourceResponse.h:
6824
mitz@apple.com57a2f482008-08-23 07:16:41 +000068252008-08-23 Dan Bernstein <mitz@apple.com>
6826
6827 Reviewed by Dave Hyatt.
6828
6829 - fix <rdar://problem/6065143> Reflowed image in first line of table doesn't affect baseline
6830
6831 Test: fast/table/vertical-align-baseline.html
6832
6833 * rendering/RenderTable.cpp:
6834 (WebCore::RenderTable::getBaselineOfFirstLineBox): Added. Returns the
6835 baseline of the first table row, if there is one, -1 otherwise.
6836 * rendering/RenderTable.h:
6837 * rendering/RenderTableCell.cpp:
6838 (WebCore::RenderTableCell::baselinePosition): Changed to follow the
6839 CSS2.1 definition of the baseline of a table cell.
6840 * rendering/RenderTableSection.cpp:
6841 (WebCore::RenderTableSection::getBaselineOfFirstLineBox): Added. Returns
6842 the baseline of the first row in the section.
6843 * rendering/RenderTableSection.h:
6844
jhoneycutt@apple.com88af18d2008-08-22 23:44:32 +000068452008-08-18 Jon Honeycutt <jhoneycutt@apple.com>
6846
6847 Add SPI to make a Windows WebView transparent.
6848
6849 Reviewed by Dan Bernstein.
6850
6851 * platform/graphics/GraphicsContext.h: Add a parameter, hasAlpha, that
6852 determines whether the created context has an alpha channel.
6853 * platform/graphics/win/GraphicsContextCGWin.cpp:
6854 (WebCore::CGContextWithHDC):
6855
timothy@apple.comb63d1172008-08-22 18:39:42 +000068562008-08-22 Timothy Hatcher <timothy@apple.com>
6857
timothy@apple.com964022d2008-08-22 20:35:20 +00006858 Rolls out r35834 because it caused a regression in the Inspector's
6859 Console where some expressions always threw a syntax error.
6860
6861 https://bugs.webkit.org/show_bug.cgi?id=20487
6862
6863 * page/inspector/Console.js:
6864 (Console.prototype._evalInInspectedWindow): Removes parenthesis
6865 around the expression.
6866
68672008-08-22 Timothy Hatcher <timothy@apple.com>
6868
timothy@apple.com056d4782008-08-22 18:39:52 +00006869 Makes getStyleProperty return a value for the overflow property
6870 when overflow-x and overflow-y are equal.
6871
6872 https://bugs.webkit.org/show_bug.cgi?id=20485
6873
6874 Reviewed by Dan Bernstein.
6875
6876 Test: fast/css/overflow-property.html
6877
6878 * css/CSSMutableStyleDeclaration.cpp:
6879 (WebCore::CSSMutableStyleDeclaration::getPropertyValue):
6880
68812008-08-22 Timothy Hatcher <timothy@apple.com>
6882
timothy@apple.comb63d1172008-08-22 18:39:42 +00006883 Fixes a bug where while editing in the Inspector the
6884 sidebar scroll position would jump to the top.
6885
6886 https://bugs.webkit.org/show_bug.cgi?id=20484
6887
6888 Reviewed by Darin Adler.
6889
6890 * page/inspector/treeoutline.js:
6891 (TreeOutline._removeChildren): Remove the offsetTop call that
6892 was forcing a layout, since layout causes scroll positions
6893 to be clamped to the new scrollHeight/Width. Layout will happen
6894 normally when needed.
6895
kevino@webkit.org8271c842008-08-22 16:25:52 +000068962008-08-22 Kevin Ollivier <kevino@theolliviers.com>
6897
6898 wx build fix. Add AccessibilityTable sources.
6899
6900 * WebCoreSources.bkl:
6901
mitz@apple.com9befc872008-08-22 06:29:33 +000069022008-08-21 Dan Bernstein <mitz@apple.com>
6903
6904 Reviewed by Jon Honeycutt and Alexey Proskuryakov.
6905
6906 - fix <rdar://problem/6162701> WebKit should correct Geeza Pro's font metrics
6907
6908 Test: platform/mac/fast/text/international/Geeza-Pro-vertical-metrics-adjustment.html
6909
6910 * platform/graphics/mac/SimpleFontDataMac.mm:
6911 (WebCore::SimpleFontData::platformInit): Add 8% to Geeza Pro's reported
6912 ascent and 100% to its reported descent.
6913
mrowe@apple.comac9b6a52008-08-22 02:07:54 +000069142008-08-21 Kalle Vahlman <kalle.vahlman@movial.com>
6915
6916 Reviewed by Darin Adler.
6917
mrowe@apple.com22eaa172008-08-22 02:10:15 +00006918 https://bugs.webkit.org/show_bug.cgi?id=20267
mrowe@apple.comac9b6a52008-08-22 02:07:54 +00006919 [GTK] Crash on some pages due to a plugin
6920
6921 Fix handling of badly formatted and empty plugin mime descriptions
6922
6923 * plugins/gtk/PluginPackageGtk.cpp:
6924 (WebCore::PluginPackage::fetchInfo):
6925
mrowe@apple.com798b3432008-08-22 02:07:48 +000069262008-08-21 Kevin Watters <kevinwatters@gmail.com>
6927
6928 Reviewed by Darin Adler.
6929
6930 Follow other ports (and IE) in ImageSourceWx.cpp never to return an
6931 animated GIF frame duration of less than 50ms.
6932
6933 * platform/graphics/wx/ImageSourceWx.cpp:
6934 (WebCore::ImageSource::frameDurationAtIndex):
6935
britto@apple.com8ed72772008-08-22 00:39:39 +000069362008-08-21 Maxime Britto <britto@apple.com>
6937
6938 Reviewed by Kevin McCullough.
6939
6940 Test: fast/events/autoscroll-nonscrollable-iframe-in-scrollable-div.html
6941 https://bugs.webkit.org/show_bug.cgi?id=20451
6942
6943 rdar://problem/6166435 Inspector doesn't auto scroll when selecting text (20451)
6944 When we climb up the rendering tree looking for a scrollable renderer, we need to be able to jump outside of an iframe.
6945 This way we can see if what is embedding the iframe can be scrolled even if the iframe content can't.
6946
6947 * page/EventHandler.cpp:
6948 (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.
6949
6950 (WebCore::EventHandler::handleMousePressEvent): ditto
6951
timothy@apple.com5d492192008-08-21 23:54:01 +000069522008-08-21 Anthony Ricaud <rik24d@gmail.com>
6953
6954 Small optimization for when the dividers in the Inspector's
6955 Resources panel are updated.
6956
6957 Reviewed by Tim Hatcher.
6958
6959 * page/inspector/ResourcesPanel.js:
6960 (WebInsector.ResourcesPanel.prototype._updateGraphDividersIfNeeded):
6961 Combind a for loop and clone the divider element.
6962
dino@apple.comaa75e4c2008-08-21 23:35:23 +000069632008-08-21 Chris Marrin <cmarrin@apple.com>
6964
6965 Allow 0 (without units) for Time eg. duration
6966 Fix for https://bugs.webkit.org/show_bug.cgi?id=20467
6967
6968 Reviewed by Dave Hyatt.
6969
6970 Test: css1/units/zero-duration-without-units.html
6971
6972 * css/CSSParser.cpp:
6973 (WebCore::CSSParser::validUnit):
6974
timothy@apple.com29c12d02008-08-21 20:12:47 +000069752008-08-21 Timothy Hatcher <timothy@apple.com>
6976
timothy@apple.comca11cd82008-08-21 20:13:12 +00006977 Make deleting all text while editing a DOM attribute in
6978 the Inspector delete the attribute. This also fixes
6979 an exception that would happen before.
6980
6981 https://bugs.webkit.org/show_bug.cgi?id=20472
6982
6983 Reviewed by Kevin McCullough.
6984
6985 * page/inspector/ElementsPanel.js:
6986 (WebInspector.DOMNodeTreeElement.prototype._attributeEditingCommitted):
6987 Don't check for hasAttributes on the parseElement, continuing
6988 through the function will correctly remove the attribute.
6989 If the parseElement is null, call _editingCancelled not
6990 editingCancelled, this fixes an exception.
6991
69922008-08-21 Timothy Hatcher <timothy@apple.com>
6993
timothy@apple.comde831cf2008-08-21 20:12:59 +00006994 Update the Inspector's Metrics pane when editing in
6995 the Styles pane. This makes sure the metrics shown
6996 always match what the Styles pane shows.
6997
6998 https://bugs.webkit.org/show_bug.cgi?id=20470
6999
7000 Reviewed by Kevin McCullough.
7001
7002 * page/inspector/ElementsPanel.js:
7003 (WebInspector.ElementsPanel): Add event listeners for
7004 the "style edited" and "style property toggled" events,
7005 so the Metrics pane is updated.
7006 (WebInspector.ElementsPanel.prototype._stylesPaneEdited):
7007 Update the Metrics pane.
7008 * page/inspector/StylesSidebarPane.js:
7009 (WebInspector.StylePropertyTreeElement.prototype.toggleEnabled):
7010 Dispatch the "style property toggled" event.
7011 (WebInspector.StylePropertyTreeElement.prototype.editingCancelled):
7012 Dispatch the "style edited" event when the CSS text is restored.
7013 (WebInspector.StylePropertyTreeElement.prototype.applyStyleText):
7014 Dispatch the "style edited" event.
7015
70162008-08-21 Timothy Hatcher <timothy@apple.com>
7017
timothy@apple.com29c12d02008-08-21 20:12:47 +00007018 Make the Inspector's Metrics sidebar pane editable.
7019
7020 https://bugs.webkit.org/show_bug.cgi?id=17218
7021 rdar://problem/5732818
7022
7023 Reviewed by Kevin McCullough.
7024
7025 * page/inspector/ElementsPanel.js:
7026 (WebInspector.ElementsPanel): Add an event listener for
7027 the "metrics edited" event, so the Styles pane is updated.
7028 * page/inspector/MetricsSidebarPane.js:
7029 (WebInspector.MetricsSidebarPane.prototype.update): Remember the node
7030 so future updates work. Add a double click event listener for the
7031 metric values to start editing.
7032 (WebInspector.MetricsSidebarPane.prototype.startEditing):
7033 Call WebInspector.startEditing with some context.
7034 (WebInspector.MetricsSidebarPane.prototype.editingCancelled):
7035 (WebInspector.MetricsSidebarPane.prototype.editingCommitted):
7036 Set the user input on the elements inline style. Fire the
7037 "metrics edited" event.
7038
sfalken@apple.com7e6e5392008-08-21 18:42:44 +000070392008-08-21 Steve Falkenburg <sfalken@apple.com>
7040
7041 Fix a race condition in Windows timer code.
7042 Timer function could end up being called with a 0 timer, leading to a Windows exception.
7043
7044 Don't post a timer message if one is already pending.
7045
7046 Reviewed by Ada Chan.
7047
7048 * platform/win/SharedTimerWin.cpp:
7049 (WebCore::TimerWindowWndProc):
7050 (WebCore::clearTimer):
7051 (WebCore::queueTimerProc):
7052 (WebCore::setSharedTimerFireTime):
7053
timothy@apple.com8d15bcf2008-08-21 16:33:17 +000070542008-08-21 Anthony Ricaud <rik24d@gmail.com>
7055
timothy@apple.com493212c72008-08-21 16:36:06 +00007056 After trying to add the expression, try again with quotes for
7057 easier edition.
7058
7059 https://bugs.webkit.org/show_bug.cgi?id=20466
7060
7061 Reviewed by Tim Hatcher.
7062
7063 * page/inspector/ObjectPropertiesSection.js: Added an
7064 evaluateExpression function.
7065
70662008-08-21 Anthony Ricaud <rik24d@gmail.com>
7067
timothy@apple.com8d15bcf2008-08-21 16:33:17 +00007068 Perform Inspector searches on search event to clear results when
7069 clicking the cross to empty it. Delete the lastQuery when the field
7070 is emptied in order to perform the search if exactly the same query
7071 is entered next.
7072
7073 https://bugs.webkit.org/show_bug.cgi?id=20462
7074
7075 Reviewed by Tim Hatcher.
7076
7077 * page/inspector/inspector.js:
7078
jmalonzo@webkit.orgdd470402008-08-21 11:22:51 +000070792008-08-21 Marco Barisione <marco.barisione@collabora.co.uk>
7080
7081 Reviewed by Mark Rowe.
7082
7083 http://bugs.webkit.org/show_bug.cgi?id=19656
7084 [SOUP] The gio code should call didFail() instead of
7085 didFinishLoading() in case of error
7086
7087 In case of error call didFail() instead of didReceiveResponse() and
7088 didFinishLoading().
7089
7090 * platform/network/soup/ResourceHandleSoup.cpp:
7091 (WebCore::networkErrorForFile):
7092 (WebCore::readCallback):
7093 (WebCore::openCallback):
7094 (WebCore::queryInfoCallback):
7095
mrowe@apple.com72a95b12008-08-21 04:01:51 +000070962008-08-20 Mark Rowe <mrowe@apple.com>
7097
mrowe@apple.com4e593f42008-08-21 06:52:42 +00007098 Reviewed by Jon Honeycutt.
7099
7100 Fix build failure.
7101
7102 * bridge/c/c_instance.cpp:
7103 (KJS::Bindings::CInstance::getPropertyNames): Declare count as uint32_t rather than unsigned
7104 as that is what NPEnumerationFunctionPtr is declared as accepting.
7105
71062008-08-20 Mark Rowe <mrowe@apple.com>
7107
mrowe@apple.com72a95b12008-08-21 04:01:51 +00007108 Reviewed by Dan Bernstein.
7109
7110 Build fix. Handle kCGInterpolationMedium in switch statements if it is available.
7111
7112 * platform/graphics/GraphicsContext.h:
7113 (WebCore::):
7114 * platform/graphics/cg/GraphicsContextCG.cpp:
7115 (WebCore::GraphicsContext::setImageInterpolationQuality):
7116 (WebCore::GraphicsContext::imageInterpolationQuality):
7117
mitz@apple.comaa938792008-08-21 00:33:29 +000071182008-08-20 Dan Bernstein <mitz@apple.com>
7119
7120 Rubber-stamped by John Sullivan.
7121
7122 - rename shouldUpdateWhileHidden to shouldUpdateWhileOffscreen and
7123 rename related methods and variables accordingly.
7124
7125 * WebCore.base.exp:
7126 * page/FrameView.cpp:
7127 (WebCore::FrameViewPrivate::FrameViewPrivate):
7128 (WebCore::FrameView::shouldUpdateWhileOffscreen):
7129 (WebCore::FrameView::setShouldUpdateWhileOffscreen):
7130 * page/FrameView.h:
7131 * platform/ScrollView.h:
7132 * platform/mac/ScrollViewMac.mm:
7133 (WebCore::ScrollView::updateContents):
7134
beidson@apple.com2ace6b12008-08-21 00:13:12 +000071352008-08-20 Brady Eidson <beidson@apple.com>
7136
7137 Reviewed by Mitzpettel
7138
7139 <rdar://problem/6163636> - Many images broken in Mail
7140
7141 This can be traced back to the preload scanner. With that change, CachedResources are created a lot
7142 sooner than before and confuse the WebArchive machinery.
7143
7144 When referencing WebArchive subresources directly through the WebKit API it is appropriate to ignore
7145 such CachedResources since they are placeholders and have not been submitted to the ResourceLoadDelegate
7146 machinery and nothing is known about where the data will eventually come from.
7147
7148 * loader/DocumentLoader.cpp:
7149 (WebCore::DocumentLoader::subresource): Ignore a CachedResource if its preloadResult is
7150 CachedResource::PreloadReferenced.
7151
zecke@webkit.orga8fa0e12008-08-20 22:50:39 +000071522008-08-20 Holger Hans Peter Freyther <zecke@selfish.org>
7153
7154 Unreviewed compile fix
7155
7156 Catch up with the JSValue::type elimination.
7157
7158 * bridge/qt/qt_instance.cpp:
7159 (KJS::Bindings::QtRuntimeObjectImp::construct):
7160 (KJS::Bindings::QtInstance::defaultValue):
7161 * bridge/qt/qt_runtime.cpp:
7162 (KJS::Bindings::QtRuntimeConnectionMethod::call):
7163
mrowe@apple.com2d74ec92008-08-20 22:15:53 +000071642008-08-20 Chris Teague <chris.teague@gmail.com>
7165
7166 Reviewed by Mark Rowe.
7167
7168 Fix https://bugs.webkit.org/show_bug.cgi?id=20449
7169 Bug 20449: Build fails if LOW_BANDWIDTH_DISPLAY is defined
7170
7171 * ChangeLog:
7172 * loader/FrameLoader.cpp:
7173 (WebCore::FrameLoader::switchOutLowBandwidthDisplayIfReady):
7174
simon.fraser@apple.combe1d24c2008-08-20 21:57:22 +000071752008-08-20 Simon Fraser <simon.fraser@apple.com>
7176
7177 Reviewed by Dave Hyatt
7178
7179 getComputedStyle() for webkitTransform should return a transform
7180 that does not have the transform origin baked into it.
7181 https://bugs.webkit.org/show_bug.cgi?id=20464
7182
7183 Test: fast/css/getComputedStyle-transform.html
7184
7185 * css/CSSComputedStyleDeclaration.cpp:
7186 (WebCore::computedTransform):
7187 * rendering/style/RenderStyle.cpp:
7188 (WebCore::RenderStyle::applyTransform):
7189 * rendering/style/RenderStyle.h:
7190
andersca@apple.com021ce772008-08-20 21:04:12 +000071912008-08-20 Josh Aas <joshmoz@gmail.com>
7192
7193 Reviewed and landed by Anders.
7194
7195 <rdar://problem/6163636>
7196 rename NPCocoaEvent's "event" struct to "data" (20446)
7197
7198 * bridge/npapi.h:
7199 (_NPCocoaEvent::):
7200
bdakin@apple.com699d13d2008-08-20 20:46:28 +000072012008-08-20 Beth Dakin <bdakin@apple.com>
7202
darin@apple.com07c80c62008-09-05 18:15:43 +00007203 Reviewed by Darin Adler.
bdakin@apple.com699d13d2008-08-20 20:46:28 +00007204
7205 Fix for <rdar://problem/6145626>
7206 This patch fixes a number of remaining problems getting
7207 disconnected frames to work correctly with markAllMatchesForText()
7208 and findString(). Details inline.
7209
7210 This was a static helper function in Frame, but this patch requires
7211 the same functionality in Editor, so I just added it as a function
7212 on Node.
7213 * dom/Node.cpp:
7214 (WebCore::Node::isInShadowTree):
7215 * dom/Node.h:
7216
7217 * editing/Editor.cpp:
7218 (WebCore::Editor::insideVisibleArea): Returns false if
7219 excludeFromTextSearch() is true.
7220
7221 In a normal (non-disconnected) frame, findString returns a range of
7222 the document node if the text is not found in the frame. I changed
7223 firstVisibleRange and lastVisibleRange to match that behavior when
7224 the text is not found
7225 (WebCore::Editor::firstVisibleRange):
7226 (WebCore::Editor::lastVisibleRange):
7227
7228 Here are the bulk of the changes in the patch. A lot of text was
7229 not being found in disconnected frames because I failed to account
7230 for all of the possible problems associated with shadow trees. That
7231 is fixed here.
7232 (WebCore::Editor::nextVisibleRange):
7233 * editing/Editor.h:
7234
7235 excludeFromTextSearch() is new. It allows a WebKit client to mark a
7236 frame as not-text-searchable through SPI.
7237 * WebCore.base.exp:
7238 * page/Frame.cpp:
7239 (WebCore::Frame::excludeFromTextSearch):
7240 (WebCore::Frame::setExcludeFromTextSearch):
7241 (WebCore::FramePrivate::FramePrivate):
7242 * page/Frame.h:
7243 * page/FramePrivate.h:
7244
7245 (WebCore::Frame::findString):
7246 (WebCore::Frame::markAllMatchesForText): I kept running into an
7247 assertion failure in paining code because of the forced paint on
7248 empty visible rects.
7249
timothy@apple.com301befc2008-08-20 19:10:54 +000072502008-08-20 Timothy Hatcher <timothy@apple.com>
7251
7252 Adds a positon box to the Inspector's Metrics sidebar
7253 pane. When an element is not statically positioned, there
7254 is now a position box that show top, right, bottom and
7255 left computed values.
7256
7257 Reviewed by Kevin McCullough.
7258
7259 * English.lproj/localizedStrings.js: Updated the strings.
7260 * page/inspector/MetricsSidebarPane.js:
7261 (WebInspector.MetricsSidebarPane.prototype.update):
7262 Renamed the boxPartValue function to createBoxPartElement
7263 and made it create the entire element. Made it understand
7264 how to get position style properties. Don't use the figure dash
7265 when 0px is used for positions, since the 0 is meaningful there.
7266 Instead use the figure dash when a position is auto.
7267 * page/inspector/inspector.css: Added a new rule for position.
7268
mrowe@apple.com37686d42008-09-04 00:10:39 +000072692008-08-20 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.com2a5ecc02008-08-20 18:34:56 +00007270
7271 Reviewed by Beth Dakin
7272
7273 Qt build fix
7274
7275 * WebCore.pro:
7276
mitz@apple.comedaa9042008-08-20 18:28:07 +000072772008-08-20 Dan Bernstein <mitz@apple.com>
7278
7279 Reviewed by Anders Carlsson.
7280
7281 - avoid using a deprecated NSScroller method on Leopard
7282
7283 * platform/mac/PlatformScrollBarMac.mm:
7284 (WebCore::PlatformScrollbar::updateThumbPosition):
7285 (WebCore::PlatformScrollbar::updateThumbProportion):
7286
jmalonzo@webkit.org6e0a3082008-08-20 11:40:31 +000072872008-08-20 Jan Michael Alonzo <jmalonzo@webkit.org>
7288
7289 Reviewed by Oliver Hunt.
7290
7291 Gtk build fix
7292
7293 * GNUmakefile.am:
7294 * page/AccessibilityTable.cpp: Change nil to 0
7295 (WebCore::AccessibilityTable::cellForColumnAndRow):
7296
ap@webkit.org01aff702008-08-20 07:23:06 +000072972008-08-19 Alexey Proskuryakov <ap@webkit.org>
7298
7299 Reviewed by Geoff Garen.
7300
7301 Bring back shared JSGlobalData and implicit locking, because too many clients rely on it.
7302
7303 * ForwardingHeaders/kjs/JSLock.h: Added.
7304 * WebCore.vcproj/WebCore.vcproj:
7305 * bindings/js/GCController.cpp:
7306 (WebCore::collect):
7307 (WebCore::GCController::gcTimerFired):
7308 (WebCore::GCController::garbageCollectNow):
7309 * bindings/js/JSCustomSQLStatementCallback.cpp:
7310 (WebCore::JSCustomSQLStatementCallback::handleEvent):
7311 * bindings/js/JSCustomSQLStatementErrorCallback.cpp:
7312 (WebCore::JSCustomSQLStatementErrorCallback::handleEvent):
7313 * bindings/js/JSCustomSQLTransactionCallback.cpp:
7314 (WebCore::JSCustomSQLTransactionCallback::handleEvent):
7315 * bindings/js/JSCustomSQLTransactionErrorCallback.cpp:
7316 (WebCore::JSCustomSQLTransactionErrorCallback::handleEvent):
7317 * bindings/js/JSCustomVoidCallback.cpp:
7318 (WebCore::JSCustomVoidCallback::handleEvent):
7319 * bindings/js/JSCustomXPathNSResolver.cpp:
7320 (WebCore::JSCustomXPathNSResolver::lookupNamespaceURI):
7321 * bindings/js/JSDOMWindowBase.cpp:
7322 (WebCore::DOMWindowTimer::~DOMWindowTimer):
7323 (WebCore::JSDOMWindowBase::clear):
7324 (WebCore::JSDOMWindowBase::timerFired):
7325 * bindings/js/JSEventCustom.cpp:
7326 (WebCore::toJS):
7327 * bindings/js/JSEventListener.cpp:
7328 (WebCore::JSAbstractEventListener::handleEvent):
7329 * bindings/js/JSNSResolver.cpp:
7330 (WebCore::JSNSResolver::lookupNamespaceURI):
7331 * bindings/js/JSNodeFilterCondition.cpp:
7332 (WebCore::JSNodeFilterCondition::acceptNode):
7333 * bindings/js/ScheduledAction.cpp:
7334 (WebCore::ScheduledAction::execute):
7335 * bindings/js/ScriptController.cpp:
7336 (WebCore::ScriptController::evaluate):
7337 (WebCore::ScriptController::clearWindowShell):
7338 (WebCore::ScriptController::createHTMLEventHandler):
7339 (WebCore::ScriptController::createSVGEventHandler):
7340 (WebCore::ScriptController::initScript):
7341 (WebCore::ScriptController::updateDocument):
7342 (WebCore::ScriptController::bindingRootObject):
7343 (WebCore::ScriptController::windowScriptNPObject):
7344 (WebCore::ScriptController::createScriptObjectForPluginElement):
7345 (WebCore::ScriptController::clearScriptObjects):
7346 * bindings/js/ScriptControllerMac.mm:
7347 (WebCore::ScriptController::windowScriptObject):
7348 * bindings/objc/WebScriptObject.mm:
7349 (_didExecute):
7350 (-[WebScriptObject callWebScriptMethod:withArguments:]):
7351 (-[WebScriptObject evaluateWebScript:]):
7352 (-[WebScriptObject setValue:forKey:]):
7353 (-[WebScriptObject valueForKey:]):
7354 (-[WebScriptObject removeWebScriptKey:]):
7355 (-[WebScriptObject stringRepresentation]):
7356 (-[WebScriptObject webScriptValueAtIndex:]):
7357 (-[WebScriptObject setWebScriptValueAtIndex:value:]):
7358 (+[WebScriptObject _convertValueToObjcValue:originRootObject:rootObject:]):
7359 * bridge/NP_jsobject.cpp:
7360 (_NPN_InvokeDefault):
7361 (_NPN_Invoke):
7362 (_NPN_Evaluate):
7363 (_NPN_GetProperty):
7364 (_NPN_SetProperty):
7365 (_NPN_RemoveProperty):
7366 (_NPN_HasProperty):
7367 (_NPN_HasMethod):
7368 (_NPN_Enumerate):
7369 * bridge/c/c_class.cpp:
7370 (KJS::Bindings::CClass::~CClass):
7371 (KJS::Bindings::CClass::methodsNamed):
7372 (KJS::Bindings::CClass::fieldNamed):
7373 * bridge/c/c_instance.cpp:
7374 (KJS::Bindings::CInstance::invokeMethod):
7375 (KJS::Bindings::CInstance::invokeDefaultMethod):
7376 (KJS::Bindings::CInstance::getPropertyNames):
7377 * bridge/c/c_runtime.cpp:
7378 (KJS::Bindings::CField::valueFromInstance):
7379 (KJS::Bindings::CField::setValueToInstance):
7380 * bridge/c/c_utility.cpp:
7381 (KJS::Bindings::convertValueToNPVariant):
7382 (KJS::Bindings::convertNPVariantToValue):
7383 * bridge/jni/jni_class.cpp:
7384 (JavaClass::JavaClass):
7385 (JavaClass::~JavaClass):
7386 * bridge/jni/jni_instance.cpp:
7387 (JavaInstance::stringValue):
7388 * bridge/jni/jni_jsobject.mm:
7389 (JavaJSObject::call):
7390 (JavaJSObject::eval):
7391 (JavaJSObject::getMember):
7392 (JavaJSObject::setMember):
7393 (JavaJSObject::removeMember):
7394 (JavaJSObject::getSlot):
7395 (JavaJSObject::setSlot):
7396 (JavaJSObject::toString):
7397 (JavaJSObject::convertValueToJObject):
7398 (JavaJSObject::convertJObjectToValue):
7399 * bridge/jni/jni_objc.mm:
7400 (KJS::Bindings::dispatchJNICall):
7401 * bridge/jni/jni_runtime.cpp:
7402 (appendClassName):
7403 (JavaMethod::signature):
7404 * bridge/jni/jni_runtime.h:
7405 (KJS::Bindings::JavaString::JavaString):
7406 (KJS::Bindings::JavaString::_commonInit):
7407 (KJS::Bindings::JavaString::~JavaString):
7408 (KJS::Bindings::JavaString::UTF8String):
7409 * bridge/jni/jni_utility.cpp:
7410 (KJS::Bindings::convertValueToJValue):
7411 * bridge/npruntime.cpp:
7412 (_NPN_GetStringIdentifier):
7413 * bridge/objc/objc_instance.mm:
7414 (ObjcInstance::moveGlobalExceptionToExecState):
7415 (ObjcInstance::invokeMethod):
7416 (ObjcInstance::invokeDefaultMethod):
7417 (ObjcInstance::setValueOfUndefinedField):
7418 (ObjcInstance::getValueOfUndefinedField):
7419 * bridge/objc/objc_runtime.mm:
7420 (ObjcField::valueFromInstance):
7421 (ObjcField::setValueToInstance):
7422 * bridge/objc/objc_utility.mm:
7423 (KJS::Bindings::convertValueToObjcValue):
7424 (KJS::Bindings::convertNSStringToString):
7425 (KJS::Bindings::convertObjcValueToValue):
7426 * bridge/qt/qt_instance.cpp:
7427 (KJS::Bindings::QtRuntimeObjectImp::removeFromCache):
7428 (KJS::Bindings::QtInstance::~QtInstance):
7429 (KJS::Bindings::QtInstance::getQtInstance):
7430 (KJS::Bindings::QtInstance::getRuntimeObject):
7431 * bridge/qt/qt_runtime.cpp:
7432 (KJS::Bindings::convertValueToQVariant):
7433 (KJS::Bindings::convertQVariantToValue):
7434 (KJS::Bindings::QtRuntimeMetaMethod::call):
7435 (KJS::Bindings::QtRuntimeConnectionMethod::call):
7436 (KJS::Bindings::QtConnectionObject::QtConnectionObject):
7437 (KJS::Bindings::QtConnectionObject::execute):
7438 * bridge/runtime.cpp:
7439 (KJS::Bindings::Instance::createRuntimeObject):
7440 * bridge/testbindings.cpp:
7441 (main):
7442 * bridge/testbindings.mm:
7443 (main):
7444 * bridge/testqtbindings.cpp:
7445 (main):
7446 * dom/Document.cpp:
7447 (WebCore::Document::~Document):
7448 * dom/Node.cpp:
7449 (WebCore::Node::setDocument):
7450 * history/CachedPage.cpp:
7451 (WebCore::CachedPage::CachedPage):
7452 (WebCore::CachedPage::restore):
7453 (WebCore::CachedPage::clear):
7454 * loader/FrameLoader.cpp:
7455 (WebCore::getString):
7456 * page/InspectorController.cpp:
7457 (WebCore::ConsoleMessage::ConsoleMessage):
7458 (WebCore::XMLHttpRequestResource::XMLHttpRequestResource):
7459 (WebCore::XMLHttpRequestResource::~XMLHttpRequestResource):
7460 (WebCore::getResourceDocumentNode):
7461 (WebCore::search):
7462 (WebCore::inspectedWindow):
7463 (WebCore::wrapCallback):
7464 (WebCore::currentCallFrame):
7465 (WebCore::profiles):
7466 (WebCore::InspectorController::focusNode):
7467 (WebCore::InspectorController::inspectedWindowScriptObjectCleared):
7468 (WebCore::InspectorController::addDatabaseScriptResource):
7469 (WebCore::InspectorController::addScriptProfile):
7470 * page/JavaScriptCallFrame.cpp:
7471 (WebCore::JavaScriptCallFrame::evaluate):
7472 * page/JavaScriptProfileNode.cpp:
7473 (WebCore::getTotalTime):
7474 (WebCore::getSelfTime):
7475 (WebCore::getTotalPercent):
7476 (WebCore::getSelfPercent):
7477 (WebCore::getNumberOfCalls):
7478 (WebCore::getChildren):
7479 (WebCore::getVisible):
7480 * page/Page.cpp:
7481 * page/mac/FrameMac.mm:
7482 * plugins/PluginView.cpp:
7483 (WebCore::PluginView::start):
7484 (WebCore::getString):
7485 (WebCore::PluginView::performRequest):
7486 (WebCore::PluginView::bindingInstance):
7487 * plugins/gtk/PluginViewGtk.cpp:
7488 (WebCore::PluginView::paint):
7489 (WebCore::PluginView::handleKeyboardEvent):
7490 (WebCore::PluginView::handleMouseEvent):
7491 (WebCore::PluginView::setNPWindowRect):
7492 (WebCore::PluginView::stop):
7493 (WebCore::PluginView::init):
7494 * plugins/qt/PluginViewQt.cpp:
7495 (WebCore::PluginView::setNPWindowRect):
7496 (WebCore::PluginView::stop):
7497 (WebCore::PluginView::init):
7498 * plugins/win/PluginViewWin.cpp:
7499 (WebCore::PluginView::dispatchNPEvent):
7500 (WebCore::PluginView::handleKeyboardEvent):
7501 (WebCore::PluginView::handleMouseEvent):
7502 (WebCore::PluginView::setNPWindowRect):
7503 (WebCore::PluginView::stop):
7504 * xml/XMLHttpRequest.cpp:
7505 (WebCore::XMLHttpRequest::clearResponse):
7506 (WebCore::XMLHttpRequest::didFinishLoading):
7507 (WebCore::XMLHttpRequest::didReceiveData):
7508
eric@webkit.orgbac93762008-08-19 23:33:07 +000075092008-08-19 Eric Seidel <eric@webkit.org>
7510
7511 Reviewed by Geoff Garen.
7512
7513 Add the beginnings of Skia graphics support to WebCore
7514 as I try to begin the long process of un-forking the changes
7515 needed to WebCore to make Andriod's WebCore build.
7516
7517 I'll follow this up with actual *Skia.cpp files in a separate patch.
7518
7519 * platform/graphics/AffineTransform.h:
7520 * platform/graphics/FloatPoint.h:
7521 * platform/graphics/FloatRect.h:
7522 * platform/graphics/Gradient.h:
7523 * platform/graphics/GraphicsContext.h:
7524 * platform/graphics/Image.h:
7525 * platform/graphics/ImageBuffer.h:
7526 * platform/graphics/ImageSource.h:
7527 * platform/graphics/IntPoint.h:
7528 * platform/graphics/IntRect.h:
7529 * platform/graphics/Path.h:
7530 * platform/graphics/Pattern.h:
7531 * svg/graphics/SVGPaintServerPattern.h:
7532 * svg/graphics/SVGPaintServerSolid.h:
7533
sfalken@apple.com3f69b332008-08-19 22:34:37 +000075342008-08-19 Steve Falkenburg <sfalken@apple.com>
7535
sfalken@apple.com45d22802008-08-19 22:46:31 +00007536 Fix Windows build more.
7537
7538 * WebCore.vcproj/WebCore.vcproj:
7539
75402008-08-19 Steve Falkenburg <sfalken@apple.com>
7541
sfalken@apple.com3f69b332008-08-19 22:34:37 +00007542 Fix Windows build.
7543
7544 * page/AccessibilityRenderObject.cpp:
7545 (WebCore::AccessibilityRenderObject::canSetFocusAttribute):
7546
mrowe@apple.com37686d42008-09-04 00:10:39 +000075472008-08-19 Chris Fleizach <cfleizach@apple.com>
cfleizach@apple.com7c7b5f32008-08-19 22:05:37 +00007548
7549 Reviewed by Beth Dakin.
7550
7551 <rdar://problem/4003764> Expose tables as AXTables
7552
7553 Tests: accessibility/table-attributes.html
7554 accessibility/table-cell-spans.html
7555 accessibility/table-cells.html
7556 accessibility/table-detection.html
7557 accessibility/table-sections.html
7558 accessibility/table-with-rules.html
7559
7560 * WebCore.xcodeproj/project.pbxproj:
7561 * page/AXObjectCache.cpp:
7562 (WebCore::AXObjectCache::get):
7563 * page/AccessibilityObject.h:
7564 (WebCore::):
7565 (WebCore::AccessibilityObject::isDataTable):
7566 (WebCore::AccessibilityObject::isTableRow):
7567 (WebCore::AccessibilityObject::isTableColumn):
7568 (WebCore::AccessibilityObject::isTableCell):
7569 * page/AccessibilityRenderObject.cpp:
7570 (WebCore::AccessibilityRenderObject::canSetFocusAttribute):
7571 * page/AccessibilityTable.cpp: Added.
7572 (WebCore::AccessibilityTable::AccessibilityTable):
7573 (WebCore::AccessibilityTable::~AccessibilityTable):
7574 (WebCore::AccessibilityTable::create):
7575 (WebCore::AccessibilityTable::isTableExposableThroughAccessibility):
7576 (WebCore::AccessibilityTable::clearChildren):
7577 (WebCore::AccessibilityTable::addChildren):
7578 (WebCore::AccessibilityTable::headerContainer):
7579 (WebCore::AccessibilityTable::columns):
7580 (WebCore::AccessibilityTable::rows):
7581 (WebCore::AccessibilityTable::rowHeaders):
7582 (WebCore::AccessibilityTable::columnHeaders):
7583 (WebCore::AccessibilityTable::cells):
7584 (WebCore::AccessibilityTable::columnCount):
7585 (WebCore::AccessibilityTable::rowCount):
7586 (WebCore::AccessibilityTable::cellForColumnAndRow):
7587 (WebCore::AccessibilityTable::roleValue):
7588 (WebCore::AccessibilityTable::accessibilityIsIgnored):
7589 (WebCore::AccessibilityTable::title):
7590 (WebCore::AccessibilityTable::isDataTable):
7591 * page/AccessibilityTable.h: Added.
7592 * page/AccessibilityTableCell.cpp: Added.
7593 (WebCore::AccessibilityTableCell::AccessibilityTableCell):
7594 (WebCore::AccessibilityTableCell::~AccessibilityTableCell):
7595 (WebCore::AccessibilityTableCell::create):
7596 (WebCore::AccessibilityTableCell::accessibilityIsIgnored):
7597 (WebCore::AccessibilityTableCell::rowIndexRange):
7598 (WebCore::AccessibilityTableCell::columnIndexRange):
7599 * page/AccessibilityTableCell.h: Added.
7600 (WebCore::AccessibilityTableCell::isTableCell):
7601 (WebCore::AccessibilityTableCell::roleValue):
7602 * page/AccessibilityTableColumn.cpp: Added.
7603 (WebCore::AccessibilityTableColumn::AccessibilityTableColumn):
7604 (WebCore::AccessibilityTableColumn::~AccessibilityTableColumn):
7605 (WebCore::AccessibilityTableColumn::create):
7606 (WebCore::AccessibilityTableColumn::setParentTable):
7607 (WebCore::AccessibilityTableColumn::elementRect):
7608 (WebCore::AccessibilityTableColumn::size):
7609 (WebCore::AccessibilityTableColumn::children):
7610 (WebCore::AccessibilityTableColumn::headerObject):
7611 (WebCore::AccessibilityTableColumn::headerObjectForSection):
7612 (WebCore::AccessibilityTableColumn::addChildren):
7613 * page/AccessibilityTableColumn.h: Added.
7614 (WebCore::AccessibilityTableColumn::parentObject):
7615 (WebCore::AccessibilityTableColumn::roleValue):
7616 (WebCore::AccessibilityTableColumn::accessibilityIsIgnored):
7617 (WebCore::AccessibilityTableColumn::isTableColumn):
7618 (WebCore::AccessibilityTableColumn::setColumnIndex):
7619 (WebCore::AccessibilityTableColumn::columnIndex):
7620 * page/AccessibilityTableHeaderContainer.cpp: Added.
7621 (WebCore::AccessibilityTableHeaderContainer::AccessibilityTableHeaderContainer):
7622 (WebCore::AccessibilityTableHeaderContainer::~AccessibilityTableHeaderContainer):
7623 (WebCore::AccessibilityTableHeaderContainer::create):
7624 (WebCore::AccessibilityTableHeaderContainer::children):
7625 (WebCore::AccessibilityTableHeaderContainer::elementRect):
7626 (WebCore::AccessibilityTableHeaderContainer::size):
7627 (WebCore::AccessibilityTableHeaderContainer::addChildren):
7628 * page/AccessibilityTableHeaderContainer.h: Added.
7629 (WebCore::AccessibilityTableHeaderContainer::roleValue):
7630 (WebCore::AccessibilityTableHeaderContainer::setParentTable):
7631 (WebCore::AccessibilityTableHeaderContainer::parentObject):
7632 (WebCore::AccessibilityTableHeaderContainer::accessibilityIsIgnored):
7633 * page/AccessibilityTableRow.cpp: Added.
7634 (WebCore::AccessibilityTableRow::AccessibilityTableRow):
7635 (WebCore::AccessibilityTableRow::~AccessibilityTableRow):
7636 (WebCore::AccessibilityTableRow::create):
7637 (WebCore::AccessibilityTableRow::accessibilityIsIgnored):
7638 (WebCore::AccessibilityTableRow::headerObject):
7639 * page/AccessibilityTableRow.h: Added.
7640 (WebCore::AccessibilityTableRow::isTableRow):
7641 (WebCore::AccessibilityTableRow::roleValue):
7642 (WebCore::AccessibilityTableRow::setRowIndex):
7643 (WebCore::AccessibilityTableRow::rowIndex):
7644 * page/mac/AccessibilityObjectWrapper.mm:
7645 (-[AccessibilityObjectWrapper accessibilityAttributeNames]):
7646 (RoleEntry::):
7647 (-[AccessibilityObjectWrapper roleDescription]):
7648 (-[AccessibilityObjectWrapper accessibilityAttributeValue:]):
7649 (-[AccessibilityObjectWrapper accessibilityParameterizedAttributeNames]):
7650 (-[AccessibilityObjectWrapper accessibilityAttributeValue:forParameter:]):
7651
sfalken@apple.comb83d4692008-08-19 18:39:44 +000076522008-08-19 Steve Falkenburg <sfalken@apple.com>
7653
7654 Build fix.
7655 Add buildfailed support to stop builds early (preventing inaccurate error messages).
7656 Add missing post-build rule to Release.
7657
7658 * WebCore.vcproj/QTMovieWin.vcproj:
7659
timothy@apple.comda3aa632008-08-19 18:33:02 +000076602008-08-19 Keishi Hattori <casey.hattori@gmail.com>
7661
timothy@apple.com7d08c322008-08-19 18:33:27 +00007662 Added support for console.count in the inspector.
7663
7664 Reviewed by Geoff Garen.
7665
7666 * page/Console.cpp:
7667 (WebCore::Console::count):
7668 * page/Console.h:
7669 * page/Console.idl: Added console.count.
7670 * page/InspectorController.cpp:
7671 (WebCore::InspectorController::didCommitLoad): Clears m_counts.
7672 (WebCore::InspectorController::count): Updates the count number
7673 sing "title@source:line" as the identifier, and adds a
7674 message to the console.
7675 * page/InspectorController.h: Added m_counts.
7676
76772008-08-19 Keishi Hattori <casey.hattori@gmail.com>
7678
timothy@apple.comda3aa632008-08-19 18:33:02 +00007679 Clear console.time timers when changing page.
7680
7681 Reviewed by Geoff Garen.
7682
7683 * page/InspectorController.cpp:
7684 (WebCore::InspectorController::didCommitLoad):
7685
adele@apple.com1f2d7e02008-08-19 17:55:58 +000076862008-08-19 Eric Carlson <eric.carlson@apple.com>
7687
7688 Reviewed by Adele.
7689
7690 Fix for <rdar://problem/6154695> Full-page movies flicker while playing
7691 https://bugs.webkit.org/show_bug.cgi?id=20404
7692
7693 Ignore setVisible() when visibility doesn't change.
7694
7695 * platform/graphics/mac/MediaPlayerPrivateQTKit.h:
7696 * platform/graphics/mac/MediaPlayerPrivateQTKit.mm:
7697 (WebCore::MediaPlayerPrivate::MediaPlayerPrivate):
7698 (WebCore::MediaPlayerPrivate::setVisible):
7699
timothy@apple.com9d9821a2008-08-19 17:00:26 +000077002008-08-19 Timothy Hatcher <timothy@apple.com>
7701
timothy@apple.come058a792008-08-19 17:01:12 +00007702 Fixes a bug in the Profile view where switching sort order, then
7703 switching from heavy to tree mode would show the tree in the
7704 previous sort order.
7705
7706 https://bugs.webkit.org/show_bug.cgi?id=20441
7707
7708 Reviewed by Kevin McCullough.
7709
7710 * page/inspector/ProfileView.js:
7711 (WebInspector.ProfileView.prototype._changeView): Call _sortProfile
7712 on the next profile before assigning it to this.profile.
7713 (WebInspector.ProfileView.prototype._sortData): Call _sortProfile.
7714 (WebInspector.ProfileView.prototype._sortProfile): Moves from
7715 _sortData and takes a profile argument. If the profile passed in
7716 matches the this.profile, then call refresh.
7717
77182008-08-18 Timothy Hatcher <timothy@apple.com>
7719
timothy@apple.come525e402008-08-19 17:01:00 +00007720 Changed the default sort order now that heavy view is the default.
7721 Also fixes a bug where the heavy profile was not sorted at first.
7722
7723 https://bugs.webkit.org/show_bug.cgi?id=20440
7724
7725 Reviewed by Kevin McCullough.
7726
7727 * page/inspector/ProfileView.js:
7728 (WebInspector.ProfileView): Changed the default sort column. Also assign
7729 heavyProfile to profile, so the sortSelfTimeDescending call happens
7730 on the heavy profile before assigning to this.profile.
7731
77322008-08-18 Timothy Hatcher <timothy@apple.com>
7733
timothy@apple.comc9287f32008-08-19 17:00:36 +00007734 Add support for editing DOM properties and scope variables by double
7735 clicking a property to enter edit mode.
7736
7737 https://bugs.webkit.org/show_bug.cgi?id=20415
7738
7739 Reviewed by Kevin McCullough.
7740
7741 * page/inspector/ObjectPropertiesSection.js:
7742 (WebInspector.ObjectPropertiesSection): Set editable to true by default.
7743 (WebInspector.ObjectPropertiesSection.prototype.onpopulate):
7744 Factored out code into update, and calls update.
7745 (WebInspector.ObjectPropertiesSection.prototype.update): Moved from onpopulate.
7746 Call removeChildren since this method can be called multiple times now.
7747 (WebInspector.ObjectPropertyTreeElement): Pass an empty title, the title
7748 gets made later in onattach.
7749 (WebInspector.ObjectPropertyTreeElement.prototype.onpopulate): Don't return early
7750 if shouldRefreshChildren is true. Call removeChildren since this method can be
7751 called multiple times now.
7752 (WebInspector.ObjectPropertyTreeElement.prototype.ondblclick): Call startEditing.
7753 (WebInspector.ObjectPropertyTreeElement.prototype.onattach): Call update.
7754 (WebInspector.ObjectPropertyTreeElement.prototype.update): Update the title for
7755 this element (code moved from the constructor.)
7756 (WebInspector.ObjectPropertyTreeElement.prototype.updateSiblings): Recreate all
7757 sibling property elements.
7758 (WebInspector.ObjectPropertyTreeElement.prototype.startEditing): Call
7759 WebInspector.startEditing after rememebring some context.
7760 (WebInspector.ObjectPropertyTreeElement.prototype.editingEnded): Reset the scrollLeft
7761 for the list element, since it might have scrolled during editing.
7762 (WebInspector.ObjectPropertyTreeElement.prototype.editingCancelled): Call editingEnded
7763 then restore the state from the context. Then call update to restore the title.
7764 (WebInspector.ObjectPropertyTreeElement.prototype.editingCommitted): Call editingCancelled
7765 if the user input and the previous input are the same. Call editingEnded, then call applyExpression
7766 to commit the user input.
7767 (WebInspector.ObjectPropertyTreeElement.prototype.applyExpression): Evaluates the input expression
7768 and stores the result on the object for the property name of this element. If the expression is
7769 empty, delete the property and remove the tree element.
7770 * page/inspector/ScopeChainSidebarPane.js:
7771 (WebInspector.ScopeChainSidebarPane.prototype.update): Set the editInSelectedCallFrameWhenPaused
7772 property on each ObjectPropertiesSection.
7773 (WebInspector.ScopeVariableTreeElement.prototype.onattach): Call ObjectPropertyTreeElement's onattach
7774 since it is now implemented.
7775 * page/inspector/ScriptsPanel.js:
7776 (WebInspector.ScriptsPanel.prototype.evaluateInSelectedCallFrame): Added an updateInterface argument
7777 that defaults to true if omitted. It specifies whether to call update on the scope chain.
7778 * page/inspector/inspector.css: New styles.
7779 * page/inspector/treeoutline.js:
7780 (TreeElement.prototype._attach): Fixed an exception that fired when handling the shouldRefreshChildren
7781 change. The nextSibling would exist but have a _listItemNode that didn't match the new parent.
7782
77832008-08-18 Timothy Hatcher <timothy@apple.com>
7784
timothy@apple.com9d9821a2008-08-19 17:00:26 +00007785 Surround the expression to be evaluated in parenthesis so the
7786 result of the eval is the result of the whole expression not
7787 the last potential sub-expression. So evaluating {x: 123}
7788 will show the Object not 123.
7789
7790 https://bugs.webkit.org/show_bug.cgi?id=20428
7791
7792 Reviewed by Kevin McCullough.
7793
7794 * page/inspector/Console.js:
7795 (Console.prototype._evalInInspectedWindow): Add parenthesis
7796 around the expression. And add couple comments.
7797
kmccullough@apple.come8ac2f32008-08-19 16:38:06 +000077982008-08-19 Kevin McCullough <kmccullough@apple.com>
7799
7800 Reviewed by Geoff.
7801
7802 -Implement a page() function to extract a common code pattern.
7803
7804 * WebCore.xcodeproj/project.pbxproj:
7805 * page/Console.cpp:
7806 (WebCore::Console::addMessage):
7807 (WebCore::Console::error):
7808 (WebCore::Console::info):
7809 (WebCore::Console::log):
7810 (WebCore::Console::dir):
7811 (WebCore::Console::assertCondition):
7812 (WebCore::Console::time):
7813 (WebCore::Console::timeEnd):
7814 (WebCore::Console::group):
7815 (WebCore::Console::groupEnd):
7816 (WebCore::Console::finishedProfiling):
7817 (WebCore::Console::warn):
7818 (WebCore::Console::framePage):
7819 * page/Console.h:
7820
darin@apple.com349e1eb2008-08-19 04:39:04 +000078212008-08-12 Darin Adler <darin@apple.com>
7822
7823 Reviewed by Geoff.
7824
7825 - eliminate JSValue::type()
7826
7827 * bridge/c/c_instance.cpp:
7828 (KJS::Bindings::CInstance::defaultValue): Take PreferredPrimitiveType
7829 argument instead of JSType argument. Removed unneeded code to handle
7830 boolean, since that's never passed.
7831 * bridge/c/c_instance.h: Ditto.
7832
7833 * bridge/c/c_utility.cpp:
7834 (KJS::Bindings::convertValueToNPVariant): Use JSValue::is functions
7835 instead of JSValue::type(). Removed unneeded code to handle
7836 "unspecified".
7837
7838 * bridge/jni/jni_instance.cpp:
7839 (JavaInstance::defaultValue): Take PreferredPrimitiveType argument
7840 instead of JSType argument. Removed unneeded code to handle boolean.
7841 * bridge/jni/jni_instance.h: Ditto.
7842
7843 * bridge/jni/jni_jsobject.mm:
7844 (JavaJSObject::convertValueToJObject): Use JSValue::is functions
7845 instead of JSValue::type().
7846
7847 * bridge/objc/objc_instance.h: Take PreferredPrimitiveType argument
7848 instead of JSType argument. Removed unused argument.
7849 * bridge/objc/objc_instance.mm:
7850 (ObjcInstance::getValueOfUndefinedField): Removed unused argument.
7851 (ObjcInstance::defaultValue): Take PreferredPrimitiveType argument
7852 instead of JSType argument. Removed unneeded code to handle boolean
7853 and another dead code path for unknown types.
7854
7855 * bridge/objc/objc_runtime.h: Take PreferredPrimitiveType argument
7856 instead of JSType argument. Removed override of type() that caused
7857 the fallback object to return "UndefinedType" when there is no
7858 invokeUndefinedMethodFromWebScript:withArguments: method defined.
7859 That didn't accomplish much, since most checks for undefined don't
7860 ever call type().
7861 * bridge/objc/objc_runtime.mm:
7862 (ObjcFallbackObjectImp::defaultValue): Ditto.
7863
7864 * bridge/qt/qt_instance.cpp:
7865 (KJS::Bindings::QtInstance::defaultValue): Take PreferredPrimitiveType
7866 argument instead of JSType argument. Removed unneeded code to handle
7867 boolean.
7868 * bridge/qt/qt_instance.h: Ditto.
7869
7870 * bridge/runtime.h:
7871 (KJS::Bindings::Instance::getValueOfUndefinedField): Removed
7872 unsed argument.
7873 * bridge/runtime_object.cpp:
7874 (RuntimeObjectImp::defaultValue): Take PreferredPrimitiveType
7875 argument instead of JSType argument.
7876 * bridge/runtime_object.h: Ditto.
7877
britto@apple.comaf7f8382008-08-19 00:42:13 +000078782008-08-18 Maxime Britto <britto@apple.com>
7879
7880 Reviewed by Adele.
7881
7882 <rdar://6157207> Mouse pointer does not change when new window is opened after pan-scrolling original window
7883 Related to the discussion from rdar://6102511 , we should disable every key event (except for the esc key which stops the panning).
7884 We shouldn't be able to create another window while we are in pan scrolling.
7885 Other browsers behaviors :
7886 FF3 : Most of the keys are disabled, there is no way to create another window while in panscroll mode
7887 IE7 : Keys are not disabled but stops immediately the panning.
7888 This patch matches FF3 behavior by disabling every key but the esc key.
7889
7890 * page/EventHandler.cpp:
7891 (WebCore::EventHandler::stopAutoscrollTimer): Change the cursor back to the regular arrow cursor when the pannning is stopped.
7892 (WebCore::EventHandler::keyEvent): When a key event is received while in panning or autoscroll we swallow the event early.
7893
mitz@apple.com12404d82008-08-19 00:20:38 +000078942008-08-18 Dan Bernstein <mitz@apple.com>
7895
7896 Reviewed by Dave Hyatt.
7897
7898 - fix <rdar://problem/5862634> REGRESSION (3.1.1): In iChat, inline image not resizable past current size after another IM is received
7899
7900 Test: fast/replaced/max-width-percent.html
7901
7902 Added an includeMaxWidth boolean to RenderBox::calcReplaedWidth().
7903 When false, max-width is not factored into the
7904 calculation.
7905 Changed RenderReplaced and subclasses' calcPrefWidths() to call
7906 calcReplacedWidth(false) and then apply max-width only if it has a
7907 fixed, positive value.
7908
7909 * rendering/RenderBox.cpp:
7910 (WebCore::RenderBox::calcReplacedWidth):
7911 * rendering/RenderBox.h:
7912 * rendering/RenderImage.cpp:
7913 (WebCore::RenderImage::calcReplacedWidth):
7914 (WebCore::RenderImage::calcPrefWidths):
7915 * rendering/RenderImage.h:
7916 * rendering/RenderReplaced.cpp:
7917 (WebCore::RenderReplaced::calcPrefWidths):
7918 * rendering/RenderSVGRoot.cpp:
7919 (WebCore::RenderSVGRoot::calcPrefWidths):
7920 * rendering/RenderVideo.cpp:
7921 (WebCore::RenderVideo::calcReplacedWidth):
7922 (WebCore::RenderVideo::calcPrefWidths):
7923 * rendering/RenderVideo.h:
7924
mrowe@apple.comced88732008-08-18 22:47:28 +000079252008-08-18 Daniel Macks <dmacks@netspace.org>
7926
7927 Reviewed by Mark Rowe.
7928
7929 https://bugs.webkit.org/show_bug.cgi?id=20410
7930 More portable/self-documenting replacement for SIZE_MAX.
7931
7932 * platform/network/curl/FormDataStreamCurl.cpp:
7933 (WebCore::FormDataStream::read):
7934
79352008-08-18 Simon Fraser <simon.fraser@apple.com>
simon.fraser@apple.com6040db32008-08-18 22:11:10 +00007936
7937 Reviewed by Dave Hyatt
7938
7939 Need to make sure we have an Animation in the AnimationList
7940 before setting the initial value.
7941 https://bugs.webkit.org/show_bug.cgi?id=20408
7942
7943 Test: fast/css/transition_shorthand_parsing.html
7944
7945 * css/CSSStyleSelector.cpp:
7946
kmccullough@apple.com64cb2fd2008-08-18 19:55:35 +000079472008-08-18 Kevin McCullough <kmccullough@apple.com>
7948
kmccullough@apple.com707bd362008-08-18 20:21:57 +00007949 Reviewed by Tim.
7950
7951 <rdar://problem/6150593> JSProfiler: Empty profiles disappear when there
7952 is another profile.
7953
7954 * page/inspector/ProfilesPanel.js:
7955
79562008-08-18 Kevin McCullough <kmccullough@apple.com>
7957
kmccullough@apple.com64cb2fd2008-08-18 19:55:35 +00007958 Reviewed by Geoff.
7959
7960 <rdar://problem/6150642> REGRESSION: Closing the Web Inspector clears
7961 all console messages
7962
7963 * page/inspector/Console.js:
7964
jmalonzo@webkit.org5d1e0482008-08-18 11:20:11 +000079652008-08-18 Dirk Schulze <vbs85@gmx.de>
7966
7967 Reviewed by Eric Seidel.
7968
7969 Fixed Canvas for Cairo. Stroke and fill colors didn't work after
7970 the canvas clean up.
7971
7972 https://bugs.webkit.org/show_bug.cgi?id=20405
7973
7974 * html/CanvasRenderingContext2D.cpp:
7975 (WebCore::CanvasRenderingContext2D::fill):
7976 (WebCore::CanvasRenderingContext2D::stroke):
7977 (WebCore::CanvasRenderingContext2D::fillRect):
7978
timothy@apple.comc5e1f8d2008-08-18 03:21:46 +000079792008-08-17 Timothy Hatcher <timothy@apple.com>
7980
7981 Complete in scope variables in the Console when paused.
7982
7983 https://bugs.webkit.org/show_bug.cgi?id=19115
7984
7985 Reviewed by Geoffrey Garen.
7986
7987 * page/inspector/Console.js:
7988 (WebInspector.Console.prototype.completions): If the expressionString
7989 is null or empty and the debugger is paused, call variablesInScopeForSelectedCallFrame
7990 to get an object that declares all the in scope variables. That way
7991 "top level" expressions are completed.
7992 * page/inspector/ScriptsPanel.js:
7993 (WebInspector.ScriptsPanel.prototype.variablesInScopeForSelectedCallFrame):
7994 Return an object that has all the variables that are in scope for the
7995 selected call frame. The value of each property is just true.
7996 The return object is useful for quick lookups or auto completion.
7997
cwzwarich@webkit.orgac715282008-08-17 21:34:46 +000079982008-08-17 Cameron Zwarich <cwzwarich@uwaterloo.ca>
7999
8000 Not reviewed.
8001
8002 Speculative Qt build fix.
8003
8004 * bridge/qt/qt_runtime.cpp:
8005 (KJS::Bindings::convertValueToQVariant):
8006 (KJS::Bindings::QtRuntimeMethod::QtRuntimeMethod):
8007
ggaren@apple.comfea43532008-08-17 20:23:49 +000080082008-08-17 Geoffrey Garen <ggaren@apple.com>
8009
8010 Reviewed by Cameron Zwarich.
ggaren@apple.com6e53d0a2008-08-17 20:28:37 +00008011
8012 Updated project files to XCode 3.1.
8013
8014 * manual-tests/NPN_Invoke/NPN_Invoke.xcodeproj/project.pbxproj:
8015
80162008-08-17 Geoffrey Garen <ggaren@apple.com>
8017
8018 Reviewed by Cameron Zwarich.
ggaren@apple.comfea43532008-08-17 20:23:49 +00008019
8020 Made room for a free word in JSCell.
8021
8022 Changed JSDOMWindowBase to store its auxiliary data in a subclass of
8023 JSGlobalData, so the two could share a pointer.
8024
8025 Added a bunch of ASSERTs, to help catch over-sized objects.
8026
mrowe@apple.com13570292008-08-16 06:48:10 +000080272008-08-15 Mark Rowe <mrowe@apple.com>
8028
mitz@apple.comb96c1b92008-08-17 03:28:52 +00008029 Reviewed by Dan Bernstein.
8030
8031 Disable dead code stripping in debug builds.
8032
8033 * Configurations/Base.xcconfig:
8034 * WebCore.xcodeproj/project.pbxproj:
8035
80362008-08-15 Mark Rowe <mrowe@apple.com>
8037
mrowe@apple.com13570292008-08-16 06:48:10 +00008038 Rubber-stamped by Geoff Garen.
8039
8040 <rdar://problem/6139914> Please include a _debug version of JavaScriptCore framework
8041
8042 * Configurations/Base.xcconfig: Factor out the debug-only settings so that they can shared
8043 between the Debug configuration and debug Production variant.
8044 * WebCore.xcodeproj/project.pbxproj: Enable the debug variant.
8045
antti@apple.coma05e8b02008-08-15 22:58:06 +000080462008-08-15 Antti Koivisto <antti@apple.com>
8047
8048 Reviewed by Anders.
8049
8050 Don't start preloading body resources before the head is complete. This prevents
8051 body preloads from slowing down initial display when there is limited amount
8052 of bandwidth available.
8053
8054 Works by queuing up found body preloads to DocLoader and only issuing them
8055 after document has rendering.
8056
8057 With bandwidth capped to 300kbit/s this speeds up cnn.com initial display by ~25% or 5s
8058 without affecting complete load time.
8059
8060 * html/PreloadScanner.cpp:
8061 (WebCore::PreloadScanner::PreloadScanner):
8062 (WebCore::PreloadScanner::scanningBody):
8063 (WebCore::PreloadScanner::emitTag):
8064 (WebCore::PreloadScanner::emitCSSRule):
8065 * html/PreloadScanner.h:
8066 * loader/DocLoader.cpp:
8067 (WebCore::DocLoader::preload):
8068 (WebCore::DocLoader::checkForPendingPreloads):
8069 (WebCore::DocLoader::requestPreload):
8070 * loader/DocLoader.h:
8071 * loader/loader.cpp:
8072 (WebCore::Loader::Host::didFinishLoading):
8073 (WebCore::Loader::Host::didFail):
8074
adachan@apple.com94ac38d2008-08-15 21:08:40 +000080752008-08-15 Ada Chan <adachan@apple.com>
8076
8077 Use item's computed style if the render style is 0 before falling back to the <select>'s style.
8078 This way style set on an <hr> within a <select> will be honored.
8079
8080 Reviewed by Dave Hyatt and Dan Bernstein.
8081
8082 * rendering/RenderMenuList.cpp:
8083 (WebCore::RenderMenuList::itemStyle):
8084
antti@apple.com9f7911472008-08-15 20:48:06 +000080852008-08-15 Antti Koivisto <antti@apple.com>
8086
8087 Reviewed by Oliver.
8088
8089 Some loader performance tweaks:
8090 - Make stylesheets highest priority instead of scripts. We block script execution on stylesheets.
8091 Especially if a stylesheet @imports other stylesheets it is important to get them to the front of the queue
8092 to not delay rendering.
8093 - Issue the first resource load for a host immediately even if the resource is low priority. TCP connection setup
8094 can take long time when latency is high so it is good to get started early.
8095 - When the document is fully parsed and stylesheets have been loaded there is no need to keep managing the
8096 load queues. Issue remaining loads to the network layer.
8097
8098 * loader/loader.cpp:
8099 (WebCore::Loader::determinePriority):
8100 (WebCore::Loader::load):
8101 (WebCore::Loader::Host::servePendingRequests):
8102 * loader/loader.h:
8103
timothy@apple.com2d974c32008-08-15 18:35:39 +000081042008-08-15 Timothy Hatcher <timothy@apple.com>
8105
8106 Detach the script debugger when the Web Inspector's window closes.
8107 This has always been the intended design, but never fully implemented.
8108
8109 https://bugs.webkit.org/show_bug.cgi?id=20402
8110
8111 Reviewed by Adam Roben.
8112
8113 * page/InspectorController.cpp:
8114 (WebCore::InspectorController::setWindowVisible): Call stopDebugging()
8115 if the window is no longer visible.
8116
hausmann@webkit.orgbb4b9142008-08-15 18:11:34 +000081172008-08-15 HÃ¥vard Wall <hwall@trolltech.com>
8118
8119 Reviewed by Simon.
8120
hausmann@webkit.org58144a72008-08-15 18:12:08 +00008121 Fixes: compile with QT_NO_CONTEXTMENU
8122
8123 * platform/qt/PlatformMouseEventQt.cpp:
8124 (WebCore::PlatformMouseEvent::PlatformMouseEvent):
8125 * platform/qt/PlatformScrollBarQt.cpp:
8126 (WebCore::PlatformScrollbar::handleMouseMoveEvent):
8127 (WebCore::PlatformScrollbar::handleContextMenuEvent):
8128
81292008-08-15 HÃ¥vard Wall <hwall@trolltech.com>
8130
8131 Reviewed by Simon.
8132
hausmann@webkit.orgbb4b9142008-08-15 18:11:34 +00008133 Fixes: compile with QT_NO_WHEELEVENT
8134
8135 * platform/qt/WheelEventQt.cpp:
8136 (WebCore::PlatformWheelEvent::PlatformWheelEvent):
8137
timothy@apple.com4889e612008-08-15 17:06:14 +000081382008-08-15 Keishi Hattori <casey.hattori@gmail.com>
8139
timothy@apple.comd64639c2008-08-15 17:48:36 +00008140 Fixed Bug 20210: Console groups are incorrect when closing and reopening the Inspector
8141
8142 https://bugs.webkit.org/show_bug.cgi?id=20210
8143
8144 Reviewed by Tim Hatcher.
8145
8146 * page/Console.cpp:
8147 (WebCore::Console::group):
8148 (WebCore::Console::groupEnd):
8149 * page/Console.h:
8150 (WebCore::): Removed GroupTitleMessageLevel. Added StartGroupMessaageLevel and EndGroupMessageLevel.
8151 * page/InspectorController.cpp:
8152 (WebCore::InspectorController::startGroup): Increments group level by
8153 one and adds console message with StartGroupMessaageLevel.
8154 (WebCore::InspectorController::endGroup): Decrements group level by one
8155 and adds console message with EndGroupMessaageLevel.
8156 * page/InspectorController.h:
8157 * page/inspector/Console.js:
8158 (WebInspector.Console.prototype.addMessage): Creates new ConsoleGroup
8159 if the message is StartGroupMessaageLevel.
8160 (WebInspector.ConsoleMessage.prototype.toMessageElement):
8161 (WebInspector.ConsoleGroup.prototype.addMessage):
8162 * page/inspector/inspector.js:
8163
81642008-08-15 Keishi Hattori <casey.hattori@gmail.com>
8165
timothy@apple.com7310b6a2008-08-15 17:35:22 +00008166 Adds support for console.dir to the Inspector
8167
8168 https://bugs.webkit.org/show_bug.cgi?id=19155
8169
8170 Reviewed by Tim Hatcher.
8171
8172 * bindings/js/JSConsoleCustom.cpp:
8173 (WebCore::JSConsole::dir):
8174 * page/Console.cpp:
8175 (WebCore::Console::dir):
8176 * page/Console.h: Added ObjectMessageLevel.
8177 * page/Console.idl: Added console.dir.
8178 * page/inspector/Console.js:
8179 (WebInspector.ConsoleMessage.prototypet.toMessageElement): Creates an
8180 ObjectPropertiesSection if the MessageLevel is Object.
8181 * page/inspector/ObjectPropertiesSection.js: "in" operator can't be
8182 used on primitive data types.
8183 * page/inspector/inspector.css:
8184
81852008-08-15 Keishi Hattori <casey.hattori@gmail.com>
8186
timothy@apple.com4889e612008-08-15 17:06:14 +00008187 Adds support for clear() in the Inspector console.
8188
8189 https://bugs.webkit.org/show_bug.cgi?id=19873
8190
8191 Reviewed by Tim Hatcher.
8192
8193 * page/inspector/Console.js:
8194
timothy@apple.com12c5b5d2008-08-15 17:02:44 +000081952008-08-15 Anthony Ricaud <rik24d@gmail.com>
8196
8197 Cmd-F on Mac or Ctrl-F on other platforms now focus the search field.
8198
8199 Platform distinction and modifier key matching adjusted
8200 by Daniel Jalkut <jalkut@red-sweater.com>
8201
8202 Bug 16313: text search (find) keybindings should work in the Web Inspector
8203 https://bugs.webkit.org/show_bug.cgi?id=16313
8204
8205 Reviewed by Tim Hatcher.
8206
8207 * page/inspector/inspector.js: Added a case for the F key
8208
timothy@apple.coma5ba4392008-08-15 16:50:26 +000082092008-08-15 Keishi Hattori <casey.hattori@gmail.com>
8210
8211 Fix for error when the string doesn't contain a webkit-profile link.
8212
8213 https://bugs.webkit.org/show_bug.cgi?id=20399
8214
8215 Reviewed by Tim Hatcher.
8216
8217 * page/inspector/inspector.js:
8218
timothy@apple.com895b2652008-08-15 16:33:27 +000082192008-08-15 Timothy Hatcher <timothy@apple.com>
8220
8221 Fixes two bugs where JavaScript could be executed from the page
8222 while the debugger is paused.
8223
8224 The first issue was JSLazyEventListener not checking the paused
8225 state before parsing the code.
8226
8227 The second issue was with the PageGroup version of
8228 JavaScriptDebugServer::setJavaScriptPaused always passing false
8229 to the Page version of JavaScriptDebugServer::setJavaScriptPaused,
8230 and not the paused argument.
8231
8232 https://bugs.webkit.org/show_bug.cgi?id=20284
8233
8234 Reviewed by Adam Roben.
8235
8236 * bindings/js/JSEventListener.cpp:
8237 (WebCore::JSLazyEventListener::parseCode): Check the paused
8238 state of the ScriptController. Return early if paused.
8239 * manual-tests/inspector/debugger-execution-while-paused.html: Added.
8240 * page/JavaScriptDebugServer.cpp:
8241 (WebCore::JavaScriptDebugServer::setJavaScriptPaused):
8242 Pass the paused argument to the Page version of setJavaScriptPaused.
8243
ap@webkit.orgbe495d32008-08-15 07:43:48 +000082442008-08-15 Alexey Proskuryakov <ap@webkit.org>
8245
8246 Reviewed by Geoff Garen.
8247
8248 JSStringRef is created context-free, but can get linked to one via an identifier table,
8249 breaking an implicit API contract.
8250
8251 * page/InspectorController.cpp:
8252 (WebCore::jsStringRef):
8253 (WebCore::InspectorController::didParseSource):
8254 (WebCore::InspectorController::failedToParseSource):
8255 * page/JavaScriptProfile.cpp:
8256 (WebCore::getTitleCallback):
8257 Updated for JavaScriptCore changes.
8258
kevino@webkit.org8fe09ff2008-08-15 05:10:57 +000082592008-08-14 Kevin Ollivier <kevino@theolliviers.com>
8260
8261 wx !USE(WXGC) build fix. This is necessary until we find a way to replace GDI with
8262 an alternative that performs reasonably well. (GDI+ is too slow in many cases.)
8263
8264 * platform/graphics/AffineTransform.h:
8265
adele@apple.com2b2e2f82008-08-15 00:53:36 +000082662008-08-14 Eric Carlson <eric.carlson@apple.com>
8267
8268 Reviewed by Adele.
8269
8270 Fix for https://bugs.webkit.org/show_bug.cgi?id=20388
8271 <video> elements on Windows never becomes visible when a page is restored from the cache
8272
8273 Always pass "set" calls down to MediaPlayerPrivate instead of only when the
8274 value is different from the cached value. Let the implementation decide when
8275 to avoid work because nothing has changed.
8276
8277 * platform/graphics/MediaPlayer.cpp:
8278 (WebCore::MediaPlayer::setVolume):
8279 (WebCore::MediaPlayer::setRate):
8280 (WebCore::MediaPlayer::setRect):
8281 (WebCore::MediaPlayer::setVisible):
8282
timothy@apple.comda810f42008-08-14 23:57:14 +000082832008-08-14 Keishi Hattori <casey.hattori@gmail.com>
8284
8285 Make Firebug command line API respect predefined variables.
8286
timothy@apple.com90751f02008-08-14 23:58:19 +00008287 https://bugs.webkit.org/show_bug.cgi?id=20385
8288
timothy@apple.comda810f42008-08-14 23:57:14 +00008289 Reviewed by Tim Hatcher.
8290
8291 * page/inspector/Console.js:
8292
weinig@apple.com4b51d002008-08-14 23:33:22 +000082932008-08-14 Sam Weinig <sam@webkit.org>
8294
8295 Reviewed by Geoffrey Garen and Timothy Hatcher.
8296
8297 Allow programatically setting the HTMLTokenizers time delay and chunk size
8298 which are used for determining how aggressively we yield.
8299
8300 * WebCore.base.exp:
8301 * html/HTMLTokenizer.cpp:
8302 (WebCore::HTMLTokenizer::begin):
8303 (WebCore::HTMLTokenizer::continueProcessing):
8304 * html/HTMLTokenizer.h:
8305 * page/Page.cpp:
8306 (WebCore::Page::Page):
8307 (WebCore::Page::setCustomHTMLTokenizerTimeDelay):
8308 (WebCore::Page::setCustomHTMLTokenizerChunkSize):
8309 * page/Page.h:
8310 (WebCore::Page::hasCustomHTMLTokenizerTimeDelay):
8311 (WebCore::Page::customHTMLTokenizerTimeDelay):
8312 (WebCore::Page::hasCustomHTMLTokenizerChunkSize):
8313 (WebCore::Page::customHTMLTokenizerChunkSize):
8314
eric@webkit.org89613d22008-08-14 23:19:17 +000083152008-08-14 Eric Seidel <eric@webkit.org>
8316
eric@webkit.org7e897c32008-08-14 23:20:00 +00008317 Reviewed by Beth.
8318
8319 Move us one step closer to cross-platform svg/graphics code
8320
8321 * WebCore.xcodeproj/project.pbxproj:
8322 * html/CanvasStyle.cpp:
8323 * platform/graphics/Color.cpp:
8324 (WebCore::colorWithOverrideAlpha):
8325 * platform/graphics/Color.h:
8326 * svg/graphics/cg/CgSupport.cpp:
8327 (WebCore::applyStrokeStyleToContext):
8328 (WebCore::strokeBoundingBox):
8329 * svg/graphics/cg/SVGPaintServerSolidCg.cpp:
8330 (WebCore::SVGPaintServerSolid::setup):
8331
83322008-08-14 Eric Seidel <eric@webkit.org>
8333
eric@webkit.org4f490652008-08-14 23:19:31 +00008334 Reviewed by Alexey.
8335
eric@webkit.org73fa9d12008-08-14 23:19:44 +00008336 Remove un-need includes from HTMLCanvas and use the
8337 Gradient platform abstraction in one place in CanvasStyle
8338
8339 * html/CanvasRenderingContext2D.cpp:
8340 (WebCore::CanvasRenderingContext2D::fillRect):
8341 * html/CanvasStyle.cpp:
8342 * html/HTMLCanvasElement.cpp:
8343
83442008-08-14 Eric Seidel <eric@webkit.org>
8345
8346 Reviewed by Alexey.
8347
eric@webkit.org4f490652008-08-14 23:19:31 +00008348 Clean up GlyphBuffer.h, removing more #ifdefs
8349
8350 * platform/graphics/GlyphBuffer.h:
8351 (WebCore::GlyphBuffer::glyphAt):
8352 (WebCore::GlyphBuffer::advanceAt):
8353 (WebCore::GlyphBuffer::add):
8354
83552008-08-14 Eric Seidel <eric@webkit.org>
8356
eric@webkit.org89613d22008-08-14 23:19:17 +00008357 Reviewed by Sam.
8358
8359 Clean up AffineTransform.h, removing #ifdefs
8360
8361 * platform/graphics/AffineTransform.h:
8362 * platform/graphics/cairo/AffineTransformCairo.cpp:
8363 * platform/graphics/cg/AffineTransformCG.cpp:
8364 * platform/graphics/qt/AffineTransformQt.cpp:
8365 * platform/graphics/wx/AffineTransformWx.cpp:
8366
mitz@apple.com551d6252008-08-14 23:08:09 +000083672008-08-14 Dan Bernstein <mitz@apple.com>
8368
mitz@apple.com94c1a7d2008-08-14 23:12:34 +00008369 - fix non-CG builds by adding an ImageSource::frameSizeAtIndex() that returns size().
8370
8371 * platform/graphics/cairo/ImageSourceCairo.cpp:
8372 (WebCore::ImageSource::frameSizeAtIndex):
8373 * platform/graphics/qt/ImageSourceQt.cpp:
8374 (WebCore::ImageSource::frameSizeAtIndex):
8375 * platform/graphics/wx/ImageSourceWx.cpp:
8376 (WebCore::ImageSource::frameSizeAtIndex):
8377
83782008-08-14 Dan Bernstein <mitz@apple.com>
8379
mitz@apple.com551d6252008-08-14 23:08:09 +00008380 Reviewed by Brady Eidson.
8381
8382 - fix <rdar://problem/5993323> REGRESSION (r34210): Apple.com favicon appears stretched/clipped
8383
8384 * platform/graphics/BitmapImage.cpp:
8385 (WebCore::BitmapImage::BitmapImage): Added initialization of
8386 m_hasUniformFrameSize.
8387 (WebCore::BitmapImage::cacheFrame): Added code to get the size of the
8388 cached frame for use in decoded size computation and for setting
8389 m_hasUniformFrameSize.
8390 (WebCore::BitmapImage::currentFrameSize): Added.
8391 (WebCore::BitmapImage::dataChanged): Added code to reset
8392 m_hasUniformFrameSize.
8393 * platform/graphics/BitmapImage.h: Added currentFrameSize() and
8394 m_hasUniformFrameSize.
8395 * platform/graphics/ImageSource.h: Added frameSizeAtIndex().
8396 * platform/graphics/cg/ImageCG.cpp:
8397 (WebCore::BitmapImage::draw): Changed to use currentFrameSize(). This
8398 fixes the bug, which resulted from assuming that the frame being drawn
8399 was the same size as the first frame.
8400 * platform/graphics/cg/ImageSourceCG.cpp:
8401 (WebCore::ImageSource::frameSizeAtIndex): Renamed size() to this and
8402 changed to get the size of the frame at the given index.
8403 (WebCore::ImageSource::size): Added. Returns frameSizeAtIndex(0).
8404
simon.fraser@apple.com50954e52008-08-14 23:04:41 +000084052008-08-13 Simon Fraser <simon.fraser@apple.com>
8406
8407 Reviewed by Eric Seidel
8408
8409 Fix @font-face inside @media rule crash.
8410 https://bugs.webkit.org/show_bug.cgi?id=20367
8411
8412 Test: fast/css/font-face-in-media-rule.html
8413
8414 * css/CSSStyleSelector.cpp:
8415 (WebCore::CSSRuleSet::addRulesFromSheet):
8416
kevino@webkit.org141c4602008-08-14 22:52:55 +000084172008-08-14 Kevin Ollivier <kevino@theolliviers.com>
8418
8419 wx build fixes after recent changes to Canvas and Image classes.
8420
8421 * platform/graphics/Pattern.h:
8422 * platform/graphics/wx/GradientWx.cpp:
8423 (WebCore::Gradient::fill):
8424 * platform/graphics/wx/GraphicsContextWx.cpp:
8425 (WebCore::GraphicsContext::applyFillPattern):
8426 (WebCore::GraphicsContext::applyStrokePattern):
8427 * platform/graphics/wx/ImageBufferWx.cpp:
8428 (WebCore::ImageBuffer::image):
8429 * platform/graphics/wx/ImageWx.cpp:
8430 (WebCore::Image::loadPlatformResource):
8431
britto@apple.comd7008662008-08-14 19:26:02 +000084322008-08-14 Maxime Britto <britto@apple.com>
8433
8434 Reviewed by Sam Weinig.
8435
8436 rdar://6102511
8437 When pan-scrolling, typing on the keyboard should either stop the pan scroll or be ignored
8438 IE and FF are both preventing the keyboard event to interact with the page while scrolling.
8439 Some differences exist between them concerning the kind of key which is pressed :
8440 IE7 : every key leads to a stop of the panning
8441 FF3 : the ESC and TAB keys leads to a stop, the other keys are inactive.
8442 For WebKit this patch is adopting the FF3 behavior except for the TAB key which is inactive too.
8443
8444 * page/EventHandler.cpp:
8445 (WebCore::EventHandler::keyEvent): Verifies which key has been hit and decide either to stop the pan scroll or to swallow the key event.
8446
christian@webkit.org0e20f322008-08-14 19:14:47 +000084472008-08-14 Christian Dywan <christian@twotoasts.de>
8448
8449 Gtk+/ Cairo build fix, patch by Dirk Schulze.
8450
8451 * html/CanvasStyle.cpp:
8452 * platform/graphics/cairo/PatternCairo.cpp:
8453 (WebCore::Pattern::createPlatformPattern):
8454 * svg/graphics/cairo/SVGResourceMaskerCairo.cpp:
8455
kmccullough@apple.comd2b50f12008-08-14 18:11:20 +000084562008-08-14 Kevin McCullough <kmccullough@apple.com>
8457
8458 Reviewed by Tim.
8459
8460 <rdar://problem/6115819> Notify of profile in console
8461
8462 * page/InspectorController.cpp:
8463 (WebCore::InspectorController::addProfile):
8464 (WebCore::InspectorController::addProfileMessageToConsole): Called by
8465 addProfile this is the function that adds a message to the console that
8466 a profile finished.
8467 * page/InspectorController.h:
8468 * page/JavaScriptProfile.cpp: Expose the profiler's unique ID to match
8469 the console log to the profile in the web inspector.
8470 (WebCore::getUniqueIdCallback):
8471 (WebCore::ProfileClass):
8472 * page/inspector/ProfilesPanel.js: Created a map of all the profiles by
8473 Id to bring up the requested profile. Also select and reveal the
8474 profile in the profile panel. And created displayTitleForProfileLink()
8475 which formats a title taking into account if it's user initiated or if
8476 there are multiples. Lasty, I put the user initiated profile in a
8477 variable.
8478 * page/inspector/inspector.js: Make the profile title be a clickable
8479 link that will take the user to the identified profile. Also expose
8480 the count of user initiated profiles so they can be displayed in the
8481 console with the correct count.
8482
timothy@apple.comcd7f0f32008-08-14 17:41:05 +000084832008-08-14 Timothy Hatcher <timothy@apple.com>
8484
8485 Avoid formating ConsoleMessages twice unless the message will be
8486 displayed in bubbles of a SourceFrame.
8487
8488 Reviewed by Kevin McCullough.
8489
8490 * page/inspector/Console.js:
8491 (WebInspector.ConsoleMessage): Only format the plain text message
8492 if the URL and line are valid and the level is error or warning.
8493 (WebInspector.ConsoleMessage.prototype.isErrorOrWarning): Added.
8494 Helper to test for error or warning level.
8495 * page/inspector/SourceFrame.js:
8496 (WebInspector.SourceFrame.prototype.addMessage): Don't add the
8497 message if there is no message or valid line or if the msg
8498 isn't an error or warning.
8499
jmalonzo@webkit.orgb469bb72008-08-14 15:07:41 +000085002008-08-14 Jan Michael Alonzo <jmalonzo@webkit.org>
8501
8502 partial Gtk build fix, not reviewed
8503
8504 * platform/graphics/cairo/PatternCairo.cpp:
8505
weinig@apple.com45e83142008-08-14 04:49:30 +000085062008-08-13 Sam Weinig <sam@webkit.org>
8507
8508 Reviewed by Anders Carlson.
8509
8510 Fix style issue.
8511
8512 * html/HTMLMediaElement.cpp:
8513 (WebCore::HTMLMediaElement::pickMedia):
8514
zimmermann@webkit.org9ae47e92008-08-14 02:22:35 +000085152008-08-13 Nikolas Zimmermann <zimmermann@kde.org>
8516
zimmermann@webkit.org7a2f53d2008-08-14 03:06:01 +00008517 Build fix for Cairo, not reviewed. (exposed by gtk build slave)
8518 Continue Erics build fixes, after the Image cleanup.
8519
8520 * platform/graphics/cairo/ImageBufferCairo.cpp:
8521 (WebCore::ImageBuffer::image):
8522
85232008-08-13 Nikolas Zimmermann <zimmermann@kde.org>
8524
zimmermann@webkit.org1ef52132008-08-14 02:38:16 +00008525 Build fix for Qt, not reviewed.
8526 Don't declare eventuallyMarkAsParserCreated in a block wrapped by !USE_QXMLSTREAM.
8527
8528 * dom/XMLTokenizer.cpp:
8529 (WebCore::eventuallyMarkAsParserCreated): Was erre
8530
85312008-08-13 Nikolas Zimmermann <zimmermann@kde.org>
8532
zimmermann@webkit.org3e560562008-08-14 02:26:00 +00008533 Build fix, not reviewed.
8534 Add ScriptElement.cpp to Gtk build.
8535
8536 * GNUmakefile.am:
8537
85382008-08-13 Nikolas Zimmermann <zimmermann@kde.org>
8539
zimmermann@webkit.org9ae47e92008-08-14 02:22:35 +00008540 Reviewed by Eric.
8541
8542 Fixes: https://bugs.webkit.org/show_bug.cgi?id=20372
8543
8544 Refactor HTMLScriptElement's code into a common base class: ScriptElement.
8545 SVGScriptElement will be converted to use ScriptElement in a follow-up patch.
8546
8547 This resolves code duplications and allows us to completly replace the old
8548 SVGScriptElement (which doesn't use CachedScript, no dynamic injected scripts etc..)
8549
8550 As ScriptElement, doesn't actually inherit from Element, we may want to rename
8551 it, though StyleElement uses the same naming convention, so I left it as is for now.
8552 Eventually we'll rename both files in future.
8553
8554 No functional changes yet, as SVGScriptElement doesn't yet use the new base class.
8555
8556 * WebCore.pro: Add new ScriptElement.cpp to build.
8557 * WebCore.vcproj/WebCore.vcproj: Ditto.
8558 * WebCore.xcodeproj/project.pbxproj: Ditto.
8559 * WebCoreSources.bkl: Dutto.
8560 * dom/ScriptElement.cpp: Added. 1:1 based on HTMLScriptElement
8561 (WebCore::ScriptElement::insertedIntoDocument):
8562 (WebCore::ScriptElement::removedFromDocument):
8563 (WebCore::ScriptElement::childrenChanged):
8564 (WebCore::ScriptElement::finishParsingChildren):
8565 (WebCore::ScriptElement::handleSourceAttribute):
8566 (WebCore::isSupportedJavaScriptLanguage):
8567 (WebCore::ScriptElementData::ScriptElementData):
8568 (WebCore::ScriptElementData::~ScriptElementData):
8569 (WebCore::ScriptElementData::requestScript):
8570 (WebCore::ScriptElementData::evaluateScript):
8571 (WebCore::ScriptElementData::stopLoadRequest):
8572 (WebCore::ScriptElementData::notifyFinished):
8573 (WebCore::ScriptElementData::ignoresLoadRequest):
8574 (WebCore::ScriptElementData::shouldExecuteAsJavaScript):
8575 (WebCore::ScriptElementData::scriptCharset):
8576 (WebCore::ScriptElementData::scriptContent):
8577 * dom/ScriptElement.h: Added.
8578 (WebCore::ScriptElement::ScriptElement):
8579 (WebCore::ScriptElement::~ScriptElement):
8580 (WebCore::ScriptElementData::element):
8581 (WebCore::ScriptElementData::createdByParser):
8582 (WebCore::ScriptElementData::setCreatedByParser):
8583 * dom/XMLTokenizer.cpp:
8584 (WebCore::isScriptElement):
8585 (WebCore::castToScriptElement):
8586 (WebCore::eventuallyMarkAsParserCreated):
8587 (WebCore::XMLTokenizer::startElementNs):
8588 (WebCore::XMLTokenizer::endElementNs):
8589 (WebCore::createXHTMLParserErrorHeader):
8590 (WebCore::XMLTokenizer::insertErrorMessageBlock):
8591 * html/HTMLScriptElement.cpp: Refactored code, pushed most code down to ScriptElement.
8592 (WebCore::HTMLScriptElement::HTMLScriptElement):
8593 (WebCore::HTMLScriptElement::~HTMLScriptElement):
8594 (WebCore::HTMLScriptElement::isURLAttribute):
8595 (WebCore::HTMLScriptElement::setCreatedByParser):
8596 (WebCore::HTMLScriptElement::shouldExecuteAsJavaScript):
8597 (WebCore::HTMLScriptElement::childrenChanged):
8598 (WebCore::HTMLScriptElement::parseMappedAttribute):
8599 (WebCore::HTMLScriptElement::finishParsingChildren):
8600 (WebCore::HTMLScriptElement::insertedIntoDocument):
8601 (WebCore::HTMLScriptElement::removedFromDocument):
8602 (WebCore::HTMLScriptElement::text):
8603 (WebCore::HTMLScriptElement::setText):
8604 (WebCore::HTMLScriptElement::setHtmlFor):
8605 (WebCore::HTMLScriptElement::setEvent):
8606 (WebCore::HTMLScriptElement::charset):
8607 (WebCore::HTMLScriptElement::src):
8608 (WebCore::HTMLScriptElement::type):
8609 (WebCore::HTMLScriptElement::scriptCharset):
8610 (WebCore::HTMLScriptElement::scriptContent):
8611 (WebCore::HTMLScriptElement::sourceAttributeValue):
8612 (WebCore::HTMLScriptElement::charsetAttributeValue):
8613 (WebCore::HTMLScriptElement::typeAttributeValue):
8614 (WebCore::HTMLScriptElement::languageAttributeValue):
8615 (WebCore::HTMLScriptElement::dispatchLoadEvent):
8616 (WebCore::HTMLScriptElement::dispatchErrorEvent):
8617 * html/HTMLScriptElement.h:
8618 * svg/SVGScriptElement.cpp: Inherit from ScriptElement, don't actually use it yet.
8619 * svg/SVGScriptElement.cpp:
8620 (WebCore::SVGScriptElement::SVGScriptElement):
8621 (WebCore::SVGScriptElement::scriptContent):
8622 (WebCore::SVGScriptElement::sourceAttributeValue):
8623 (WebCore::SVGScriptElement::charsetAttributeValue):
8624 (WebCore::SVGScriptElement::typeAttributeValue):
8625 (WebCore::SVGScriptElement::languageAttributeValue):
8626 (WebCore::SVGScriptElement::dispatchLoadEvent):
8627 (WebCore::SVGScriptElement::dispatchErrorEvent):
8628 * svg/SVGScriptElement.h:
8629 (WebCore::SVGScriptElement::setCreatedByParser):
8630
eric@webkit.org7811ef02008-08-14 00:28:51 +000086312008-08-13 Eric Seidel <eric@webkit.org>
8632
eric@webkit.org3562c592008-08-14 02:17:29 +00008633 Attempt to fix the Gtk build, no review.
8634
8635 I removed the bogus GraphicsContext::translatePoint() hack for Gtk in the process.
8636
8637 * platform/graphics/GraphicsContext.h:
8638 * platform/graphics/cairo/GraphicsContextCairo.cpp:
8639 * platform/graphics/qt/GradientQt.cpp:
8640 * platform/graphics/qt/GraphicsContextQt.cpp:
8641 * platform/gtk/RenderThemeGtk.cpp:
8642 (WebCore::paintMozWidget):
8643
86442008-08-13 Eric Seidel <eric@webkit.org>
8645
eric@webkit.org2ec42072008-08-14 02:03:09 +00008646 Yet another attempt to fix the Qt build, no review.
8647
8648 * platform/graphics/qt/GradientQt.cpp:
8649 * platform/graphics/qt/GraphicsContextQt.cpp:
8650 (WebCore::GraphicsContext::applyStrokePattern):
8651 (WebCore::GraphicsContext::applyFillPattern):
8652
86532008-08-13 Eric Seidel <eric@webkit.org>
8654
8655 Attempt to fix the Windows build, no review.
8656
8657 * platform/win/CursorWin.cpp:
8658 (WebCore::loadCursorByName):
8659 * platform/win/ScrollViewWin.cpp:
8660 (WebCore::ScrollView::paint):
8661
86622008-08-13 Eric Seidel <eric@webkit.org>
8663
eric@webkit.org508c0282008-08-14 01:29:34 +00008664 Attempt to fix the Windows build, no review.
8665
8666 * platform/win/CursorWin.cpp:
8667 (WebCore::loadCursorByName):
8668 * platform/win/ScrollViewWin.cpp:
8669 (WebCore::ScrollView::paint):
8670
86712008-08-13 Eric Seidel <eric@webkit.org>
8672
eric@webkit.org1bf70ab2008-08-14 01:24:15 +00008673 Attempt to fix the Qt build, no review.
8674
8675 * platform/graphics/qt/ImageBufferQt.cpp:
8676 (WebCore::ImageBuffer::image):
8677
86782008-08-13 Eric Seidel <eric@webkit.org>
8679
eric@webkit.orgf2d7c212008-08-14 01:21:34 +00008680 Attempt to fix the Windows build, no review.
8681
8682 * platform/graphics/win/ImageWin.cpp:
8683 (WebCore::Image::loadPlatformResource):
8684 * plugins/win/PluginViewWin.cpp:
8685 (WebCore::PluginView::paintMissingPluginIcon):
8686
86872008-08-13 Eric Seidel <eric@webkit.org>
8688
eric@webkit.orgac3f6662008-08-14 01:15:50 +00008689 Another attempt to fix the Qt build, no review.
8690
8691 * platform/graphics/qt/ImageQt.cpp:
8692 * platform/graphics/qt/StillImageQt.h:
8693
86942008-08-13 Eric Seidel <eric@webkit.org>
8695
eric@webkit.org31e0d812008-08-14 01:05:42 +00008696 No review, build fix only.
8697
8698 Fix mac build, due to change in new code since my patch was written.
8699
8700 * svg/graphics/cg/SVGResourceMaskerCg.mm:
8701 (WebCore::SVGResourceMasker::applyMask):
8702
87032008-08-13 Eric Seidel <eric@webkit.org>
8704
eric@webkit.orga20a0032008-08-14 00:42:54 +00008705 Build fix only, no review.
8706
8707 Attempt to fix the Qt build.
8708
eric@webkit.org923255c2008-08-14 00:59:20 +00008709 * platform/graphics/qt/ImageBufferQt.cpp:
8710 * platform/graphics/qt/StillImageQt.h:
8711 (WebCore::StillImage::create):
8712 (WebCore::StillImage::destroyDecodedData):
8713 (WebCore::StillImage::decodedSize):
8714
87152008-08-13 Eric Seidel <eric@webkit.org>
8716
8717 Build fix only, no review.
8718
8719 Attempt to fix the Qt build.
8720
eric@webkit.orga20a0032008-08-14 00:42:54 +00008721 * html/CanvasStyle.cpp:
8722 (WebCore::CanvasStyle::applyStrokeColor):
8723 (WebCore::CanvasStyle::applyFillColor):
8724
87252008-08-13 Eric Seidel <eric@webkit.org>
8726
eric@webkit.org4aca3be2008-08-14 00:30:04 +00008727 Reviewed by Sam.
8728
8729 Match HTML5 spec by throwing INVALID_STATE_ERR when
8730 createPattern is called and the HTMLImageElement is not
8731 yet done loading the image (!isComplete)
8732 https://bugs.webkit.org/show_bug.cgi?id=20351
8733
8734 Test: http/misc/canvas-pattern-from-incremental-image.html
8735
8736 * html/CanvasRenderingContext2D.cpp:
8737 (WebCore::CanvasRenderingContext2D::createPattern):
8738
87392008-08-13 Eric Seidel <eric@webkit.org>
8740
eric@webkit.org5b265602008-08-14 00:29:26 +00008741 Reviewed by Niko.
8742
eric@webkit.orgf0124f62008-08-14 00:29:50 +00008743 Split out a Pattern class from CanvasPattern
8744 and remove all the Pattern-related #ifdefs
8745 (This will break non-mac platforms! I will fix them.)
8746 https://bugs.webkit.org/show_bug.cgi?id=20351
8747
8748 * GNUmakefile.am:
8749 * WebCore.pro:
8750 * WebCore.vcproj/WebCore.vcproj:
8751 * WebCore.xcodeproj/project.pbxproj:
8752 * WebCoreSources.bkl:
8753 * html/CanvasPattern.cpp:
8754 (WebCore::CanvasPattern::parseRepetitionType):
8755 (WebCore::CanvasPattern::CanvasPattern):
8756 * html/CanvasPattern.h:
8757 (WebCore::CanvasPattern::create):
8758 (WebCore::CanvasPattern::pattern):
8759 (WebCore::CanvasPattern::originClean):
8760 * html/CanvasRenderingContext2D.cpp:
8761 (WebCore::CanvasRenderingContext2D::createPattern):
8762 (WebCore::CanvasRenderingContext2D::applyStrokePattern):
8763 (WebCore::CanvasRenderingContext2D::applyFillPattern):
8764 * html/CanvasRenderingContext2D.h:
8765 * html/HTMLCanvasElement.cpp:
8766 * html/HTMLCanvasElement.h:
8767 * loader/FrameLoader.cpp:
8768 (WebCore::FrameLoader::createHistoryItem):
8769 * platform/graphics/GraphicsContext.h:
8770 * platform/graphics/cairo/GraphicsContextCairo.cpp:
8771 (WebCore::GraphicsContext::applyStrokePattern):
8772 (WebCore::GraphicsContext::applyFillPattern):
8773 * platform/graphics/cg/GraphicsContextCG.cpp:
8774 (WebCore::GraphicsContext::clipToImageBuffer):
8775 (WebCore::GraphicsContext::applyStrokePattern):
8776 (WebCore::GraphicsContext::applyFillPattern):
8777
87782008-08-13 Eric Seidel <eric@webkit.org>
8779
8780 Reviewed by Niko.
8781
eric@webkit.org5b265602008-08-14 00:29:26 +00008782 Make Images RefCounted (and clean up callers)
8783 https://bugs.webkit.org/show_bug.cgi?id=20351
8784
8785 * editing/DeleteButtonController.cpp:
8786 (WebCore::DeleteButtonController::createDeletionUI):
8787 * loader/CachedImage.cpp:
8788 (WebCore::CachedImage::CachedImage):
8789 (WebCore::brokenImage):
8790 (WebCore::nullImage):
8791 (WebCore::CachedImage::image):
8792 (WebCore::CachedImage::notifyObservers):
8793 (WebCore::CachedImage::createImage):
8794 * loader/CachedImage.h:
8795 * loader/icon/IconRecord.cpp:
8796 (WebCore::IconRecord::setImageData):
8797 (WebCore::IconRecord::loadImageFromResource):
8798 * loader/icon/IconRecord.h:
8799 * platform/graphics/BitmapImage.h:
8800 (WebCore::BitmapImage::create):
8801 * platform/graphics/GeneratedImage.h:
8802 * platform/graphics/Gradient.cpp:
8803 * platform/graphics/Gradient.h:
8804 * platform/graphics/Image.cpp:
8805 (WebCore::Image::nullImage):
8806 * platform/graphics/Image.h:
8807 * platform/graphics/ImageBuffer.h:
8808 * platform/graphics/cairo/ImageBufferCairo.cpp:
8809 (WebCore::ImageBuffer::image):
8810 * platform/graphics/cg/ImageBufferCG.cpp:
8811 (WebCore::ImageBuffer::image):
8812 (WebCore::ImageBuffer::getImageData):
8813 (WebCore::ImageBuffer::putImageData):
8814 * platform/graphics/cg/PDFDocumentImage.h:
8815 (WebCore::PDFDocumentImage::create):
8816 (WebCore::PDFDocumentImage::destroyDecodedData):
8817 (WebCore::PDFDocumentImage::decodedSize):
8818 * platform/graphics/gtk/ImageGtk.cpp:
8819 (WebCore::Image::loadPlatformResource):
8820 * platform/graphics/mac/ImageMac.mm:
8821 (WebCore::Image::loadPlatformResource):
8822 * rendering/RenderImage.cpp:
8823 * rendering/RenderLayer.cpp:
8824 (WebCore::RenderLayer::paintOverflowControls):
8825 * svg/graphics/SVGImage.cpp:
8826 (WebCore::SVGImage::nativeImageForCurrentFrame):
8827 * svg/graphics/SVGImage.h:
8828 (WebCore::SVGImage::create):
8829 (WebCore::SVGImage::destroyDecodedData):
8830 (WebCore::SVGImage::decodedSize):
8831 (WebCore::SVGImage::frameAtIndex):
8832 * svg/graphics/cairo/SVGPaintServerPatternCairo.cpp:
8833 (WebCore::SVGPaintServerPattern::setup):
8834 * svg/graphics/cairo/SVGResourceMaskerCairo.cpp:
8835 (WebCore::SVGResourceMasker::applyMask):
8836 * svg/graphics/cg/SVGPaintServerPatternCg.cpp:
8837 (WebCore::patternCallback):
8838 * svg/graphics/cg/SVGResourceMaskerCg.mm:
8839 (WebCore::SVGResourceMasker::applyMask):
8840
88412008-08-13 Eric Seidel <eric@webkit.org>
8842
8843 Reviewed by Niko.
eric@webkit.org7811ef02008-08-14 00:28:51 +00008844
8845 Remove #ifdefs from CanvasStyle by using platform/Color.h
eric@webkit.org5b265602008-08-14 00:29:26 +00008846 https://bugs.webkit.org/show_bug.cgi?id=20351
eric@webkit.org7811ef02008-08-14 00:28:51 +00008847
8848 There are some down-sides to this commit.
8849 This commit limits us to 255 levels of grey for calls like:
8850 context.setStrokeStyle(.37, 1.0)
8851 previously CG might have used up to 32bits to store the grey level
8852 Since setStrokeStyle is not part of HTML5, I don't suspect the web will notice.
8853
8854 Likewise, setStrokeStyle/setFillStyle calls which used float colors are now limited
8855 to RGBA32 (like all the rest of colors in WebCore), thus:
8856 context.setStrokStyle(.37, .24, .456, .99) will now have the same precision as:
8857 context.strokeStyle = "rgba(.37, .24, .456, .99)", which is to say RGBA32
8858
8859 If this is a problem for Dashboard, we can either roll out this commit
8860 or add a beefier Color abstraction, which can be used internally by GraphicsContext
8861 when keeping state, and then GraphicsContext can grow some additional set* routines
8862 for setting the a grey/float/whatever fill and stroke.
8863
8864 * html/CanvasRenderingContext2D.cpp:
8865 (WebCore::CanvasRenderingContext2D::setFillStyle):
8866 * html/CanvasStyle.cpp:
8867 (WebCore::CanvasStyle::CanvasStyle):
8868 (WebCore::colorWithOverrideAlpha):
8869 (WebCore::CanvasStyle::applyStrokeColor):
8870 (WebCore::CanvasStyle::applyFillColor):
8871 * html/CanvasStyle.h:
8872 * platform/graphics/Color.cpp:
8873 (WebCore::colorFloatToRGBAByte):
8874 (WebCore::makeRGBA32FromFloats):
8875 * platform/graphics/Color.h:
8876
adele@apple.com83e44822008-08-13 23:50:41 +000088772008-08-13 Eric Carlson <eric.carlson@apple.com>
8878
8879 Reviewed by Adele Peterson.
8880
8881 Fix for <rdar://problem/6137931>
8882 https://bugs.webkit.org/show_bug.cgi?id=20360
8883 Remove all parameters from the MIME type before checking with the MIME type registry
8884
8885 Tests: media/video-source-type-params.html
8886
8887 * html/HTMLMediaElement.cpp:
8888 (WebCore::HTMLMediaElement::pickMedia): only pass the portion before the first ';'
8889 to isSupportedMediaMIMEType()
8890
bdakin@apple.com7bc81bf2008-08-13 21:36:15 +000088912008-08-13 Beth Dakin <bdakin@apple.com>
8892
8893 Reviewed by Sam Weinig.
8894
8895 Fix for <rdar://problem/6141345>
8896
8897 This patch refines findString and markAllMatchesForText functions'
8898 interactions with disconnected frames. They no longer rely on
8899 knowing where a range is relative to the visible region and work
8900 with disconnected frames that contain frames.
8901
8902 * editing/Editor.cpp:
8903 (WebCore::Editor::insideVisibleArea): Now returns a bool instead of
8904 the visiblity enum.
8905 (WebCore::Editor::firstVisibleRange): This now returns the very
8906 first visible range in the document. It's no longer dependent on
8907 searching forward.
8908 (WebCore::Editor::lastVisibleRange): This now returns the very last
8909 visible range in the document. It's no longer dependent on
8910 searching backwards.
8911 (WebCore::Editor::nextVisibleRange): This returns the next visible
8912 range in the appropriate direction from the current range.
8913 * editing/Editor.h:
8914 * page/Frame.cpp:
8915 (WebCore::Frame::findString):
8916 (WebCore::Frame::markAllMatchesForText):
8917
kevino@webkit.orgee5adc42008-08-13 20:07:16 +000089182008-08-13 Kevin Ollivier <kevino@theolliviers.com>
8919
8920 wx build fix for case-sensitive platforms, like Linux.
8921
8922 * WebCoreSources.bkl:
8923
jmalonzo@webkit.org210145b2008-08-13 19:56:20 +000089242008-08-13 Marco Barisione <marco.barisione@collabora.co.uk>
8925
8926 Reviewed by Holger Freyther.
8927
8928 http://bugs.webkit.org/show_bug.cgi?id=16881
8929 [GTK] PlatformScreenGtk is unimplemented
8930
8931 Original patch by Christian Dywan.
8932
8933 * platform/gtk/PlatformScreenGtk.cpp:
8934 (WebCore::screenDepth):
8935 (WebCore::screenDepthPerComponent):
8936 (WebCore::screenIsMonochrome):
8937 (WebCore::screenRect):
8938 (WebCore::screenAvailableRect):
8939
jmalonzo@webkit.orge4693932008-08-13 19:42:08 +000089402008-08-13 Jan Michael Alonzo <jmalonzo@webkit.org>
8941
8942 Reviewed by Holger Freyther.
8943
8944 http://bugs.webkit.org/show_bug.cgi?id=20318
8945 SharedTimerGtk should use G_PRIORITY_DEFAULT_IDLE for g_idle_add
8946
8947 g_idle_add is the same as g_idle_add_full with a priority of
8948 G_PRIORITY_DEFAULT_IDLE, so we can safely use that.
8949
8950 * platform/gtk/SharedTimerGtk.cpp:
8951 (WebCore::setSharedTimerFireTime):
8952
timothy@apple.comf0426602008-08-13 18:11:01 +000089532008-08-13 Timothy Hatcher <timothy@apple.com>
8954
8955 Changed the InspectorController so it can be notified when the
8956 attached state of the Inspector changes in WebKit.
8957
8958 Reviewed by Kevin McCullough.
8959
8960 * WebCore.base.exp: Updated the symbol for setWindowVisible.
8961 * page/InspectorController.cpp:
8962 (WebCore::InspectorController::setWindowVisible): Added an attached argument,
8963 that defaults to false.Call setAttachedWindow with the attached argument.
8964 (WebCore::InspectorController::setAttachedWindow): Call the script version
8965 of setAttachedWindow.
8966 * page/InspectorController.h:
8967 * page/inspector/inspector.js:
8968 (WebInspector.setAttachedWindow): Set the attached property.
8969
timothy@apple.com9ea832b2008-08-13 18:10:36 +000089702008-08-12 Timothy Hatcher <timothy@apple.com>
8971
timothy@apple.com72c92ae2008-08-13 18:10:45 +00008972 Added a close button to the Inspector's toolbar when docked.
8973
8974 https://bugs.webkit.org/show_bug.cgi?id=14270
8975
8976 Reviewed by Kevin McCullough.
8977
8978 * page/InspectorController.cpp:
8979 (WebCore::closeWindow): Call InspectorController::closeWindow.
8980 (WebCore::InspectorController::windowScriptObjectAvailable):
8981 Added closeWindow to the script class.
8982 * page/InspectorController.h:
8983 * page/inspector/Images/closeButtons.png: Added.
8984 * page/inspector/inspector.css: Added and changed styles.
8985 * page/inspector/inspector.html: Added the close button.
8986 * page/inspector/inspector.js:
8987 (WebInspector.loaded): Added click event listener to the close button.
8988 (WebInspector.close): Call InspectorController.closeWindow.
8989
89902008-08-12 Timothy Hatcher <timothy@apple.com>
8991
timothy@apple.com9ea832b2008-08-13 18:10:36 +00008992 Make the docked Web Inspector resizable. This is the cross platform
8993 portion of the code. Each InspectorClient needs to implement the
8994 real resize code.
8995
8996 https://bugs.webkit.org/show_bug.cgi?id=14282
8997
8998 Reviewed by Kevin McCullough.
8999
9000 * loader/EmptyClients.h: Added an empty setAttachedWindowHeight.
9001 * page/InspectorClient.h: Added setAttachedWindowHeight.
9002 * page/InspectorController.cpp:
9003 (WebCore::setAttachedWindowHeight): Call setAttachedWindowHeight
9004 on the InspectorController.
9005 (WebCore::InspectorController::setAttachedWindowHeight): Call
9006 setAttachedWindowHeight on the client.
9007 (WebCore::InspectorController::windowScriptObjectAvailable):
9008 Added setAttachedWindowHeight to the script class.
9009 * page/InspectorController.h:
9010 * page/inspector/inspector.css: Make the cursor on the toolbar be
9011 row-resize when docked.
9012 * page/inspector/inspector.js:
9013 (WebInspector.loaded): Always add the toolbarDragStart event listener.
9014 (WebInspector.toolbarDragStart): Return early if we are not attached
9015 and not on Leopard. Call WebInspector.elementDragStart.
9016 (WebInspector.toolbarDragEnd): Call WebInspector.elementDragEnd.
9017 (WebInspector.toolbarDrag): When attached call setAttachedWindowHeight,
9018 otherwise call moveByUnrestricted.
9019
hausmann@webkit.orgd34f1d22008-08-13 13:43:34 +000090202008-08-13 Simon Hausmann <hausmann@webkit.org>
9021
9022 Reviewed by Holger.
9023
9024 Initialize m_zoomsTextOnly in the Settings constructor.
9025
9026 * page/Settings.cpp:
9027 (WebCore::Settings::Settings):
9028
hausmann@webkit.org74586d62008-08-13 13:31:11 +000090292008-08-13 Brad Hughes <bhughes@trolltech.com>
9030
9031 Reviewed by Simon.
9032
9033 Fix compiling of QtWebKit in release mode with the Intel C++ Compiler for Linux
9034
9035 The latest upgrade of the intel compiler allows us to compile all of
9036 Qt with optimizations enabled (yay!).
9037
9038 * WebCore.pro:
9039
hausmann@webkit.org690b7fc2008-08-13 13:24:56 +000090402008-08-13 Prasanth Ullattil <prasanth.ullattil@trolltech.com>
9041
9042 Reviewed by Simon.
9043
9044 Fix QtWebKit not displaying content on 403 HTTP responses
9045
9046 Just like with 404 responses also display content with 403, as
9047 used by http://audiio.ejamming.proteus-tech.com/audiio/profile/original_signup/
9048
9049 * platform/network/qt/QNetworkReplyHandler.cpp:
9050 (WebCore::QNetworkReplyHandler::finish):
9051
hausmann@webkit.org88c4dc92008-08-13 12:02:00 +000090522008-08-13 Simon Hausmann <hausmann@webkit.org>
9053
hausmann@webkit.orgd2315e32008-08-13 13:16:15 +00009054 Reviewed by Holger.
9055
9056 Qt part of https://bugs.webkit.org/show_bug.cgi?id=18994
9057
9058 Make the formatting of String::format() locale independent through the use of QString::vsprintf.
9059
9060 * platform/text/String.cpp:
9061 (WebCore::String::format):
9062
90632008-08-13 Simon Hausmann <hausmann@webkit.org>
9064
hausmann@webkit.org88c4dc92008-08-13 12:02:00 +00009065 Reviewed by Lars.
9066
9067 Fix QWebFrame::setHtml() not setting the new contents immediately.
9068
9069 Added a setter to the DocumentLoader to toggle the deferred loading of the main
9070 resource when it comes from substitute data.
9071
9072 Disable deferred loading of the main resource when we have valid substitute data,
9073 as used by QWebFrame::setHtml.
9074
9075 * loader/DocumentLoader.h:
9076
mrowe@apple.com6aa36d12008-08-13 09:58:32 +000090772008-08-13 Mark Rowe <mrowe@apple.com>
9078
9079 Speculative GTK build fix.
9080
9081 * GNUmakefile.am: Add dependency info for JSSVGElementWrapperFactory.cpp.
9082
hausmann@webkit.org298ce5f2008-08-13 09:11:23 +000090832008-08-13 Thiago Macieira <tjmaciei@trolltech.com>
9084
9085 Reviewed by Simon.
9086
9087 Fix encoding of [ and ] in the host part of the URL
9088
9089 Until QUrl is fixed (making QUrl's tolerant parser more tolerant), we have to
9090 add this workaround to the QUrl <> WebCore::KURL conversion operator so that it
9091 doesn't encode [ and ] when they are found in the host part. That is, the
9092 following URL:
9093 http://[::1]/
9094 is valid and should not be reencoded to:
9095 http://%5b::1%5d/
9096
9097 * platform/qt/KURLQt.cpp:
9098 (WebCore::KURL::operator QUrl):
9099
mitz@apple.come198b012008-08-12 21:49:07 +000091002008-08-12 Mihnea Ovidenie <mihnea@adobe.com>
9101
9102 Fix for https://bugs.webkit.org/show_bug.cgi?id=19891
9103 Broken HTML object elements cause de-reference of pointer to freed memory.
9104 If we fail to load an image for an object tag and we no longer believe the object tag points at
9105 an image, then clear m_imageLoader in the HTMLObjectElement so that we attempt to render the
9106 fall back content.
9107
9108 Reviewed by Dave Hyatt and Alexey Proskuryakov.
9109
9110 Test: http/tests/misc/object-image-error-with-onload.html
9111
9112 * html/HTMLObjectElement.cpp:
9113 (WebCore::HTMLObjectElement::renderFallbackContent):
9114 * page/Frame.cpp:
9115 (WebCore::Frame::Frame):
9116
zimmermann@webkit.org36a02512008-08-12 21:11:17 +000091172008-08-12 Nikolas Zimmermann <zimmermann@kde.org>
9118
9119 Reviewed by Dave.
9120
9121 Fixes: https://bugs.webkit.org/show_bug.cgi?id=19798
9122 Masks are translated, and the mask images are swapped on the y-axis.
9123
9124 Turned out that http://trac.webkit.org/changeset/31830/trunk/WebCore/svg/graphics/cg/SVGResourceMaskerCg.mm
9125 is guilty. GraphicsContext::clipToImageBuffer() does some extra transformations that SVGResourcesMaskerCg does not want.
9126
9127 Long term goal is to remove the SVGResource*/SVGPaintServer* classes anyway, so it's okay to duplicate
9128 the "clip to image buffer" functionality, in the CG specific SVGResourceMaskerCg class - as it was before.
9129
9130 * svg/graphics/cg/SVGResourceMaskerCg.mm:
9131 (WebCore::SVGResourceMasker::applyMask): Changed back to use CG clipping again.
9132
mitz@apple.comf8a98692008-08-12 17:04:42 +000091332008-08-12 Dan Bernstein <mitz@apple.com>
9134
mitz@apple.com1b7e844f2008-08-12 20:54:12 +00009135 - WebCore part of <rdar://problem/6121636>
9136 Make fast*alloc() abort() on failure and add "try" variants that
9137 return NULL on failure.
9138
9139 Reviewed by Darin Adler.
9140
9141 * platform/Arena.cpp:
9142 (WebCore::ArenaAllocate): Removed null checking of fastMalloc()'s
9143 result.
9144 * platform/graphics/cg/ImageBufferCG.cpp:
9145 (WebCore::ImageBuffer::create): Changed to use tryFastCalloc().
9146
91472008-08-12 Dan Bernstein <mitz@apple.com>
9148
mitz@apple.com1e09cd72008-08-12 18:27:58 +00009149 Reviewed by Darin Adler.
9150
9151 - fix https://bugs.webkit.org/show_bug.cgi?id=19348
9152 <rdar://problem/5978447> REGRESSION (r34193): Setting the size of a frame with javascript document.body.row no longer works
9153
9154 Test: fast/frames/frameset-style-recalc.html
9155
9156 * html/HTMLFrameSetElement.cpp:
9157 (WebCore::HTMLFrameSetElement::recalcStyle): Changed to call the base
9158 class implementation after marking for layout.
9159
91602008-08-12 Dan Bernstein <mitz@apple.com>
9161
mitz@apple.comf8a98692008-08-12 17:04:42 +00009162 Reviewed by John Sullivan.
9163
9164 - move shouldUpdateWhenOffscreen from Settings to FrameView and rename it shouldUpdateWhileHidden
9165
9166 * WebCore.base.exp:
9167 * page/FrameView.cpp:
9168 (WebCore::FrameViewPrivate::FrameViewPrivate):
9169 (WebCore::FrameView::shouldUpdateWhileHidden):
9170 (WebCore::FrameView::setShouldUpdateWhileHidden):
9171 * page/FrameView.h:
9172 * page/Settings.cpp:
9173 * page/Settings.h:
9174
aroben@apple.comeeb8ebb2008-08-12 14:58:51 +000091752008-08-12 Adam Roben <aroben@apple.com>
9176
9177 Windows build fix
9178
9179 * bindings/js/JSSVGPODTypeWrapper.h: Align
9180 JSSVGDynamicPODTypeWrapper's and JSSVGStaticPODTypeWrapperWithParent's
9181 members on 16-byte boundaries to avoid an alignment warning.
9182
zimmermann@webkit.orge1388112008-08-12 10:27:53 +000091832008-08-12 Nikolas Zimmermann <zimmermann@kde.org>
9184
9185 Reviewed by Oliver.
9186
zimmermann@webkit.org504f2552008-08-12 10:35:09 +00009187 Add new dynamice-update layout tests covering SVGMarkerElement.
9188 Fix bug: SVGMarkerElement's SVG DOM function calls don't update rendering.
9189 Fix orientAngle/orientType confusion: "auto" orient should always return "0" as angle.
9190
9191 Tests: svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr.html
9192 svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr.html
9193 svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr.html
9194 svg/dynamic-updates/SVGMarkerElement-dom-orient-attr.html
9195 svg/dynamic-updates/SVGMarkerElement-dom-refX-attr.html
9196 svg/dynamic-updates/SVGMarkerElement-dom-refY-attr.html
9197 svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop.html
9198 svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop.html
9199 svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop.html
9200 svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop.html
9201 svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop.html
9202 svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop.html
9203 svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop.html
9204 svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call.html
9205 svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call.html
9206
9207 * svg/SVGMarkerElement.cpp:
9208 (WebCore::SVGMarkerElement::SVGMarkerElement):
9209 (WebCore::SVGMarkerElement::parseMappedAttribute):
9210 (WebCore::SVGMarkerElement::svgAttributeChanged):
9211 (WebCore::SVGMarkerElement::childrenChanged):
9212 (WebCore::SVGMarkerElement::setOrientToAuto):
9213 (WebCore::SVGMarkerElement::setOrientToAngle):
9214 (WebCore::SVGMarkerElement::canvasResource):
9215
92162008-08-12 Nikolas Zimmermann <zimmermann@kde.org>
9217
9218 Reviewed by Oliver.
9219
zimmermann@webkit.orge1388112008-08-12 10:27:53 +00009220 Add new dynamic-update layout tests covering SVGImageElement.
9221 Fix bug: SVGImageElement doesn't react on 'preserveAspectRatio' changes.
9222
9223 Tests: svg/dynamic-updates/SVGImageElement-dom-height-attr.html
9224 svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr.html
9225 svg/dynamic-updates/SVGImageElement-dom-width-attr.html
9226 svg/dynamic-updates/SVGImageElement-dom-x-attr.html
9227 svg/dynamic-updates/SVGImageElement-dom-y-attr.html
9228 svg/dynamic-updates/SVGImageElement-svgdom-height-prop.html
9229 svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop.html
9230 svg/dynamic-updates/SVGImageElement-svgdom-width-prop.html
9231 svg/dynamic-updates/SVGImageElement-svgdom-x-prop.html
9232 svg/dynamic-updates/SVGImageElement-svgdom-y-prop.html
9233
9234 * svg/SVGImageElement.cpp:
9235 (WebCore::SVGImageElement::svgAttributeChanged):
9236
timothy@apple.com93114722008-08-12 04:20:25 +000092372008-08-11 Anthony Ricaud <rik24d@gmail.com>
9238
timothy@apple.com2f2cde32008-08-12 04:28:16 +00009239 Changed Option/Alt-Up or Down in CSS editing when the value is
9240 near zero to jump to the next integer.
9241
9242 Reviewed by Tim Hatcher.
9243
9244 https://bugs.webkit.org/show_bug.cgi?id=20326
9245
9246 * page/inspector/StylesSidebarPane.js:
9247
92482008-08-11 Anthony Ricaud <rik24d@gmail.com>
9249
timothy@apple.com93114722008-08-12 04:20:25 +00009250 Changed the line highlight transition for an easier animation.
9251
9252 Reviewed by Tim Hatcher.
9253
9254 * page/inspector/SourceFrame.js:
9255
timothy@apple.com24a14852008-08-12 03:57:39 +000092562008-08-11 Keishi Hattori <casey.hattori@gmail.com>
9257
9258 Added support for some Firebug Command Line APIs.
9259
9260 Reviewed by Tim Hatcher.
9261
9262 https://bugs.webkit.org/show_bug.cgi?id=19867
9263 https://bugs.webkit.org/show_bug.cgi?id=19868
9264 https://bugs.webkit.org/show_bug.cgi?id=19869
9265 https://bugs.webkit.org/show_bug.cgi?id=19875
9266 https://bugs.webkit.org/show_bug.cgi?id=19876
9267 https://bugs.webkit.org/show_bug.cgi?id=19880
9268
9269 * page/inspector/Console.js:
9270 (WebInspector.Console.prototype._evalInInspectedWindow):
9271 Create an object on the inspected window that holds the console
9272 command line API functions. This object is used in a with statement
9273 around the typed expression.
9274
zimmermann@webkit.org0350b6d2008-08-12 02:22:26 +000092752008-08-11 Nikolas Zimmermann <zimmermann@kde.org>
9276
9277 Reviewed by Antti.
9278
9279 Fixes: http://bugs.webkit.org/show_bug.cgi?id=17736
9280
9281 JS wrapper objects around SVG POD types, that contain other SVG POD types with writable properties
9282 failed to update. Modification of the values were completly ignored (ie. transform.matrix.a = 50, didn't take any effect)
9283
9284 Added tests: svg/custom/svg-modify-currentTranslate.html
9285 svg/custom/tearoffs-with-tearoffs.html
9286 svg/custom/immutable-properties.html
9287
9288 Fixed tests: svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop.html
9289
9290 * bindings/js/JSSVGPODTypeWrapper.h:
9291 (WebCore::JSSVGDynamicPODTypeWrapper::commitChange):
9292 (WebCore::JSSVGStaticPODTypeWrapperWithPODTypeParent::create):
9293 (WebCore::JSSVGStaticPODTypeWrapperWithPODTypeParent::commitChange):
9294 (WebCore::JSSVGStaticPODTypeWrapperWithPODTypeParent::JSSVGStaticPODTypeWrapperWithPODTypeParent):
9295 (WebCore::JSSVGStaticPODTypeWrapperWithParent::create):
9296 (WebCore::JSSVGStaticPODTypeWrapperWithParent::operator PODType):
9297 (WebCore::JSSVGStaticPODTypeWrapperWithParent::commitChange):
9298 (WebCore::JSSVGStaticPODTypeWrapperWithParent::JSSVGStaticPODTypeWrapperWithParent):
9299 * bindings/scripts/CodeGenerator.pm:
9300 * bindings/scripts/CodeGeneratorJS.pm:
9301 * svg/SVGSVGElement.idl: Add [Immutable] markers to SVG POD attributes, that contain POD types with writable attributes.
9302 * svg/SVGZoomEvent.idl: SVG specification explicitely demands these attributes to be readonly, even its content.
9303
beidson@apple.com0e772f72008-08-12 00:34:46 +000093042008-08-11 Brady Eidson <beidson@apple.com>
9305
9306 Reviewed by John and Anders
9307
9308 Fix for <rdar://problem/6141797>
9309
9310 When WebArchives were entirely a WebKit concept, there was a guarantee that a WebResource
9311 would never have nil data.
9312
9313 When they were pushed down into WebCore, that guarantee was lost, subtly changing a few
9314 semantics with some WebKit applications.
9315
9316 The guarantee was a good one and should be restored.
9317
9318 Note that ApplicationCacheResource doesn't need any updates to follow this rule as it already
9319 creates an empty data object in the case of null data for its own purposes.
9320
9321 * loader/SubstituteResource.h:
9322 (WebCore::SubstituteResource::SubstituteResource): ASSERT that the data is not null. This
9323 well help any future subclassers not make this mistake.
9324
9325 * loader/archive/ArchiveResource.cpp:
9326 (WebCore::ArchiveResource::create): Return 0 if the data is null.
9327
simon.fraser@apple.come0d44792008-08-11 22:44:06 +000093282008-08-11 Simon Fraser <simon.fraser@apple.com>
9329
9330 Reviewed by Dave Hyatt
9331
9332 https://bugs.webkit.org/show_bug.cgi?id=20328
9333 Fix a problem when an 'all' transition transition with more than
9334 one property changing is interrupted, and did some AnimationController
9335 cleanup.
9336
9337 Test: transitions/interrupted-all-transition.html
9338
9339 * page/AnimationController.cpp:
9340 (WebCore::ImplicitAnimation::ImplicitAnimation):
9341 (WebCore::AnimationControllerPrivate::blendProperties):
9342 (WebCore::CompositeAnimation::updateTransitions):
9343 (WebCore::CompositeAnimation::cleanupFinishedAnimations):
9344 (WebCore::CompositeAnimation::setTransitionStartTime):
9345 (WebCore::CompositeAnimation::overrideImplicitAnimations):
9346 (WebCore::CompositeAnimation::resumeOverriddenImplicitAnimations):
9347 (WebCore::ImplicitAnimation::animate):
9348 (WebCore::ImplicitAnimation::onAnimationEnd):
9349 (WebCore::ImplicitAnimation::sendTransitionEvent):
9350 (WebCore::ImplicitAnimation::affectsProperty):
9351 (WebCore::KeyframeAnimation::endAnimation):
9352 (WebCore::KeyframeAnimation::onAnimationEnd):
9353
kmccullough@apple.com4a967c12008-08-11 20:45:19 +000093542008-08-11 Kevin McCullough <kmccullough@apple.com>
9355
9356 Reviewed by Tim.
9357
9358 - Because console messages have group levels now, newly created messages
9359 that do not specify the level lose their message since the number of
9360 arguments is wrong.
9361
9362 * page/inspector/Console.js:
9363 * page/inspector/Resource.js:
9364
alp@webkit.orgeeb55142008-08-11 19:52:14 +000093652008-08-11 Alp Toker <alp@nuanti.com>
9366
9367 Build fix. Add new files from r35666 (WebKitAnimationEvent). Also take
9368 the opportunity to sort the sources lists.
9369
9370 * GNUmakefile.am:
9371
timothy@apple.com9fe09f82008-08-11 18:48:37 +000093722008-08-11 Timothy Hatcher <timothy@apple.com>
9373
9374 Speed up the the JavaScript syntax highlighter by generating
9375 the finders only once per script instead of per line.
9376
9377 https://bugs.webkit.org/show_bug.cgi?id=20346
9378
9379 Reviewed by Adam Roben.
9380
9381 * page/inspector/SourceFrame.js:
9382 (WebInspector.SourceFrame.prototype._syntaxHighlightJavascriptLine):
9383 Removed, factored into syntaxHighlightJavascript as an inline function.
9384 (WebInspector.SourceFrame.prototype.syntaxHighlightJavascript):
9385 Pulled in the _syntaxHighlightJavascriptLine so it will create a closure.
9386 Generate the finders before iterating the lines.
9387
aroben@apple.com957d2d32008-08-11 18:31:37 +000093882008-08-11 Adam Roben <aroben@apple.com>
9389
9390 Windows build fix
9391
9392 * WebCore.vcproj/WebCore.vcproj: Added JSWebKitAnimationEvent.cpp and
9393 JSWebKitTransitionEvent.cpp to the project. Let VS reformat the file,
9394 too.
9395
mitz@apple.com3f0060f2008-08-11 18:04:46 +000093962008-08-11 Dan Bernstein <mitz@apple.com>
9397
9398 Reviewed by Darin Adler.
9399
9400 - fix <rdar://problem/6131096> Reproducible crash in CounterNode::isReset under guard malloc
9401
9402 Test: fast/css/counters/invalidate-cached-counter-node.html
9403
9404 * rendering/RenderContainer.cpp:
9405 (WebCore::RenderContainer::invalidateCounters): Added. Invalidates all
9406 RenderCounters in :before and :after content.
9407 * rendering/RenderContainer.h:
9408 * rendering/RenderCounter.cpp:
9409 (WebCore::RenderCounter::isCounter): Renamed isRenderCounter() to this
9410 to match the RenderObject method.
9411 (WebCore::RenderCounter::invalidate): Added. Resets the cached
9412 CounterNode and invalidates the object's layout and preferred widths.
9413 (WebCore::destroyCounterNodeChildren): Added a call to
9414 invalidateCounters().
9415 * rendering/RenderCounter.h:
9416 * rendering/RenderObject.h:
9417 (WebCore::RenderObject::invalidateCounters):
9418
dino@apple.com2af8c3a2008-08-11 17:24:36 +000094192008-08-11 Dean Jackson <dino@apple.com>
9420
9421 Implement CSS Animation and Transition Events
9422 https://bugs.webkit.org/show_bug.cgi?id=20337
9423
9424 Implement the events defined in the CSS Animations
9425 and Transitions specifications so code can react
9426 to animations and transitions.
9427
9428 Reviewed by Tim Hatcher and Dave Hyatt.
9429
9430 * DerivedSources.make:
9431 * GNUmakefile.am:
9432 * WebCore.pro:
9433 * WebCore.vcproj/WebCore.vcproj:
9434 * WebCore.xcodeproj/project.pbxproj:
9435 * WebCoreSources.bkl:
9436 Build configs for new files
9437
9438 * bindings/js/JSDOMWindowBase.cpp:
9439 * bindings/js/JSDOMWindowBase.h:
9440 * bindings/js/JSEventCustom.cpp:
9441 * dom/Document.h:
9442 * dom/Event.cpp:
9443 * dom/Event.h:
9444 * dom/EventTarget.cpp:
9445 * dom/EventTargetNode.cpp:
9446 * dom/EventTargetNode.h:
9447 * html/HTMLElement.cpp:
9448 * page/AnimationController.cpp:
9449 do all the new event stuff
9450
9451 * html/HTMLAttributeNames.in:
9452 the onwebkitanimation* and onwebkittransitionend attrs
9453
9454 * dom/WebKitAnimationEvent.cpp: Added.
9455 * dom/WebKitAnimationEvent.h: Added.
9456 * dom/WebKitAnimationEvent.idl: Added.
9457 * dom/WebKitTransitionEvent.cpp: Added.
9458 * dom/WebKitTransitionEvent.h: Added.
9459 * dom/WebKitTransitionEvent.idl: Added.
9460 New files for the events
9461
9462 * manual-tests/transition-events.html: Added.
9463 New testfile
9464
aroben@apple.com3eae8622008-08-11 17:21:23 +000094652008-08-11 Adam Roben <aroben@apple.com>
9466
9467 Add a ForwardingHeader for wtf/NotFound.h
9468
9469 Rubberstamped by Darin Adler.
9470
9471 * ForwardingHeaders/wtf/NotFound.h: Added.
9472
timothy@apple.com2f5bdf02008-08-11 16:53:30 +000094732008-08-11 Timothy Hatcher <timothy@apple.com>
9474
9475 Fixes a bug where error bubbles in JavaScript resources would
9476 be clobbered by the syntax highlighter.
9477
9478 https://bugs.webkit.org/show_bug.cgi?id=20345
9479
9480 Reviewed by Adam Roben.
9481
9482 * manual-tests/inspector/resources/script-error.js: Added.
9483 * manual-tests/inspector/styled-error-bubbles-in-scripts.html: Added.
9484 * page/inspector/SourceFrame.js:
9485 (WebInspector.SourceFrame.prototype._addMessageToSource):
9486 Check the nodeType and not the nodeName, this is less fragile.
9487 (WebInspector.SourceFrame.prototype._syntaxHighlightJavascriptLine):
9488 Check if the lastChild is an error bubble, if so remove it before
9489 getting the line's textContent. Add the error bubble back at the end.
9490
mrowe@apple.com4ec50d02008-08-11 05:07:42 +00009491== Rolled over to ChangeLog-2008-08-10 ==