From dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:21 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- tdehtml/ChangeLog | 3874 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 3874 insertions(+) create mode 100644 tdehtml/ChangeLog (limited to 'tdehtml/ChangeLog') diff --git a/tdehtml/ChangeLog b/tdehtml/ChangeLog new file mode 100644 index 000000000..ea77bf459 --- /dev/null +++ b/tdehtml/ChangeLog @@ -0,0 +1,3874 @@ +2007-10-09 Allan Sandfeld Jensen + + Optimize the case of double descendant selectors "a b c", + to avoid O(n^2) run-time where n is the depth of the DOM tree. + + * css/cssstyleselector.h: Define new early termination value for checkSelector + * css/cssstyleselector.cpp: Bail-out when the selector-chain can't possibly match + +2007-04-22 Harri Porten + + * ecma/xmlhttprequest.cpp: allow Accept header overrides + +2007-04-21 Harri Porten + + * ecma/xmlhttprequest.cpp: implemented + XMLHttpRequest.overrideMimeType() function + +2007-02-21 Harri Porten + + * html/html_formimpl.cpp: mimmick .value behavior of other + browsers if no value attribute was set for an input element of + type radio and checkbox. + +2007-02-18 Harri Porten + + * html/html_formimpl.cpp: fixed bug #120582 ("cloneNode does not + clone `checked' attribute in form inputs") + + * html/html_formimpl.cpp: fixed reset of file upload form elements + +2007-02-11 Harri Porten + + * ecma/kjs_window.cpp (executeOpenWindow): fixed location href + and pathname for about:blank windows + + * tdehtml_part.cpp (findFrameParent): made frame name lookup locale + independant. Was mostly problematic with non-ascii names. + + * html/html_formimpl.cpp (gatherWalletData): prevent crash occuring + on double form submits (bug report #105899) + +2006-11-14 Allan Sandfeld Jensen + + Implement overflow-x and overflow-y + + * css/*.*: New properties + * rendering/render_style.{h,cpp}: New properties + * rendering/render_object.h: New functions scrollsOverflowX() and scrollsOverflowY + * rendering/render_layer.h: Remove depricated function moveScrollbarsAside() + * rendering/render_layer.cpp: More fine grained creation of scrollbars + * tdehtmlview.cpp: More fine grained creation of scrollbars + * rendering/render_block.cpp: Use new functions + * rendering/render_box.cpp: Use new functions + * rendering/bidi.cpp: Use new functions + +2006-11-13 Allan Sandfeld Jensen + + Merge text-overflow:ellipis from WebCore + + * css/*.*: New property and values + * rendering/render_style.{h,cpp}: New property and values + * rendering/render_line.{h,cpp}: New line-box for ellipsis + * rendering/bidi.cpp: Two functions to remove and create ellipsis boxes + * rendering/render_text.{h,cpp}: Add the ability to truncate text at a certain point. + +2006-06-28 Germain Garand + + make updating of addRule/removeRule/insertRule work + cf. http://www.quirksmode.org/dom/w3c_css.html#change + + * css/css_stylesheetimpl.cpp + (insertRule/deleteRule): shallow update of styleselector. + * xml/dom_docimpl.{h,cpp} + (updateStyleSelector): new boolean argument for shallow recalculation, when all sheets are known. + (DocumentImpl::recalcStyleSelector): split. + (DocumentImpl::rebuildStyleSelector): new from split. Recreate styleselector with known sheets. + +2006-06-27 Germain Garand + + . Correct drawing of borders on iframes and objects (#118277/#56109) + . Frameborder attribute for iframes (http://www.w3.org/TR/html401/present/frames.html#adef-frameborder) + . Fix widget counter-mask not being updated in time, thus sometimes missing a repaint (e.g: http://lequipe.fr) + + * html/html_baseimpl.{h,cpp} (HTMLIFrameElementImpl::parseAttribute): parse frameborder attribute. Defaults to true as per specification. + (HTMLIFrameElementImpl::updateFrame/attach): apply/remove frameborder style at attachment time. + * tdehtmlview.cpp (drawContents): fix counter-mask problem. Widget geometry is not accurate before painting, so we must + use the RenderObject's. + * rendering/render_frames.h (paddingTop/paddingBottom/paddingLeft/paddingRight): reimplement. Frames have no padding. + (RenderPartObject::canHaveBorder): reimplement. True. + * rendering/render_object.cpp (RenderObject::updateWidgetMasks): clip mask to correct width/height, though it doesn't matter much on X11. + * rendering/render_replaced.h (RenderWidget::borderTop/borderBottom/borderLeft/borderRight): percolated down from RenderForm. + Frames/Iframes also need that reimplementation. + +2006-06-22 Germain Garand + + Implement floating auto-width table quirk + + * rendering/render_block.cpp (positionNewFloats): in quirkmode, floated auto-width + tables try to fit within remaining linewidth, so look for minWidth, and relayout if + position found ends up being narrower than current table width. + +2006-06-20 Germain Garand + + Don't let a float serie grow an object's maxwidth beyond the available width + + * rendering/render_block.cpp (calcInlineMinMaxWidth/calcBlockMinMaxWidth): lazzily check available width + so floats don't overflow it if they can break line. + * rendering/render_box.{h,cpp} (availableWidth{,Using}): new. Like availableHeight{,Using} + * rendering/render_canvas.cpp (RenderCanvas::layout): set m_viewportWidth before recalculating minmax, as + availableWidth needs it. + +2006-06-15 Allan Sandfeld Jensen + + Merge CSS3 properties background-size, background-origin and background-clip from WebCore + + * rendering/render_style.{h,cpp}: New properties + * rendering/render_box.cpp: Handle the values in paintBackgroundExtended. + * dom/css_value.h: Add CSS_PAIR primitive value + * css/css_valueimpl.{h,cpp}: Add PairImpl primitive value + * css/cssstyleselector.cpp: New properties + * css/cssvalues.in: New values + * css/cssproperties.in: New properties + * css/cssparser.{h,cpp}: Clean-up short-hand parsing WC style + +2006-06-14 Allan Sandfeld Jensen + + Implement replaced CSS(3) content, and fix various details in generated pseudo elements for CSS 2.1 + + * rendering/render_style.{h,cpp}: Add REPLACED and MARKER pseudo styles + * rendering/render_container.{h,cpp}: + (updatePseudoChild) Allow display: block as per CSS 2.1 standard + (updateReplacedContent) Handle changes in Replaced content. + (childrenAllowed) forbid children when generated content is used, this prevents + their render-objects from being attached. + * rendering/render_block.cpp: Postpone updatePseudoChilden to attachment because block + children might need the elements parents. + * rendering/render_inline.cpp: ditto + * rendering/render_generated.{h,cpp}: Add new class RenderGlyph to render list-style glyphs (square, disc, etc.) + * xml/dom_nodeimpl.cpp: + (NodeImpl::diff) detect changes in content and return Detach + * css/css_base.{h,cpp}: Add marker and replaced pseudo-styles + * css/cssstyleselector.cpp: + (checkOneSelector) Allow content on more elements + (precomputeAttributeDependencies) Track attributes inside :not elements as well + +2006-06-08 George Staikos + + Fix