1. 18 Jan, 2007 4 commits
    • justing's avatar
      LayoutTests: · 2e1dbd68
      justing authored
              Reviewed by darin
      
              <rdar://problem/4920488>
              REGRESSION: A crash occurs at WebCore::Range::processContents () when removing formatting from selected text (that contains a link)
      
              * editing/execCommand/4920488-expected.checksum: Added.
              * editing/execCommand/4920488-expected.png: Added.
              * editing/execCommand/4920488-expected.txt: Added.
              * editing/execCommand/4920488.html: Added.
              * fast/dom/Range/compareBoundaryPoints-1-expected.txt: Added.
              * fast/dom/Range/compareBoundaryPoints-1.html: Added.
      
      WebCore:
      
              Reviewed by darin
              
              <rdar://problem/4920488>
              REGRESSION: A crash occurs at WebCore::Range::processContents () when removing formatting from selected text (that contains a link)
      
              * dom/Range.cpp:
              (WebCore::Range::commonAncestorContainer): Return null if the nodes
              don't have a common ancestor.  As a side effect, the public 
              commonAncestorContainer now sets an exception if the Range starts
              in one document and ends in another, or starts or ends in a tree
              that's been removed from the document.  The spec doesn't cover
              this and there is no precedent in other browsers for this case because
              they don't allow invalid Ranges (you can create one with WebCore
              by removing a node that contains the start/end of a Range).
              (WebCore::Range::compareBoundaryPoints): If the the two positions
              are in nodes that have no common ancestor, return null.  This doesn't
              change the behavior of the public compareBoundaryPoints: it already
              throws an exception if the two positions are in nodes that don't have
              a common ancestor.  This follows the spec.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18924 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      2e1dbd68
    • sullivan's avatar
      The one word was typed by me, but only after debugging for a long time with Darin. · cf0547b6
      sullivan authored
              - fixed <rdar://problem/4912002> REGRESSION: Series of words marked as a single misspelled word
      
              * editing/TextIterator.cpp:
              (WebCore::WordAwareIterator::WordAwareIterator):
              We were creating a TextIterator with the default kind, but WordAwareIterator is designed to work
              in concert with CharacterIterator, so they need to use the same kind. CharacterIterator uses
              kind RUNFINDER, so WordAwareIterator needs to do so also.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18923 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      cf0547b6
    • adele's avatar
      Reviewed by Brady. · d5bffc33
      adele authored
              Fix for <rdar://problem/4900895> REGRESSION: onChange doesn't always fire for popups that have had value changed by JS
      
              No test case since you need to open up the menu to fire onChange.
      
              * html/HTMLSelectElement.cpp: (WebCore::HTMLSelectElement::setSelectedIndex):
                Keep track of m_lastOnChangeIndex even when we're not firing onChange.  Since
                the selected index has changed, we still want the m_lastOnChangeIndex to be up to date when we compare
                it later.  This matches our behavior in Safari 2.0.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18922 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      d5bffc33
    • adele's avatar
      Reviewed by Darin and John. · 6944b1ab
      adele authored
              - Fix for <rdar://problem/4816550> REGRESSION: autoscrolling doesn't work after double-click
      
              * page/EventHandler.cpp: (WebCore::EventHandler::handleMousePressEvent): Set swallowEvent bool instead
                of returning early for double and triple clicks.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18921 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      6944b1ab
  2. 17 Jan, 2007 24 commits
    • eseidel's avatar
      2007-01-17 Eric Seidel <eric@webkit.org> · 2621ed75
      eseidel authored
              Reviewed by Brady.
              
              Update results after SVG container hit testing changes.
      
              * svg/custom/pointer-events-text-expected.checksum:
              * svg/custom/pointer-events-text-expected.png:
              * svg/custom/pointer-events-text-expected.txt:
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18920 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      2621ed75
    • darin's avatar
      Reviewed by Hyatt. · 0f5d2d91
      darin authored
              * rendering/RenderObject.h: Removed unused nextEditable and previousEditable.
              * rendering/RenderObject.cpp: Ditto.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18919 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      0f5d2d91
    • darin's avatar
      WebCore: · 3c566516
      darin authored
              Reviewed by Maciej.
      
              - fix http://bugs.webkit.org/show_bug.cgi?id=12278
                <rdar://problem/4928705> REGRESSION(r13070): Dragged image size includes padding (12278)
      
              * WebCore.exp: Added HitTestResult::imageRect,
              removed HitTestResult::boundingBox.
      
              * rendering/HitTestResult.h:
              * rendering/HitTestResult.cpp: (WebCore::HitTestResult::imageRect):
              Added. Returns the content rectangle of the image.
      
              * rendering/RenderObject.h:
              * rendering/RenderObject.cpp:
              (WebCore::RenderObject::absolutePosition): Made const.
              (WebCore::RenderObject::contentBox): Added.
              (WebCore::RenderObject::absoluteContentBox): Added.
      
              * rendering/RenderBox.h:
              * rendering/RenderBox.cpp:
              (WebCore::RenderBox::absolutePosition): Made const.
      
              * rendering/RenderTableCell.h:
              * rendering/RenderTableCell.cpp:
              (WebCore::RenderTableCell::absolutePosition): Made const.
      
              * rendering/RenderView.h:
              * rendering/RenderView.cpp:
              (WebCore::RenderView::absolutePosition): Made const.
      
      WebKit:
      
              Reviewed by Maciej.
      
              - fix http://bugs.webkit.org/show_bug.cgi?id=12278
                <rdar://problem/4928705> REGRESSION(r13070): Dragged image size includes padding (12278)
      
              * Misc/WebElementDictionary.mm: (-[WebElementDictionary _imageRect]):
              Call HitTestResult::imageRect, not HitTestResult::boundingBox.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18918 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      3c566516
    • lars's avatar
      Fix my last commit to actually work in all cases. · daa8a2da
      lars authored
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18917 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      daa8a2da
    • adele's avatar
      Reviewed by Mitz. · e58f9dd4
      adele authored
              Updating this new layout test so that it actually crashes before the last fix.
      
              * fast/css/pseudostyle-anonymous-text.html:
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18916 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      e58f9dd4
    • adele's avatar
      LayoutTests: · 0457804c
      adele authored
              Reviewed by Beth.
      
              Test for http://bugs.webkit.org/show_bug.cgi?id=10139
              <rdar://problem/4823028> REGRESSION: Reproducible crash when selecting a popup/button with ::selection pseudostyle
      
              * fast/css/pseudostyle-anonymous-text-expected.txt: Added.
              * fast/css/pseudostyle-anonymous-text.html: Added.
      
      WebCore:
      
              Reviewed by Beth.
      
              Fix for  http://bugs.webkit.org/show_bug.cgi?id=10139
              <rdar://problem/4823028> REGRESSION: Reproducible crash when selecting a popup/button with ::selection pseudostyle
      
              Test: fast/css/pseudostyle-anonymous-text.html
      
              * rendering/RenderObject.cpp: (WebCore::RenderObject::getPseudoStyle): Nil check the node.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18915 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      0457804c
    • lars's avatar
      Reviewed by Maciej · ccdabaf2
      lars authored
              Make sure DumpRenderTree exits when run-webkit-tests
              is done.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18914 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      ccdabaf2
    • adele's avatar
      LayoutTests: · 041a496f
      adele authored
              Reviewed by Anders and John.
      
              Test for http://bugs.webkit.org/show_bug.cgi?id=11278
              <rdar://problem/4826875> REGRESSION: Popup width doesn't change to accommodate dynamic changes to options
      
              * fast/forms/menulist-width-change-expected.checksum: Added.
              * fast/forms/menulist-width-change-expected.png: Added.
              * fast/forms/menulist-width-change-expected.txt: Added.
              * fast/forms/menulist-width-change.html: Added.
      
      WebCore:
      
              Reviewed by Anders and John.
      
              Fix for http://bugs.webkit.org/show_bug.cgi?id=11278
              <rdar://problem/4826875> REGRESSION: Popup width doesn't change to accommodate dynamic changes to options
      
              Test: fast/forms/menulist-width-change.html
      
              * rendering/RenderMenuList.cpp: (WebCore::RenderMenuList::updateFromElement):
                When the options change, call setNeedsLayoutAndMinMaxRecalc.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18913 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      041a496f
    • ap's avatar
      Reviewed by Maciej. · 6b02c313
      ap authored
              http://bugs.webkit.org/show_bug.cgi?id=12268
              Give object prototypes their own names
      
      JavaScriptCore:
              * kjs/lookup.h: Append "Prototype" to ClassName in KJS_IMPLEMENT_PROTOTYPE.
      
      WebCore:
              * bindings/scripts/CodeGeneratorJS.pm: Append "Proto" to interface name for the prototype's ClassInfo.
      
              * bindings/js/JSHTMLInputElementBase.cpp:
              (WebCore::JSHTMLInputElementBasePrototypeFunction::callAsFunction):
              (WebCore::JSHTMLInputElementBase::JSHTMLInputElementBase):
              * bindings/js/JSHTMLInputElementBase.h:
              * bindings/js/JSXMLHttpRequest.cpp:
              (KJS::JSXMLHttpRequestConstructorImp::JSXMLHttpRequestConstructorImp):
              (KJS::JSXMLHttpRequest::JSXMLHttpRequest):
              (KJS::JSXMLHttpRequestPrototypeFunction::callAsFunction):
              * bindings/js/JSXMLHttpRequest.h:
              * bindings/js/JSXSLTProcessor.cpp:
              (KJS::JSXSLTProcessor::JSXSLTProcessor):
              (KJS::XSLTProcessorPrototypeFunction::callAsFunction):
              (KJS::XSLTProcessorConstructorImp::XSLTProcessorConstructorImp):
              * bindings/js/kjs_css.cpp:
              (KJS::DOMCSSStyleDeclaration::DOMCSSStyleDeclaration):
              (KJS::DOMCSSStyleDeclarationPrototypeFunction::callAsFunction):
              (KJS::DOMMediaList::DOMMediaList):
              (KJS::KJS::DOMMediaListPrototypeFunction::callAsFunction):
              (KJS::DOMCSSStyleSheet::DOMCSSStyleSheet):
              (KJS::DOMCSSStyleSheetPrototypeFunction::callAsFunction):
              (KJS::DOMCSSValue::DOMCSSValue):
              (KJS::DOMCSSValuePrototypeFunction::callAsFunction):
              * bindings/js/kjs_css.h:
              * bindings/js/kjs_dom.cpp:
              (KJS::DOMNode::DOMNode):
              (KJS::DOMNodePrototypeFunction::callAsFunction):
              (KJS::DOMEventTargetNode::DOMEventTargetNode):
              (KJS::DOMEventTargetNodePrototypeFunction::callAsFunction):
              (KJS::DOMNamedNodeMap::DOMNamedNodeMap):
              (KJS::DOMNamedNodeMapPrototypeFunction::callAsFunction):
              * bindings/js/kjs_dom.h:
              * bindings/js/kjs_domnode.h:
              * bindings/js/kjs_events.cpp:
              (KJS::DOMEvent::DOMEvent):
              (KJS::DOMEventPrototypeFunction::callAsFunction):
              (KJS::Clipboard::Clipboard):
              (KJS::ClipboardPrototypeFunction::callAsFunction):
              * bindings/js/kjs_events.h:
              * bindings/js/kjs_html.cpp:
              (KJS::JSHTMLDocumentPrototypeFunction::callAsFunction):
              (KJS::):
              (KJS::JSHTMLDocument::JSHTMLDocument):
              (KJS::JSHTMLElementPrototypeFunction::callAsFunction):
              (KJS::JSHTMLElement::JSHTMLElement):
              (KJS::JSHTMLCollection::JSHTMLCollection):
              (KJS::JSHTMLCollectionPrototypeFunction::callAsFunction):
              * bindings/js/kjs_html.h:
              * bindings/js/kjs_navigator.cpp:
              * bindings/js/kjs_traversal.cpp:
              (KJS::DOMNodeFilter::DOMNodeFilter):
              (KJS::DOMNodeFilterPrototypeFunction::callAsFunction):
              * bindings/js/kjs_window.cpp:
              (KJS::Window::clear):
              Changed Proto to Prototype, and ProtoFunc to PrototypeFunction.
      
      LayoutTests:
              * fast/dom/Window/window-properties-expected.txt:
              * fast/dom/prototype-chain-expected.txt:
              * fast/events/event-view-toString-expected.txt:
              * fast/events/mouseclick-target-and-positioning-expected.txt:
              * fast/tokenizer/external-script-document-write-expected.checksum:
              * fast/tokenizer/external-script-document-write-expected.png:
              * fast/tokenizer/external-script-document-write-expected.txt:
              Updated the results.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18912 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      6b02c313
    • lars's avatar
      Reviewed by Zack and Darin · 843e7775
      lars authored
              Fix the Qt build again after the latest Image changes.
              Also make some of the methods implemented in ImageCG 
              crossplatform.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18911 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      843e7775
    • andersca's avatar
      Reviewed by John Sullivan. · 2d606248
      andersca authored
              
              Move all code in WebNetscapePluginEmbeddedView down to WebBaseNetscapePluginView.
              
              * Plugins/WebBaseNetscapePluginView.h:
              * Plugins/WebBaseNetscapePluginView.mm:
              (-[WebBaseNetscapePluginView initWithFrame:pluginPackage:URL:baseURL:MIMEType:attributeKeys:attributeValues:loadManually:DOMElement:]):
              (-[WebBaseNetscapePluginView didStart]):
              (-[WebBaseNetscapePluginView dataSource]):
              (-[WebBaseNetscapePluginView dealloc]):
              (-[WebBaseNetscapePluginView pluginView:receivedResponse:]):
              (-[WebBaseNetscapePluginView pluginView:receivedData:]):
              (-[WebBaseNetscapePluginView pluginView:receivedError:]):
              (-[WebBaseNetscapePluginView pluginViewFinishedLoading:]):
              (-[WebBaseNetscapePluginView _redeliverStream]):
              * Plugins/WebNetscapePluginEmbeddedView.h:
              * Plugins/WebNetscapePluginEmbeddedView.mm:
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18910 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      2d606248
    • darin's avatar
      - quick attempt to fix the Qt build · f8ea7a15
      darin authored
              * platform/graphics/qt/ImageQt.cpp: (WebCore::BitmapImage::drawTiled):
              Remove obsolete parameters from this stub.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18909 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      f8ea7a15
    • eseidel's avatar
      2007-01-17 Eric Seidel <eric@webkit.org> · 9110e98a
      eseidel authored
              Reviewed by rwlbuis.
      
              Test: svg/custom/inner-svg-hit-test.svg
      
              * rendering/RenderSVGContainer.cpp:
              (WebCore::RenderSVGContainer::nodeAtPoint): never allow containers to be hit.
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18907 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      9110e98a
    • lars's avatar
      Reviewed by Zack · abae98ee
      lars authored
              Don't call receivedResponse twice for file: URLs.
              Never call back into the ResourceHandleClient once
              cancel() has been called on the ResourceHandle.
      
              Remove the inheritance from Shared<XxxClient> in the
              client classes.
      
              Answer asynchronously to most of the Policy checking methods
              in FrameLoaderClientQt to avoid some crashes in the loader.
      
              Small fixes in DumpRenderTree, so we don't by
              accident dump twice for the same test.
      
              Exclude one more test as it currently causes DumpRenderTree to
              hang forever.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18906 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      abae98ee
    • eseidel's avatar
      2007-01-17 Eric Seidel <eric@webkit.org> · 4df723d3
      eseidel authored
              No review, build fix only.
      
              * platform/graphics/cg/ImageCG.cpp: correct drawPatternCombined to drawPattern
              (WebCore::Image::drawPattern):
              (WebCore::Image::drawTiled):
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18905 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      4df723d3
    • eseidel's avatar
      2007-01-17 Eric Seidel <eric@webkit.org> · 45282487
      eseidel authored
              Reviewed by mitz and rwlbuis.
              
              SVGs do not work as background images:
              http://bugs.webkit.org/show_bug.cgi?id=12096
      
              Tests updated:
              - fast/images/svg-as-background.svg: now passes
              - fast/images/svg-as-tiled-background.svg: now passes
      
              * platform/graphics/BitmapImage.h:
              (WebCore::BitmapImage::nativeImageForCurrentFrame):
              (WebCore::BitmapImage::mayFillWithSolidColor):
              (WebCore::BitmapImage::solidColor):
              * platform/graphics/Image.h:
              (WebCore::Image::mayFillWithSolidColor):
              (WebCore::Image::solidColor):
              (WebCore::Image::nativeImageForCurrentFrame):
              (WebCore::Image::startAnimation):
              * platform/graphics/cg/ImageCG.cpp:
              (WebCore::Image::drawPatternCallback):
              (WebCore::Image::drawPatternCombined):
              (WebCore::caculatePatternScale):
              (WebCore::Image::drawTiled):
              * platform/graphics/cg/PDFDocumentImage.cpp:
              * platform/graphics/cg/PDFDocumentImage.h:
              * platform/graphics/svg/SVGImage.cpp:
              (WebCore::SVGImage::nativeImageForCurrentFrame):
              * platform/graphics/svg/SVGImage.h:
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18904 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      45282487
    • mjs's avatar
      Reviewed by Eric. · 35cebc7d
      mjs authored
              
              <rdar://problem/4887781> Seed: Repro Safari crash in -[WebHTMLRepresentation receivedData:withDataSource:] (music.aol.com)
      
              * WebView/WebDataSource.mm:
              (-[WebDataSource _receivedData:]): Protect self against destruction partway through this method.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18903 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      35cebc7d
    • rwlbuis's avatar
      Reviewed by Eric · ae1576d1
      rwlbuis authored
              Add proper condition for rx attribute negative check.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18902 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      ae1576d1
    • lars's avatar
      Add a message handler to DumpRenderTree that will · c57906ce
      lars authored
              suppress all debug output coming from qDebug() statements.
              Like this we can get rid of all the noise coming
              from the notImplemented() macro when running the
              layout tests. You can get it back by adding -v to
              DumpRenderTree's command line.
      
              Changed run-webkit-tests slightly, so we by default
              don't fail anymore when our output differs from what
              is generated on the Mac. Added a --strict option, so
              that we can still see this cases and fix them one by one.
      
              change all notImplemented() macros to use qDebug
              instead of fprintf(stder, ...)
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18901 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      c57906ce
    • beidson's avatar
      WebCore: · fb886a1b
      beidson authored
              Reviewed by Oliver
      
              A few enhancements to the HTTP Auth architecture
      
              * platform/network/ProtectionSpace.cpp:
              (WebCore::ProtectionSpace::isProxy):
              (WebCore::ProtectionSpace::receivesCredentialSecurely):
              * platform/network/ProtectionSpace.h:
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18900 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      fb886a1b
    • aliceli1's avatar
      WebCore: · 74225b66
      aliceli1 authored
              Reviewed by harrison.
      
              Fixed <rdar://problem/4921134> WebKit needs extensible cut/copy to allow additional types to be written to pasteboard
      
              * WebCore.xcodeproj/project.pbxproj:
              * bridge/EditorClient.h:
              * editing/Editor.cpp:
              (WebCore::Editor::copy):
              (WebCore::Editor::didWriteSelectionToPasteboard):
              * editing/Editor.h:
              * platform/graphics/svg/SVGImageEmptyClients.h:
              (WebCore::SVGEmptyEditorClient::didWriteSelectionToPasteboard):
      
      WebKit:
      
              Reviewed by harrison.
      
              Fixed <rdar://problem/4921134> WebKit needs extensible cut/copy to allow additional types to be written to pasteboard
      
              * DefaultDelegates/WebDefaultEditingDelegate.m:
              (-[WebDefaultEditingDelegate webView:didWriteSelectionToPasteboard:]):
              * WebCoreSupport/WebEditorClient.h:
              * WebCoreSupport/WebEditorClient.mm:
              (WebEditorClient::didWriteSelectionToPasteboard):
              * WebKit.xcodeproj/project.pbxproj:
              * WebView/WebEditingDelegate.h:
      
      WebKitQt:
      
              Added these stubs to keep the Qt build from failing.
      
              * WebCoreSupport/EditorClientQt.cpp:
              (WebCore::EditorClientQt::didWriteSelectionToPasteboard):
              * WebCoreSupport/EditorClientQt.h:
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18899 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      74225b66
    • justing's avatar
      LayoutTests: · f37c81f9
      justing authored
              Reviewed by harrison
              
              <rdar://problem/4747450>
              Gmail Editor: Caret doesn't always position itself after list marker
              <rdar://problem/4917055>
              GMail Editor: A hang can occur when attempting to apply list styling to selected indented text
      
              Added:
              * editing/execCommand/4747450-expected.checksum: Added.
              * editing/execCommand/4747450-expected.png: Added.
              * editing/execCommand/4747450-expected.txt: Added.
              * editing/execCommand/4747450.html: Added.
              * editing/execCommand/4917055-expected.txt: Added.
              * editing/execCommand/4917055.html: Added.
              Fixed:
              * editing/execCommand/create-list-with-hr-expected.checksum:
              * editing/execCommand/create-list-with-hr-expected.png:
              * editing/execCommand/create-list-with-hr-expected.txt:
      
      WebCore:
      
              Reviewed by harrison
              
              <rdar://problem/4747450>
              Gmail Editor: Caret doesn't always position itself after list marker
              <rdar://problem/4917055>
              GMail Editor: A hang can occur when attempting to apply list styling to selected indented text
      
              * editing/TextIterator.cpp:
              (WebCore::TextIterator::rangeFromLocationAndLength): Use VisiblePositions
              to compute the end of a run for emitted '\n's, because it's often wrong
              in that case.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18895 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      f37c81f9
    • darin's avatar
      - quick lame attempt to get Qt compiling again · c00cbc17
      darin authored
              * platform/qt/ContextMenuQt.cpp: Removed show() function.
      
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18894 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      c00cbc17
    • bdash's avatar
      2007-01-17 Nicholas Shanks <contact@nickshanks.com> · ced566b1
      bdash authored
              Reviewed by Darin.
      
              * platform/network/ResourceRequest.h:
              (WebCore::ResourceRequest::setHTTPAccept): Correct argument name.
      
      
      git-svn-id: svn://svn.chromium.org/blink/trunk@18893 bbb929c8-8fbe-4397-9dbb-9b2b20218538
      ced566b1
  3. 16 Jan, 2007 12 commits