Timeline
Mar 5, 2006:
- 11:38 PM Changeset in webkit [13163] by
-
- 2 edits in trunk/LayoutTests
- Checked in new results for the test I just landed. Looks like I landed an old copy.
- fast/dom/prototype-chain-expected.txt:
- 11:23 PM Changeset in webkit [13162] by
-
- 1 edit in trunk/WebCore/ChangeLog
Fix typo.
- 11:22 PM Changeset in webkit [13161] by
-
- 2 edits in trunk/WebCore
Reviewed by Maciej.
- fix failure seen running editing layout tests
- editing/ReplaceSelectionCommand.cpp: (WebCore::ReplacementFragment::ReplacementFragment): Use selectNodeContents instead of rolling our own. It handles the "nothing at all" edget case properly.
- 11:18 PM Changeset in webkit [13160] by
-
- 3 edits in trunk/WebCore
2006-03-05 Eric Seidel <eseidel@apple.com>
Reviewed by darin.
Make updateContents invalidate entire window for now.
Fix indentation in fileLoadTimer.
- platform/win/ScrollViewWin.cpp: (WebCore::ScrollView::updateContents):
- platform/win/TransferJobWin.cpp: (WebCore::TransferJob::fileLoadTimer):
- 10:26 PM Changeset in webkit [13159] by
-
- 17 edits in trunk/WebCore
2006-03-05 Eric Seidel <eseidel@apple.com>
Reviewed by adele.
Add missing files to vcproj (fix win32 build).
Also add svn:eol-style=native to new files.
- WebCore.vcproj/WebCore/WebCore.vcproj:
- 10:06 PM Changeset in webkit [13158] by
-
- 2 edits in trunk/JavaScriptCore
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj: Updated.
- 9:55 PM Changeset in webkit [13157] by
-
- 2 edits in trunk/WebCore
- fix build
- rendering/render_style.h: (compareEqual): Made it inline, fixed variable name.
- 9:52 PM Changeset in webkit [13156] by
-
- 12 edits6 adds in trunk
LayoutTests:
Reviewed by Darin.
Test for:
http://bugzilla.opendarwin.org/show_bug.cgi?id=6987
Implement maxlength for new text fields
- fast/forms/input-appearance-maxlength-expected.txt: Added.
- fast/forms/input-appearance-maxlength.html: Added.
WebCore:
Reviewed by Darin.
- Fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=6987 Implement maxlength for new text fields
Test added:
- fast/forms/input-appearance-maxlength.html
- WebCore.xcodeproj/project.pbxproj: Added BeforeTextInsertedEventImpl.h, BeforeTextInsertedEventImpl.cpp, HTMLTextFieldInnerElementImpl.h, and HTMLTextFieldInnerElementImpl.cpp
- khtml/html/HTMLInputElementImpl.cpp: (WebCore::HTMLInputElementImpl::init): initialize max length to 1024. (WebCore::HTMLInputElementImpl::defaultEventHandler): Added case to use the khtmlBeforeTextInsertedEvent to check for maxlength. (WebCore::HTMLInputElementImpl::parseMappedAttribute): Makes sure that maxlength is between 0 and 1024.
- editing/ReplaceSelectionCommand.cpp: (WebCore::ReplacementFragment::ReplacementFragment): After doing a test insert of the fragment, Send khtmlBeforeTextInsertedEvent to the root editable element so the event handler can update the text, and we can update the fragment.
- editing/TypingCommand.cpp: (WebCore::TypingCommand::insertText): Send khtmlBeforeTextInsertedEvent to the root editable element so the event handler can update the text if necessary.
- editing/EditCommand.cpp: (WebCore::EditCommand::apply): If we've just applied a command, send the khtmlTextInsertedEvent to the root editable element. (WebCore::EditCommand::unapply): ditto. (WebCore::EditCommand::reapply): ditto.
- khtml/html/HTMLTextFieldInnerElementImpl.h: Added this class to store a pointer to the input element for the text field and to handle default events. (DOM::HTMLTextFieldInnerElementImpl::shadowParentNode): Added. (DOM::HTMLTextFieldInnerElementImpl::setShadowParentNode): Added.
- khtml/html/HTMLTextFieldInnerElementImpl.cpp: Added. (WebCore::HTMLTextFieldInnerElementImpl::HTMLTextFieldInnerElementImpl): (WebCore::HTMLTextFieldInnerElementImpl::~HTMLTextFieldInnerElementImpl): (WebCore::HTMLTextFieldInnerElementImpl::defaultEventHandler): Sends khtmlBeforeTextInsertedEvents to the shadowParentNode, and handles khtmlTextInsertedEvents by telling the renderer that the subtree has changed.
- rendering/RenderTextField.cpp: Removed InputMutationListener since subtreeHasChanged is now called from the editing code. (WebCore::RenderTextField::~RenderTextField): removed event listener code. (WebCore::RenderTextField::updateFromElement): ditto. And creates HTMLTextFieldInnerElementImpl. (WebCore::RenderTextField::subtreeHasChanged): calls new text() method. (WebCore::RenderTextField::text): created to get a String of all text in the RenderTextField.
- rendering/RenderTextField.h: Removed InputMutationListener class.
- dom/EventNames.h: Added khtmlTextInserted and khtmlBeforeTextInserted.
- dom/BeforeTextInsertedEventImpl.cpp: Added. (WebCore::BeforeTextInsertedEventImpl::BeforeTextInsertedEventImpl):
- dom/BeforeTextInsertedEventImpl.h: Added. (WebCore::BeforeTextInsertedEventImpl::isBeforeTextInsertedEvent): (WebCore::BeforeTextInsertedEventImpl::text):
- dom/dom2_eventsimpl.cpp: (WebCore::EventImpl::isBeforeTextInsertedEvent): Added.
- dom/dom2_eventsimpl.h: Added isBeforeTextInsertedEvent.
- 9:47 PM Changeset in webkit [13155] by
-
- 2 edits in trunk/WebCore
- fix build, give this a return type.
- rendering/render_style.h: (compareEqual):
- 9:32 PM Changeset in webkit [13154] by
-
- 2 edits in trunk/JavaScriptCore
Fix by Mitz Pettel and Alexey Proskuryakov, reviewed by Maciej and Hyatt.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=7601 REGRESSION (r13089): Reproducible crash dereferencing a deallocated element on google image search
- kxmlcore/Platform.h: Corrected the define to enable USE(MULTIPLE_THREADS) on Mac OS X.
- 9:29 PM Changeset in webkit [13153] by
-
- 6 edits2 copies in trunk/JavaScriptCore
Reviewed by Maciej.
- http://bugzilla.opendarwin.org/show_bug.cgi?id=7616 get all references to KJS::Node out of internal.h
- JavaScriptCore.xcodeproj/project.pbxproj: Updated for file changes.
- kjs/Parser.cpp: Added.
- kjs/Parser.h: Added.
- kjs/internal.cpp: Removed the Parser class.
- kjs/internal.h: Ditto. Also removed unnecessary declarations of classes not used in this header.
- kjs/nodes.h: Added an include of "Parser.h".
- kjs/function.h: Added a declaration of FunctionBodyNode.
- 8:56 PM Changeset in webkit [13152] by
-
- 2 edits in trunk/WebCore
2006-03-05 Eric Seidel <eseidel@apple.com>
Add "Font.h" to (try to) fix the no-svg build.
- platform/mac/GraphicsContextMac.mm:
- 8:55 PM Changeset in webkit [13151] by
-
- 2 edits in trunk/WebCore
Rubber stamped by Darin.
- fix win32 build by avoiding use of typeof
- rendering/render_style.h: (compareEqual):
- 7:58 PM Changeset in webkit [13150] by
-
- 21 edits2 adds in trunk
Reviewed by Maciej.
- JSC support for the fix for <rdar://problem/4467143> JavaScript enumeration of HTML element properties skips DOM node properties
- kjs/lookup.h: (1) Added the KJS_DEFINE_PROTOTYPE_WITH_PROTOTYPE macro. The class definiton macro needs to know about the prototype's prototype so that the class constructor properly sets it. (2) Removed the KJS_IMPLEMENT_PROTOTYPE_WITH_PARENT macro. The class implementation macro does not need to know about the prototype's prototype, since getOwnPropertySlot should only look in the current object's property map, and not its prototype's.
LayoutTests:
Reviewed by Maciej.
- Layout test for <rdar://problem/4467143> JavaScript enumeration of HTML element properties skips DOM node properties
- fast/dom/prototype-chain-expected.txt: Added.
- fast/dom/prototype-chain.html: Added.
WebCore:
Reviewed by Maciej.
- Second cut at fixing <rdar://problem/4467143> JavaScript enumeration of HTML element properties skips DOM node properties
The approach here is for prototypes, in their constructor methods,
to set their own prototypes, preserving the prototype
chain in cases of multiple levels of inheritance. (Previously, our
code assumed that a prototype never had a prototype of its own,
and always used an empty object as a prototype's prototype).
- bindings/scripts/CodeGeneratorJS.pm: Use the new DEFINE_PROTOTYPE_WITH_PROTOTYPE macro in place of the KJS_IMPLEMENT_PROTOTYPE_WITH_PARENT macro.
- khtml/ecma/kjs_dom.cpp: Ditto.
- khtml/ecma/kjs_dom.h: Ditto.
- khtml/ecma/kjs_events.cpp: Ditto.
Touched these files to force a rebuild:
- bindings/js/JSDOMCore.cpp:
- bindings/js/JSDOMEvents.cpp:
- dom/Attr.idl:
- dom/CharacterData.idl:
- dom/DOMImplementation.idl:
- dom/DocumentType.idl:
- dom/Element.idl:
- dom/Entity.idl:
- dom/MutationEvent.idl:
- dom/Notation.idl:
- dom/ProcessingInstruction.idl:
- dom/Text.idl:
- dom/WheelEvent.idl:
- 6:53 PM Changeset in webkit [13149] by
-
- 40 edits in trunk/WebCore
Reviewed by Darin.
- use unsigned bitfields when storing enums in them, to avoid mangling on win32 (was causing all layout to be RTL) http://bugzilla.opendarwin.org/show_bug.cgi?id=7618
- css/css_base.cpp: (WebCore::CSSSelector::operator == ): (WebCore::CSSSelector::selectorText):
- css/css_base.h: (WebCore::CSSSelector::CSSSelector): (WebCore::CSSSelector::pseudoType): (WebCore::CSSSelector::relation):
- css/css_grammar.y:
- css/cssstyleselector.cpp: (WebCore::CSSStyleSelector::checkSelector): (WebCore::CSSStyleSelector::checkOneSelector):
- kcanvas/KCanvasPath.cpp: (WebCore::operator<<):
- kcanvas/KCanvasPath.h: (WebCore::KCClipData::windRule): (WebCore::KCClipDataList::addPath):
- kcanvas/device/quartz/KCanvasResourcesQuartz.mm: (WebCore::KCanvasClipperQuartz::applyClip):
- khtml/ecma/kjs_html.h:
- khtml/html/HTMLButtonElementImpl.h:
- khtml/html/HTMLInputElementImpl.cpp: (WebCore::HTMLInputElementImpl::setInputType):
- khtml/html/HTMLInputElementImpl.h: (DOM::HTMLInputElementImpl::inputType):
- khtml/html/html_tableimpl.h:
- khtml/xbl/xbl_protohandler.cpp: (XBL::m_button):
- khtml/xbl/xbl_protohandler.h:
- ksvg2/css/SVGRenderStyle.h: (WebCore::SVGRenderStyle::InheritedFlags::): (WebCore::SVGRenderStyle::NonInheritedFlags::): (WebCore::SVGRenderStyle::setBitDefaults):
- ksvg2/svg/SVGAnimateTransformElementImpl.h:
- ksvg2/svg/SVGAnimationElementImpl.cpp: (SVGAnimationElementImpl::targetAttribute): (SVGAnimationElementImpl::setTargetAttribute):
- ksvg2/svg/SVGAnimationElementImpl.h:
- ksvg2/svg/SVGLengthImpl.cpp: (SVGLengthImpl::value):
- ksvg2/svg/SVGLengthImpl.h:
- kwq/KWQKHTMLSettings.h:
- loader/CachedImage.h:
- loader/DocLoader.cpp: (WebCore::DocLoader::setCachePolicy): (WebCore::DocLoader::setShowAnimations):
- loader/DocLoader.h: (WebCore::DocLoader::showAnimations):
- platform/FontDescription.h: (WebCore::FontDescription::genericFamily):
- platform/QString.cpp: (HandleNode::):
- platform/QString.h:
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::setSelectionState): (WebCore::RenderBlock::leftRelOffset): (WebCore::RenderBlock::rightRelOffset): (WebCore::RenderBlock::leftBottom): (WebCore::RenderBlock::rightBottom): (WebCore::RenderBlock::addOverhangingFloats): (WebCore::RenderBlock::addIntrudingFloats):
- rendering/RenderBlock.h: (WebCore::RenderBlock::selectionState): (WebCore::RenderBlock::FloatingObject::FloatingObject): (WebCore::RenderBlock::FloatingObject::type):
- rendering/RenderTable.h: (WebCore::RenderTable::getRules):
- rendering/bidi.cpp: (khtml::BidiContext::BidiContext): (khtml::operator==): (khtml::embed): (khtml::RenderBlock::computeHorizontalPositionsForLine): (khtml::RenderBlock::bidiReorderLine): (khtml::RenderBlock::layoutInlineChildren):
- rendering/bidi.h: (khtml::BidiContext::dir): (khtml::BidiContext::basicDir): (khtml::BidiRun::BidiRun):
- rendering/render_canvasimage.h:
- rendering/render_layer.h: (WebCore::Marquee::whiteSpace):
- rendering/render_object.cpp: (WebCore::RenderObject::paintBorderImage):
- rendering/render_replaced.cpp: (WebCore::RenderWidget::setSelectionState):
- rendering/render_replaced.h: (WebCore::RenderReplaced::selectionState):
- rendering/render_style.cpp: (WebCore::RenderStyle::getPseudoStyle):
- rendering/render_style.h: (khtml::BorderValue::BorderValue): (khtml::BorderValue::style): (khtml::BorderValue::nonZero): (khtml::BorderValue::operator==): (khtml::OutlineValue::operator==): (khtml::CollapsedBorderValue::style): (khtml::BorderImage::horizontalRule): (khtml::BorderImage::verticalRule): (khtml::BorderData::borderLeftWidth): (khtml::BorderData::borderRightWidth): (khtml::BorderData::borderTopWidth): (khtml::BorderData::borderBottomWidth): (khtml::BackgroundLayer::backgroundClip): (khtml::BackgroundLayer::backgroundOrigin): (khtml::BackgroundLayer::backgroundRepeat): (khtml::RenderStyle::styleType): (khtml::RenderStyle::display): (khtml::RenderStyle::originalDisplay): (khtml::RenderStyle::position): (khtml::RenderStyle::floating): (khtml::RenderStyle::borderLeftStyle): (khtml::RenderStyle::borderLeftColor): (khtml::RenderStyle::borderRightStyle): (khtml::RenderStyle::borderRightColor): (khtml::RenderStyle::borderTopStyle): (khtml::RenderStyle::borderTopColor): (khtml::RenderStyle::borderBottomStyle): (khtml::RenderStyle::borderBottomColor): (khtml::RenderStyle::outlineWidth): (khtml::RenderStyle::outlineStyle): (khtml::RenderStyle::overflow): (khtml::RenderStyle::visibility): (khtml::RenderStyle::verticalAlign): (khtml::RenderStyle::unicodeBidi): (khtml::RenderStyle::clear): (khtml::RenderStyle::tableLayout): (khtml::RenderStyle::textAlign): (khtml::RenderStyle::textTransform): (khtml::RenderStyle::direction): (khtml::RenderStyle::whiteSpace): (khtml::RenderStyle::backgroundRepeat): (khtml::RenderStyle::backgroundClip): (khtml::RenderStyle::backgroundOrigin): (khtml::RenderStyle::emptyCells): (khtml::RenderStyle::captionSide): (khtml::RenderStyle::listStyleType): (khtml::RenderStyle::listStylePosition): (khtml::RenderStyle::cursor): (khtml::RenderStyle::pageBreakInside): (khtml::RenderStyle::pageBreakBefore): (khtml::RenderStyle::pageBreakAfter): (khtml::RenderStyle::outlineOffset): (khtml::RenderStyle::appearance): (khtml::RenderStyle::boxAlign): (khtml::RenderStyle::boxDirection): (khtml::RenderStyle::boxLines): (khtml::RenderStyle::boxOrient): (khtml::RenderStyle::boxPack): (khtml::RenderStyle::boxSizing): (khtml::RenderStyle::marqueeBehavior): (khtml::RenderStyle::marqueeDirection): (khtml::RenderStyle::userModify): (khtml::RenderStyle::userDrag): (khtml::RenderStyle::userSelect): (khtml::RenderStyle::marginTopCollapse): (khtml::RenderStyle::marginBottomCollapse): (khtml::RenderStyle::wordWrap): (khtml::RenderStyle::nbspMode): (khtml::RenderStyle::khtmlLineBreak): (khtml::RenderStyle::matchNearestMailBlockquoteColor): (khtml::RenderStyle::setBorderLeftWidth): (khtml::RenderStyle::setBorderLeftStyle): (khtml::RenderStyle::setBorderLeftColor): (khtml::RenderStyle::setBorderRightWidth): (khtml::RenderStyle::setBorderRightStyle): (khtml::RenderStyle::setBorderRightColor): (khtml::RenderStyle::setBorderTopWidth): (khtml::RenderStyle::setBorderTopStyle): (khtml::RenderStyle::setBorderTopColor): (khtml::RenderStyle::setBorderBottomWidth): (khtml::RenderStyle::setBorderBottomStyle): (khtml::RenderStyle::setBorderBottomColor): (khtml::RenderStyle::setOutlineWidth): (khtml::RenderStyle::setOutlineStyle): (khtml::RenderStyle::pseudoState):
- 12:36 PM Changeset in webkit [13148] by
-
- 2 edits in trunk/WebKitTools
- Scripts/do-webcore-rename: Fix a couple of things found while testing. Script now works (after landing my two pending patches).
- 12:25 PM Changeset in webkit [13147] by
-
- 2 edits in trunk/WebCore
- Rolled out the fix for <rdar://problem/4467143> because it's the wrong approach. Maciej and I discussed this on IRC.
- khtml/ecma/kjs_dom.cpp: (KJS::): Don't use classInfo to express prototype inheritance. classInfo is only for representing a c++ superclass relationship.
- 11:59 AM Changeset in webkit [13146] by
-
- 1 edit1 add in trunk/WebKitTools
- check in a script to do a "big" rename in WebCore (can be run whenever we're ready to do it)
- Scripts/do-webcore-rename: Added.
- 9:11 AM Changeset in webkit [13145] by
-
- 2 edits in trunk/WebCore
2006-03-05 Eric Seidel <eseidel@apple.com>
Move improperly placed #endif causing no-svg build to fail.
- kcanvas/device/quartz/KRenderingDeviceQuartz.h:
- 6:36 AM Changeset in webkit [13144] by
-
- 1 edit6 adds in trunk/LayoutTests
2006-03-05 Alexander Kellett <lypanov@kde.org>
Reviewed by Eric.
- missing results from previous commit
- svg/custom/polyline-invalid-points-expected.checksum: Added.
- svg/custom/polyline-invalid-points-expected.png: Added.
- svg/custom/polyline-invalid-points-expected.txt: Added.
- svg/custom/polyline-setattribute-points-null-expected.checksum: Added.
- svg/custom/polyline-setattribute-points-null-expected.png: Added.
- svg/custom/polyline-setattribute-points-null-expected.txt: Added.
- 6:33 AM Changeset in webkit [13143] by
-
- 3 edits2 adds in trunk
2006-03-05 Alexander Kellett <lypanov@kde.org>
Reviewed by Eric.
- new reduced testcases for: http://bugzilla.opendarwin.org/show_bug.cgi?id=6951 http://bugzilla.opendarwin.org/show_bug.cgi?id=6890
- svg/custom/polyline-invalid-points.svg: Added.
- svg/custom/polyline-setattribute-points-null.svg: Added.
2006-03-05 Alexander Kellett <lypanov@kde.org>
Reviewed by Eric.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=6890 and http://bugzilla.opendarwin.org/show_bug.cgi?id=6951 by being more tolerant towards invalid points data
- new tests: svg/custom/polyline-setattribute-points-null.svg svg/custom/polyline-invalid-points.svg
- ksvg2/svg/svgpathparser.cpp: (SVGPolyParser::parsePoints):
- 3:27 AM Changeset in webkit [13142] by
-
- 3 edits3 deletes in trunk/WebCore
Rubber stamped by Eric.
- remove no longer used KDOMSettings and KSVGSettings
- WebCore+SVG/KDOMSettings.cpp: Removed.
- WebCore+SVG/KDOMSettings.h: Removed.
- WebCore.xcodeproj/project.pbxproj:
- ksvg2/KSVGSettings.h: Removed.
- ksvg2/svg/SVGStyledElementImpl.cpp:
- 3:12 AM Changeset in webkit [13141] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Eric.
- Spinneret/Spinneret/WebFrame.cpp: (WebKit::WebFrame::loadFilePath): Close file when done.
- 2:30 AM Changeset in webkit [13140] by
-
- 2 edits in trunk/WebCore
2006-03-05 Eric Seidel <eseidel@apple.com>
Reviewed by mjs.
- platform/Font.cpp: (WebCore::Font::update): remove extra ref causing large leak.
- 2:10 AM Changeset in webkit [13139] by
-
- 5 edits4 adds in trunk
Fix by Mitz Pettel, reviewed by Darin.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=7589 Mouse moved events do not work in DumpRenderTree
WebKitTools:
- DumpRenderTree/DumpRenderTree.m: (-[EventSendingController mouseMoveToX:Y:]): Pass the correct windowNumber in the event.
LayoutTests:
- fast/css/hover-subselector-expected.txt: Updated results.
- fast/css/hover-subselector.html: Changed to work with the new mechanism.
- fast/events/event-sender-mouse-moved-expected.checksum: Added.
- fast/events/event-sender-mouse-moved-expected.png: Added.
- fast/events/event-sender-mouse-moved-expected.txt: Added.
- fast/events/event-sender-mouse-moved.html: Added.
- 1:43 AM Changeset in webkit [13138] by
-
- 3 edits in trunk/JavaScriptCore
Patch by Andrew Wellington, reviewed by Eric.
- Remove unused breakpoint bool from StatementNodes. No test provided as there is no functionality change.
- kjs/nodes.cpp: (StatementNode::StatementNode):
- kjs/nodes.h:
- 1:42 AM Changeset in webkit [13137] by
-
- 5 edits in trunk/WebKitTools
2006-03-04 Eric Seidel <eseidel@apple.com>
Reviewed by hyatt.
Take advantage of new GraphicsContext constructor to implement double buffering to avoid tearing.
Disable background erase to avoid tearing.
Fix potential memory smasher from extra long urls.
- Spinneret/Spinneret/Spinneret.cpp: (MyRegisterClass):
- Spinneret/Spinneret/Spinneret.vcproj:
- Spinneret/Spinneret/WebFrame.cpp: (WebKit::WebFrame::loadFilePath): (WebKit::WebFrame::paint):
- Spinneret/Spinneret/WebView.cpp: (WebKit::registerWebViewWithInstance):
- 1:41 AM Changeset in webkit [13136] by
-
- 9 edits in trunk/WebCore
2006-03-04 Eric Seidel <eseidel@apple.com>
Reviewed by hyatt.
Re-work ImageViewer to use GraphicsContext.
Add GraphicsContext(cairo_t*) constructor to make double-buffering easier.
Add one more stub to prevent slashdot from crashing.
Also fixed win32 build after Font change.
- Viewer.vcproj:
- Viewer/ImageView.cpp:
- platform/Color.h:
- platform/GraphicsContext.h:
- platform/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::GraphicsContext):
- platform/win/TemporaryLinkStubs.cpp: (FrameWin::createPlugin): (BrowserExtensionWin::setTypedIconURL):
- 1:35 AM Changeset in webkit [13135] by
-
- 6 edits1 add in trunk/WebCore
Fix by Mitz Pettel, reviewed by Darin.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=4840 Frames only resize wider, can't make them narrower
- khtml/html/html_baseimpl.cpp: (WebCore::HTMLFrameSetElementImpl::HTMLFrameSetElementImpl): Removed unused m_resizing flag.
- khtml/html/html_baseimpl.h:
- manual-tests/bugzilla-4840.html: Added.
- page/FrameView.cpp: (WebCore::FrameViewPrivate::reset): (WebCore::FrameView::viewportMouseMoveEvent): (WebCore::FrameView::viewportMouseReleaseEvent): (WebCore::FrameView::setResizingFrameSet): New method. When a resizing frameset is set, mouse move and mouse release events target it instead of hit-testing.
- page/FrameView.h:
- rendering/render_frames.cpp: (WebCore::RenderFrameSet::setResizing): Inform the FrameView that we are resizing (or not).
Mar 4, 2006:
- 9:51 PM Changeset in webkit [13134] by
-
- 23 edits2 adds2 deletes in trunk/WebCore
Fix for bug 7586, eliminate QFontMetrics.
Reviewed by eric
- WebCore.xcodeproj/project.pbxproj:
- css/css_valueimpl.cpp: (WebCore::CSSPrimitiveValueImpl::computeLengthFloat):
- ksvg2/svg/SVGLengthImpl.cpp: (SVGLengthImpl::updateValue):
- kwq/KWQFontMetrics.h: Removed.
- kwq/KWQFontMetrics.mm: Removed.
- platform/Font.cpp: (WebCore::m_wordSpacing): (WebCore::Font::Font): (WebCore::Font::operator=): (WebCore::Font::~Font): (WebCore::Font::update): (WebCore::Font::width):
- platform/Font.h: (WebCore::Font::operator==): (WebCore::Font::width): (WebCore::Font::height):
- platform/FontRenderer.h: Added. (WebCore::FontRenderer::isFixedPitch):
- platform/GraphicsContext.h:
- platform/mac/FontMac.mm: Added. (WebCore::m_renderer): (WebCore::FontRenderer::getWebCoreFont): (WebCore::FontRenderer::getRenderer): (WebCore::FontRenderer::determinePitch): (WebCore::FontRenderer::update): (WebCore::Font::getWebCoreFont): (WebCore::Font::ascent): (WebCore::Font::descent): (WebCore::Font::lineSpacing): (WebCore::Font::xHeight): (WebCore::Font::isFixedPitch): (WebCore::Font::selectionRectForText): (WebCore::Font::drawHighlightForText): (WebCore::Font::drawText): (WebCore::Font::floatWidth): (WebCore::Font::checkSelectionPoint):
- platform/mac/GraphicsContextMac.mm:
- rendering/InlineTextBox.h:
- rendering/RenderBlock.cpp: (WebCore::stripTrailingSpace):
- rendering/RenderText.cpp: (WebCore::RenderText::trimmedMinMaxWidth):
- rendering/RenderText.h:
- rendering/RenderTextField.cpp: (WebCore::RenderTextField::calcMinMaxWidth):
- rendering/bidi.cpp: (khtml::RenderBlock::tabWidth): (khtml::RenderBlock::checkLinesForTextOverflow):
- rendering/render_box.cpp: (WebCore::RenderBox::caretRect):
- rendering/render_br.cpp: (WebCore::RenderBR::lineHeight):
- rendering/render_flow.cpp: (WebCore::RenderFlow::lineHeight): (WebCore::RenderFlow::caretRect):
- rendering/render_image.cpp: (WebCore::RenderImage::imageChanged): (WebCore::RenderImage::paint):
- rendering/render_line.cpp: (WebCore::InlineFlowBox::placeBoxesVertically):
- rendering/render_list.cpp: (WebCore::toHebrew): (WebCore::RenderListMarker::paint): (WebCore::RenderListMarker::calcMinMaxWidth): (WebCore::RenderListMarker::baselinePosition): (WebCore::RenderListMarker::getRelativeMarkerRect):
- rendering/render_object.cpp: (WebCore::RenderObject::getVerticalPosition): (WebCore::RenderObject::lineHeight): (WebCore::RenderObject::baselinePosition):
- rendering/render_object.h:
- rendering/render_style.h:
- 4:33 PM Changeset in webkit [13133] by
-
- 3 edits in trunk/WebKitTools
2006-03-04 Eric Seidel <eseidel@apple.com>
Reviewed by ggaren.
Hang WebView pointer off of HWND (gets rid of global hack).
Remove MessageBox displayed on url change.
- Spinneret/Spinneret/Spinneret.cpp: (WndProc): (MyEditProc):
- Spinneret/Spinneret/WebView.cpp: (WebKit::registerWebViewWithInstance): (WebKit::WebView::createWebView): (WebKit::WebViewWndProc):
- 4:28 PM Changeset in webkit [13132] by
-
- 2 edits in trunk/WebCore
2006-03-04 Eric Seidel <eseidel@apple.com>
Reviewed by ggaren.
Add urlSelected stub, adjust font metrics, and fix view size/move bug.
- platform/win/TemporaryLinkStubs.cpp: (MouseEvent::MouseEvent): (FrameWin::urlSelected): (QFontMetrics::height): (QFontMetrics::xHeight): (QFontMetrics::ascent): (QFontMetrics::descent): (ScrollView::resizeContents): (ScrollView::setContentsPos):
- 3:07 PM Changeset in webkit [13131] by
-
- 2 edits in trunk/WebKit/WebInspector
Forgot to save these files before I commited my last change.
- 3:07 PM Changeset in webkit [13130] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Eric.
Automatically kill httpd if it appears to be already running.
- Scripts/run-webkit-tests:
- 3:05 PM Changeset in webkit [13129] by
-
- 3 edits in trunk/WebCore
Reviewed by Eric.
- stop background image loads from crashing
- platform/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::drawTiledImage): (WebCore::GraphicsContext::drawScaledAndTiledImage):
- fix termination condition on file load loop
- platform/win/TransferJobWin.cpp: (WebCore::TransferJob::fileLoadTimer):
- 2:57 PM Changeset in webkit [13128] by
-
- 9 edits in trunk/WebKit
Reviewed by Darin.
<rdar://problem/4411822> wrong element shown in Inspector inspecting main image at apple.com
<rdar://problem/4411908> in the Web Inspector, state of disclosure triangles should be preserved after search
http://bugzilla.opendarwin.org/show_bug.cgi?id=6616
Bug 6616: Double-clicking on a search result seems broken
http://bugzilla.opendarwin.org/show_bug.cgi?id=6709
Bug 6709: TypeError: Value undefined (result of expression treeScrollbar.refresh) is not object.
Code clean up and move more code into JavaScript.
Removes a few unused ObjC methods.
Many search fixes. Reveals the focused node when exiting the search.
Shows a "No Selection" screen when there are no search results.
Shows a node count for the number of results.
Fixes a couple of TypeErrors that show on the console.
Uses the system selection color in the Style pane tables.
- English.lproj/Localizable.strings: removed localized strings
- WebInspector.subproj/WebInspector.m: (-init): (-dealloc): (-window): (-setSearchQuery:): (-resizeTopArea): (-searchPerformed:): called from JavaScript when a search happens (-_toggleIgnoreWhitespace:): (-_exitSearch:): exit search results on double click (-_focusRootNode:): (-_revealAndSelectNodeInTree:): (-_refreshSearch): (-_update): (-_updateTraversalButtons): (-_updateRoot): (-_updateTreeScrollbar): (-_updateSystemColors): update CSS with system colors (-webView:didFinishLoadForFrame:): (-webView:plugInViewWithArguments:): (-outlineViewSelectionDidChange:): test for webViewLoaded (-[WebInspectorPrivate init]): alloc rightArrowImage and downArrowImage (-[WebInspectorPrivate dealloc]): no more matchedRules (-[DOMNode _displayName]): removed localization UI_STRING calls.
- WebInspector.subproj/WebInspectorInternal.h:
- WebInspector.subproj/webInspector/inspector.css:
- WebInspector.subproj/webInspector/inspector.html:
- WebInspector.subproj/webInspector/inspector.js:
- 12:37 PM Changeset in webkit [13127] by
-
- 3 edits in trunk/WebCore
Reviewed by Darin.
- Fixed <rdar://problem/4467143> JavaScript enumeration of HTML element properties skips DOM node properties
No test case yet because this is a preliminary step toward enabling my
uber test case for DOM support, which will cover this.
- khtml/ecma/kjs_dom.cpp: (KJS::): Make DOMNode's classinfo reflect inheritance from DOMNodeProto, so a for in enumeration can properly walk the inheritance chain.
- khtml/ecma/kjs_html.cpp: (KJS::): Used a script to sort classInfo data alphbetically. (KJS::KJS::HTMLElement::classInfo): Ditto.
- 3:02 AM Changeset in webkit [13126] by
-
- 3 edits in trunk/WebKitTools
Reviewed by Eric.
- Spinneret/Spinneret/WebFrame.cpp: (WebKit::WebFrame::loadFilePath): Improved local file loading.
- 2:58 AM Changeset in webkit [13125] by
-
- 2 edits in trunk/WebCore
Reviewed by Eric.
- fix mistake in TransferJob::start that made it cause a crash
on non-file URLs
- platform/win/TransferJobWin.cpp: (WebCore::TransferJob::start):
- 2:26 AM Changeset in webkit [13124] by
-
- 10 edits in trunk/WebCore
Reviewed by Eric.
- make TransferJobWin handle file: URLs, and fix other bugs as needed to make local file image loads work http://bugzilla.opendarwin.org/show_bug.cgi?id=7587
- WebCore.vcproj/WebCore/WebCore.vcproj: add TransferJobWin to build.
- bridge/win/FrameWin.cpp: (WebCore::FrameWin::FrameWin): Set autoLoadImages to true.
- platform/TransferJob.cpp: (WebCore::TransferJob::TransferJob): Pass this to internal constructor, so windows version can initialize timer
- platform/TransferJob.h:
- platform/TransferJobInternal.h: (WebCore::TransferJobInternal::TransferJobInternal): On windows, prepare a timer for file loads.
- platform/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::drawFloatImage): If passed-in context is null, use our built-in context (this is probably not the best, but should work for now).
- platform/win/TemporaryLinkStubs.cpp: (FrameWin::issueRedoCommand): Don't break. (WebCore::TransferJob::assembleResponseHeaders): ditto (FrameWin::saveDocumentState): ditto (FrameWin::clearUndoRedoOperations): ditto
- platform/win/TransferJobWin.cpp: (WebCore::TransferJobInternal::~TransferJobInternal): Close file handle if we have one. (WebCore::TransferJob::~TransferJob): Empty. (WebCore::TransferJob::start): Open a windows file handle. (WebCore::TransferJob::fileLoadTimer): Load from windows file handle. (WebCore::TransferJob::cancel): Stop timer and close windows file handle if present.
Mar 3, 2006:
- 11:42 PM Changeset in webkit [13123] by
-
- 5 edits2 adds in trunk/WebCore
2006-03-03 Eric Seidel <eseidel@apple.com>
Reviewed by hyatt.
Fix QString crasher on Win32, also remove c-style casts from file.
Add a few more stubs to allow more layout tests to not crash.
Make dlls only copy when changed.
Add RenderThemeWin stubs.
- WebCore.vcproj/WebCore/WebCore.vcproj:
- WebCore.vcproj/WebCore/build-generated-files.sh:
- platform/QString.cpp: (QString::stripWhiteSpace): (QString::simplifyWhiteSpace): (QString::setLatin1): (QString::sprintf): (QString::insert): (QString::fill):
- platform/win/TemporaryLinkStubs.cpp: (WebCore::usableScreenRect): (FrameWin::respondToChangedContents): (FrameWin::unfocusWindow): (FrameWin::locationbarVisible): (FrameWin::clearUndoRedoOperations): (FrameWin::issueRedoCommand): (FrameWin::canRedo): (FrameWin::canUndo): (FrameWin::saveDocumentState): (FrameWin::print): (FrameWin::issueCutCommand): (FrameWin::issueCopyCommand): (FrameWin::issueUndoCommand): (FrameWin::mimeTypeForFileName): (FrameWin::clearRecordedFormValues): (FrameWin::issuePasteCommand): (FrameWin::scheduleClose): (FrameWin::menubarVisible): (FrameWin::personalbarVisible): (FrameWin::statusbarVisible): (FrameWin::toolbarVisible): (FrameWin::issueTransposeCommand): (FrameWin::canPaste): (FrameWin::incomingReferrer): (FrameWin::canGoBackOrForward): (FrameWin::issuePasteAndMatchStyleCommand): (FrameWin::createPlugin): (BrowserExtensionWin::getHistoryLength): (BrowserExtensionWin::canRunModal): (BrowserExtensionWin::openURLNotify): (BrowserExtensionWin::canRunModalNow): (BrowserExtensionWin::runModal): (QListBox::setFont): (WebCore::TransferJob::assembleResponseHeaders): (WebCore::TransferJob::~TransferJob): (QFontMetrics::QFontMetrics): (QFontMetrics::lineSpacing): (QFontMetrics::xHeight): (QFontMetrics::ascent): (FrameWin::shouldChangeSelection): (FrameWin::generateFrameName): (FrameWin::createFrame): (RenderThemeWin::paintCheckbox): (RenderThemeWin::paintRadio): (RenderThemeWin::paintButton): (RenderThemeWin::paintTextField):
- rendering/RenderThemeWin.cpp: Added. (WebCore::theme):
- rendering/RenderThemeWin.h: Added.
- 11:29 PM Changeset in webkit [13122] by
-
- 3 edits in trunk/WebKitTools
2006-03-03 Eric Seidel <eseidel@apple.com>
Reviewed by NOBODY (OOPS!).
A few more fixes to make run-webkit-tests really work on win32.
- DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp: (localFileTest):
- Scripts/run-webkit-tests:
- 5:35 PM Changeset in webkit [13121] by
-
- 5 edits in trunk/WebKitTools
2006-03-03 Eric Seidel <eseidel@apple.com>
Reviewed by darin.
Make run-webkit-tests work on win32.
- DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp: (localFileTest): (dumpRenderTreeMain): (dumpRenderTreeToStdOut): (serializeToStdOut): (main):
- Scripts/run-webkit-tests:
- Scripts/webkitdirs.pm:
- Spinneret/Spinneret/WebView.cpp: (WebKit::WebView::WebView):
- 3:33 PM Changeset in webkit [13120] by
-
- 3 edits1 add in trunk
Reviewed by Darin.
- Fixed <rdar://problem/4465598> REGRESSION (TOT): Crash occurs at http://maps.google.com/?output=html ( KJS::Identifier::add(KJS::UString::Rep*)
This regression was caused by my fix for 4448098. I failed to account for the
deleted entry sentinel in the mehtod that saves the contents of a property map to
the back/forward cache.
Manual test in WebCore/manual-tests/property-map-save-crash.html
- kjs/property_map.cpp: (KJS::deletedSentinel): Use 1 instead of -1 to facilitate an easy bit mask (KJS::isValid): New function: checks if a key is null or the deleted sentinel (KJS::PropertyMap::~PropertyMap): Fixed up the branch logic here for readability and a slight performance win (KJS::PropertyMap::clear): (KJS::PropertyMap::rehash): (KJS::PropertyMap::addSparseArrayPropertiesToReferenceList): (KJS::PropertyMap::save): Check keys with isValid()
WebCore:
Test case for <rdar://problem/4465598> REGRESSION (TOT): Crash occurs at
http://maps.google.com/?output=html ( KJS::Identifier::add(KJS::UString::Rep*)
- manual-tests/property-map-save-crash.html: Added.
- 2:10 PM Changeset in webkit [13119] by
-
- 2 edits in trunk/LayoutTests
2006-03-03 Alexander Kellett <lypanov@kde.org>
- local machine unfortunately shows slightly differing results to the build bots, reverting to fix the built bot.
- svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt:
- 11:43 AM Changeset in webkit [13118] by
-
- 3 edits in trunk/WebCore
2006-03-03 Eric Seidel <eseidel@apple.com>
Reviewed by adele.
Fix clearly bogus cairo elipse drawing code.
Make QFontMetrics stubs slightly more sane.
- platform/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::drawEllipse):
- platform/win/TemporaryLinkStubs.cpp: (QFontMetrics::floatWidth): (QFontMetrics::height): (QFontMetrics::width): (QFontMetrics::isFixedPitch):
- 7:59 AM Changeset in webkit [13117] by
-
- 7 edits2 adds in trunk
LayoutTests:
Reviewed by Eric.
- test for http://bugzilla.opendarwin.org/show_bug.cgi?id=7480 non-HTML elems w/o children in HTML docs get serialized self-closing
- update tests for problem where the HTML tokenizer would discard the first newline after </pre>
- fast/innerHTML/innerHTML-custom-tag.html: Added.
- fast/innerHTML/innerHTML-custom-tag-expected.txt: Added.
- fast/innerHTML/005-expected.txt: Updated. Now matches the original document as expected. Old result had the <div> after a <pre> put on the same line.
- editing/inserting/4278698-expected.txt: Updated because offset of node changed since we have one more text node (from after a /pre).
- fast/text/whitespace/pre-wrap-overflow-selection-expected.txt: Ditto.
WebCore:
Reviewed by Eric.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=7480 non-HTML elems w/o children in HTML docs get serialized self-closing
- fix problem where the HTML tokenizer would discard the first newline after </pre>
Test: fast/innerHTML/innerHTML-custom-tag.html
- editing/markup.cpp: (WebCore::shouldSelfClose): Refined rule so that it doesn't try to do any self-closing tags in HTML documents at all; updated comment.
- khtml/html/htmltokenizer.cpp: (WebCore::HTMLTokenizer::parseTag): Added a check of beginTag in the <pre> tag case. We were accidentally discarding a newline after a </pre> tag.
- 1:54 AM Changeset in webkit [13116] by
-
- 5 edits2 adds in trunk/WebKitTools
2006-03-03 Eric Seidel <eseidel@apple.com>
Reviewed by mjs.
Add WebFrame class (to hold Frame and FrameView).
Add Location bar support to Spinneret.
- Spinneret/Spinneret/Spinneret.cpp: (resizeSubViews): (_tWinMain): (WndProc): (MyEditProc):
- Spinneret/Spinneret/Spinneret.vcproj:
- Spinneret/Spinneret/WebFrame.cpp: Added. (WebKit::WebFrame::WebFramePrivate::WebFramePrivate): (WebKit::WebFrame::WebFramePrivate::~WebFramePrivate): (WebKit::WebFrame::WebFrame): (WebKit::WebFrame::loadFilePath): (WebKit::WebFrame::loadHTMLString): (WebKit::WebFrame::paint): (WebKit::WebFrame::impl): (WebKit::WebFrame::viewImpl):
- Spinneret/Spinneret/WebFrame.h: Added.
- Spinneret/Spinneret/WebView.cpp: (WebKit::WebView::WebViewPrivate::~WebViewPrivate): (WebKit::WebView::WebView): (WebKit::WebView::windowHandle): (WebKit::WebView::mainFrame): (WebKit::WebView::mouseMoved): (WebKit::WebView::mouseDown): (WebKit::WebView::mouseUp): (WebKit::WebView::mouseDoubleClick): (WebKit::WebViewWndProc):
- Spinneret/Spinneret/WebView.h:
- 1:44 AM Changeset in webkit [13115] by
-
- 3 edits1 copy in trunk/WebCore
Rubber stamped by Eric.
- add new files to build, fix link stubs.
- WebCore.vcproj/WebCore/WebCore.vcproj:
- platform/win/TemporaryLinkStubs.cpp: (KWQKCookieJar::cookieEnabled): (WebCore::TransferJob::retrieveCharset): (WebCore::TransferJob::assembleResponseHeaders): (WebCore::TransferJob::~TransferJob):
- platform/win/TransferJobWin.cpp: Added.
- 1:31 AM Changeset in webkit [13114] by
-
- 1 edit1 add in trunk/WebCore
- add file I forgot in my last commit.
- platform/TransferJobInternal.h: Added. (WebCore::TransferJobInternal::TransferJobInternal):
- 1:30 AM Changeset in webkit [13113] by
-
- 10 edits2 adds in trunk/WebCore
2006-03-03 Eric Seidel <eseidel@apple.com>
Reviewed by mjs.
Wire up WidgetWin, CursorWin, ScrollViewWin.
Stub out methods for selection and cursors.
- Viewer/ImageDocument.h:
- WebCore.vcproj/WebCore/WebCore.vcproj:
- bridge/win/FrameWin.cpp:
- khtml/ecma/kjs_proxy.cpp: (WebCore::KJSProxyImpl::initScriptIfNeeded):
- platform/IntRect.h: (WebCore::IntRect::IntRect):
- platform/Widget.h:
- platform/win/CursorWin.cpp: (WebCore::eastResizeCursor): (WebCore::northResizeCursor): (WebCore::northEastResizeCursor): (WebCore::northWestResizeCursor): (WebCore::southResizeCursor): (WebCore::southEastResizeCursor): (WebCore::southWestResizeCursor): (WebCore::westResizeCursor):
- platform/win/IntRectWin.cpp: (WebCore::IntRect::IntRect): (WebCore::IntRect::operator RECT):
- platform/win/MouseEventWin.cpp:
- platform/win/ScrollViewWin.cpp: Added. (WebCore::ScrollView::updateContents):
- platform/win/TemporaryLinkStubs.cpp: (QTextEdit::textWithHardLineBreaks): (QLineEdit::setPlaceholderString): (QScrollBar::scroll): (GraphicsContext::beginTransparencyLayer): (Widget::setIsSelected): (QLineEdit::selectedText): (QComboBox::sizeHint): (KWQFileButton::focusPolicy): (QTextEdit::focusPolicy): (QSlider::focusPolicy): (QListBox::focusPolicy): (QLineEdit::focusPolicy): (WebCore::moveCursor): (ScrollView::scrollBy): (KWQKCookieJar::cookieEnabled): (WebCore::TransferJob::TransferJob): (WebCore::screenDepth): (WebCore::usableScreenRect): (FrameWin::getObjectInstanceForWidget): (FrameWin::getEmbedInstanceForWidget): (FrameWin::getAppletInstanceForWidget): (FrameWin::passMouseDownEventToWidget): (FrameWin::issuePasteCommand): (FrameWin::issueTransposeCommand): (QSlider::setFont): (QLineEdit::setFont): (QListBox::setFont): (QFontMetrics::QFontMetrics): (QComboBox::setFont): (QTextEdit::setFont): (QTextEdit::setWritingDirection): (QFontMetrics::setFontDescription): (QFontMetrics::checkSelectionPoint): (FrameWin::addMessageToConsole): (FrameWin::shouldChangeSelection): (ScrollView::resizeContents): (ScrollView::visibleHeight): (ScrollView::visibleWidth): (ScrollView::setContentsPos): (ScrollView::contentsX): (ScrollView::contentsY): (ScrollView::contentsHeight): (ScrollView::contentsWidth): (ScrollView::viewportToContents):
- platform/win/WidgetWin.cpp: Added. (WebCore::Widget::Widget): (WebCore::Widget::~Widget): (WebCore::Widget::windowHandle): (WebCore::Widget::setWindowHandle): (WebCore::Widget::setActiveWindow): (WebCore::Widget::frameGeometry): (WebCore::Widget::hasFocus): (WebCore::Widget::setFocus): (WebCore::Widget::clearFocus): (WebCore::Widget::font): (WebCore::Widget::setFont): (WebCore::Widget::setCursor): (WebCore::Widget::show): (WebCore::Widget::hide): (WebCore::Widget::setFrameGeometry): (WebCore::Widget::mapFromGlobal):
- 1:19 AM Changeset in webkit [13112] by
-
- 11 edits1 copy3 moves2 deletes in trunk/WebCore
Reviewed by Eric.
- move TransferJob from kwq to platform, separate platform from non-platform bits
- ForwardingHeaders/kio/job.h: Removed.
- ForwardingHeaders/kio/jobclasses.h: Removed.
- WebCore.xcodeproj/project.pbxproj:
- bridge/mac/MacFrame.mm:
- dom/xml_tokenizer.cpp:
- khtml/xsl/xslt_processorimpl.cpp:
- kwq/KWQKJobClasses.h: Removed.
- kwq/KWQKJobClasses.mm: Removed.
- kwq/KWQLoader.mm:
- kwq/KWQResourceLoader.mm:
- kwq/TransferJobClient.h: Removed.
- loader/Cache.cpp:
- loader/loader.cpp:
- page/Frame.cpp:
- platform/TransferJob.cpp: Added. (WebCore::TransferJob::TransferJob): (WebCore::TransferJob::queryMetaData): (WebCore::TransferJob::addMetaData):
- platform/TransferJob.h: Added.
- platform/TransferJobClient.h: Added.
- platform/mac/TransferJobMac.mm: Added. (WebCore::TransferJobInternal::~TransferJobInternal): (WebCore::TransferJob::retrieveCharset): (WebCore::TransferJob::cancel):
- xml/xmlhttprequest.cpp:
- 1:18 AM Changeset in webkit [13111] by
-
- 2 edits in trunk/WebCore
Reviewed by Eric.
- enough link stubs to "display" local copy of WebKit site w/o hitting breakpoint
- platform/win/TemporaryLinkStubs.cpp: (QLineEdit::setReadOnly): (QTextEdit::setCursorPosition): (QLineEdit::setCursorPosition): (QFontMetrics::width): (GraphicsContext::drawText): (GraphicsContext::drawLineForText):
Mar 2, 2006:
- 11:44 PM Changeset in webkit [13110] by
-
- 2 edits in trunk/WebCore
Rubber stamped by Eric.
- remove function that is now gone
- platform/win/TemporaryLinkStubs.cpp:
- 11:41 PM Changeset in webkit [13109] by
-
- 7 edits in trunk/WebCore
Reviewed by Eric.
- move logic to kick off load from KWQLoader function to a TransferJob method
- kwq/KWQKJobClasses.h:
- kwq/KWQKJobClasses.mm: (WebCore::TransferJob::start):
- kwq/KWQLoader.h:
- kwq/KWQLoader.mm:
- loader/loader.cpp: (WebCore::Loader::servePendingRequests):
- xml/xmlhttprequest.cpp: (WebCore::XMLHttpRequest::send):
- 11:16 PM Changeset in webkit [13108] by
-
- 5 edits in trunk/WebCore
Rubber stamped by Eric.
- remove unused loader parameter to KWQServeRequest.
- kwq/KWQLoader.h:
- kwq/KWQLoader.mm: (KWQServeRequest):
- loader/loader.cpp: (WebCore::Loader::servePendingRequests):
- xml/xmlhttprequest.cpp: (WebCore::XMLHttpRequest::send):
- 10:58 PM Changeset in webkit [13107] by
-
- 5 edits in trunk/WebCore
Reviewed by Eric.
- remove one of the versions of KWQServeRequest.
- kwq/KWQLoader.h:
- kwq/KWQLoader.mm:
- loader/loader.cpp: (WebCore::Loader::servePendingRequests):
- platform/win/TemporaryLinkStubs.cpp: (Widget::isEnabled): (KWQServeRequest):
- 10:13 PM Changeset in webkit [13106] by
-
- 2 edits in trunk/WebCore
Rubber stamped by Eric.
- win32 build fix.
- platform/win/MouseEventWin.cpp:
- 9:37 PM Changeset in webkit [13105] by
-
- 2 edits in trunk/WebKitSite
2006-03-02 Eric Seidel <eseidel@apple.com>
Reviewed by mjs.
- quality/reporting.html: display a nicer message to those using 10.2
- 6:53 PM Changeset in webkit [13104] by
-
- 5 edits in trunk/WebCore
Reviewed by eric
<http://bugzilla.opendarwin.org/show_bug.cgi?id=3894>
uses of <cmath> should change to <math>
- ksvg2/svg/SVGAnimateTransformElementImpl.cpp:
- ksvg2/svg/SVGAnimationElementImpl.cpp:
- ksvg2/svg/SVGHelper.cpp:
- ksvg2/svg/SVGLengthImpl.cpp:
- 5:52 PM Changeset in webkit [13103] by
-
- 8 edits6 adds in trunk/LayoutTests
Reviewed by Darin, landed by Beth.
Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=3230
CSS1: Words with inline elements get extra capital letters
Update existing tests for new results and add new test
- 5:46 PM Changeset in webkit [13102] by
-
- 5 edits in trunk/WebCore
Reviewed by Darin, landed by Beth
Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=3230
CSS1: Words with inline elements get extra capital letters
Does not use UBreakIterator (yet?) for this, but a relatively
simple change that fixes our failure in the CSS1 test suite
(5.4.5).
- 1:46 PM Changeset in webkit [13101] by
-
- 3 edits in trunk/WebKitTools
2006-03-02 Eric Seidel <eseidel@apple.com>
Reviewed by ggaren.
- Spinneret/Spinneret/WebView.cpp: (WebKit::registerWebViewWithInstance): (WebKit::WebView::WebView): (WebKit::WebView::mouseMoved): (WebKit::WebView::mouseDown): (WebKit::WebView::mouseUp): (WebKit::WebView::mouseDoubleClick): (WebKit::WebViewWndProc):
- Spinneret/Spinneret/WebView.h:
- 1:45 PM Changeset in webkit [13100] by
-
- 3 edits4 adds in trunk
LayoutTests:
Patch reviewed by sullivan
Test written by mitz
<http://bugzilla.opendarwin.org/show_bug.cgi?id=7542>
REGRESSION: (r13028) Scrolling causes incomplete drawing of <ul> bullets
- fast/lists/scrolled-marker-paint-expected.checksum: Added.
- fast/lists/scrolled-marker-paint-expected.png: Added.
- fast/lists/scrolled-marker-paint-expected.txt: Added.
- fast/lists/scrolled-marker-paint.html: Added.
WebCore:
Reviewed by sullivan
<http://bugzilla.opendarwin.org/show_bug.cgi?id=7542>
REGRESSION: (r13028) Scrolling causes incomplete drawing of <ul> bullets
- rendering/render_list.cpp: (WebCore::RenderListMarker::paint):
- 1:41 PM Changeset in webkit [13099] by
-
- 6 edits2 adds in trunk/WebCore
2006-03-02 Eric Seidel <eseidel@apple.com>
Reviewed by ggaren.
Add (partially stubbed out) mouse event handling for Win32.
- WebCore.vcproj/WebCore/WebCore.vcproj:
- platform/IntPoint.h:
- platform/MouseEvent.h:
- platform/win/IntPointWin.cpp: Added. (WebCore::IntPoint::IntPoint): (WebCore::IntPoint::operator POINT):
- platform/win/MouseEventWin.cpp: Added. (WebCore::MouseEvent::MouseEvent):
- platform/win/TemporaryLinkStubs.cpp: (QLineEdit::setMaxLength): (ScrollView::scrollBy): (WebCore::Widget::setFocus): (FrameWin::respondToChangedSelection): (FrameWin::runJavaScriptPrompt): (FrameWin::recordFormValue): (FrameWin::registerCommandForRedo): (FrameWin::runJavaScriptAlert): (FrameWin::runJavaScriptConfirm): (FrameWin::openURL): (FrameWin::registerCommandForUndo): (FrameWin::addMessageToConsole): (FrameWin::mimeTypeForFileName): (FrameWin::shouldChangeSelection): (FrameWin::markMisspellingsInAdjacentWords): (FrameWin::markMisspellings): (FrameWin::personalbarVisible): (FrameWin::objectContentType): (FrameWin::createFrame): (FrameWin::createPlugin): (BrowserExtensionWin::setTypedIconURL): (BrowserExtensionWin::getHistoryLength): (BrowserExtensionWin::canRunModal): (BrowserExtensionWin::openURLNotify): (BrowserExtensionWin::createNewWindow): (BrowserExtensionWin::canRunModalNow): (BrowserExtensionWin::runModal): (BrowserExtensionWin::goBackOrForward): (BrowserExtensionWin::setIconURL): (FrameWin::passSubframeEventToSubframe): (FrameWin::lastEventIsMouseUp): (BrowserExtensionWin::BrowserExtensionWin): (Widget::setCursor): (ScrollView::visibleHeight): (ScrollView::visibleWidth): (ScrollView::setContentsPos): (ScrollView::contentsX): (ScrollView::contentsY): (ScrollView::contentsHeight): (ScrollView::contentsWidth): (ScrollView::viewportToContents): (TransferJob::TransferJob): (TransferJob::addMetaData):
- 11:40 AM Changeset in webkit [13098] by
-
- 3 edits2 adds in trunk
LayoutTests:
Reviewed by mjs
<http://tinymce.moxiecode.com/example_full.php?example=true>
TinyMCE: Undo still enabled after a location change, crashes if performed
- editing/undo/undo-iframe-location-change-expected.txt: Added.
- editing/undo/undo-iframe-location-change.html: Added.
WebCore:
Reviewed by mjs
<http://tinymce.moxiecode.com/example_full.php?example=true>
TinyMCE: Undo still enabled after a location change, crashes if performed
Can't clear undo/redo operations registered by subframes in didOpenURL,
because subframes have already been detached.
- page/Frame.cpp: (WebCore::Frame::didOpenURL): (WebCore::Frame::closeURL):
- 11:37 AM Changeset in webkit [13097] by
-
- 1 copy in tags/WebCore-417.23/WebCore
New tag part two).
- 11:37 AM Changeset in webkit [13096] by
-
- 1 add in tags/WebCore-417.23
New tag.
- 11:35 AM Changeset in webkit [13095] by
-
- 2 edits in branches/Safari-2-0-branch/WebCore
Versioning to WebCore-417.23
- 11:32 AM Changeset in webkit [13094] by
-
- 7 edits in branches/Safari-2-0-branch/WebCore
Merged fix from TOT to Safari-2-0-branch
This also includes the http://bugzilla.opendarwin.org/show_bug.cgi?id=7363 fix
<rdar://problem/4462712> REGRESSION (r12872): Repro crash when clicking the Quick Reply box in Gmail
2006-02-17 Vicki Murley <vicki@apple.com>
Reviewed by Justin.
Get rid of handleFocusOut on text fields and textareas - move this functionality to the place
where we resign focus on the previous node in setFocusNode. Add isTextField on RenderObject
as one way to distinguish from contenteditable elements - Win IE does not fire onChange for
contenteditable elements, so we won't either. Also, expose the dirty bit variables previously
checked in handleFocusOut methods in isEdited() and setEdited().
Fixes the following bugs:
<rdar://problem/4315673> REGRESSION (1.2.2 - 1.3): onChange and onFocus events firing order differs for mouse click and tab (7227)
<rdar://problem/4447009> for text fields, onChange should fire before onBlur to match Win IE
Test case is on the way.
- dom/DocumentImpl.cpp: (WebCore::DocumentImpl::setFocusNode): For textareas and text fields, fire a change event on the node that is resigning focus. Make sure the blur event fires after the change event - 4447009.
- rendering/render_form.cpp: (WebCore::RenderLineEdit::slotReturnPressed): Replace call to handleFocusOut with equivalent code. (WebCore::RenderLineEdit::isEdited): Added. (WebCore::RenderLineEdit::setEdited): Added. (WebCore::RenderTextArea::setEdited): Added.
- rendering/render_form.h: (WebCore::RenderLineEdit::isTextField): Added. (WebCore::RenderTextArea::isTextArea): Make this non-virtual. (WebCore::RenderTextArea::isEdited): Added.
- rendering/render_object.h: (WebCore::RenderObject::isEdited): Added. (WebCore::RenderObject::setEdited): Added. (WebCore::RenderObject::isTextField): Added.
- rendering/render_replaced.h: Remove handleFocusOut().
- rendering/render_replaced.cpp: Ditto. (WebCore::RenderWidget::eventFilter): Remove call to handleFocusOut(). Safe to do here, since we call setFocusNode immediately beforehand.
- 2:35 AM Changeset in webkit [13093] by
-
- 2 edits in trunk/JavaScriptCore
- now fix mac build again
- kjs/identifier.cpp:
- 2:20 AM Changeset in webkit [13092] by
-
- 3 edits in trunk/JavaScriptCore
Rubber stamped by Anders and Eric.
- add fpconst.cpp to win32 build, it is now needed
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
- kjs/fpconst.cpp:
- 2:10 AM Changeset in webkit [13091] by
-
- 5 edits in trunk/JavaScriptCore
Reviewed by Eric.
- fix windows build, broken by my last patch
- kjs/JSImmediate.cpp:
- kjs/identifier.cpp:
- kxmlcore/FastMalloc.cpp:
- kxmlcore/Platform.h:
- 1:21 AM Changeset in webkit [13090] by
-
- 52 edits in trunk
Add svn:eol-style=native, and fix line endings.
- 1:12 AM Changeset in webkit [13089] by
-
- 62 edits4 adds in trunk
Reviewed by Darin.
- Set up new prototype macros and avoid using #if without defined() in JSC
Added new PLATFORM macros and related, to make sure #if's all check if relevant macros
are defined, and to separate core OS-level dependencies from operating environment
dependencies so you can, e.g., build KDE on Mac or Windows.
- kxmlcore/Platform.h: Added.
- deploy them everywhere in JavaScriptCore
- JavaScriptCore.xcodeproj/project.pbxproj:
- bindings/jni/jni_utility.cpp: (KJS::Bindings::convertValueToJValue):
- bindings/objc/WebScriptObject.mm:
- bindings/objc/objc_instance.mm: (ObjcInstance::end):
- bindings/softlinking.h:
- bindings/testbindings.mm: (main):
- kjs/JSLock.cpp:
- kjs/collector.cpp: (KJS::Collector::markCurrentThreadConservatively): (KJS::Collector::markOtherThreadConservatively): (KJS::Collector::markStackObjectsConservatively):
- kjs/config.h:
- kjs/date_object.cpp: (gmtoffset): (KJS::formatTime): (KJS::DateProtoFunc::callAsFunction): (KJS::DateObjectImp::construct): (KJS::makeTime):
- kjs/dtoa.cpp:
- kjs/fpconst.cpp: (KJS::sizeof): (KJS::):
- kjs/grammar.y:
- kjs/identifier.cpp:
- kjs/internal.cpp:
- kjs/interpreter.cpp: (KJS::Interpreter::evaluate): (KJS::Interpreter::createLanguageInstanceForValue):
- kjs/interpreter.h:
- kjs/lookup.cpp:
- kjs/lookup.h:
- kjs/math_object.cpp:
- kjs/object.cpp:
- kjs/object.h:
- kjs/operations.cpp: (KJS::isNaN): (KJS::isInf): (KJS::isPosInf): (KJS::isNegInf):
- kjs/operations.h:
- kjs/regexp.cpp: (KJS::RegExp::RegExp): (KJS::RegExp::~RegExp): (KJS::RegExp::match):
- kjs/regexp.h:
- kjs/testkjs.cpp: (StopWatch::start): (StopWatch::stop): (StopWatch::getElapsedMS):
- kjs/ustring.cpp:
- kjs/ustring.h:
- kxmlcore/AlwaysInline.h:
- kxmlcore/Assertions.cpp:
- kxmlcore/Assertions.h:
- kxmlcore/FastMalloc.cpp: (KXMLCore::):
- kxmlcore/FastMalloc.h:
- kxmlcore/FastMallocInternal.h:
- kxmlcore/HashTable.h:
- kxmlcore/TCPageMap.h:
- kxmlcore/TCSpinLock.h: (TCMalloc_SpinLock::Lock): (TCMalloc_SpinLock::Unlock): (TCMalloc_SlowLock):
- kxmlcore/TCSystemAlloc.cpp: (TCMalloc_SystemAlloc):
- os-win32/stdint.h:
JavaScriptGlue:
Not reviewed, but I noticed these trivial extra changes were needed to avoid
breaking the build with my reviewed patch for:
Add config.h, includes of it, and Platform.h forwarding header.
- JSBase.cpp:
- JSObject.cpp:
- JSRun.cpp:
- JSUtils.cpp:
- JSValueWrapper.cpp:
- JavaScriptGlue.cpp:
- UserObjectImp.cpp:
- config.h: Added.
- kxmlcore/Platform.h: Added.
WebCore:
Reviewed by Darin.
- WebCore updates for "Set up new prototype macros and avoid using #if without defined() in JSC" http://bugzilla.opendarwin.org/show_bug.cgi?id=7387
Add Platform.h
- ForwardingHeaders/kxmlcore/Platform.h: Added.
- bridge/mac/WebCoreFrameNamespaces.m:
- bridge/mac/WebCoreViewFactory.m:
- bridge/mac/WebDashboardRegion.m:
- config.h:
- platform/Logging.cpp:
- platform/mac/ScrollViewMac.mm: (WebCore::ScrollView::addChild):
- platform/mac/WebCoreCookieAdapter.m:
- platform/mac/WebCoreGraphicsBridge.m:
- platform/mac/WebCoreHistory.m:
- platform/mac/WebCoreImageRendererFactory.m:
- platform/mac/WebCoreKeyGenerator.m:
- platform/mac/WebCoreView.m:
- 12:39 AM Changeset in webkit [13088] by
-
- 2 edits in trunk/WebCore
2006-03-02 Eric Seidel <eseidel@apple.com>
- WebCore.xcodeproj/project.pbxproj: update GraphicsContext.cpp path to fix build
- 12:21 AM Changeset in webkit [13087] by
-
- 6 edits in trunk/WebKitTools
2006-03-01 Eric Seidel <eseidel@apple.com>
Reviewed by NOBODY (OOPS!).
Make spinneret take advantage of the new GraphicsContextCairo.
- DumpRenderTree/DumpRenderTree.vcproj/DumpRenderTree/DumpRenderTree.cpp: (main): updated to match style guidelines.
- Spinneret/Spinneret/Spinneret.cpp: (_tWinMain):
- Spinneret/Spinneret/WebView.cpp: (WebKit::registerWebViewWithInstance): (WebKit::WebView::WebView): (WebKit::WebView::~WebView): (WebKit::WebView::drawRect): (WebKit::WndProc):
- Spinneret/Spinneret/WebView.h:
- 12:20 AM Changeset in webkit [13086] by
-
- 6 edits1 move in trunk/WebCore
2006-03-01 Eric Seidel <eseidel@apple.com>
Reviewed by andersca.
Add first-stab GraphicsContextCairo.
- Shuffle a few more link stubs around, remove uncessary WebCore
- WebCore.vcproj/WebCore/WebCore.vcproj:
- platform/GraphicsContext.cpp: Added.
- platform/GraphicsContext.h:
- platform/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContextState::GraphicsContextState): (WebCore::setColor): (WebCore::fillRectSourceOver): (WebCore::GraphicsContextPrivate::GraphicsContextPrivate): (WebCore::GraphicsContextPrivate::~GraphicsContextPrivate): (WebCore::GraphicsContext::GraphicsContext): (WebCore::GraphicsContext::~GraphicsContext): (WebCore::GraphicsContext::pen): (WebCore::GraphicsContext::setPen): (WebCore::GraphicsContext::setBrush): (WebCore::GraphicsContext::brush): (WebCore::GraphicsContext::save): (WebCore::GraphicsContext::restore): (WebCore::GraphicsContext::drawRect): (WebCore::GraphicsContext::setColorFromBrush): (WebCore::GraphicsContext::setColorFromPen): (WebCore::adjustLineToPixelBounderies): (WebCore::GraphicsContext::drawLine): (WebCore::GraphicsContext::drawEllipse): (WebCore::GraphicsContext::drawArc): (WebCore::GraphicsContext::drawConvexPolygon): (WebCore::GraphicsContext::drawFloatImage): (WebCore::GraphicsContext::drawTiledImage): (WebCore::GraphicsContext::drawScaledAndTiledImage): (WebCore::GraphicsContext::fillRect): (WebCore::GraphicsContext::addClip): (WebCore::GraphicsContext::setPaintingDisabled): (WebCore::GraphicsContext::paintingDisabled):
- platform/cairo/ImageCairo.cpp:
- platform/cg/GraphicsContextCG.cpp: Removed.
- platform/win/TemporaryLinkStubs.cpp: (QLineEdit::selectAll): (Widget::mapFromGlobal): (QLineEdit::cursorPosition): (QTextEdit::setScrollBarModes): (QTextEdit::selectAll): (QComboBox::focusPolicy): (GraphicsContext::clearShadow): (QTextEdit::setCursorPosition): (GraphicsContext::drawText): (QLineEdit::setLiveSearch): (QComboBox::QComboBox): (Widget::lockDrawingFocus): (QTextEdit::setSelectionRange): (QSlider::QSlider): (ScrollView::scrollYOffset): (QComboBox::sizeHint): (QLineEdit::edited): (QTextEdit::text): (QSlider::value): (WebCore::Widget::setFocus): (WebCore::TransferJob::addMetaData): (FrameWin::respondToChangedContents): (FrameWin::unfocusWindow): (FrameWin::locationbarVisible): (FrameWin::respondToChangedSelection): (FrameWin::clearUndoRedoOperations): (FrameWin::issueRedoCommand): (FrameWin::getObjectInstanceForWidget): (FrameWin::getEmbedInstanceForWidget): (FrameWin::canRedo): (FrameWin::canUndo): (FrameWin::runJavaScriptPrompt): (FrameWin::recordFormValue): (FrameWin::registerCommandForRedo): (FrameWin::runJavaScriptAlert): (FrameWin::runJavaScriptConfirm): (FrameWin::openURL): (FrameWin::saveDocumentState): (FrameWin::print): (FrameWin::getAppletInstanceForWidget): (FrameWin::passMouseDownEventToWidget): (FrameWin::registerCommandForUndo): (FrameWin::issueCutCommand): (FrameWin::issueCopyCommand): (FrameWin::addMessageToConsole): (FrameWin::passWheelEventToChildWidget): (FrameWin::issueUndoCommand): (FrameWin::mimeTypeForFileName): (FrameWin::clearRecordedFormValues): (FrameWin::issuePasteCommand): (FrameWin::shouldChangeSelection): (FrameWin::scheduleClose): (FrameWin::markMisspellingsInAdjacentWords): (FrameWin::markMisspellings): (FrameWin::menubarVisible): (FrameWin::personalbarVisible): (FrameWin::lastEventIsMouseUp): (FrameWin::statusbarVisible): (FrameWin::toolbarVisible): (FrameWin::issueTransposeCommand): (FrameWin::userAgent): (FrameWin::canPaste): (FrameWin::incomingReferrer): (FrameWin::objectContentType): (FrameWin::passSubframeEventToSubframe): (FrameWin::createFrame): (FrameWin::canGoBackOrForward): (FrameWin::issuePasteAndMatchStyleCommand): (FrameWin::createPlugin): (FrameWin::generateFrameName): (QTextEdit::setWritingDirection): (QFontMetrics::checkSelectionPoint): (GraphicsContext::GraphicsContext): (QFontMetrics::isFixedPitch): (FrameWin::restoreDocumentState): (FrameWin::partClearedInBegin): (FrameWin::createEmptyDocument): (FrameWin::overrideMediaType): (FrameWin::setTitle): (FrameWin::handledOnloadEvents): (FrameWin::markedTextRange): (GraphicsContext::font): (GraphicsContext::setFont):
Mar 1, 2006:
- 10:24 PM Changeset in webkit [13085] by
-
- 3 edits in trunk/WebKit
Fixed a typo in the comments added in the previous checkin.
- WebCoreSupport/WebFrameBridge.m: (-[WebFrameBridge syncLoadResourceWithMethod:URL:customHeaders:postData:finalURL:responseHeaders:statusCode:]):
- WebCoreSupport/WebSubresourceLoader.m: (+[WebSubresourceLoader startLoadingResource:withMethod:URL:customHeaders:referrer:forDataSource:]): (+[WebSubresourceLoader startLoadingResource:withMethod:URL:customHeaders:postData:referrer:forDataSource:]):
- 9:58 PM Changeset in webkit [13084] by
-
- 3 edits in trunk/WebKit
Reviewed by Darin.
- http://bugzilla.opendarwin.org/show_bug.cgi?id=7540 REGRESSION: frequent cache-related crashes
- http://bugzilla.opendarwin.org/show_bug.cgi?id=7393 A stale comment about XMLHttpRequest responses being never cached
- WebCoreSupport/WebFrameBridge.m: Don't call setHTTPHeader if the method is GET. (-[WebFrameBridge syncLoadResourceWithMethod:URL:customHeaders:postData:finalURL:responseHeaders:statusCode:]):
- WebCoreSupport/WebSubresourceLoader.m: Ditto. Also removed a stale comment about XMLHTTPRequests. (+[WebSubresourceLoader startLoadingResource:withMethod:URL:customHeaders:referrer:forDataSource:]): (+[WebSubresourceLoader startLoadingResource:withMethod:URL:customHeaders:postData:referrer:forDataSource:]):
- 9:55 PM Changeset in webkit [13083] by
-
- 2 edits in trunk/WebCore
Reviewed by Darin.
Changed an Objective-C forward declaration from "class" to "@class".
This doesn't appear to fix any problems, though.
- platform/StringImpl.h:
- 9:24 PM Changeset in webkit [13082] by
-
- 2 edits in trunk/LayoutTests/editing/unsupported-content
harrison forgot to update these pixel results. We should probably move this test out of unsupported-content, since lists are no longer unsupported, but i'll let him do that when he gets back.
- 9:12 PM Changeset in webkit [13081] by
-
- 5 edits5 adds in trunk
LayoutTests:
Reviewed by darin
<http://bugzilla.opendarwin.org/show_bug.cgi?id=7059>
TinyMCE: Select All + delete sends you Back intsead of deleting
- editing/resources/select-all-iframe-src.html: Added.
- editing/selection/select-all-iframe-expected.checksum: Added.
- editing/selection/select-all-iframe-expected.png: Added.
- editing/selection/select-all-iframe-expected.txt: Added.
- editing/selection/select-all-iframe.html: Added.
WebCore:
Reviewed by darin
<http://bugzilla.opendarwin.org/show_bug.cgi?id=7059>
TinyMCE: Select All + delete sends you Back intsead of deleting
- page/Frame.cpp: (WebCore::Frame::selectFrameElementInParentIfFullySelected):
WebKitTools:
Reviewed by darin
Give the events that eventSender sends a unique eventNumber
- DumpRenderTree/DumpRenderTree.m: (-[EventSendingController mouseDown]): (-[EventSendingController mouseUp]): (-[EventSendingController mouseMoveToX:Y:]):
- 7:33 PM Changeset in webkit [13080] by
-
- 3 edits in trunk/WebKit
Reviewed by Justin.
<rdar://problem/4359736> Support outlining ability with lists
Added Mail SPI for list level changes. It is SPI because it is not complete support
for outlining. See <rdar://problem/4457070> "API for html lists as note outlines".
- WebView/WebHTMLView.m: (-[WebHTMLView _canIncreaseSelectionListLevel]): (-[WebHTMLView _canDecreaseSelectionListLevel]): (-[WebHTMLView _increaseSelectionListLevel]): (-[WebHTMLView _decreaseSelectionListLevel]):
- WebView/WebHTMLViewPrivate.h:
- 7:32 PM Changeset in webkit [13079] by
-
- 3 edits in trunk/WebCore
Reviewed by Justin.
(missed these in my earlier commit for <rdar://problem/4359736>)
- bridge/mac/WebCoreFrameBridge.h:
- bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge canIncreaseSelectionListLevel]): (-[WebCoreFrameBridge canDecreaseSelectionListLevel]): (-[WebCoreFrameBridge increaseSelectionListLevel]): (-[WebCoreFrameBridge decreaseSelectionListLevel]):
- 6:43 PM Changeset in webkit [13078] by
-
- 1 edit14 adds in trunk/WebKitTools
2006-03-01 Eric Seidel <eseidel@apple.com>
Reviewed by hyatt.
Add a stub win32 application to test WebCore drawing on windows.
- Spinneret: Added.
- Spinneret/Spinneret: Added.
- Spinneret/Spinneret.sln: Added.
- Spinneret/Spinneret/Resource.h: Added.
- Spinneret/Spinneret/Spinneret.cpp: Added. (_tWinMain): (MyRegisterClass): (InitInstance): (WndProc): (About):
- Spinneret/Spinneret/Spinneret.h: Added.
- Spinneret/Spinneret/Spinneret.ico: Added.
- Spinneret/Spinneret/Spinneret.rc: Added.
- Spinneret/Spinneret/Spinneret.vcproj: Added.
- Spinneret/Spinneret/WebView.cpp: Added. (WebKit::WebView::WebViewPrivate::WebViewPrivate): (WebKit::WebView::WebViewPrivate::~WebViewPrivate): (WebKit::registerWebViewWithInstance): (WebKit::WebView::createWebView): (WebKit::WebView::WebView): (WebKit::WebView::~WebView): (WebKit::WebView::drawRect): (WebKit::WebView::windowHandle): (WebKit::WndProc):
- Spinneret/Spinneret/WebView.h: Added.
- Spinneret/Spinneret/small.ico: Added.
- Spinneret/Spinneret/stdafx.cpp: Added.
- Spinneret/Spinneret/stdafx.h: Added.
- 6:17 PM Changeset in webkit [13077] by
-
- 6 edits2 adds in trunk/WebCore
2006-03-01 Eric Seidel <eseidel@apple.com>
Reviewed by mjs.
Fix win32 build, add IntRectWin and GraphicsContextCairo stub.
- Viewer/ImageDocument.cpp:
- Viewer/ImageMainFrame.cpp:
- WebCore.vcproj/WebCore/WebCore.vcproj:
- platform/IntRect.h:
- platform/cairo/GraphicsContextCairo.cpp: Added.
- platform/win/TemporaryLinkStubs.cpp: (GraphicsContext::drawLineForText): (WebCore::GraphicsContext::fillRect): (WebCore::TransferJob::TransferJob): (GraphicsContext::GraphicsContext): (WebCore::GraphicsContext::~GraphicsContext):
- 6:12 PM Changeset in webkit [13076] by
-
- 3 edits in trunk/LayoutTests
Updated test case after improving list deletion.
<rdar://problem/4359736> Support outlining ability with lists
- unsupported-content/list-delete-002-expected.txt: Updated.
- unsupported-content/list-delete-002.html: Updated.
- 6:05 PM Changeset in webkit [13075] by
-
- 8 edits2 adds in trunk/WebCore
Reviewed by Justin.
<rdar://problem/4359736> Support outlining ability with lists
Added Mail SPI for list level changes. It is SPI because it is not complete support
for outlining. See <rdar://problem/4457070> "API for html lists as note outlines".
Additional support is to end a list when return is typed on empty list item.
- WebCore.vcproj/WebCore/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj: Added ModifySelectionListLevelCommand.cpp and ModifySelectionListLevelCommand.h
- bridge/mac/WebCoreFrameBridge.h:
- bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge canIncreaseSelectionListLevel]): (-[WebCoreFrameBridge canDecreaseSelectionListLevel]): (-[WebCoreFrameBridge increaseSelectionListLevel]): (-[WebCoreFrameBridge decreaseSelectionListLevel]): Supply list level calls in the bridge.
- editing/InsertParagraphSeparatorCommand.cpp: (WebCore::createListItemElement): New. Creates an li.
(WebCore::InsertParagraphSeparatorCommand::doApply):
- slight logic cleanup
- on empty list item, end the list
- editing/ModifySelectionListLevelCommand.cpp: Added. (WebCore::ModifySelectionListLevelCommand::ModifySelectionListLevelCommand): (WebCore::ModifySelectionListLevelCommand::preservesTypingStyle): (WebCore::ModifySelectionListLevelCommand::doApply): (WebCore::ModifySelectionListLevelCommand::canIncreaseSelectionListLevel): (WebCore::ModifySelectionListLevelCommand::canDecreaseSelectionListLevel): (WebCore::ModifySelectionListLevelCommand::increaseSelectionListLevel): (WebCore::ModifySelectionListLevelCommand::decreaseSelectionListLevel): (WebCore::modifySelectionListLevel): (WebCore::getStartEndListChildren): (WebCore::canIncreaseListLevel): (WebCore::canDecreaseListLevel): (WebCore::ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore): (WebCore::ModifySelectionListLevelCommand::insertSiblingNodeRangeAfter): (WebCore::ModifySelectionListLevelCommand::appendSiblingNodeRange): (WebCore::ModifySelectionListLevelCommand::increaseListLevel): (WebCore::ModifySelectionListLevelCommand::decreaseListLevel):
- editing/ModifySelectionListLevelCommand.h: Added. New editing command for adjusting the list level.
- editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::doApply): Slight logic cleanup
- editing/htmlediting.cpp: (WebCore::isListElement): (WebCore::enclosingListChild): New helpers.
(WebCore::isTableElement):
Allow caller to pass 0... return false in that case.
- editing/htmlediting.h: New helpers.
- rendering/RenderContainer.cpp: (WebCore::updateListMarkerNumbers): Allow for list children that are not li nodes. Ignore and continue rather than stopping.
(WebCore::RenderContainer::addChild):
Allow for nil beforeChild, meaning "add at end".
- 6:00 PM Changeset in webkit [13074] by
-
- 8 edits in trunk/WebCore
2006-03-01 Eric Seidel <eseidel@apple.com>
Reviewed by justing.
Update ESelectionGranulartiy enum to use newer CamelCase styling.
- bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge alterCurrentSelection:direction:granularity:]):
- editing/Selection.cpp: (WebCore::Selection::Selection): (WebCore::Selection::validate):
- editing/SelectionController.cpp: (WebCore::SelectionController::modifyExtendingRightForward): (WebCore::SelectionController::modifyMovingRightForward): (WebCore::SelectionController::modifyExtendingLeftBackward): (WebCore::SelectionController::modifyMovingLeftBackward): (WebCore::SelectionController::modify):
- editing/TypingCommand.cpp: (WebCore::TypingCommand::deleteKeyPressed): (WebCore::TypingCommand::forwardDeleteKeyPressed):
- editing/jsediting.cpp:
- editing/text_granularity.h: (WebCore::):
- page/Frame.cpp: (WebCore::Frame::selectClosestWordFromMouseEvent): (WebCore::Frame::handleMousePressEventTripleClick): (WebCore::Frame::handleMousePressEventSingleClick): (WebCore::Frame::handleMouseMoveEventSelection):
- 12:55 PM Changeset in webkit [13073] by
-
- 7 edits in trunk
2006-03-01 Alexander Kellett <lypanov@kde.org>
Reviewed by Maciej.
Fixes already existing test:
svg/W3C-SVG-1.1/coords-viewattr-02-b.svg
- kcanvas/RenderSVGImage.cpp: (WebCore::RenderSVGImage::adjustRectsForAspectRatio): (WebCore::RenderSVGImage::paint):
- kcanvas/RenderSVGImage.h:
2006-03-01 Alexander Kellett <lypanov@kde.org>
- http://bugzilla.opendarwin.org/show_bug.cgi?id=5966 Update expected results
- svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.checksum:
- svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
- svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt:
- 9:56 AM Changeset in webkit [13072] by
-
- 2 edits in trunk
Forgot to add the radar to my changelog entries.
- 9:54 AM Changeset in webkit [13071] by
-
- 16 edits5 adds in trunk
Reviewed by Darin.
- http://bugzilla.opendarwin.org/show_bug.cgi?id=3812 XMLHttpRequest: PUT, DELETE, HEAD and all other methods but POST actually do a GET.
HEAD is currently unimplemented because of what seems to be a bug in NSURLConnection,
and does a GET instead.
WebCore:
- kwq/KWQKJobClasses.h: Add a method parameter to TransferJob.
- kwq/KWQKJobClasses.mm: (WebCore::TransferJobPrivate::TransferJobPrivate): (WebCore::TransferJob::TransferJob): (WebCore::TransferJob::method):
- bridge/mac/WebCoreFrameBridge.h: URL loading functions now take a method parameter.
- dom/xml_tokenizer.cpp: (WebCore::openFunc):
- khtml/xsl/xslt_processorimpl.cpp: (DOM::docLoaderFunc):
- kwq/KWQLoader.mm: (KWQServeRequest): (KWQServeSynchronousRequest):
- loader/loader.cpp: (WebCore::Loader::servePendingRequests):
- page/Frame.cpp: (WebCore::Frame::didOpenURL):
- xml/xmlhttprequest.cpp: (WebCore::XMLHttpRequest::send): Honor the method passed in open().
- khtml/ecma/JSXMLHttpRequest.cpp: (KJS::JSXMLHttpRequestProtoFunc::callAsFunction): Don't serialize null as "null".
WebKit:
All WebKit changes are to use the method parameter passed from WebCore.
- WebCoreSupport/WebFrameBridge.m: (-[WebFrameBridge startLoadingResource:withMethod:URL:customHeaders:]): (-[WebFrameBridge startLoadingResource:withMethod:URL:customHeaders:postData:]): (-[WebFrameBridge syncLoadResourceWithMethod:URL:customHeaders:postData:finalURL:responseHeaders:statusCode:]):
- WebCoreSupport/WebSubresourceLoader.h:
- WebCoreSupport/WebSubresourceLoader.m: (+[WebSubresourceLoader startLoadingResource:withMethod:URL:customHeaders:referrer:forDataSource:]): (+[WebSubresourceLoader startLoadingResource:withMethod:URL:customHeaders:postData:referrer:forDataSource:]):
LayoutTests:
- http/tests/xmlhttprequest/methods-async-expected.txt: Added.
- http/tests/xmlhttprequest/methods-async.html: Added.
- http/tests/xmlhttprequest/methods-expected.txt: Added.
- http/tests/xmlhttprequest/methods.cgi: Added.
- http/tests/xmlhttprequest/methods.html: Added.
- 9:49 AM Changeset in webkit [13070] by
-
- 17 edits2 adds in trunk
WebCore:
Reviewed by Darin.
http://bugzilla.opendarwin.org/show_bug.cgi?id=7450
elementAtPoint is expensive and should return a smart dictionary
Support for WebKit. This removes the old elementAtPoint: on the bridge.
WebKit now uses the bridge method getInnerNonSharedNode:innerNode:URLElement:atPoint:
- WebCore.exp: removes the WebCore* dictionary keys
- bindings/objc/DOM.mm: (-[DOMElement image]): new method to get an NSImage if the element has an image renderer
- bindings/objc/DOMHTML.mm: (-[DOMHTMLElement titleDisplayString]): new method that returns the title after doing the backslash as currency symbol conversion (-[DOMHTMLInputElement altDisplayString]): ditto for alt (-[DOMHTMLImageElement altDisplayString]): ditto (-[DOMHTMLAppletElement altDisplayString]): ditto (-[DOMHTMLAreaElement altDisplayString]): ditto (-[DOMHTMLAnchorElement absoluteLinkURL]): new method to get the absolute NSURL (-[DOMHTMLAreaElement absoluteLinkURL]): ditto (-[DOMHTMLLinkElement absoluteLinkURL]): ditto (-[DOMHTMLInputElement absoluteImageURL]): new method to get the absolute image location as an NSURL (-[DOMHTMLImageElement absoluteImageURL]): ditto (-[DOMHTMLObjectElement absoluteImageURL]): ditto
- bindings/objc/DOMPrivate.h:
- bridge/mac/WebCoreFrameBridge.h:
- bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge getInnerNonSharedNode:innerNode:URLElement:atPoint:]): (-[WebCoreFrameBridge isPointInsideSelection:]):
- dom/DocumentImpl.cpp: (WebCore::DocumentImpl::prepareMouseEvent): (WebCore::DocumentImpl::backslashAsCurrencySymbol):
- dom/DocumentImpl.h:
- rendering/render_layer.cpp: (WebCore::RenderLayer::hitTest):
- rendering/render_object.h: (WebCore::RenderObject::NodeInfo::URLElement): (WebCore::RenderObject::NodeInfo::setURLElement):
WebKit:
Reviewed by Darin.
http://bugzilla.opendarwin.org/show_bug.cgi?id=7450
elementAtPoint is expensive and should return a smart dictionary
elementAtPoint for WebHTMLView now returns a WebElementDictionary,
when objectForKey is called it will lookup in the DOM, cache and return the value
- Misc/WebElementDictionary.h: Added.
- Misc/WebElementDictionary.m: Added. (addLookupKey): (cacheValueForKey): (+[WebElementDictionary initializeLookupTable]): (-[WebElementDictionary initWithInnerNonSharedNode:innerNode:URLElement:andPoint:]): (-[WebElementDictionary dealloc]): (-[WebElementDictionary _fillCache]): (-[WebElementDictionary count]): (-[WebElementDictionary keyEnumerator]): (-[WebElementDictionary objectForKey:]): (-[WebElementDictionary _domNode]): (-[WebElementDictionary _webFrame]): (-[WebElementDictionary _targetWebFrame]): (-[WebElementDictionary _title]): (-[WebElementDictionary _imageRect]): (-[WebElementDictionary _isSelected]):
- Misc/WebNSViewExtras.m: (-[NSView _web_dragImage:element:rect:event:pasteboard:source:offset:]):
- WebKit.xcodeproj/project.pbxproj:
- WebView/WebHTMLView.m: (-[WebHTMLView _updateMouseoverWithEvent:]): (-[WebHTMLView _startDraggingImage:at:operation:event:sourceIsDHTML:DHTMLWroteData:]): (-[NSArray elementAtPoint:]):
- WebView/WebView.m:
- WebView/WebViewPrivate.h:
- 8:33 AM Changeset in webkit [13069] by
-
- 4 edits4 adds in trunk
LayoutTests:
Reviewed by Hyatt.
- Test for http://bugzilla.opendarwin.org/show_bug.cgi?id=7327 REGRESSION (r12869): :hover subselector does not work in quirks mode
- fast/css/hover-subselector-expected.checksum: Added.
- fast/css/hover-subselector-expected.png: Added.
- fast/css/hover-subselector-expected.txt: Added.
- fast/css/hover-subselector.html: Added.
WebCore:
Test: fast/css/hover-subselector.html
Reviewed by Hyatt.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=7327 REGRESSION (r12869): :hover subselector does not work in quirks mode
- css/cssstyleselector.h:
- css/cssstyleselector.cpp: (WebCore::CSSStyleSelector::checkSelector): Pass flag to indicate sub-selector. (WebCore::CSSStyleSelector::checkOneSelector): Apply the *:hover and *:active quirks only when there are no sub-selectors.
- 1:12 AM Changeset in webkit [13068] by
-
- 3 edits in trunk/WebCore
Rubber stamped by Hyatt.
- fix win32 build (and make dumprendertree run)
- kwq/KWQComboBox.h:
- platform/win/TemporaryLinkStubs.cpp: (QTextEdit::selectionEnd): (Widget::~Widget): (GraphicsContext::beginTransparencyLayer): (QComboBox::populate): (GraphicsContext::drawConvexPolygon): (QFontMetrics::selectionRectForText): (GraphicsContext::setShadow): (GraphicsContext::clearFocusRing): (GraphicsContext::drawImageInRect): (KWQFileButton::setFilename): (KWQFileButton::focusPolicy): (KWQFileButton::frameGeometry): (QSlider::focusPolicy): (WebCore::GraphicsContext::font): (QTextEdit::setWritingDirection): (QFontMetrics::checkSelectionPoint): (QFontMetrics::isFixedPitch): (WebCore::TransferJob::addMetaData):