Timeline
Jul 30, 2006:
- 11:52 PM Changeset in webkit [15702] by
-
- 10 edits2 adds in trunk
LayoutTests:
- test that displays all computed style -- demonstrates bug fixes I just made to the computed style class and also acts as a regression test for the existence of all of them and the basic format for a default object
- fast/css/computed-style-expected.txt: Added.
- fast/css/computed-style.html: Added.
WebCore:
Reviewed by Tim Hatcher.
- some improvements for the benefit of the style pane of the inspector
- css/CSSComputedStyleDeclaration.cpp: Removed background-position and border-spacing from the list of properties that show up in computed style, because of background-position-x, background-position-y, -webkit-border-horizontal-spacing and -webkit-border-vertical-spacing. (WebCore::valueForLength): Added handling for undefinedLength, intrinsic, and min-intrinsic. (WebCore::primitiveValueFromLength): Removed code that would add a space to the string for no good reason. (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Added a special case for a line clamp of -1, which should come back as "none" rather than an actual "-1". (WebCore::CSSComputedStyleDeclaration::length): Return 0 if the declaration has no corresponding node or no renderer. (WebCore::CSSComputedStyleDeclaration::item): Check against length() so that the two stay consistent rather than using a constant.
- css/CSSPrimitiveValue.cpp: (WebCore::isCSSTokenizerIdentifier): Added. (WebCore::isCSSTokenizerURL): Added. (WebCore::quoteString): Added. (WebCore::quoteStringIfNeeded): Changed to quote strings in many more cases -- any cases where they would not parse in the CSS parser otherwise. The main case this affects is font names with spaces in them. (WebCore::quoteURLIfNeeded): Added. (WebCore::CSSPrimitiveValue::cssText): Use quoteURLIfNeeded in the case where we're making the text form of a URI.
- css/tokenizer.flex: Whitespace tweaks to line things up better.
WebKit:
Reviewed by Tim Hatcher.
- some improvements for the inspector
- WebInspector/WebInspector.m: (+sharedWebInspector:): Fixed bug that could cause the inspector to be garbage collected if used in an application with GC enabled. (-dealloc): Removed a call to a non-existent close method. (-window): Added a custom WebPreferences object and called setPrivateBrowsingEnabled:YES so the inspector won't appear in the history menu. Also call setProhibitsMainFrameScrolling:YES to try to get rid of trouble where the inspector scrolls when dragging.
- WebInspector/webInspector/inspector.css: Added style for the new color swatch, and JavaScript properties. More of the style should be shared between the panes, but this should be OK for now.
- WebInspector/webInspector/inspector.html: Added a first cut at a JavaScript properties pane. Needs work, but better than nothing.
- WebInspector/webInspector/inspector.js: Lots of improvements:
- Omit "typical" property values from computed style display, making it much shorter.
- Use the words "black", "white", and "transparent" when appropriate for color values.
- Refactored the loaded() function to get rid of repetitive scrollbar setup.
- Added a new scrollarea for the JavaScript properties pane.
- Simplified refreshScrollbars() -- we now refresh all scrollbars every time, which does no harm.
- Removed unused resultsWithXpathQuery().
- Use [] instead of "new Array()" and {} instead of "new Object()".
- Removed unused xpathForNode().
- Changed style pane to display the style for a text node's parent instead of saying it can't display the style for text.
- Fixed regression I caused a while back by checking the length of a computed style and not trying to display anything if its length is 0. Before this change and the corresponding change in WebCore, we'd see a complete list of all styles with the empty string as the value for each one.
- Changed the name of the computedStyle flag on the style rules array to isComputedStyle to make it easier to understand it's a boolean.
- Fixed an error in the code that does !important scanning where it was trying to do a special case for computed style, but was checking the computed style flag on the wrong object.
- Added populateStyleListItem() function to factor out things in common between the items in the top level list and the expanded tree for shorthand properties.
- Added code to make a color swatch next to the textual representation for any property that contains a color.
- Implemented a first cut at a simple JavaScript properties pane.
- 11:15 PM Changeset in webkit [15701] by
-
- 3 edits in trunk/WebKitTools
Reviewed by Maciej.
Bug 9686: [Drosera] Need the ability to break into Drosera on Javascript exceptions
http://bugzilla.opendarwin.org/show_bug.cgi?id=9686
- Drosera/DebuggerDocument.m: (-[WebScriptObject switchToServerNamed:]): Remove as listener before resuming to ensure that the server does not try and notify us of events related to the resumption. (-[WebScriptObject webView:exceptionWasRaised:sourceId:line:forWebFrame:]): Delegate call through to JavaScript.
- Drosera/debugger.js: Pause debugger when exception is raised.
- 4:02 PM Changeset in webkit [15700] by
-
- 3 edits in trunk/WebKitSite
Reviewed by Beth.
- Tweaked the checkout and build instructions to make them simpler and clearer.
- building/build.html:
- building/checkout.html:
Jul 29, 2006:
- 9:31 PM Changeset in webkit [15699] by
-
- 3 edits3 deletes in trunk/WebCore
2006-07-30 Eric Seidel <eric@eseidel.com>
Reviewed by gramps!
Remove some unused SVG code.
- ksvg2/ecma/Ecma.cpp: Removed.
- ksvg2/ecma/Ecma.h: Removed.
- ksvg2/ecma/GlobalObject.cpp: remove a couple dead functions.
- ksvg2/ecma/GlobalObject.h: add a comment about this dead code.
- ksvg2/ecma/SVGLookup.h: Removed.
- 5:04 PM Changeset in webkit [15698] by
-
- 38 edits in trunk
- Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
- Removed allow-tabs Subversion property from the files too.
- bindings/NP_jsobject.cpp:
- bindings/c/c_utility.cpp:
- bindings/jni/jni_runtime.cpp:
- bindings/jni/jni_utility.cpp:
- bindings/objc/objc_utility.mm:
- bindings/runtime.cpp:
- bindings/runtime_method.cpp:
- bindings/testbindings.cpp:
- bindings/testbindings.mm:
- kjs/date_object.cpp:
- kjs/function.cpp:
- kjs/list.cpp:
- kjs/nodes.cpp:
- kjs/nodes.h:
- kjs/string_object.cpp:
- kjs/ustring.cpp:
WebCore:
- Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
- Removed allow-tabs Subversion property from the files too.
- bindings/objc/WebScriptObject.h:
- bindings/objc/WebScriptObject.mm:
- platform/FontData.cpp:
WebKit:
- Removed tabs from these source files that still had them. We don't use them; that way source files look fine in editors that have tabs set to 8 spaces or to 4 spaces.
- Removed allow-tabs Subversion property from the files too.
- DefaultDelegates/WebDefaultPolicyDelegate.m:
- History/WebHistory.m:
- Misc/WebDownload.m:
- Misc/WebIconDatabase.m:
- Misc/WebKitErrors.m:
- Misc/WebKitLogging.m:
- Misc/WebNSDataExtras.m:
- Misc/WebNSFileManagerExtras.m:
- Panels/WebPanelAuthenticationHandler.m:
- Plugins/WebBaseNetscapePluginView.m:
- Plugins/npfunctions.h:
- WebCoreSupport/WebSubresourceLoader.m:
- WebView/WebMainResourceLoader.m:
- WebView/WebView.h:
- WebView/WebView.m:
- 4:41 PM Changeset in webkit [15697] by
-
- 2 edits in trunk/JavaScriptCore
- tests/mozilla/expected.html: Update test results now that regress-185165.js is succeeding. I suspect Anders fix for bug 4620655 is the reason.
- 4:15 PM Changeset in webkit [15696] by
-
- 225 edits in trunk
Reviewed by Darin.
- patch for http://bugzilla.opendarwin.org/show_bug.cgi?id=10080 Adopt pedantic changes from the Unity project to improve cross-compiler compatibility
Changes include:
- Removing trailing semicolon from namespace braces.
- Removing trailing comma from last enum declaration.
- Updating to match style guidelines.
- Adding missing newline to the end of the file.
- Turning on gcc warning for missing newline at the end of a source file (GCC_WARN_ABOUT_MISSING_NEWLINE in Xcode, -Wnewline in gcc).
- Alphabetical sorting of Xcode source list files.
- Replace use of non-portable variable-size array with Vector.
- Use C-style comments instead of C++ comments in files that might be included by either C or C++ files.
- API/JSCallbackConstructor.cpp: (KJS::JSCallbackConstructor::construct):
- API/JSCallbackFunction.cpp: (KJS::JSCallbackFunction::callAsFunction):
- API/JSCallbackObject.cpp: (KJS::JSCallbackObject::construct): (KJS::JSCallbackObject::callAsFunction):
- JavaScriptCore.xcodeproj/project.pbxproj:
- JavaScriptCorePrefix.h:
- bindings/jni/jni_class.cpp: (JavaClass::fieldNamed):
- bindings/jni/jni_class.h:
- bindings/jni/jni_instance.cpp: (JavaInstance::JavaInstance): (JavaInstance::valueOf):
- bindings/jni/jni_objc.mm: (KJS::Bindings::dispatchJNICall):
- bindings/jni/jni_runtime.cpp: (JavaParameter::JavaParameter): (JavaArray::JavaArray):
- bindings/jni/jni_runtime.h:
- bindings/jni/jni_utility.h:
- bindings/objc/objc_instance.h:
- bindings/runtime_array.h:
- kjs/collector.h:
- kjs/config.h:
- kjs/ustring.cpp:
- wtf/Platform.h:
JavaScriptGlue:
Reviewed by Darin.
- patch for http://bugzilla.opendarwin.org/show_bug.cgi?id=10080 Adopt pedantic changes from the Unity project to improve cross-compiler compatibility
Changes include:
- Turning on gcc warning for missing newline at the end of a source file (GCC_WARN_ABOUT_MISSING_NEWLINE in Xcode, -Wnewline in gcc).
- JavaScriptGlue.xcodeproj/project.pbxproj:
WebCore:
Reviewed by Darin.
- patch for http://bugzilla.opendarwin.org/show_bug.cgi?id=10080 Adopt pedantic changes from the Unity project to improve cross-compiler compatibility
Changes include:
- Removing trailing semicolon from namespace braces.
- Removing trailing comma from last enum declaration.
- Updating to match style guidelines.
- Adding missing newline to the end of the file.
- Turning on gcc warning for missing newline at the end of a source file (GCC_WARN_ABOUT_MISSING_NEWLINE in Xcode, -Wnewline in gcc).
- Alphabetical sorting of Xcode source list files.
- Use abs() function from <math.h> instead of ABS() macro.
- Use C-style comments instead of C++ comments in files that might be included by either C or C++ files.
- Use -numeric_limits<double>::infinity() instead of -HUGE_VAL.
- WebCore+SVG/DOMList.h:
- WebCore.xcodeproj/project.pbxproj:
- WebCorePrefix.h:
- bindings/js/JSCanvasRenderingContext2DCustom.cpp:
- bindings/js/JSXSLTProcessor.h:
- bindings/js/kjs_domnode.h: (KJS::DOMNode::):
- bindings/objc/DOMCSS.h: (-[DOMCSSValue enum]):
- bindings/objc/DOMCore.h: (-[DOMImplementation createDocument:::]):
- bindings/objc/DOMEvents.h: (-[DOMOverflowEvent enum]):
- bindings/objc/DOMRange.h:
- bindings/objc/DOMTraversal.h:
- bindings/objc/DOMXPath.h: (-[DOMXPathNSResolver lookupNamespaceURI:]):
- bridge/mac/WebCoreFrameBridge.h:
- bridge/mac/WebCoreKeyboardAccess.h:
- css/makeprop:
- css/makevalues:
- dom/ChildNodeList.h:
- dom/DocPtr.h:
- dom/Document.h: (WebCore::Document::):
- dom/DocumentMarker.h: (WebCore::DocumentMarker::): (WebCore::DocumentMarker::operator==): (WebCore::DocumentMarker::operator!=):
- dom/EventTargetNode.h:
- dom/KeyboardEvent.h: (WebCore::KeyboardEvent::):
- dom/NameNodeList.h: (WebCore::NameNodeList::rootNodeChildrenChanged):
- dom/QualifiedName.cpp:
- editing/TypingCommand.h: (WebCore::TypingCommand::):
- editing/UnlinkCommand.h: (WebCore::UnlinkCommand::editingAction):
- html/FormDataList.h: (WebCore::FormDataListItem::FormDataListItem): (WebCore::FormDataList::appendData):
- html/HTMLBlockquoteElement.h:
- html/HTMLDivElement.h:
- html/HTMLFormElement.h:
- html/HTMLHRElement.h:
- html/HTMLHeadingElement.h:
- html/HTMLMarqueeElement.h:
- html/HTMLParagraphElement.h:
- html/HTMLPlugInElement.h:
- html/HTMLPreElement.h:
- html/HTMLTokenizer.h: (WebCore::HTMLTokenizer::State::):
- icon/IconDatabase.cpp:
- icon/SQLStatement.cpp:
- kcanvas/KCanvasFilters.h: (WebCore::): (WebCore::KCanvasPoint3F::KCanvasPoint3F): (WebCore::KCanvasFilter::KCanvasFilter): (WebCore::KCanvasFilter::~KCanvasFilter): (WebCore::KCanvasFilterEffect::~KCanvasFilterEffect): (WebCore::KCComponentTransferFunction::KCComponentTransferFunction): (WebCore::KCanvasFEConvolveMatrix::KCanvasFEConvolveMatrix): (WebCore::KCLightSource::KCLightSource): (WebCore::KCDistantLightSource::KCDistantLightSource): (WebCore::KCPointLightSource::KCPointLightSource): (WebCore::KCSpotLightSource::KCSpotLightSource): (WebCore::KCanvasFEDiffuseLighting::KCanvasFEDiffuseLighting): (WebCore::KCanvasFEDisplacementMap::KCanvasFEDisplacementMap): (WebCore::KCanvasFEImage::KCanvasFEImage): (WebCore::KCanvasFESpecularLighting::KCanvasFESpecularLighting):
- kcanvas/RenderSVGImage.h:
- kcanvas/device/quartz/KRenderingDeviceQuartz.h:
- ksvg2/css/SVGRenderStyle.h: (WebCore::SVGRenderStyle::InheritedFlags::): (WebCore::SVGRenderStyle::NonInheritedFlags::):
- ksvg2/css/SVGRenderStyleDefs.h: (WebCore::):
- ksvg2/events/SVGZoomEvent.h:
- ksvg2/ksvg.h: (WebCore::):
- ksvg2/misc/KCanvasRenderingStyle.h:
- ksvg2/misc/SVGImageLoader.h:
- ksvg2/scripts/make_names.pl:
- ksvg2/svg/SVGAElement.h:
- ksvg2/svg/SVGAngle.h:
- ksvg2/svg/SVGAnimateColorElement.h:
- ksvg2/svg/SVGAnimateElement.h:
- ksvg2/svg/SVGAnimateTransformElement.h:
- ksvg2/svg/SVGAnimatedAngle.h:
- ksvg2/svg/SVGAnimatedBoolean.h:
- ksvg2/svg/SVGAnimatedColor.h:
- ksvg2/svg/SVGAnimatedEnumeration.h:
- ksvg2/svg/SVGAnimatedInteger.h:
- ksvg2/svg/SVGAnimatedLength.h:
- ksvg2/svg/SVGAnimatedLengthList.h:
- ksvg2/svg/SVGAnimatedNumber.h:
- ksvg2/svg/SVGAnimatedNumberList.h:
- ksvg2/svg/SVGAnimatedPathData.h:
- ksvg2/svg/SVGAnimatedPoints.h:
- ksvg2/svg/SVGAnimatedPreserveAspectRatio.h:
- ksvg2/svg/SVGAnimatedRect.h:
- ksvg2/svg/SVGAnimatedString.h:
- ksvg2/svg/SVGAnimatedTemplate.h:
- ksvg2/svg/SVGAnimatedTransformList.h:
- ksvg2/svg/SVGAnimationElement.cpp: (SVGAnimationElement::calculateCurrentValueItem): (SVGAnimationElement::calculateRelativeTimePercentage):
- ksvg2/svg/SVGAnimationElement.h: (WebCore::):
- ksvg2/svg/SVGCircleElement.h:
- ksvg2/svg/SVGClipPathElement.h:
- ksvg2/svg/SVGColor.h:
- ksvg2/svg/SVGComponentTransferFunctionElement.h:
- ksvg2/svg/SVGCursorElement.h:
- ksvg2/svg/SVGDOMImplementation.h:
- ksvg2/svg/SVGDefsElement.h:
- ksvg2/svg/SVGDescElement.h:
- ksvg2/svg/SVGDocument.h:
- ksvg2/svg/SVGElement.h: (WebCore::SVGElement::rendererIsNeeded): (WebCore::svg_dynamic_cast):
- ksvg2/svg/SVGElementInstance.h:
- ksvg2/svg/SVGElementInstanceList.h:
- ksvg2/svg/SVGEllipseElement.h:
- ksvg2/svg/SVGExternalResourcesRequired.h:
- ksvg2/svg/SVGFEBlendElement.h:
- ksvg2/svg/SVGFEColorMatrixElement.h:
- ksvg2/svg/SVGFEComponentTransferElement.h:
- ksvg2/svg/SVGFECompositeElement.h:
- ksvg2/svg/SVGFEDiffuseLightingElement.h:
- ksvg2/svg/SVGFEDisplacementMapElement.h:
- ksvg2/svg/SVGFEDistantLightElement.h:
- ksvg2/svg/SVGFEFloodElement.h:
- ksvg2/svg/SVGFEFuncAElement.h:
- ksvg2/svg/SVGFEFuncBElement.h:
- ksvg2/svg/SVGFEFuncGElement.h:
- ksvg2/svg/SVGFEFuncRElement.h:
- ksvg2/svg/SVGFEGaussianBlurElement.h:
- ksvg2/svg/SVGFEImageElement.h:
- ksvg2/svg/SVGFELightElement.h:
- ksvg2/svg/SVGFEMergeElement.h:
- ksvg2/svg/SVGFEMergeNodeElement.h:
- ksvg2/svg/SVGFEOffsetElement.h:
- ksvg2/svg/SVGFEPointLightElement.h:
- ksvg2/svg/SVGFESpecularLightingElement.h:
- ksvg2/svg/SVGFESpotLightElement.h:
- ksvg2/svg/SVGFETileElement.h:
- ksvg2/svg/SVGFETurbulenceElement.h:
- ksvg2/svg/SVGFilterElement.h:
- ksvg2/svg/SVGFilterPrimitiveStandardAttributes.h:
- ksvg2/svg/SVGFitToViewBox.h:
- ksvg2/svg/SVGForeignObjectElement.cpp:
- ksvg2/svg/SVGForeignObjectElement.h:
- ksvg2/svg/SVGGElement.h:
- ksvg2/svg/SVGGradientElement.h:
- ksvg2/svg/SVGHelper.h: (WebCore::):
- ksvg2/svg/SVGImageElement.h:
- ksvg2/svg/SVGLangSpace.h:
- ksvg2/svg/SVGLength.h:
- ksvg2/svg/SVGLengthList.h:
- ksvg2/svg/SVGLineElement.h:
- ksvg2/svg/SVGLinearGradientElement.h:
- ksvg2/svg/SVGList.h:
- ksvg2/svg/SVGLocatable.h:
- ksvg2/svg/SVGMarkerElement.h:
- ksvg2/svg/SVGMaskElement.h:
- ksvg2/svg/SVGMatrix.h:
- ksvg2/svg/SVGNumber.h:
- ksvg2/svg/SVGNumberList.h:
- ksvg2/svg/SVGPaint.h:
- ksvg2/svg/SVGPathElement.h:
- ksvg2/svg/SVGPathSeg.h:
- ksvg2/svg/SVGPathSegArc.h:
- ksvg2/svg/SVGPathSegClosePath.h:
- ksvg2/svg/SVGPathSegCurvetoCubic.h:
- ksvg2/svg/SVGPathSegCurvetoCubicSmooth.h:
- ksvg2/svg/SVGPathSegCurvetoQuadratic.h:
- ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.h:
- ksvg2/svg/SVGPathSegLineto.h:
- ksvg2/svg/SVGPathSegLinetoHorizontal.h:
- ksvg2/svg/SVGPathSegLinetoVertical.h:
- ksvg2/svg/SVGPathSegList.h:
- ksvg2/svg/SVGPathSegMoveto.h:
- ksvg2/svg/SVGPatternElement.h:
- ksvg2/svg/SVGPoint.h:
- ksvg2/svg/SVGPointList.h:
- ksvg2/svg/SVGPolyElement.h:
- ksvg2/svg/SVGPolygonElement.h:
- ksvg2/svg/SVGPolylineElement.h:
- ksvg2/svg/SVGPreserveAspectRatio.h:
- ksvg2/svg/SVGRadialGradientElement.h:
- ksvg2/svg/SVGRect.h:
- ksvg2/svg/SVGRectElement.h:
- ksvg2/svg/SVGSVGElement.h:
- ksvg2/svg/SVGScriptElement.h:
- ksvg2/svg/SVGSetElement.h:
- ksvg2/svg/SVGStopElement.h:
- ksvg2/svg/SVGStringList.h:
- ksvg2/svg/SVGStylable.h:
- ksvg2/svg/SVGStyleElement.h:
- ksvg2/svg/SVGStyledElement.h: (WebCore::SVGStyledElement::rendererIsNeeded): (WebCore::SVGStyledElement::canvasResource):
- ksvg2/svg/SVGStyledLocatableElement.h:
- ksvg2/svg/SVGStyledTransformableElement.h:
- ksvg2/svg/SVGSwitchElement.h:
- ksvg2/svg/SVGSymbolElement.h:
- ksvg2/svg/SVGTRefElement.h:
- ksvg2/svg/SVGTSpanElement.h:
- ksvg2/svg/SVGTests.h:
- ksvg2/svg/SVGTextContentElement.h:
- ksvg2/svg/SVGTextElement.h:
- ksvg2/svg/SVGTextPositioningElement.h:
- ksvg2/svg/SVGTitleElement.h:
- ksvg2/svg/SVGTransform.h:
- ksvg2/svg/SVGTransformList.h:
- ksvg2/svg/SVGTransformable.h:
- ksvg2/svg/SVGURIReference.h:
- ksvg2/svg/SVGUseElement.h:
- ksvg2/svg/SVGViewElement.h:
- ksvg2/svg/SVGZoomAndPan.h:
- ksvg2/svg/svgpathparser.h:
- page/Frame.h: (WebCore::):
- platform/AffineTransform.h:
- platform/FontCache.cpp: (WebCore::FontPlatformDataCacheKey::FontPlatformDataCacheKey):
- platform/FontData.cpp: (WebCore::FontData::FontData):
- platform/FontData.h:
- platform/TextBox.h: (WebCore::TextBox::):
- platform/Timer.cpp: (WebCore::TimerBase::heapPop):
- platform/mac/FontCacheMac.mm:
- platform/mac/GlyphMapMac.cpp:
- platform/mac/WebFontCache.mm: (betterChoice):
- rendering/DeprecatedRenderSelect.cpp: (WebCore::DeprecatedRenderSelect::setWidgetWritingDirection):
- rendering/EllipsisBox.h:
- rendering/RenderBR.h: (WebCore::RenderBR::renderName): (WebCore::RenderBR::width):
- rendering/RenderBlock.h: (WebCore::):
- rendering/RenderFlexibleBox.h:
- rendering/RenderFlow.h: (WebCore::RenderFlow::RenderFlow):
- rendering/RenderFrame.cpp:
- rendering/bidi.h:
- rendering/break_lines.cpp:
WebKit:
Reviewed by Darin.
- patch for http://bugzilla.opendarwin.org/show_bug.cgi?id=10080 Adopt pedantic changes from the Unity project to improve cross-compiler compatibility
Changes include:
- Adding missing newline to the end of the file.
- Turning on gcc warning for missing newline at the end of a source file (GCC_WARN_ABOUT_MISSING_NEWLINE in Xcode, -Wnewline in gcc).
- WebKit.xcodeproj/project.pbxproj:
- WebView/WebResourcePrivate.h:
- 4:09 PM Changeset in webkit [15695] by
-
- 32 edits in trunk
Clear stray executable bits.
- 3:50 PM Changeset in webkit [15694] by
-
- 2 edits in trunk/WebCore/editing
Clear some stray executable bits.
- 2:05 PM Changeset in webkit [15693] by
-
- 1 edit in trunk/LayoutTests/dom/xhtml/level2/html/HTMLDocument04-expected.txt
Remove the output produced by an alert, so
hopefully buildbot will not complain anymore :)
- 1:25 PM Changeset in webkit [15692] by
-
- 6 edits in trunk
Reviewed by Geoff.
http://bugzilla.opendarwin.org/show_bug.cgi?id=10151
ghostmap XHTML + SVG fails due to javascript undefined exception
Make sure document.URL works when called from a non-HTML document.
- 8:44 AM Changeset in webkit [15691] by
-
- 14 edits2 adds in trunk
Reviewed by Darin.
- fixes for Linux build
- JavaScriptCoreSources.bkl: Added new files to build, kjs/PropertyNameArray.cpp and kjs/testkjs.cpp, and removed old files.
WebCore:
Reviewed and tweaked by Darin.
- fixes for Linux build (still might not compile, since Darin tweaked but was unable to test).
- WebCoreSources.bkl: Added some new sources, removed some obsolete ones.
- Projects/gdk/webcore-gdk.bkl: Added RenderPopupMenuGdk.cpp
- html/HTMLPlugInElement.h: Removed incorrect syntax with class name before ::.
- platform/gdk/FrameGdk.h:
- platform/gdk/FrameGdk.cpp: Updated parameters of constructor. Moved a couple stubs out of this file.
- platform/gdk/RenderPopupMenuGdk.h: Added.
- platform/gdk/RenderPopupMenuGdk.cpp: Added. Just a file full of empty stubs.
- platform/gdk/RenderThemeGdk.h:
- platform/gdk/RenderThemeGdk.cpp: (WebCore::RenderThemeGdk::createPopupMenu): Added.
- platform/gdk/TemporaryLinkStubs.cpp: Add some new stubs.
WebKitTools:
Reviewed by Darin.
- fixes for Linux build
- GdkLauncher/mk: Added call to bakefile_gen before calling make.
- GdkLauncher/gdklauncher.bkl: Tweak comment.
- 8:43 AM Changeset in webkit [15690] by
-
- 3 edits in trunk/LayoutTests
- changed this test to a plain-text one and added text explaining what it tests
- fast/forms/input-named-action-overrides-action-attribute.html: Added explanation text, got rid of some incorrect HTML syntax, added a call to dumpAsText(), and used a paragraph element instead of a span element for the result.
- fast/forms/input-named-action-overrides-action-attribute-expected.txt: Updated.
- 8:21 AM Changeset in webkit [15689] by
-
- 2 edits in trunk/WebCore
Reviewed by Darin.
http://bugzilla.opendarwin.org/show_bug.cgi?id=10022
Bug 10022: REGRESSION: Crash in WebCore::XMLTokenizer::characters
- dom/XMLTokenizer.cpp: (WebCore::XMLTokenizer::resumeParsing): If the write() call resulted in new callbacks being added, don't call through to end() just yet.
- 8:19 AM Changeset in webkit [15688] by
-
- 3 edits2 adds in trunk
WebCore:
Reviewed by John Sullivan.
- manual test for http://bugzilla.opendarwin.org/show_bug.cgi?id=9984 ASSERTION FAILURE: _private->mouseDownEvent != nil (WebKit/WebView/WebHTMLView.m:4863 -[WebHTMLView(WebInternal) _delegateDragSourceActionMask])
- manual-tests/subview-click-assertion.html: Added.
WebKit:
Reviewed by John Sullivan.
- fix http://bugzilla.opendarwin.org/show_bug.cgi?id=9984 ASSERTION FAILURE: _private->mouseDownEvent != nil (WebKit/WebView/WebHTMLView.m:4863 -[WebHTMLView(WebInternal) _delegateDragSourceActionMask])
- WebView/WebHTMLView.m: (-[WebHTMLView _setMouseDownEvent:]): Moved into the WebHTMLViewFileInternal category and changed to accept nil. (-[WebHTMLView _startDraggingImage:at:operation:event:sourceIsDHTML:DHTMLWroteData:]): Copy the hit HTMLView's mouse down event to the top HTMLView. (-[WebHTMLView acceptsFirstMouse:]): Added a call to _setMouseDownEvent:nil before returning. (-[WebHTMLView shouldDelayWindowOrderingForEvent:]): Added a call to _setMouseDownEvent:nil before returning. (-[WebHTMLView mouseUp:]): Added a call to _setMouseDownEvent:nil to clear the event set in mouseDown: (and used during dragging). (-[WebHTMLView _delegateDragSourceActionMask]): Copy the hit HTMLView's mouse down event to the top HTMLView.
- 8:06 AM Changeset in webkit [15687] by
-
- 3 edits4 adds in trunk
LayoutTests:
Reviewed by Darin.
Test for http://bugzilla.opendarwin.org/show_bug.cgi?id=8587 / <rdar://problem/4631844>
REGRESSION: {display:list-item} items outside an ol or ul element don't number correctly
- fast/lists/ordered-list-with-no-ol-tag-expected.checksum: Added.
- fast/lists/ordered-list-with-no-ol-tag-expected.png: Added.
- fast/lists/ordered-list-with-no-ol-tag-expected.txt: Added.
- fast/lists/ordered-list-with-no-ol-tag.html: Added.
WebCore:
Reviewed by Darin.
Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=8587 / <rdar://problem/4631844>
REGRESSION: {display:list-item} items outside an ol or ul element don't number correctly
- rendering/RenderListItem.cpp: (WebCore::enclosingList): If no real list element is found, use parent instead. (WebCore::previousListItem): Check list elements to see if they are list items -- the old code assumed that a list would never be a list item but this is entirely possible with CSS and especially with the new rule that means any DOM element could act as a list.
- 7:56 AM Changeset in webkit [15686] by
-
- 3 edits2 adds in trunk
Reviewed by Darin.
Fix http://bugzilla.opendarwin.org/show_bug.cgi?id=10147
REGRESSION: custom attribute values set via javascript are not persistent
Test: fast/dom/Element/setAttribute-case-insensitivity.html
- dom/Element.cpp: (WebCore::Element::setAttribute): Use the lowercased localName for retrieving the old value, too.
- 7:53 AM Changeset in webkit [15685] by
-
- 1 edit4 deletes in trunk/LayoutTests
- rolled out the test for bug 9753, since we rolled out the fix we'll bring back the test when we bring back the fix
- svg/custom/width-full-percentage-expected.checksum: Removed.
- svg/custom/width-full-percentage-expected.png: Removed.
- svg/custom/width-full-percentage-expected.txt: Removed.
- svg/custom/width-full-percentage.svg: Removed.