- 01 Oct, 2006 13 commits
-
-
mjs authored
Rubber stamped by Alexey. - reverted fix for http://bugs.webkit.org/show_bug.cgi?id=10893 since it led to layout test crashes * fast/dom/css-insert-import-rule-expected.txt: Removed. * fast/dom/css-insert-import-rule.html: Removed. WebCore: Rubber stamped by Alexey. - reverted fix for http://bugs.webkit.org/show_bug.cgi?id=10893 since it led to layout test crashes * css/CSSGrammar.y: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16706 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eseidel authored
Reviewed by mjs. Eliminate a few more hotspots in SVG drawing code. No test cases were harmed in the making of this patch. (And SVG has no perf tests.) * kcanvas/device/quartz/KRenderingPaintServerQuartz.mm: (WebCore::KRenderingPaintServerSolidQuartz::setup): use a single shared colorspace, avoid a few mallocs * platform/mac/ColorMac.mm: (+[WebCoreControlTintObserver WebCore]): store a single shared colorspace instance git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16705 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ggaren authored
Added test for the viewource attribute, which applies to <frame> and <iframe> elements. * fast/frames/viewsource-attribute-expected.txt: Added. * fast/frames/viewsource-attribute.html: Added. * fast/frames/frameElement-widthheight.html: Removed stray character. WebCore: Reviewed by Maciej. More frame/iframe merging. - Removed needWidgetUpdate and related code. needWidgetUpdate is always false, so this was dead code. - Removed FIXME about setInViewSourceMode inside openURL(). openURL(), rather than attach(), is the correct place for setInViewSourceMode, because openURL() is the function that creates our frame. - Moved IFRAME insertedIntoDocument() code into FRAME, and removed FRAME code that did the same thing in other places. - Made FRAME's attach() method suffuciently generic so that IFRAME could call up to it, rather than skipping its superclass and calling up directly to ELEMENT. - Changed a few IFRAME up-calls to ELEMENT into up-calls to FRAME. - Replaced ad hoc frame loading code in FRAME::attach() with call to openURL(), the designated frame loading function. Layout tests pass. I added a layout test for viewsource mode, since I broke it in the course of writing this patch. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16703 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca authored
Reviewed by Geoff. * dom/Document.cpp: (WebCore::Document::recalcStyleSelector): * dom/Document.h: Get rid of availableStyleSheets() and remove DeprecatedStringList.h include. * dom/Node.h: Remove DeprecatedStringList class forward declaration. * editing/markup.cpp: Include DeprecatedStringList.h here since it's not included by Document.h anymore. * kcanvas/KCanvasTreeDebug.cpp: * kcanvas/KCanvasTreeDebug.h: Remove unused functions. * loader/loader.cpp: * page/Frame.cpp: * page/Frame.h: * page/FrameView.h: Fixup DeprecatedStringList.h includes. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16701 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
harrison authored
Reviewed by John Sullivan. <rdar://problem/4641262> REGRESSION: Japanese text corrupts on wrapping point * fast/text/international/wrap-CJK-001-expected.checksum: Added. * fast/text/international/wrap-CJK-001-expected.png: Added. * fast/text/international/wrap-CJK-001-expected.txt: Added. * fast/text/international/wrap-CJK-001.html: Added. WebCore: Reviewed by John Sullivan. <rdar://problem/4641262> REGRESSION: Japanese text corrupts on wrapping point Problem was that the decision to trim was based only on whether the character is a soft hyphen, which caused pretty much any Japanese character to go. Changed to decide based on whether the character is ignorable whitespace. Test: * fast/text/international/wrap-CJK-001.html * rendering/bidi.cpp: (WebCore::isTrimmableChar): New. Checks whether character is whitespace that can be ignored according to the text node's style. trimmed from the end of wrapped line. (WebCore::checkMidpoints): Call isTrimmable() rather than checking for char != SOFT_HYPHEN. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16700 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
andersca authored
Reviewed by Mitz Pettel. Convert the SVG code to use Vector<String> instead of DeprecatedStringList. * ksvg2/svg/SVGColor.cpp: (WebCore::SVGColor::setRGBColor): * ksvg2/svg/SVGComponentTransferFunctionElement.cpp: * ksvg2/svg/SVGFEDiffuseLightingElement.cpp: (WebCore::SVGFEDiffuseLightingElement::parseMappedAttribute): * ksvg2/svg/SVGFEGaussianBlurElement.cpp: (WebCore::SVGFEGaussianBlurElement::parseMappedAttribute): * ksvg2/svg/SVGFESpecularLightingElement.cpp: (SVGFESpecularLightingElement::parseMappedAttribute): * ksvg2/svg/SVGFETurbulenceElement.cpp: (WebCore::SVGFETurbulenceElement::parseMappedAttribute): * ksvg2/svg/SVGLengthList.cpp: * ksvg2/svg/SVGNumberList.cpp: (SVGNumberList::parse): * ksvg2/svg/SVGNumberList.h: * ksvg2/svg/SVGPreserveAspectRatio.cpp: (WebCore::SVGPreserveAspectRatio::parsePreserveAspectRatio): * ksvg2/svg/SVGStringList.cpp: (WebCore::SVGStringList::reset): * ksvg2/svg/SVGStringList.h: * ksvg2/svg/SVGTransformable.cpp: (SVGTransformable::parseTransformAttribute): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16699 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap authored
Reviewed by Eric, tweaked and landed by ap. Fix Qt/Linux build. * CMakeLists.txt: * platform/qt/PlatformScrollBar.h: * platform/qt/TemporaryLinkStubs.cpp: (WebCore::ScrollBar::ScrollBar): (WebCore::PlatformScrollBar::PlatformScrollBar): (FrameView::passMousePressEventToSubframe): (FrameView::passMouseMoveEventToSubframe): (FrameView::passMouseReleaseEventToSubframe): (FrameView::passWheelEventToSubframe): (FrameView::passMousePressEventToScrollbar): * ksvg2/svg/SVGDocument.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16698 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap authored
Reviewed by Darin. Fix for http://bugs.webkit.org/show_bug.cgi?id=10190 REGRESSION: Repro crash when navigating away from an image document that hasn't finished loading No test case added (probably requires new DumpRenderTree functionality) * rendering/RenderImage.cpp: (WebCore::RenderImage::imageChanged): Added early return if the document is being destroyed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16697 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap authored
Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=10842 REGRESSION (r15418): contenteditable div truncates rightmost Japanese character Make sure we only break after a space (and not any other valid line-break) if the style is -webkit-line-break: after-white-space (e.g. for a contentEditable div). I also did a logic shuffle at Mitz's request to prevent doing an if on the same expression twice in quick succession. Test: fast/text/line-breaks-after-white-space.html * rendering/bidi.cpp: (WebCore::RenderBlock::findNextLineBreak): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16696 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16695 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap authored
http://bugzilla.opendarwin.org/show_bug.cgi?id=4372 JavaScript document.write page form does not submit in Safari Test: fast/forms/document-write.html * page/Frame.cpp: (WebCore::Frame::submitForm): Don't check for parsing(). git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16694 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap authored
* bridge/mac/FrameViewMac.mm: Add missing #imports. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16693 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hyatt authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16692 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 30 Sep, 2006 5 commits
-
-
weinig authored
Patch for http://bugs.webkit.org/show_bug.cgi?id=11102 Add more SVG Objective-C DOM bindings - Auto-generate Objective-C DOM bindings for DOMSVGAElement, DOMSVGAnimateColorElement, DOMSVGAnimateElement, DOMSVGAnimateTransformElement, DOMSVGAnimatedPathData, DOMSVGAnimatedPoints, DOMSVGAnimatedPreserveAspectRatio, DOMSVGAnimationElement, DOMSVGCircleElement, DOMSVGClipPathElement, DOMSVGColor, DOMSVGCursorElement, DOMSVGDefsElement, DOMSVGDescElement, DOMSVGDocument, DOMSVGEllipseElement, DOMSVGPreserveAspectRatio, and DOMSVGURIReference. * DerivedSources.make: * WebCore.xcodeproj/project.pbxproj: * bindings/objc/DOMInternal.h: * bindings/objc/DOMSVG.h: * bindings/scripts/CodeGeneratorObjC.pm: * ksvg2/svg/SVGAElement.idl: * ksvg2/svg/SVGAnimateColorElement.idl: * ksvg2/svg/SVGAnimateElement.idl: * ksvg2/svg/SVGAnimateTransformElement.idl: * ksvg2/svg/SVGAnimatedPathData.idl: * ksvg2/svg/SVGAnimatedPoints.idl: * ksvg2/svg/SVGAnimatedPreserveAspectRatio.idl: * ksvg2/svg/SVGAnimationElement.idl: * ksvg2/svg/SVGCircleElement.idl: * ksvg2/svg/SVGClipPathElement.idl: * ksvg2/svg/SVGColor.idl: * ksvg2/svg/SVGCursorElement.idl: * ksvg2/svg/SVGDefsElement.idl: * ksvg2/svg/SVGDescElement.idl: * ksvg2/svg/SVGDocument.idl: * ksvg2/svg/SVGEllipseElement.idl: * ksvg2/svg/SVGPointList.idl: * ksvg2/svg/SVGPreserveAspectRatio.idl: * ksvg2/svg/SVGRect.idl: * ksvg2/svg/SVGSVGElement.idl: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16691 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mjs authored
- fix build * platform/FloatRect.h: (WebCore::FloatRect::contains): Added; not exactly the same semantic as IntRect containment but more appropriate for path-type stuff. * platform/cg/PathCG.cpp: (WebCore::Path::contains): Don't use enclosingIntRect, just use FloatRect::contains. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16690 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ap authored
http://bugs.webkit.org/show_bug.cgi?id=11011 External CSS is parsed as iso-8859-1 even though the main document is utf-8 Test: fast/encoding/css-charset-default.xhtml * loader/CachedResourceClient.h: (WebCore::CachedResourceClient::setCSSStyleSheet): (WebCore::CachedResourceClient::setXSLStyleSheet): Divided setStyleSheet into setCSSStyleSheet and setXSLStyleSheet. The former takes an additional charset parameter, to be passed to CSSStyleSheet constructor. * css/CSSImportRule.cpp: (WebCore::CSSImportRule::setCSSStyleSheet): (WebCore::CSSImportRule::insertedIntoParent): Default to parent stylesheet's charset. * css/CSSImportRule.h: * css/CSSStyleSheet.cpp: (WebCore::CSSStyleSheet::CSSStyleSheet): * css/CSSStyleSheet.h: Added an m_charset member to be used when loading child stylesheets. Removed an unused m_implicit member. Changed some String parameters to const String&. * css/StyleSheet.cpp: (WebCore::StyleSheet::StyleSheet): * css/StyleSheet.h: Changed some String parameters to const String&. Removed an unused (even unimplemented) constructor. * css/StyleSheetList.cpp: (WebCore::StyleSheetList::length): (WebCore::StyleSheetList::item): * css/StyleSheetList.h: Special-casing implicit stylesheets seemed to be dead code, removed. * dom/Document.cpp: (WebCore::Document::setCSSStyleSheet): (WebCore::Document::recalcStyleSelector): * dom/Document.h: Renamed setStyleSheet() to setCSSStyleSheet(). * dom/ProcessingInstruction.cpp: (WebCore::ProcessingInstruction::checkStyleSheet): Pass a correct charset to requestCSSStyleSheet(). (WebCore::ProcessingInstruction::setCSSStyleSheet): (WebCore::ProcessingInstruction::setXSLStyleSheet): (WebCore::ProcessingInstruction::parseStyleSheet): * dom/ProcessingInstruction.h: * html/HTMLLinkElement.cpp: (WebCore::HTMLLinkElement::process): Default to document encoding if a charset attribute is not specified. (WebCore::HTMLLinkElement::setCSSStyleSheet): * html/HTMLLinkElement.h: * html/HTMLStyleElement.cpp: (WebCore::HTMLStyleElement::childrenChanged): * ksvg2/svg/SVGStyleElement.cpp: (WebCore::SVGStyleElement::childrenChanged): Inherit URL and charset from the document. * loader/Cache.cpp: (WebCore::Cache::requestCSSStyleSheet): * loader/Cache.h: Adjust for setStyleSheet() renaming. * loader/CachedCSSStyleSheet.h: Removed an unused constructor. * loader/CachedCSSStyleSheet.cpp: (WebCore::CachedCSSStyleSheet::ref): (WebCore::CachedCSSStyleSheet::deref): (WebCore::CachedCSSStyleSheet::checkNotify): Pass the encoding to setCSSStyleSheet(). * loader/CachedXSLStyleSheet.cpp: (WebCore::CachedXSLStyleSheet::ref): (WebCore::CachedXSLStyleSheet::checkNotify): * loader/DocLoader.cpp: (WebCore::DocLoader::requestCSSStyleSheet): * loader/DocLoader.h: * page/Frame.cpp: (WebCore::UserStyleSheetLoader::UserStyleSheetLoader): (WebCore::UserStyleSheetLoader::setCSSStyleSheet): * xml/XSLImportRule.cpp: (WebCore::XSLImportRule::setXSLStyleSheet): (WebCore::XSLImportRule::loadSheet): * xml/XSLImportRule.h: Adjust for setStyleSheet() renaming. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16689 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rwlbuis authored
http://bugs.webkit.org/show_bug.cgi?id=11096 Hit testing for polylines fails Fix Path::contains so it handles filled, non-closed paths too. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16688 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hyatt authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16683 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 29 Sep, 2006 16 commits
-
-
adele authored
Fixes windows bustage: http://bugs.webkit.org/show_bug.cgi?id=11093 * platform/win/PlatformScrollBar.h: * platform/win/TemporaryLinkStubs.cpp: (PlatformScrollBar::PlatformScrollBar): (ScrollBar::ScrollBar): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16682 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hyatt authored
in RenderObject::NodeInfo (and then propagating that Widget to MouseEventWithHitTestResults). This allows RenderListBox and RenderBlock to do the same thing when the mouse is over the scrollbar. Also land fix to support font-size: 0. Reviewed by mjs (scrollbar), eric (font-size) * dom/Document.cpp: (WebCore::Document::prepareMouseEvent): * page/Frame.cpp: (WebCore::Frame::passWidgetMouseDownEventToWidget): * page/FrameView.cpp: (WebCore::selectCursor): (WebCore::FrameView::handleMouseMoveEvent): (WebCore::FrameView::dispatchMouseEvent): * page/MouseEventWithHitTestResults.cpp: (WebCore::MouseEventWithHitTestResults::MouseEventWithHitTestResults): * page/MouseEventWithHitTestResults.h: (WebCore::MouseEventWithHitTestResults::scrollbar): * rendering/RenderBlock.cpp: (WebCore::RenderBlock::isPointInScrollbar): (WebCore::RenderBlock::nodeAtPoint): * rendering/RenderBlock.h: * rendering/RenderLayer.cpp: (WebCore::RenderLayer::hitTest): * rendering/RenderLayer.h: (WebCore::RenderLayer::getHiddenBehavior): * rendering/RenderListBox.cpp: (WebCore::RenderListBox::RenderListBox): (WebCore::RenderListBox::~RenderListBox): (WebCore::RenderListBox::isPointInScrollbar): * rendering/RenderListBox.h: * rendering/RenderObject.h: (WebCore::RenderObject::NodeInfo::NodeInfo): (WebCore::RenderObject::NodeInfo::scrollbar): (WebCore::RenderObject::NodeInfo::setScrollbar): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16678 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
adele authored
Fixes: http://bugs.webkit.org/show_bug.cgi?id=11092 * platform/win/ScrollViewWin.cpp: (WebCore::ScrollView::convertToContainingWindow): (WebCore::ScrollView::convertFromContainingWindow): * platform/win/WidgetWin.cpp: (WebCore::Widget::convertToContainingWindow): (WebCore::Widget::convertFromContainingWindow): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16677 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
adele authored
* platform/win/TemporaryLinkStubs.cpp: (PlatformScrollBar::PlatformScrollBar): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16676 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
adele authored
Fixing build bustage with cast to int. * html/HTMLSelectElement.cpp: (WebCore::HTMLSelectElement::lastSelectedListIndex): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16667 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
adele authored
* rendering/RenderListBox.cpp: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16666 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
adele authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16665 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bdakin authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16664 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
adele authored
Initial implementation of engine-based list box control. * WebCore.xcodeproj/project.pbxproj: Added RenderListBox.h and RenderListBox.cpp * bridge/mac/FrameMac.h: Added _mouseDownMayStartAutoscroll. * bridge/mac/FrameMac.mm: Updated autoscroll code to use renderers instead of layers, so any renderer that implements autoscroll will work. (WebCore::FrameMac::FrameMac): (WebCore::FrameMac::handleMousePressEvent): (WebCore::FrameMac::handleMouseMoveEvent): (WebCore::FrameMac::mouseDown): * page/Frame.cpp: (WebCore::Frame::handleMouseMoveEvent): (WebCore::Frame::scrollOverflow): Don't scroll list box here- this would cause arrow keys to scroll instead of select. (WebCore::Frame::handleAutoscroll): Updated to use a renderer instead of a layer when setting up autoscroll. (WebCore::Frame::autoscrollTimerFired): ditto. (WebCore::Frame::stopAutoscrollTimer): ditto. (WebCore::Frame::passWidgetMouseDownEventToWidget): Updated to check for list box's scroll bar. * page/Frame.h: * page/FramePrivate.h: (WebCore::FramePrivate::FramePrivate): Updated to use renderer unstead of layer for autoscroll. * page/FrameView.cpp: Keep track of current mouse position so this can be used for list box autoscroll. (WebCore::FrameViewPrivate::reset): (WebCore::FrameView::currentMousePosition): (WebCore::FrameView::handleMousePressEvent): (WebCore::FrameView::handleMouseDoubleClickEvent): (WebCore::selectCursor): (WebCore::FrameView::handleMouseMoveEvent): (WebCore::FrameView::handleMouseReleaseEvent): * page/FrameView.h: * platform/ScrollBar.cpp: (WebCore::ScrollBar::ScrollBar): Added controlSize argument. The list box will use a smaller scroll bar size. * platform/ScrollBar.h: (WebCore::): (WebCore::ScrollBar::controlSize): * platform/mac/PlatformScrollBar.h: * platform/mac/PlatformScrollBarMac.mm: (NSControlSizeForScrollBarControlSize): (-[WebCoreScrollBar initWithPlatformScrollBar:]): (WebCore::PlatformScrollBar::PlatformScrollBar): * rendering/RenderBlock.h: * rendering/RenderLayer.cpp: (WebCore::RenderLayer::createScrollbar): Updated to pass regular control size to scrollbar constructor. * rendering/RenderLayer.h: * rendering/RenderObject.cpp: (WebCore::RenderObject::shouldAutoscroll): (WebCore::RenderObject::autoscroll): * rendering/RenderObject.h: (WebCore::RenderObject::isListBox): * css/html4.css: Added properties for new list boxes. * html/HTMLOptionElement.cpp: (WebCore::HTMLOptionElement::setSelected): Doesn't allow selection to be changed here if the option is disabled. (WebCore::HTMLOptionElement::disabled): Added. Checks the parent's disabled status. * html/HTMLOptionElement.h: Added disabled method. * html/HTMLSelectElement.cpp: Added appearance switch for new list box implementation. (WebCore::HTMLSelectElement::recalcStyle): (WebCore::HTMLSelectElement::lastSelectedListIndex): (WebCore::HTMLSelectElement::deselectItems): (WebCore::HTMLSelectElement::setSelectedIndex): (WebCore::HTMLSelectElement::isKeyboardFocusable): (WebCore::HTMLSelectElement::isMouseFocusable): (WebCore::HTMLSelectElement::createRenderer): (WebCore::HTMLSelectElement::recalcListItems): (WebCore::HTMLSelectElement::setRecalcListItems): (WebCore::HTMLSelectElement::reset): (WebCore::HTMLSelectElement::notifyOptionSelected): (WebCore::HTMLSelectElement::defaultEventHandler): Added code to select options for list box when clicking and using arrow keys. (WebCore::HTMLSelectElement::nextSelectableListIndex): (WebCore::HTMLSelectElement::previousSelectableListIndex): * html/HTMLSelectElement.h: * rendering/RenderTheme.cpp: Added support for ListBoxAppearance (WebCore::RenderTheme::paint): (WebCore::RenderTheme::paintBorderOnly): (WebCore::RenderTheme::paintDecorations): (WebCore::RenderTheme::activeListBoxSelectionBackgroundColor): (WebCore::RenderTheme::activeListBoxSelectionForegroundColor): (WebCore::RenderTheme::inactiveListBoxSelectionBackgroundColor): (WebCore::RenderTheme::inactiveListBoxSelectionForegroundColor): (WebCore::RenderTheme::isControlStyled): (WebCore::RenderTheme::supportsFocusRing): * rendering/RenderTheme.h: * rendering/RenderThemeMac.mm: (WebCore::RenderThemeMac::isControlStyled): * rendering/RenderListBox.cpp: Added. (WebCore::RenderListBox::RenderListBox): (WebCore::RenderListBox::~RenderListBox): (WebCore::RenderListBox::setStyle): (WebCore::RenderListBox::updateFromElement): (WebCore::RenderListBox::calcMinMaxWidth): (WebCore::RenderListBox::size): (WebCore::RenderListBox::numItems): (WebCore::RenderListBox::calcHeight): (WebCore::RenderListBox::baselinePosition): (WebCore::RenderListBox::itemBoundingBoxRect): (WebCore::RenderListBox::paintObject): (WebCore::RenderListBox::paintScrollbar): (WebCore::RenderListBox::paintItemForeground): (WebCore::RenderListBox::paintItemBackground): (WebCore::RenderListBox::scrollBarTarget): (WebCore::RenderListBox::isPointInScrollbar): (WebCore::RenderListBox::optionAtPoint): (WebCore::RenderListBox::autoscroll): (WebCore::RenderListBox::scrollToRevealElementAtListIndex): (WebCore::RenderListBox::scroll): (WebCore::RenderListBox::valueChanged): * rendering/RenderListBox.h: Added. (WebCore::RenderListBox::isListBox): (WebCore::RenderListBox::selectionChanged): (WebCore::RenderListBox::setSelectionChanged): (WebCore::RenderListBox::canHaveChildren): (WebCore::RenderListBox::renderName): (WebCore::RenderListBox::setOptionsChanged): (WebCore::RenderListBox::shouldAutoscroll): (WebCore::RenderListBox::listIndexIsVisible): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16663 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
bdakin authored
We had a bug where html4.css was ignoring Media Queries. In the ned the problem was that we were trying to send a char* to the MediaQueryEvaluator constructor that expects a String, but the char* got interpreted as a bool, the wrong constructor was called, and the media type was never set. No test case possible since this only affects html4.css * css/MediaQueryEvaluator.cpp: New constructor that expects takes a char* (WebCore::MediaQueryEvaluator): * css/MediaQueryEvaluator.h: Same. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16662 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ggaren authored
Reviewed by John, Maciej. Added test for whether a frame element reports its src attribute as a complete, rather than relative, URL. * fast/frames/frame-src-attribute-expected.txt: Added. * fast/frames/frame-src-attribute.html: Added. * fast/frames/resources/frame-src-attribute-subframe.html: Added. WebCore: Reviewed by John, Maciej. Integrated some frame and iframe code. I'm trying to fix up frame ownership and loading. Reducing the number of different code paths involved seemed like a good first step. As a side effect, I fixed a bug where FRAME elements would report their src attributes as relative, rather than compelete, URLs. (IFRAME elements had the correct complete URL behavior.) * html/HTMLFrameElement.cpp: (WebCore::HTMLFrameElement::isURLAllowed): Fixed comment typo (WebCore::HTMLFrameElement::openURL): (1) Removed checks that requestFrame does for us (2) Added isURLAllowed check, to have one clear bottleneck for it (3) Added viewsource check, to have one clear bottleneck for it (WebCore::HTMLFrameElement::close): Changed to use the common contentFrame() method, instead of finding our content frame in our own unique way. (WebCore::HTMLFrameElement::setLocation): Removed isURLAllowed check, since openURL does this for us now. (WebCore::HTMLFrameElement::src): Return complete URL instead of relative. This is what FF does, and it made no sense to have different behaviors for FRAME and IFRAME elements. * html/HTMLIFrameElement.cpp: (WebCore::HTMLIFrameElement::HTMLIFrameElement): Removed duplicate init code. * html/HTMLIFrameElement.h: Removed src() and openURL() methods, since HTMLFrameElement now does everything we need. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16661 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rwlbuis authored
Fix Qt/Linux build. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16660 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
thatcher authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16648 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
weinig authored
Patch for http://bugzilla.opendarwin.org/show_bug.cgi?id=11082 Simplify Internal methods for the auto-generated Objective-C DOM code - Auto-generate the internal methods for more Objective-C classes. * WebCore.xcodeproj/project.pbxproj: * bindings/objc/DOM.mm: * bindings/objc/DOMCSS.mm: (-[DOMStyleSheet WebCore::]): (+[DOMStyleSheet _styleSheetWith:WebCore::]): (-[DOMCSSRule WebCore::]): (-[DOMCSSRule _initWithCSSRule:WebCore::]): (+[DOMCSSRule _CSSRuleWith:WebCore::]): (-[DOMCSSValue WebCore::]): (-[DOMCSSValue _initWithCSSValue:WebCore::]): (+[DOMCSSValue _CSSValueWith:WebCore::]): * bindings/objc/DOMHTMLAppletElement.mm: (-[DOMHTMLAppletElement WebCore::]): (+[DOMHTMLAppletElement _HTMLOptionElementWith:WebCore::]): * bindings/objc/DOMHTMLEmbedElement.mm: (-[DOMHTMLEmbedElement WebCore::]): (+[DOMHTMLEmbedElement _HTMLEmbedElementWith:WebCore::]): * bindings/objc/DOMInternal.h: * bindings/objc/DOMInternal.mm: * bindings/scripts/CodeGeneratorObjC.pm: * css/CSSCharsetRule.idl: * css/CSSFontFaceRule.idl: * css/CSSImportRule.idl: * css/CSSMediaRule.idl: * css/CSSPageRule.idl: * css/CSSPrimitiveValue.idl: * css/CSSStyleRule.idl: * css/CSSStyleSheet.idl: * css/CSSUnknownRule.idl: * css/CSSValueList.idl: * dom/KeyboardEvent.idl: * dom/MouseEvent.idl: * dom/MutationEvent.idl: * dom/NodeIterator.idl: * dom/OverflowEvent.idl: * dom/UIEvent.idl: * dom/WheelEvent.idl: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16645 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
harrison authored
Reviewed by John Sullivan. <rdar://problem/4663772> REGRESSION: Cannot type in Japanese after replying to a particular message <rdar://problem/4673293> REGRESSION: Can't enter the Japanese characters in Mail or Blot * fast/text/attributed-substring-from-range-001-expected.txt: Added. * fast/text/attributed-substring-from-range-001.html: Added. Check attributed string results when starting or ending at a br element. WebCore: Reviewed by John Sullivan. <rdar://problem/4663772> REGRESSION: Cannot type in Japanese after replying to a particular message <rdar://problem/4673293> REGRESSION: Can't enter the Japanese characters in Mail or Blot Test added * fast/text/attributed-substring-from-range-001.html * bridge/mac/FrameMac.mm: (WebCore::FrameMac::attributedString): Handle non-zero offsets when start and/or end node is a container. Offset used to be ignored in this case. Also, add validation of the range. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16642 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rwlbuis authored
http://bugzilla.opendarwin.org/show_bug.cgi?id=10893 InsertRule can not handle @import statements Allow @import as part of a css rule. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16633 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 28 Sep, 2006 6 commits
-
-
hyatt authored
* bridge/mac/FrameMac.mm: (WebCore::FrameMac::eventMayStartDrag): (WebCore::FrameMac::dragHysteresisExceeded): (WebCore::FrameMac::mouseDown): (WebCore::FrameMac::shouldDragAutoNode): (WebCore::FrameMac::sendContextMenuEvent): * bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge _visiblePositionForPoint:]): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16631 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hyatt authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16630 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
aliceli1 authored
* WebCore.xcodeproj/project.pbxproj: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16629 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
aliceli1 authored
* WebCore.vcproj/WebCore/WebCore.vcproj: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16628 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
aliceli1 authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16626 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
aroben authored
Remove no-longer-used PopUpButton. * WebCore.vcproj/WebCore/WebCore.vcproj: Remove PopUpButton.h * WebCore.xcodeproj/project.pbxproj: Remove PopUpButton.h, PopUpButtonMac.mm * platform/PopUpButton.h: Removed. * platform/mac/PopUpButtonMac.mm: Removed. * platform/win/TemporaryLinkStubs.cpp: Remove PopUpButton:: methods * rendering/DeprecatedRenderSelect.cpp: Change #include of PopUpButton.h to ListBox.h git-svn-id: http://svn.webkit.org/repository/webkit/trunk@16624 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-