Timeline


and

04/20/06:

23:52 Changeset [13992] by darin

Reviewed by Hyatt.

  • make <canvas> element and related API behave more like the draft of the WhatWG Web Application specification, checking parameter validity and raising exceptions
  • changed HTMLCanvasElement bindings to be auto-generated, fixing all issues so we can generate bindings for classes drived from HTMLElement
  • change GraphicsContext API to use IntRect/Point/Size in more cases
  • change GraphicsContext so it is closer to truly wrapping a graphics context rather than representing the current NSGraphicsContext; there are still some things like text and rectangle fills that are tied to NSGraphicsContext, but we're most of the way there
  • removed Brush class since it just amounted to a color, using an RGBA32 instead where we used to use a Brush
  • DerivedSources.make: Added JSHTMLCanvasElement.h.
  • WebCore.xcodeproj/project.pbxproj: Added new files.
  • bindings/js/JSCanvasRenderingContext2DBase.h: Added toJS.
  • bindings/js/JSCanvasRenderingContext2DBase.cpp: (WebCore::JSCanvasRenderingContext2DBaseProtoFunc::callAsFunction): Added exception code handling for strokeRect, drawImage, and createPattern. Added version of createPattern that takes a canvas. Use TYPE_MISMATCH_ERR instead of JavaScript TypeError when parameter is neither an image or canvas element. Adapt for new HTMLCanvasElement binding. (WebCore::toJS): Added. Converts context object to JS wrapper.
  • bindings/js/JSHTMLElementWrapperFactory.h: Added.
  • bindings/js/JSHTMLElementWrapperFactory.cpp: Added. Creates a JavaScript wrapper for an arbitrary HTML element. Better than putting this all in the DOM node class toJS function.
  • bindings/js/JSXMLSerializer.cpp: Tweaked to make it build.
  • bindings/js/kjs_dom.cpp: (KJS::toJS): Changed to call the JSHTMLElementWrapperFactory function createJSWrapper, instead of always creating a JSHTMLElement.
  • bindings/js/kjs_html.h: Removed canvas-related stuff. Added HTMLElement prototype.
  • bindings/js/kjs_html.cpp: (KJS::JSHTMLElement::classInfo): Removed canvas element. (KJS::JSHTMLElement::accessors): Ditto. (KJS::JSHTMLElementProtoFunc::callAsFunction): Added, to help the auto-binding machiner cope with HTMLElement. (KJS::HTMLElementFunction::callAsFunction): Removed canvas element.
  • bindings/scripts/CodeGeneratorJS.pm: Added types needed for HTMLCanvasElement.
  • bridge/mac/FrameMac.mm: (WebCore::FrameMac::setDisplaysWithFocusAttributes): Changed to create a GraphicsContext with the new constructor that takes a CGContextRef.
  • bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge drawRect:]): Changed to create a GraphicsContext with the new constructor that takes a NSGraphicsContext.
  • page/Frame.cpp: (WebCore::Frame::adjustPageHeight): Changed to create a GraphicsContext with the new constructor that takes a CGContextRef.
  • editing/SelectionController.cpp: (WebCore::SelectionController::paintCaret): Eliminated a use of obsolete class Brush.
  • html/CanvasPattern.h:
  • html/CanvasPattern.cpp: (WebCore::CanvasPattern::parseRepetitionType): Added. Parses a repetition type. Different from the old logic in that it is case-sensitive and rejects anything other than null, empty string, or the four repeat types. (WebCore::CanvasPattern::CanvasPattern): Added constructor that takes a CGImageRef. Changed constructor to take two booleans instead of the repetition type string. It's the caller's responsibility to parse the string. (WebCore::CanvasPattern::~CanvasPattern): Release the CGImage. (WebCore::patternCallback): Handle the CGImage case. Also changed the code to create a GraphicsContext as needed and call the image drawing code with that. (WebCore::CanvasPattern::createPattern): Handle both the image element case and the canvas element case.


  • html/CanvasRenderingContext2D.h:
  • html/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::State::State): Change line cap, line join, and global composite to store enum values instead of strings. (WebCore::CanvasRenderingContext2D::setLineWidth): Do nothing if width is NaN or <= 0. (WebCore::CanvasRenderingContext2D::lineCap): Return a string based on a stored enum, rather than returning a stored string. (WebCore::CanvasRenderingContext2D::setLineCap): Do nothing if the string is not one of the standard line cap types. Also case sensitive and stores enum rather than the string. (WebCore::CanvasRenderingContext2D::lineJoin): Return a string based on a stored enum, rather than returning a stored string. (WebCore::CanvasRenderingContext2D::setLineJoin): Do nothing if the string is not one of the standard line join types. Also case sensitive and stores enum rather than the string. (WebCore::CanvasRenderingContext2D::setMiterLimit): Do nothing if limit is NaN or <= 0. (WebCore::CanvasRenderingContext2D::setGlobalAlpha): Do nothing if alpha is NaN or < 0 or > 1. (WebCore::CanvasRenderingContext2D::globalCompositeOperation): Return a string based on a stored enum, rather than returning a stored string. (WebCore::CanvasRenderingContext2D::setGlobalCompositeOperation): Do nothing if the string is not one of the standard compositing modes. Also case sensitive and stores enum rather than the string. (WebCore::CanvasRenderingContext2D::arcTo): Generate INDEX_SIZE_ERR exception if radius is NaN or <= 0. (WebCore::CanvasRenderingContext2D::arc): Ditto. (WebCore::CanvasRenderingContext2D::rect): Generate INDEX_SIZE_ERR exception if width or height is NaN or <= 0. (WebCore::CanvasRenderingContext2D::clearRect): Ditto. (WebCore::CanvasRenderingContext2D::fillRect): Ditto. (WebCore::CanvasRenderingContext2D::strokeRect): Ditto, same for line width. Changed the case where the line width is not specified to share code with the case where it is. (WebCore::size): Renamed from imageSize, since C++ overloads based on parameter types anyway. (WebCore::CanvasRenderingContext2D::drawImage): Generate INDEX_SIZE_ERR exception if the source rect is not entirely inside the image rect, or if the width or height of either the source or destination rect is NaN or <= 0. Changed image drawing code to be platform-independent for the image element case, but not yet for the canvas case. (WebCore::CanvasRenderingContext2D::drawImageFromRect): Change code to parse the composite operation to use the new code shared with Image. (WebCore::CanvasRenderingContext2D::createPattern): Added code to parse the repetition type separately before creating the pattern. Added an overload for canvas elements. (WebCore::CanvasRenderingContext2D::drawingContext): Changed to return a GraphicsContext*. (WebCore::CanvasRenderingContext2D::platformContext): Added. Now does what drawingContext used to do.
  • html/CanvasRenderingContext2D.idl: Added exception declarations as needed for changes above.
  • html/HTMLCanvasElement.h:
  • html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::HTMLCanvasElement): Changed m_drawingContext to be a GraphicsContext instead of a CGContextRef. (WebCore::HTMLCanvasElement::~HTMLCanvasElement): Ditto. (WebCore::HTMLCanvasElement::getContext): Removed special cases for null and empty string. Only give a 2D graphics context if the string is "2d". (WebCore::HTMLCanvasElement::reset): Updated for change to GraphicsContext from CGContextRef. (WebCore::HTMLCanvasElement::paint): Ditto. (WebCore::HTMLCanvasElement::createDrawingContext): Changed to create a GraphicsContext* instead of a CGContextRef. (WebCore::HTMLCanvasElement::drawingContext): Changed to return a GraphicsContext* instead of a CGContextRef. (WebCore::HTMLCanvasElement::createPlatformImage): Updated for changes above.
  • html/HTMLCanvasElement.idl: Added.
  • html/HTMLParser.h:
  • html/HTMLParser.cpp: (WebCore::HTMLParser::canvasCreateErrorCheck): Added. An attempt to implement the fallback behavior for canvas elements when JavaScript is off. (WebCore::HTMLParser::getNode): Sorted list of functions. Added case for canvas.
  • html/html_imageimpl.h:
  • html/html_imageimpl.cpp: (WebCore::HTMLImageElement::HTMLImageElement): Changed m_compositeOperator to be an enum instead of a string. (WebCore::HTMLImageElement::parseMappedAttribute): Parse the enum here.
  • kcanvas/KCanvasResources.h:
  • kcanvas/KCanvasResources.cpp: (WebCore::KCanvasMarker::draw): Changed to take a GraphicsContext parameter.
  • kcanvas/RenderPath.h: Added GraphicsContext parameter to drawMarkersIfNeeded.
  • kcanvas/RenderPath.cpp: (WebCore::RenderPath::paint):
  • kcanvas/RenderSVGImage.cpp: (WebCore::RenderSVGImage::paint):
  • kcanvas/RenderSVGText.cpp: (WebCore::RenderSVGText::paint): Changed to generate and use an appropriate GraphicsContext.
  • kcanvas/device/quartz/KCanvasItemQuartz.h: Added GraphicsContext parameter to drawMarkersIfNeeded.
  • kcanvas/device/quartz/KCanvasItemQuartz.mm: (WebCore::DrawMarkersData::DrawMarkersData): Added GraphicsContext*. (WebCore::drawMarkerWithData): Pass along a GraphicsContext*. (WebCore::drawStartAndMidMarkers): Ditto. (WebCore::KCanvasItemQuartz::drawMarkersIfNeeded): Pass a long a GraphicsContext*.
  • kcanvas/device/KRenderingDevice.h: Added a pure virtual createGraphicsContext to bridge back to a GraphicsContext. Long term that class will replace this one.
  • kcanvas/device/quartz/KRenderingDeviceQuartz.h:
  • kcanvas/device/quartz/KRenderingDeviceQuartz.mm: (WebCore::KRenderingDeviceContextQuartz::createGraphicsContext): Added.
  • ksvg2/svg/SVGMaskElement.cpp: (WebCore::SVGMaskElement::drawMaskerContent): Create and pass a GraphicsContext -- old code used the default constructor for GraphicsContext which meant "current context", and that no longer exists.
  • ksvg2/svg/SVGPatternElement.cpp: (WebCore::SVGPatternElement::drawPatternContentIntoTile): Ditto.
  • platform/Brush.h: Removed.
  • platform/CompositeOperator.h: Added.
  • platform/CompositeOperator.cpp: Added.
  • platform/Font.h: Changed calls to use IntPoint instead of pairs of ints. Also removed the const from all the uses of GraphicsContext*.
  • platform/GraphicsContext.h: Eliminated default constructor and constructor that takes only a boolean. Replaced with constructors that take platform graphics contexts only. Replaced brush-related calls with fill color calls. Replaced use of Brush with use of Color. Changed Image::CompositeOperator to just plain CompositeOperator. Changed tuples of ints into IntRect and IntPoint. Moved setFocusRingClip and clearFocusRingClip out of ifdefs. Removed unused getCompositeOperation and string-based setCompositeOperation. Moved currentCGContext and the other setCompositeOperation out of the GraphicsContext class and made them global functions. Fixed platformContext so it won't always return the CGContextRef of the current NSGraphicsContext. Instead, it will return the appropriate CGContextRef for the GraphicsContext. This eliminates the need to use void* for the image-drawing functions.
  • platform/GraphicsContext.cpp: (WebCore::GraphicsContextState::GraphicsContextState): Replaced Brush with an RGBA fill color. (WebCore::GraphicsContext::setFillColor): Renamed from setBrush. (WebCore::GraphicsContext::fillColor): Renamed from brush. (WebCore::GraphicsContext::drawImage): Changed to use IntRect. (WebCore::GraphicsContext::drawTiledImage): Moved here from GraphicsContextMac.mm. (WebCore::GraphicsContext::drawText): Changed to use IntPoint. (WebCore::GraphicsContext::drawHighlightForText): Ditto. (WebCore::GraphicsContext::drawLineForText): Ditto. (WebCore::GraphicsContext::drawLineForMisspelling): Ditto.
  • platform/Image.h: Removed CompositeOperator and related functions. Removed void* context parameters from draw functions.
  • platform/Image.cpp: Removed compositeOperatorFromString.
  • platform/Widget.h: Added a GraphicsContext* return value from lockDrawingFocus that you pass back to unlockDrawingFocus (for deletion).
  • platform/mac/FontMac.mm: (WebCore::Font::selectionRectForText): Changed parameter to point and removed const on GraphicsContext* parameter. (WebCore::Font::drawText): Ditto. (WebCore::Font::drawHighlightForText): Ditto. (WebCore::Font::drawLineForText): Ditto. (WebCore::Font::drawLineForMisspelling): Ditto. (WebCore::Font::misspellingLineThickness): Removed const.
  • platform/mac/GraphicsContextMac.mm: (WebCore::GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate): Added fields to store a CGContextRef and an NSGraphicsContext. (WebCore::GraphicsContextPlatformPrivate::~GraphicsContextPlatformPrivate): Release both the CGContextRef and the NSGraphicsContext. (WebCore::GraphicsContext::GraphicsContext): Implement to set up both the CGContextRef and the NSGraphicsContext in one case, and only the CGContextRef in the other. (WebCore::GraphicsContext::savePlatformState): Implement for the CGContext-only case. (WebCore::GraphicsContext::restorePlatformState): Ditto. (WebCore::GraphicsContext::drawRect): Assert that the NS context is present and (WebCore::GraphicsContext::setColorFromFillColor): Renamed from setColorFromBrush. (WebCore::GraphicsContext::setColorFromPen): Added assertion. (WebCore::GraphicsContext::drawLine): Added assertion. (WebCore::GraphicsContext::drawEllipse): Get CGContext from the platformContext function instead of currentCGContext, and changed to use fillColor. (WebCore::GraphicsContext::drawArc): Ditto. (WebCore::GraphicsContext::drawConvexPolygon): Ditto. (WebCore::setCompositeOperation): Changed to global function and also changed to do the work here -- no need to use WebCoreImageRendererFactory. (WebCore::GraphicsContext::drawImage): Move most of this into GraphicsContext.cpp. Remove the void* context parameter. Changed to take rects instead of separate coordinates. (WebCore::GraphicsContext::fillRect): Changed to take color instead of Brush. (WebCore::GraphicsContext::addClip): Added assertion. (WebCore::GraphicsContext::addRoundedRectClip): Get CGContextRef from the platformContext function instead of currentCGContext. (WebCore::GraphicsContext::createRenderingDeviceContext): Ditto. (WebCore::GraphicsContext::beginTransparencyLayer): Ditto. (WebCore::GraphicsContext::endTransparencyLayer): Ditto. (WebCore::GraphicsContext::setShadow): Change to take size instead of x,y. Also get CGCOntextRef from the platformContext function instead of currentCGContext. (WebCore::GraphicsContext::clearShadow): Get CGContextRef from the platformContext function instead of currentCGContext. (WebCore::GraphicsContext::platformContext): Added. Returns m_data->m_cgContext.
  • platform/mac/ImageMac.mm: (WebCore::fillSolidColorInRect): Updated for change in CompositeOperator type. (WebCore::Image::checkForSolidColor): Ditto. (WebCore::Image::draw): Removed void* context parameter and replaced it with a GraphicsContext* parameter. Renamed from drawInRect. (WebCore::Image::drawTiled): Ditto. Renamed from tileInRect and scaleAndTileInRect.
  • platform/mac/PDFDocumentImage.h: Updated for change in CompositeOperator type.
  • platform/mac/PDFDocumentImage.mm: (WebCore::PDFDocumentImage::draw): Ditto.
  • platform/mac/WidgetMac.mm: (WebCore::Widget::lockDrawingFocus): Changed to return a GraphicsContext*. (WebCore::Widget::unlockDrawingFocus): Changed to take a GraphicsContext*.
  • rendering/InlineTextBox.cpp: (WebCore::InlineTextBox::selectionRect): Changed to pass IntPoint. (WebCore::InlineTextBox::paint): Changed to pass IntSize. (WebCore::InlineTextBox::paintSelection): More of the same. (WebCore::InlineTextBox::paintMarkedTextBackground): Ditto. (WebCore::InlineTextBox::paintDecoration): Ditto. (WebCore::InlineTextBox::paintSpellingMarker): Ditto. (WebCore::InlineTextBox::paintTextMatchMarker): Ditto. (WebCore::InlineTextBox::paintMarkedTextUnderline): Ditto. (WebCore::InlineTextBox::positionForOffset): Ditto.
  • rendering/RenderBlock.cpp: (WebCore::RenderBlock::fillHorizontalSelectionGap): Ditto. (WebCore::RenderBlock::fillVerticalSelectionGap): Ditto. (WebCore::RenderBlock::fillLeftSelectionGap): Ditto. (WebCore::RenderBlock::fillRightSelectionGap): Ditto.
  • rendering/RenderBox.cpp: (WebCore::RenderBox::paintBackgroundExtended): Ditto. (WebCore::RenderBox::outlineBox): Ditto.
  • rendering/RenderImage.cpp: (WebCore::RenderImage::paint): Ditto.
  • rendering/RenderLayer.cpp: (WebCore::setClip): Take out ifdefs. We'll do that inside GraphicsContext instead. (WebCore::restoreClip): Ditto.
  • rendering/RenderObject.cpp: (WebCore::RenderObject::drawBorder): More of the same. (WebCore::RenderObject::paintBorderImage): Ditto.
  • rendering/render_line.cpp: (WebCore::InlineFlowBox::paintDecorations): Ditto. (WebCore::EllipsisBox::paint): Ditto.
  • rendering/render_list.cpp: (WebCore::RenderListMarker::paint): Ditto.
  • rendering/render_frames.cpp: (WebCore::RenderFrameSet::userResize): Set up a graphics context by calling lockDrawingFocus. Also changed a color here to be a constant.
  • platform/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::drawImage): Update for parameter type changes. (WebCore::GraphicsContext::drawScaledAndTiledImage): (WebCore::GraphicsContext::setFocusRingClip): (WebCore::GraphicsContext::clearFocusRingClip):
  • platform/cairo/ImageCairo.cpp: (WebCore::setCompositingOperation): (WebCore::Image::tileInRect): (WebCore::Image::scaleAndTileInRect):
22:56 Changeset [13991] by adele

Updated test results for:

a file: URL being pasted instead of just the file name

  • editing/pasteboard/drop-text-without-selection-expected.txt:
  • fast/forms/input-paste-undo-expected.txt:
  • fast/forms/input-truncate-newline-expected.txt:
  • fast/forms/plaintext-mode-2-expected.txt:
21:51 Changeset [13990] by adele

WebCore:

Reviewed by Darin.

WebCore part of:

a file: URL being pasted instead of just the file name

  • bridge/mac/WebCoreFrameBridge.h:
  • bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge isDragCaretRichlyEditable]): Added.
  • manual-tests/plain-text-paste.html: Added.
  • manual-tests/resources/plain-text-paste: Added.
  • manual-tests/resources/plain-text-paste/1.textClipping: Added.
  • manual-tests/resources/plain-text-paste/2.textClipping: Added.
  • manual-tests/resources/plain-text-paste/3.gif: Added.
  • manual-tests/resources/plain-text-paste/4.txt: Added.
  • manual-tests/resources/plain-text-paste/5.webloc: Added.

WebKit:

Reviewed by Darin.

WebKit part of:

a file: URL being pasted instead of just the file name

  • WebView/WebHTMLView.m: (-[WebHTMLView _plainTextFromPasteboard:]): Added method that tries to copy AppKit text fields' logic for extracting plain text from the pasteboard. (-[WebHTMLView _pasteAsPlainTextWithPasteboard:]): Added helper method. (-[WebHTMLView _shouldInsertText:replacingDOMRange:givenAction:]): (-[WebHTMLView _shouldReplaceSelectionWithText:givenAction:]): (-[WebHTMLView readSelectionFromPasteboard:]): Paste as plain text if rich text is not allowed. (-[WebHTMLView validateUserInterfaceItem:]): Changed to not allow pasteAsRichText: if the paste is not going to be handled by the DOM and the selection does not allow pasting rich text. (-[WebHTMLView concludeDragForDraggingInfo:actionMask:]): Paste as plain text if rich text is not allowed. (-[WebHTMLView paste:]): Ditto. (-[WebHTMLView pasteAsPlainText:]):
21:32 Changeset [13989] by darin

WebCore:

Reviewed by Adele.

  • platform/mac/WebCoreGraphicsBridge.h: Removed.
  • platform/mac/WebCoreGraphicsBridge.m: Removed.
  • platform/mac/WebCoreSystemInterface.h: Added.
  • platform/mac/WebCoreSystemInterface.mm: Added.
  • WebCore.exp: Add new SystemInterface globals, remove WebCoreGraphicsBridge.
  • WebCore.xcodeproj/project.pbxproj: Updated for removed and added files. Sorted files.
  • bridge/mac/FrameMac.mm: Removed unneeded include of WebCoreGraphicsBridge.h.
  • platform/mac/ClipboardMac.mm: (WebCore::ClipboardMac::setDragImage): Moved code from WebGraphicsBridge here, using WebCoreSystemInterface so we can call wkSetDragImage.
  • platform/mac/GraphicsContextMac.mm: (WebCore::GraphicsContext::drawFocusRing): Moved code from WebGraphicsBridge here, using WebCoreSystemInterface so we can call wkDrawFocusRing.
  • rendering/RenderThemeMac.mm: (WebCore::RenderThemeMac::paintTextField): Call wkDrawBezeledTextFieldCell from WebCoreSystemInterface instead of using WebGraphicsBridge to do the same thing.

WebKit:

Reviewed by Adele.

  • WebCoreSupport/WebGraphicsBridge.h: Removed.
  • WebCoreSupport/WebGraphicsBridge.m: Removed.
  • WebCoreSupport/WebSystemInterface.h: Added.
  • WebCoreSupport/WebSystemInterface.m: Added.
  • WebKit.xcodeproj/project.pbxproj: Updated for removed and added files.
  • WebCoreSupport/WebImageData.m: Removed unneeded include of WebGraphicsBridge.h.
  • WebCoreSupport/WebImageRenderer.m: Ditto.
  • WebCoreSupport/WebTextRenderer.m: Ditto.
  • WebView/WebFrameView.m: (-[WebFrameView initWithFrame:]): Guarded all the one-time initialization inside a boolean, just in case some things take a little time. Added a call to InitWebCoreSystemInterface to the one-time initialization here. Later, we will need to add it in some other places if we call code that requires the use of WebCoreSystemInterface functions from anywhere that can be invoked before creations of the first WebFrameView, but for now there is no need.
15:22 Changeset [13988] by adele

LayoutTests:

Test for http://bugzilla.opendarwin.org/show_bug.cgi?id=8273
REGRESSION: Read only input text field renders at the wrong height when value attribute is not present

  • fast/forms/input-readonly-empty-expected.checksum: Added.
  • fast/forms/input-readonly-empty-expected.png: Added.
  • fast/forms/input-readonly-empty-expected.txt: Added.
  • fast/forms/input-readonly-empty.html: Added.

WebCore:

Reviewed by Hyatt.

Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=8273
REGRESSION: Read only input text field renders at the wrong height when value attribute is not present

Test: fast/forms/input-readonly-empty.html

  • rendering/RenderBlock.h: Added hasLineIfEmpty.
  • rendering/RenderBlock.cpp: (WebCore::RenderBlock::hasLineIfEmpty): Added. Checks for rootEditableElement as well as a shadowNode who has an input element as a parent. (WebCore::RenderBlock::getBaselineOfLastLineBox): Calls hasLineIfEmpty instead of just checking for the rootEditableElement.
  • rendering/bidi.cpp: (WebCore::RenderBlock::layoutInlineChildren): ditto.
12:08 Changeset [13987] by thatcher

Reviewed by Timothy.

Removed TO_NODE_OFFSET and TO_NODE_ADDRESS macros. These can just be done inline with pointer math.

  • platform/DeprecatedString.cpp: (allocateNode): (freeHandle):

04/19/06:

23:31 Changeset [13986] by adele

Updated test to use webkit-block-placeholder instead of khtml-block-placeholder.

  • editing/inserting/insert-div-010.html:
23:05 Changeset [13985] by adele

Updating test results that were incorrectly checked in
when many of the table test results changed recently due to Color
improvements.

  • tables/mozilla/bugs/bug625-expected.checksum:
  • tables/mozilla/bugs/bug625-expected.png:
  • tables/mozilla/bugs/bug625-expected.txt:
22:22 Changeset [13984] by adele

Updated results after rolling out optimizations in setInnerText and setInnerHTML.

  • fast/events/updateLayoutForHitTest-expected.txt:
  • fast/forms/input-text-paste-maxlength-expected.txt:
  • fast/text/attributed-substring-from-range-expected.txt:
20:01 Changeset [13983] by adele

Rubber-stamped by Darin.

Removed optimizations recently added in setInnerHTML and setInnerText. The setInnerHTML change broke a first-letter style test.
The setInnerText change caused an empty text node to get added when setting inner text to an empty string. The bug that this
change went in with remains fixed.

  • html/HTMLElement.cpp: (WebCore::HTMLElement::setInnerHTML): (WebCore::HTMLElement::setInnerText):
19:51 Changeset [13982] by thatcher

Reviewed by Haytt.

  • manual-tests/repaint-resized-overflow.html: Added.
  • rendering/RenderLayer.cpp: (WebCore::RenderLayer::RenderLayer): (WebCore::RenderLayer::computeRepaintRects): Set the m_repaintOverflowOnResize flag to true if our object itself needs layout or if we're an overflow and have a normal child that needs layout, in which case if we end up resizing it will be because of the child, and that child might have not repainted itself correctly during its own layout. (WebCore::RenderLayer::updateLayerPositions): Do a full repaint if m_repaintOverflowOnResize is set and we resized but didn't move.
  • rendering/RenderLayer.h:
19:33 Changeset [13981] by thatcher

Reviewed by Hyatt.

  • manual-tests/dynamic-shadow.html: Added.
  • rendering/render_style.cpp: (WebCore::RenderStyle::diff): Changed to return Layout when text-shadow changes.
19:18 Changeset [13980] by thatcher

Reviewed by Timothy.

http://bugzilla.opendarwin.org/show_bug.cgi?id=8442
Bug 8442: improvements to Cocoa bindings support in WebView - code simplification

Removes the WebController class added earlier; changes NSTreeController and
WebView to together without it. Now you can just bind the contentObject binding
of the tree controller directly to the mainFrameDocument key of the WebView.

  • WebCoreSupport/WebFrameBridge.m: (-[WebFrameBridge windowObjectCleared]):
  • WebView/WebDataSource.m: (-[WebDataSource _setTitle:]):
  • WebView/WebFrame.m: (-[WebFrame _closeOldDataSources]):
  • WebView/WebView.m: (-[WebView _progressStarted:]): (-[WebView _finalProgressComplete]): (-[WebView _commonInitializationWithFrameName:groupName:]): (-[WebView setMainFrameDocumentReady:]): (-[WebView mainFrameDocument]):
  • WebView/WebViewPrivate.h:
19:07 Changeset [13979] by thatcher

Fix the change log for my last commit, change was done by James G. Speth <speth@end.com>.

19:06 Changeset [13978] by thatcher

Reviewed by Timothy.

http://bugzilla.opendarwin.org/show_bug.cgi?id=6635
Bug 6635: Crash selecting inspector nodes for tabs that aren't foremost

Stop observing window will close notifications before we tell the highlight window to close,
this prevents the crash. Also prevent drawing highlights for hidden tabs.

  • WebInspector/WebInspector.m: (-_highlightNode:):
  • WebInspector/WebNodeHighlight.m: (-[WebNodeHighlight expire]):
19:04 Changeset [13977] by adele

Reviewed by Darin.

Added readOnly methods for HTMLInputElement and HTMLTextAreaElement so the DOM bindings can call
a method with the same name. This will make it easier to autogenerate the DOM bindings in the future.


  • html/HTMLInputElement.h: (WebCore::HTMLInputElement::readOnly): Added. Calls isReadOnlyControl.
  • html/HTMLTextAreaElement.h: (WebCore::HTMLTextAreaElement::readOnly): ditto.
  • bindings/js/kjs_html.cpp: (KJS::JSHTMLElement::inputGetter): Calls readOnly instead of isReadOnlyControl. (KJS::JSHTMLElement::textAreaGetter): ditto.
  • bindings/objc/DOMHTML.mm: (-[DOMHTMLInputElement readOnly]): ditto. (-[DOMHTMLTextAreaElement readOnly]): Calls readOnly instead of getting the attribute directly. (-[DOMHTMLTextAreaElement setReadOnly:]): Calls setReadOnly instead of setting the attribute directly.
18:44 Changeset [13976] by thatcher

Reviewed by Timothy.

http://bugzilla.opendarwin.org/show_bug.cgi?id=6637
Bug 6637: selecting node in Inspector after closing window crashes Safari

When the window the Web Inspector was inspecting is closed, the inspector goes into its
no-selection state. Choosing to inspect another element activates it again. The inspector
will also follow the WebView if the URL changes and select the root element on the new page.

18:03 Changeset [13975] by adele

LayoutTests:

Updated results for: http://bugzilla.opendarwin.org/show_bug.cgi?id=8297
REGRESSION: Input element extends outside of DIV element at http://www.macdock.com/

  • editing/selection/3690703-2-expected.checksum:
  • editing/selection/3690703-2-expected.png:
  • editing/selection/3690703-2-expected.txt:
  • editing/selection/3690703-expected.checksum:
  • editing/selection/3690703-expected.png:
  • editing/selection/3690703-expected.txt:
  • editing/selection/3690719-expected.checksum:
  • editing/selection/3690719-expected.png:
  • editing/selection/3690719-expected.txt:
  • fast/forms/input-appearance-minWidth-expected.checksum:
  • fast/forms/input-appearance-minWidth-expected.png:
  • fast/forms/input-appearance-minWidth-expected.txt:
  • fast/forms/input-appearance-width-expected.checksum:
  • fast/forms/input-appearance-width-expected.png:
  • fast/forms/input-appearance-width-expected.txt:
  • fast/forms/input-double-click-selection-gap-bug-expected.checksum:
  • fast/replaced/width100percent-expected.checksum:
  • fast/replaced/width100percent-expected.png:
  • fast/replaced/width100percent-expected.txt:
  • tables/mozilla/bugs/bug1188-expected.checksum:
  • tables/mozilla/bugs/bug1188-expected.png:
  • tables/mozilla/bugs/bug1188-expected.txt:
  • tables/mozilla/bugs/bug12384-expected.checksum:
  • tables/mozilla/bugs/bug12384-expected.png:
  • tables/mozilla/bugs/bug12384-expected.txt:
  • tables/mozilla/bugs/bug18359-expected.checksum:
  • tables/mozilla/bugs/bug18359-expected.png:
  • tables/mozilla/bugs/bug18359-expected.txt:
  • tables/mozilla/bugs/bug55545-expected.checksum:
  • tables/mozilla/bugs/bug55545-expected.png:
  • tables/mozilla/bugs/bug55545-expected.txt:
  • tables/mozilla/bugs/bug7342-expected.checksum:
  • tables/mozilla/bugs/bug7342-expected.png:
  • tables/mozilla/bugs/bug7342-expected.txt:
  • tables/mozilla_expected_failures/bugs/bug2479-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug2479-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug2479-2-expected.txt:

WebCore:

Reviewed by Hyatt.

Fix for: http://bugzilla.opendarwin.org/show_bug.cgi?id=8297
REGRESSION: Input element extends outside of DIV element at http://www.macdock.com/

  • platform/Font.h: Added runRounding parameter to floatWidth.
  • platform/mac/FontMac.mm: (WebCore::Font::floatWidth): ditto.
  • platform/win/FontWin.cpp: (WebCore::Font::floatWidth): ditto.
  • rendering/RenderTextField.cpp: (WebCore::RenderTextField::calcMinMaxWidth): Use new floatWidth parameter to turn off run rounding.
15:40 Changeset [13974] by adele

Reviewed by Beth.

Fix for Windows build.

  • rendering/RenderThemeWin.cpp: (WebCore::RenderThemeWin::determineState): Use isReadOnlyControl instead of isReadOnly.
15:21 Changeset [13973] by adele

LayoutTests:

Tests for change to make readonly text fields have dimmed borders.

  • fast/forms/input-appearance-readonly-expected.checksum:
  • fast/forms/input-appearance-readonly-expected.png:
  • fast/forms/input-readonly-dimmed-expected.checksum: Added.
  • fast/forms/input-readonly-dimmed-expected.png: Added.
  • fast/forms/input-readonly-dimmed-expected.txt: Added.
  • fast/forms/input-readonly-dimmed.html: Added.

WebCore:

2006-04-19 Adele Peterson <adele@apple.com>


Reviewed by Beth.


Fix to make readonly text fields have dimmed borders to match AppKit behavior.


Test: fast/forms/input-readonly-dimmed.html


  • dom/Node.h: (WebCore::Node::isReadOnlyControl): Changed from const version of isReadOnly.
  • dom/Node.cpp: (WebCore::Node::isReadOnlyNode): Changed from isReadOnly. (WebCore::Node::setNodeValue): Uses isReadOnlyNode instead of isReadOnly. (WebCore::Node::checkSetPrefix): ditto. (WebCore::Node::checkAddChild): ditto.
  • dom/Attr.cpp: (WebCore::Attr::setValue): ditto.
  • dom/CharacterData.cpp: (WebCore::CharacterData::setData): ditto. (WebCore::CharacterData::appendData): ditto. (WebCore::CharacterData::checkCharDataOperation): ditto.
  • dom/ContainerNode.cpp: (WebCore::ContainerNode::removeChild): ditto.
  • dom/Element.cpp: (WebCore::Element::setAttribute): ditto.
  • dom/NamedAttrMap.cpp: (WebCore::NamedAttrMap::setNamedItem): ditto. (WebCore::NamedAttrMap::removeNamedItem): ditto.
  • dom/NamedAttrMap.h: (WebCore::NamedAttrMap::isReadOnlyNode): ditto.
  • dom/NamedNodeMap.h: (WebCore::NamedNodeMap::isReadOnlyNode): ditto.
  • dom/Range.cpp: (WebCore::Range::checkDeleteExtract): ditto. (WebCore::Range::containedByReadOnly): ditto.
  • dom/Text.cpp: (WebCore::Text::splitText): ditto.
  • dom/dom_xmlimpl.cpp: (WebCore::ProcessingInstruction::setData): ditto.


  • bindings/js/kjs_html.cpp: (KJS::JSHTMLElement::inputGetter): Uses isReadOnlyControl instead of isReadOnly. (KJS::JSHTMLElement::textAreaGetter): ditto.
  • bindings/objc/DOMHTML.mm: (-[DOMHTMLInputElement readOnly]): ditto.
  • rendering/render_form.cpp: (WebCore::RenderLineEdit::updateFromElement): ditto. (WebCore::RenderTextArea::updateFromElement): ditto.
  • rendering/RenderTextField.cpp: (WebCore::RenderTextField::createDivStyle): ditto. (WebCore::RenderTextField::updateFromElement): ditto.


  • html/HTMLGenericFormElement.cpp: (WebCore::HTMLGenericFormElement::parseMappedAttribute): When readonly attribute changes, update the theme so the control will repaint.
  • html/HTMLGenericFormElement.h: (WebCore::HTMLGenericFormElement::isReadOnlyControl): Renamed from readOnly.
  • html/HTMLInputElement.h: Removed isReadOnly, since isReadOnlyControl now exists on HTMLGenericFormElement.
  • rendering/RenderTheme.cpp: (WebCore::RenderTheme::isReadOnlyControl): Renamed from isReadOnly.
  • rendering/RenderTheme.h: (WebCore::): Added ReadOnlyState to ControlState enum.
  • rendering/RenderThemeMac.h: Removed NSTextFieldCell since it was only being used to store the enabled state. Removed setTextFieldState since it was updating the enabled state of the cell, which is only used in one place.
  • rendering/RenderThemeMac.mm: (WebCore::RenderThemeMac::RenderThemeMac): No longer initialized the NSTextFieldCell. (WebCore::RenderThemeMac::adjustRepaintRect): No longer calls setTextFieldState. (WebCore::RenderThemeMac::paintTextField): Uses the enabled state and the readonly state to determine whether to draw a dimmed version of the aqua border.
12:35 Changeset [13972] by bdakin

Reviewed by Hyatt.

Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=8467 Block
with percentage background-size doesn't repaint properly when it
grows

  • manual-tests/backgroundSizeRepaint.html: Added.
  • manual-tests/resources/apple.jpg: Added.
  • rendering/RenderObject.cpp: (WebCore::RenderObject::mustRepaintBackgroundOrBorder): We must return true if we have a percentage background-size.
11:47 Changeset [13971] by hyatt

Fix for a regression in the new text fields. Don't allow the repaint
rect created by dynamic line layout changes to spill out of an overflow
area's clip region.

(There is no test, since we have no way of testing cases where we repaint

too much rather than too little.)

Reviewed by darin

  • rendering/bidi.cpp: (WebCore::RenderBlock::layoutInlineChildren):
11:17 Changeset [13970] by hyatt

Fix for bug 8449, incomplete repaint of table cell that moved. This
fix also solves some of the textfield repainting problems (e.g., on
google.com and lxr.mozilla.org).

Reviewed by hyatt

  • manual-tests/table-cell-move.html: Added.
  • rendering/RenderCanvas.cpp: (WebCore::RenderCanvas::repaintViewRectangle):
  • rendering/RenderTableSection.cpp: (WebCore::RenderTableSection::layoutRows):
09:45 Changeset [13969] by ap

Fix by Mitz Pettel, reviewed by Eric.

Test: fast/css/dashboard-regions-attr-crash.html

  • css/cssparser.cpp: (WebCore::CSSParser::parseDashboardRegions): Added null check for args.
04:03 Changeset [13968] by eseidel

2006-04-18 Rob Buis <buis@kde.org>

Reviewed by eseidel & darin. Landed by eseidel.

No automated tests possible (from javascript).

Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=6664:
Inspector does not highlight SVG elements properly

Make sure RenderObject::absoluteBoundingBoxRect works for
svg specific render objects by overriding absoluteRects.
This fixes highlighting in the Inspector of svg shapes, paths,
images and text.

  • kcanvas/RenderPath.cpp: (WebCore::RenderPath::absoluteRects):
  • kcanvas/RenderPath.h:
  • kcanvas/RenderSVGImage.cpp: (WebCore::RenderSVGImage::getAbsoluteRepaintRect): (WebCore::RenderSVGImage::absoluteRects):
  • kcanvas/RenderSVGImage.h:
  • kcanvas/RenderSVGText.cpp: (WebCore::RenderSVGText::absoluteRects):
  • kcanvas/RenderSVGText.h:
03:57 Changeset [13967] by eseidel

2006-04-17 Rob Buis <buis@kde.org>

Reviewed by eseidel. Landed by eseidel.

Test: svg/custom/tref-update.svg

Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=6427:
<tref> element not implemented

Implementation of <tref> element.

  • WebCore.xcodeproj/project.pbxproj:
  • ksvg2/svg/SVGTRefElement.cpp: Added. (SVGTRefElement::SVGTRefElement): (SVGTRefElement::~SVGTRefElement): (SVGTRefElement::parseMappedAttribute): (SVGTRefElement::closeRenderer): (SVGTRefElement::childShouldCreateRenderer): (SVGTRefElement::createRenderer):
  • ksvg2/svg/SVGTRefElement.h: Added. (WebCore::SVGTRefElement::rendererIsNeeded):
  • ksvg2/svg/SVGTSpanElement.cpp: (SVGTSpanElement::childShouldCreateRenderer):
  • ksvg2/svg/SVGTextElement.cpp: (WebCore::SVGTextElement::childShouldCreateRenderer):
  • ksvg2/svg/svgtags.in:

04/18/06:

19:03 Changeset [13966] by darin
  • attempt to fix Windows buildbot
  • Scripts/install-win-extras: Temporarily changed URLs to fr.rpmfind.net. We need a better long-term solution for this.
17:56 Changeset [13965] by darin

Reviewed by Beth.

  • WebInspector/webInspector/inspector.css: Add "-webkit-" prefixes to the border radius properties to make the corners rounded again.
17:51 Changeset [13964] by darin

Reviewed by Beth.

  • updated some results that were affected by recent changes

There are some other failures that might be reflecting actual
bugs; these seem fine though.

  • fast/events/updateLayoutForHitTest-expected.checksum:
  • fast/events/updateLayoutForHitTest-expected.png:
  • fast/events/updateLayoutForHitTest-expected.txt: Updated because the 4 clicks done in this test now seem to be behaving as a triple-click and selecting some text.
  • fast/forms/input-appearance-maxlength-expected.txt:
  • fast/forms/input-paste-undo-expected.txt:
  • fast/text/attributed-substring-from-range-expected.txt: Unimportant changes to the editing delegate calls.
17:16 Changeset [13963] by darin
  • rendering/render_form.cpp: (WebCore::RenderSelect::updateFromElement): Roll out accidentally-landed change for bug 8398.
16:47 Changeset [13962] by bdakin

Reviewed by Darin.

Fix for a leak exposed by background-size and detected by the
layout tests.

  • css/css_valueimpl.cpp: (WebCore::CSSPrimitiveValue::cleanup): We must deref pairs.
16:10 Changeset [13961] by bdakin

Reviewed by Eric.

Build fix for Windows. Just a few typos from background-size patch.

15:17 Changeset [13960] by eseidel

2006-04-18 Eric Seidel <eseidel@apple.com>

Reviewed by ggaren.

Fix "new Function()" to correctly use lexical scoping.
Add ScopeChain::print() function for debugging.
<rdar://problem/4067864> REGRESSION (125-407): JavaScript failure on PeopleSoft REN Server

  • kjs/function_object.cpp: (FunctionObjectImp::construct):
  • kjs/scope_chain.cpp: (KJS::ScopeChain::print):
  • kjs/scope_chain.h:
15:06 Changeset [13959] by bdakin

Reviewed by Hyatt.

Implementation of CSS3 background-size property. See
http://bugzilla.opendarwin.org/show_bug.cgi?id=8353 for details.

14:56 Changeset [13958] by jdevalk

Added webkit detection scripts and info on how to use them.

11:14 Changeset [13957] by justing

LayoutTests:

Reviewed by harrison

  • editing/pasteboard/merge-end-3-expected.checksum: Added.
  • editing/pasteboard/merge-end-3-expected.png: Added.
  • editing/pasteboard/merge-end-3-expected.txt: Added.
  • editing/pasteboard/merge-end-3.html: Added.

WebCore:

Reviewed by harrison

  • editing/CompositeEditCommand.cpp: (WebCore::CompositeEditCommand::moveParagraph): The placeholder that's inserted to keep content from collapsing due to pruning was inserted at the position after the moved paragraph. That's only appropriate when moving the paragraph backward into the previous paragraph.


  • editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::doApply): The last paragraph of the incoming fragment should be merged with the paragraph after the end of the selection being pasted into even if the incoming fragment has only one block. This fixes a bug and gets rid of a use of the info gathered during the test insertion.
09:43 Changeset [13956] by adele

WebCore:

Reviewed by Darin.

Fix for http://bugzilla.opendarwin.org/show_bug.cgi?id=8407
REGRESSION (NativeTextField): Leading and trailing spaces trimmed from text field value attribute

  • rendering/RenderTextField.cpp: (WebCore::RenderTextField::createDivStyle): Use white-space:pre for the inner div to avoid collapsing spaces in the text field.

LayoutTests:

Test for http://bugzilla.opendarwin.org/show_bug.cgi?id=8407
REGRESSION (NativeTextField): Leading and trailing spaces trimmed from text field value attribute

  • fast/forms/input-spaces-expected.checksum: Added.
  • fast/forms/input-spaces-expected.png: Added.
  • fast/forms/input-spaces-expected.txt: Added.
  • fast/forms/input-spaces.html: Added.
09:37 Changeset [13955] by darin

Reviewed by Darin.

  • manual-tests/applet-param-no-name.html: Added.
  • rendering/RenderApplet.cpp: (WebCore::RenderApplet::createWidgetIfNecessary): Skip param elements with empty name.
09:30 Changeset [13954] by darin

Fix bug number in log message.

09:28 Changeset [13953] by darin

Reviewed by Geoff.


  • fast/block/float/014.html: Use local image
  • fast/block/float/resources: Added.
  • fast/block/float/resources/training_thumb.jpg: Added.
09:07 Changeset [13952] by darin
  • try to fix the Windows build
  • platform/cairo/GraphicsContextCairo.cpp: (WebCore::setColor): Update for changes to getRGBA.

04/17/06:

22:12 Changeset [13951] by ap

Corrected run-iexploder-tests description in the ChangeLog.

22:01 Changeset [13950] by ap

Reviewed by Darin.

Works in a similar way to run-iexploder-tests.

  • Scripts/run-mangleme-tests: Added.
  • mangleme: Added.
  • mangleme/Makefile: Added.
  • mangleme/README: Added.
  • mangleme/mangle.cgi.c: Added.
  • mangleme/remangle.cgi.c: Added.
  • mangleme/tags.h: Added.
21:54 Changeset [13949] by ap

Reviewed by Darin.

Test: fast/parser/number-sign-in-map-name.html

  • html/html_imageimpl.cpp: (WebCore::HTMLMapElement::parseMappedAttribute): Fixed handling of names starting with a '#'.
20:55 Changeset [13948] by adele

more updated layout tests

20:54 Changeset [13947] by adele

more updated layout tests

20:53 Changeset [13946] by adele

more updated layout tests

20:53 Changeset [13945] by adele

more updated layout tests

20:53 Changeset [13944] by adele

more updated layout tests

20:52 Changeset [13943] by adele

more updated layout tests

20:52 Changeset [13942] by adele

more updated layout tests

20:51 Changeset [13941] by adele

more updated layout tests

20:46 Changeset [13940] by adele

More updated layout tests

20:37 Changeset [13939] by adele

More updated tests

20:36 Changeset [13938] by adele

More updated tests

20:36 Changeset [13937] by adele

More updated tests

20:36 Changeset [13936] by adele

More updated tests

20:36 Changeset [13935] by adele

More updated tests

20:36 Changeset [13934] by adele

More updated tests

20:35 Changeset [13933] by adele

More updated tests

20:35 Changeset [13932] by adele

More updated tests

20:34 Changeset [13931] by adele

More updated tests

20:33 Changeset [13930] by adele

More updated tests

20:22 Changeset [13929] by adele

Reviewed by Darin.

Fix for: http://bugzilla.opendarwin.org/show_bug.cgi?id=8269
REGRESSION: disabled text field does not display greyed-out text

  • rendering/RenderTextField.cpp: (WebCore::RenderTextField::createDivStyle): For disabled text fields, lighten or darken text color based on background color. Tries to get as close as possible to logic in AppKit for old text fields.
  • platform/Color.h: Removed hsv and setHsv since they were just used within Color.cpp.
  • platform/Color.cpp: (WebCore::parseHexColor): Cleanup. (WebCore::differenceSquared): Added. Returns the difference squared of two colors. (WebCore::convertRGBToHSV): Added static function. Replaces hsv and setHSV, and fixes bug in old implementation of the algorithm. (WebCore::convertHSVToRGB): ditto. (WebCore::Color::light): No longer takes in a factor, since all callers use the same factor. Uses new conversion functions. (WebCore::Color::dark): ditto.
  • rendering/InlineTextBox.cpp: Removed simpleDifferenceBetweenColors. (WebCore::correctedTextColor): Uses differenceSquared instead of simpleDifferenceBetweenColors.
20:20 Changeset [13928] by adele

More updated layout tests

20:19 Changeset [13927] by adele

More updated layout tests

20:19 Changeset [13926] by adele

More updated layout tests

20:18 Changeset [13925] by adele

More updated layout tests

20:17 Changeset [13924] by adele

More updated layout tests

20:14 Changeset [13923] by adele

More updated layout tests

20:07 Changeset [13922] by adele

More updated layout tests

20:06 Changeset [13921] by adele

More updated layout tests

20:05 Changeset [13920] by adele

More updated layout tests

20:04 Changeset [13919] by adele

More updated layout tests

20:04 Changeset [13918] by adele

More updated layout tests

20:03 Changeset [13917] by adele

More updated layout tests

20:02 Changeset [13916] by adele

More updated layout tests

20:02 Changeset [13915] by adele

More updated layout tests

20:01 Changeset [13914] by adele

More updated layout tests

19:57 Changeset [13913] by adele

More updated layout tests

19:56 Changeset [13912] by adele

Test and updated results for: http://bugzilla.opendarwin.org/show_bug.cgi?id=8269
REGRESSION: disabled text field does not display greyed-out text

  • fast/forms/input-disabled-color-expected.checksum: Added.
  • fast/forms/input-disabled-color-expected.png: Added.
  • fast/forms/input-disabled-color-expected.txt: Added.
  • fast/forms/input-disabled-color.html: Added.

This code change affects the color of table borders and inset, outset, and groove borders which affects many tests.

  • css1/basic/class_as_selector-expected.checksum:
  • css1/basic/class_as_selector-expected.png:
  • css1/basic/comments-expected.checksum:
  • css1/basic/comments-expected.png:
  • css1/basic/containment-expected.checksum:
  • css1/basic/containment-expected.png:
  • css1/basic/contextual_selectors-expected.checksum:
  • css1/basic/contextual_selectors-expected.png:
  • css1/basic/grouping-expected.checksum:
  • css1/basic/grouping-expected.png:
  • css1/basic/id_as_selector-expected.checksum:
  • css1/basic/id_as_selector-expected.png:
  • css1/basic/inheritance-expected.checksum:
  • css1/basic/inheritance-expected.png:
  • css1/box_properties/border-expected.checksum:
  • css1/box_properties/border-expected.png:
  • css1/box_properties/border_bottom-expected.checksum:
  • css1/box_properties/border_bottom-expected.png:
  • css1/box_properties/border_bottom_inline-expected.checksum:
  • css1/box_properties/border_bottom_inline-expected.png:
  • css1/box_properties/border_bottom_width-expected.checksum:
  • css1/box_properties/border_bottom_width-expected.png:
  • css1/box_properties/border_bottom_width_inline-expected.checksum:
  • css1/box_properties/border_bottom_width_inline-expected.png:
  • css1/box_properties/border_color-expected.checksum:
  • css1/box_properties/border_color-expected.png:
  • css1/box_properties/border_color_inline-expected.checksum:
  • css1/box_properties/border_color_inline-expected.png:
  • css1/box_properties/border_inline-expected.checksum:
  • css1/box_properties/border_inline-expected.png:
  • css1/box_properties/border_left-expected.checksum:
  • css1/box_properties/border_left-expected.png:
  • css1/box_properties/border_left_inline-expected.checksum:
  • css1/box_properties/border_left_inline-expected.png:
  • css1/box_properties/border_left_width-expected.checksum:
  • css1/box_properties/border_left_width-expected.png:
  • css1/box_properties/border_left_width_inline-expected.checksum:
  • css1/box_properties/border_left_width_inline-expected.png:
  • css1/box_properties/border_right-expected.checksum:
  • css1/box_properties/border_right-expected.png:
  • css1/box_properties/border_right_inline-expected.checksum:
  • css1/box_properties/border_right_inline-expected.png:
  • css1/box_properties/border_right_width-expected.checksum:
  • css1/box_properties/border_right_width-expected.png:
  • css1/box_properties/border_right_width_inline-expected.checksum:
  • css1/box_properties/border_right_width_inline-expected.png:
  • css1/box_properties/border_style-expected.checksum:
  • css1/box_properties/border_style-expected.png:
  • css1/box_properties/border_style_inline-expected.checksum:
  • css1/box_properties/border_style_inline-expected.png:
  • css1/box_properties/border_top-expected.checksum:
  • css1/box_properties/border_top-expected.png:
  • css1/box_properties/border_top_inline-expected.checksum:
  • css1/box_properties/border_top_inline-expected.png:
  • css1/box_properties/border_top_width-expected.checksum:
  • css1/box_properties/border_top_width-expected.png:
  • css1/box_properties/border_top_width_inline-expected.checksum:
  • css1/box_properties/border_top_width_inline-expected.png:
  • css1/box_properties/border_width-expected.checksum:
  • css1/box_properties/border_width-expected.png:
  • css1/box_properties/border_width_inline-expected.checksum:
  • css1/box_properties/border_width_inline-expected.png:
  • css1/box_properties/clear-expected.checksum:
  • css1/box_properties/clear-expected.png:
  • css1/box_properties/clear_float-expected.checksum:
  • css1/box_properties/clear_float-expected.png:
  • css1/box_properties/float-expected.checksum:
  • css1/box_properties/float-expected.png:
  • css1/box_properties/float_elements_in_series-expected.checksum:
  • css1/box_properties/float_elements_in_series-expected.png:
  • css1/box_properties/float_margin-expected.checksum:
  • css1/box_properties/float_margin-expected.png:
  • css1/box_properties/float_on_text_elements-expected.checksum:
  • css1/box_properties/float_on_text_elements-expected.png:
  • css1/box_properties/height-expected.checksum:
  • css1/box_properties/height-expected.png:
  • css1/box_properties/margin-expected.checksum:
  • css1/box_properties/margin-expected.png:
  • css1/box_properties/margin_bottom-expected.checksum:
  • css1/box_properties/margin_bottom-expected.png:
  • css1/box_properties/margin_bottom_inline-expected.checksum:
  • css1/box_properties/margin_bottom_inline-expected.png:
  • css1/box_properties/margin_inline-expected.checksum:
  • css1/box_properties/margin_inline-expected.png:
  • css1/box_properties/margin_left-expected.checksum:
  • css1/box_properties/margin_left-expected.png:
  • css1/box_properties/margin_left_inline-expected.checksum:
  • css1/box_properties/margin_left_inline-expected.png:
  • css1/box_properties/margin_right-expected.checksum:
  • css1/box_properties/margin_right-expected.png:
  • css1/box_properties/margin_right_inline-expected.checksum:
  • css1/box_properties/margin_right_inline-expected.png:
  • css1/box_properties/margin_top-expected.checksum:
  • css1/box_properties/margin_top-expected.png:
  • css1/box_properties/margin_top_inline-expected.checksum:
  • css1/box_properties/margin_top_inline-expected.png:
  • css1/box_properties/padding-expected.checksum:
  • css1/box_properties/padding-expected.png:
  • css1/box_properties/padding_bottom-expected.checksum:
  • css1/box_properties/padding_bottom-expected.png:
  • css1/box_properties/padding_bottom_inline-expected.checksum:
  • css1/box_properties/padding_bottom_inline-expected.png:
  • css1/box_properties/padding_inline-expected.checksum:
  • css1/box_properties/padding_inline-expected.png:
  • css1/box_properties/padding_left-expected.checksum:
  • css1/box_properties/padding_left-expected.png:
  • css1/box_properties/padding_left_inline-expected.checksum:
  • css1/box_properties/padding_left_inline-expected.png:
  • css1/box_properties/padding_right-expected.checksum:
  • css1/box_properties/padding_right-expected.png:
  • css1/box_properties/padding_right_inline-expected.checksum:
  • css1/box_properties/padding_right_inline-expected.png:
  • css1/box_properties/padding_top-expected.checksum:
  • css1/box_properties/padding_top-expected.png:
  • css1/box_properties/padding_top_inline-expected.checksum:
  • css1/box_properties/padding_top_inline-expected.png:
  • css1/box_properties/width-expected.checksum:
  • css1/box_properties/width-expected.png:
  • css1/cascade/cascade_order-expected.checksum:
  • css1/cascade/cascade_order-expected.png:
  • css1/cascade/important-expected.checksum:
  • css1/cascade/important-expected.png:
  • css1/classification/display-expected.checksum:
  • css1/classification/display-expected.png:
  • css1/classification/list_style-expected.checksum:
  • css1/classification/list_style-expected.png:
  • css1/classification/list_style_image-expected.checksum:
  • css1/classification/list_style_image-expected.png:
  • css1/classification/list_style_position-expected.checksum:
  • css1/classification/list_style_position-expected.png:
  • css1/classification/list_style_type-expected.checksum:
  • css1/classification/list_style_type-expected.png:
  • css1/classification/white_space-expected.checksum:
  • css1/classification/white_space-expected.png:
  • css1/color_and_background/background-expected.checksum:
  • css1/color_and_background/background-expected.png:
  • css1/color_and_background/background_attachment-expected.checksum:
  • css1/color_and_background/background_attachment-expected.png:
  • css1/color_and_background/background_color-expected.checksum:
  • css1/color_and_background/background_color-expected.png:
  • css1/color_and_background/background_image-expected.checksum:
  • css1/color_and_background/background_image-expected.png:
  • css1/color_and_background/background_position-expected.checksum:
  • css1/color_and_background/background_position-expected.png:
  • css1/color_and_background/background_repeat-expected.checksum:
  • css1/color_and_background/background_repeat-expected.png:
  • css1/color_and_background/color-expected.checksum:
  • css1/color_and_background/color-expected.png:
  • css1/font_properties/font-expected.checksum:
  • css1/font_properties/font-expected.png:
  • css1/font_properties/font_family-expected.checksum:
  • css1/font_properties/font_family-expected.png:
  • css1/font_properties/font_size-expected.checksum:
  • css1/font_properties/font_size-expected.png:
  • css1/font_properties/font_style-expected.checksum:
  • css1/font_properties/font_style-expected.png:
  • css1/font_properties/font_variant-expected.checksum:
  • css1/font_properties/font_variant-expected.png:
  • css1/font_properties/font_weight-expected.checksum:
  • css1/font_properties/font_weight-expected.png:
  • css1/formatting_model/canvas-expected.checksum:
  • css1/formatting_model/canvas-expected.png:
  • css1/formatting_model/floating_elements-expected.checksum:
  • css1/formatting_model/floating_elements-expected.png:
  • css1/formatting_model/height_of_lines-expected.checksum:
  • css1/formatting_model/height_of_lines-expected.png:
  • css1/formatting_model/inline_elements-expected.checksum:
  • css1/formatting_model/inline_elements-expected.png:
  • css1/formatting_model/replaced_elements-expected.checksum:
  • css1/formatting_model/replaced_elements-expected.png:
  • css1/formatting_model/vertical_formatting-expected.checksum:
  • css1/formatting_model/vertical_formatting-expected.png:
  • css1/pseudo/anchor-expected.checksum:
  • css1/pseudo/anchor-expected.png:
  • css1/pseudo/firstletter-expected.checksum:
  • css1/pseudo/firstletter-expected.png:
  • css1/pseudo/firstline-expected.checksum:
  • css1/pseudo/firstline-expected.png:
  • css1/pseudo/multiple_pseudo_elements-expected.checksum:
  • css1/pseudo/multiple_pseudo_elements-expected.png:
  • css1/pseudo/pseudo_elements_in_selectors-expected.checksum:
  • css1/pseudo/pseudo_elements_in_selectors-expected.png:
  • css1/text_properties/letter_spacing-expected.checksum:
  • css1/text_properties/letter_spacing-expected.png:
  • css1/text_properties/line_height-expected.checksum:
  • css1/text_properties/line_height-expected.png:
  • css1/text_properties/text_align-expected.checksum:
  • css1/text_properties/text_align-expected.png:
  • css1/text_properties/text_decoration-expected.checksum:
  • css1/text_properties/text_decoration-expected.png:
  • css1/text_properties/text_indent-expected.checksum:
  • css1/text_properties/text_indent-expected.png:
  • css1/text_properties/text_transform-expected.checksum:
  • css1/text_properties/text_transform-expected.png:
  • css1/text_properties/vertical_align-expected.checksum:
  • css1/text_properties/vertical_align-expected.png:
  • css1/text_properties/word_spacing-expected.checksum:
  • css1/text_properties/word_spacing-expected.png:
  • css1/units/color_units-expected.checksum:
  • css1/units/color_units-expected.png:
  • css1/units/length_units-expected.checksum:
  • css1/units/length_units-expected.png:
  • css1/units/percentage_units-expected.checksum:
  • css1/units/percentage_units-expected.png:
  • css1/units/urls-expected.checksum:
  • css1/units/urls-expected.png:
  • css2.1/t0804-c5510-padn-00-b-ag-expected.checksum:
  • css2.1/t0804-c5510-padn-00-b-ag-expected.png:
  • css2.1/t0805-c5517-brdr-s-00-c-expected.checksum:
  • css2.1/t0805-c5517-brdr-s-00-c-expected.png:
  • css2.1/t0805-c5517-ibrdr-s-00-a-expected.checksum:
  • css2.1/t0805-c5517-ibrdr-s-00-a-expected.png:
  • css2.1/t0805-c5522-brdr-00-b-expected.checksum:
  • css2.1/t0805-c5522-brdr-00-b-expected.png:
  • css2.1/t100801-c544-valgn-02-d-agi-expected.checksum:
  • css2.1/t100801-c544-valgn-02-d-agi-expected.png:
  • css2.1/t100801-c544-valgn-03-d-agi-expected.checksum:
  • css2.1/t100801-c544-valgn-03-d-agi-expected.png:
  • css2.1/t100801-c544-valgn-04-d-agi-expected.checksum:
  • css2.1/t100801-c544-valgn-04-d-agi-expected.png:
  • editing/execCommand/insertHTML-expected.checksum:
  • editing/execCommand/insertHTML-expected.png:
  • editing/execCommand/insertHorizontalRule-expected.checksum:
  • editing/execCommand/insertHorizontalRule-expected.png:
  • editing/inserting/4278698-expected.checksum:
  • editing/inserting/4278698-expected.png:
  • editing/pasteboard/3976872-expected.checksum:
  • editing/pasteboard/3976872-expected.png:
  • editing/pasteboard/4076267-2-expected.checksum:
  • editing/pasteboard/4076267-2-expected.png:
  • editing/pasteboard/4076267-3-expected.checksum:
  • editing/pasteboard/4076267-3-expected.png:
  • editing/pasteboard/4076267-expected.checksum:
  • editing/pasteboard/4076267-expected.png:
  • editing/pasteboard/display-block-on-spans-expected.checksum:
  • editing/pasteboard/display-block-on-spans-expected.png:
  • editing/pasteboard/drop-text-without-selection-expected.checksum:
  • editing/pasteboard/drop-text-without-selection-expected.png:
  • editing/pasteboard/paste-table-001-expected.checksum:
  • editing/pasteboard/paste-table-001-expected.png:
  • editing/pasteboard/undoable-fragment-removes-expected.checksum:
  • editing/pasteboard/undoable-fragment-removes-expected.png:
  • editing/selection/4402375-expected.checksum:
  • editing/selection/4402375-expected.png:
  • editing/selection/6476-expected.checksum:
  • editing/selection/6476-expected.png:
  • editing/selection/7152-1-expected.checksum:
  • editing/selection/7152-1-expected.png:
  • editing/selection/7152-2-expected.checksum:
  • editing/selection/7152-2-expected.png:
  • editing/selection/image-before-linebreak-expected.checksum:
  • editing/selection/image-before-linebreak-expected.png:
  • editing/selection/move-by-line-001-expected.checksum:
  • editing/selection/move-by-line-001-expected.png:
  • editing/undo/4063751-expected.checksum:
  • editing/undo/4063751-expected.png:
  • editing/unsupported-content/table-type-after-expected.checksum:
  • editing/unsupported-content/table-type-after-expected.png:
  • editing/unsupported-content/table-type-before-expected.checksum:
  • editing/unsupported-content/table-type-before-expected.png:
  • fast/block/basic/018-expected.checksum:
  • fast/block/basic/018-expected.png:
  • fast/block/basic/text-indent-rtl-expected.checksum:
  • fast/block/basic/text-indent-rtl-expected.png:
  • fast/block/float/015-expected.checksum:
  • fast/block/float/015-expected.png:
  • fast/block/float/025-expected.checksum:
  • fast/block/float/025-expected.png:
  • fast/block/float/026-expected.checksum:
  • fast/block/float/026-expected.png:
  • fast/block/float/027-expected.checksum:
  • fast/block/float/027-expected.png:
  • fast/block/float/028-expected.checksum:
  • fast/block/float/028-expected.png:
  • fast/block/positioning/height-change-expected.checksum:
  • fast/block/positioning/height-change-expected.png:
  • fast/block/positioning/relayout-on-position-change-expected.checksum:
  • fast/block/positioning/relayout-on-position-change-expected.png:
  • fast/block/positioning/window-height-change-expected.checksum:
  • fast/block/positioning/window-height-change-expected.png:
  • fast/css-generated-content/014-expected.checksum:
  • fast/css-generated-content/014-expected.png:
  • fast/css-generated-content/hover-style-change-expected.checksum:
  • fast/css-generated-content/hover-style-change-expected.png:
  • fast/css/MarqueeLayoutTest-expected.checksum:
  • fast/css/MarqueeLayoutTest-expected.png:
  • fast/css/apple-prefix-expected.checksum:
  • fast/css/apple-prefix-expected.png:
  • fast/css/hover-subselector-expected.checksum:
  • fast/css/hover-subselector-expected.png:
  • fast/css/rtl-ordering-expected.checksum:
  • fast/css/rtl-ordering-expected.png:
  • fast/css/universal-hover-quirk-expected.checksum:
  • fast/css/universal-hover-quirk-expected.png:
  • fast/dom/HTMLElement/bdo-expected.checksum:
  • fast/dom/HTMLElement/bdo-expected.png:
  • fast/dom/HTMLTableElement/colSpan-expected.checksum:
  • fast/dom/HTMLTableElement/colSpan-expected.png:
  • fast/dom/HTMLTableElement/createCaption-expected.checksum:
  • fast/dom/HTMLTableElement/createCaption-expected.png:
  • fast/dom/clone-node-dynamic-style-expected.checksum:
  • fast/dom/clone-node-dynamic-style-expected.png:
  • fast/dom/isindex-002-expected.checksum:
  • fast/dom/isindex-002-expected.png:
  • fast/dom/row-inner-text-expected.checksum:
  • fast/dom/row-inner-text-expected.png:
  • fast/dynamic/012-expected.checksum:
  • fast/dynamic/012-expected.png:
  • fast/dynamic/013-expected.checksum:
  • fast/dynamic/013-expected.png:
  • fast/dynamic/015-expected.checksum:
  • fast/dynamic/015-expected.png:
  • fast/encoding/invalid-UTF-8-expected.checksum:
  • fast/encoding/invalid-UTF-8-expected.png:
  • fast/encoding/utf-16-big-endian-expected.checksum:
  • fast/encoding/utf-16-big-endian-expected.png:
  • fast/encoding/utf-16-little-endian-expected.checksum:
  • fast/encoding/utf-16-little-endian-expected.png:
  • fast/events/event-sender-mouse-moved-expected.checksum:
  • fast/events/event-sender-mouse-moved-expected.png:
  • fast/forms/001-expected.checksum:
  • fast/forms/001-expected.png:
  • fast/forms/006-expected.checksum:
  • fast/forms/006-expected.png:
  • fast/forms/007-expected.checksum:
  • fast/forms/007-expected.png:
  • fast/forms/button-default-title-expected.checksum:
  • fast/forms/button-default-title-expected.png:
  • fast/forms/button-inner-block-reuse-expected.checksum:
  • fast/forms/button-inner-block-reuse-expected.png:
  • fast/forms/input-appearance-disabled-expected.checksum:
  • fast/forms/input-appearance-disabled-expected.png:
  • fast/forms/input-appearance-disabled-expected.txt:
  • fast/forms/input-value-expected.checksum:
  • fast/forms/input-value-expected.png:
  • fast/forms/visual-hebrew-text-field-expected.checksum:
  • fast/forms/visual-hebrew-text-field-expected.png:
  • fast/lists/004-expected.checksum:
  • fast/lists/004-expected.png:
  • fast/lists/markers-in-selection-expected.checksum:
  • fast/lists/markers-in-selection-expected.png:
  • fast/lists/olstart-expected.checksum:
  • fast/lists/olstart-expected.png:
  • fast/overflow/002-expected.checksum:
  • fast/overflow/002-expected.png:
  • fast/overflow/overflow-rtl-inline-scrollbar-expected.checksum:
  • fast/overflow/overflow-rtl-inline-scrollbar-expected.png:
  • fast/overflow/overflow-text-hit-testing-expected.checksum:
  • fast/overflow/overflow-text-hit-testing-expected.png:
  • fast/parser/entities-in-xhtml-expected.checksum:
  • fast/parser/entities-in-xhtml-expected.png:
  • fast/repaint/flexible-box-overflow-expected.checksum:
  • fast/repaint/flexible-box-overflow-expected.png:
  • fast/repaint/flexible-box-overflow-horizontal-expected.checksum:
  • fast/repaint/flexible-box-overflow-horizontal-expected.png:
  • fast/repaint/inline-block-overflow-expected.checksum:
  • fast/repaint/inline-block-overflow-expected.png:
  • fast/repaint/layer-outline-expected.checksum:
  • fast/repaint/layer-outline-expected.png:
  • fast/repaint/layer-outline-horizontal-expected.checksum:
  • fast/repaint/layer-outline-horizontal-expected.png:
  • fast/repaint/text-shadow-expected.checksum:
  • fast/repaint/text-shadow-expected.png:
  • fast/repaint/text-shadow-horizontal-expected.checksum:
  • fast/repaint/text-shadow-horizontal-expected.png:
  • fast/replaced/005-expected.checksum:
  • fast/replaced/005-expected.png:
  • fast/replaced/inline-box-wrapper-handover-expected.checksum:
  • fast/replaced/inline-box-wrapper-handover-expected.png:
  • fast/selectors/032-expected.checksum:
  • fast/selectors/032-expected.png:
  • fast/selectors/077-expected.checksum:
  • fast/selectors/077-expected.png:
  • fast/selectors/077b-expected.checksum:
  • fast/selectors/077b-expected.png:
  • fast/selectors/078b-expected.checksum:
  • fast/selectors/078b-expected.png:
  • fast/table/003-expected.checksum:
  • fast/table/003-expected.png:
  • fast/table/004-expected.checksum:
  • fast/table/004-expected.png:
  • fast/table/006-expected.checksum:
  • fast/table/006-expected.png:
  • fast/table/007-expected.checksum:
  • fast/table/007-expected.png:
  • fast/table/009-expected.checksum:
  • fast/table/009-expected.png:
  • fast/table/017-expected.checksum:
  • fast/table/017-expected.png:
  • fast/table/018-expected.checksum:
  • fast/table/018-expected.png:
  • fast/table/020-expected.checksum:
  • fast/table/020-expected.png:
  • fast/table/029-expected.checksum:
  • fast/table/029-expected.png:
  • fast/table/030-expected.checksum:
  • fast/table/030-expected.png:
  • fast/table/035-expected.checksum:
  • fast/table/035-expected.png:
  • fast/table/038-expected.checksum:
  • fast/table/038-expected.png:
  • fast/table/039-expected.checksum:
  • fast/table/039-expected.png:
  • fast/table/040-expected.checksum:
  • fast/table/040-expected.png:
  • fast/table/041-expected.checksum:
  • fast/table/041-expected.png:
  • fast/table/add-before-anonymous-child-expected.checksum:
  • fast/table/add-before-anonymous-child-expected.png:
  • fast/table/border-collapsing/rtl-border-collapsing-expected.checksum:
  • fast/table/border-collapsing/rtl-border-collapsing-expected.png:
  • fast/table/edge-offsets-expected.checksum:
  • fast/table/edge-offsets-expected.png:
  • fast/table/empty-table-percent-height-expected.checksum:
  • fast/table/empty-table-percent-height-expected.png:
  • fast/table/giantRowspan-expected.checksum:
  • fast/table/giantRowspan-expected.png:
  • fast/table/large-width-expected.checksum:
  • fast/table/large-width-expected.png:
  • fast/table/multiple-percent-height-rows-expected.checksum:
  • fast/table/multiple-percent-height-rows-expected.png:
  • fast/table/nobr-expected.checksum:
  • fast/table/nobr-expected.png:
  • fast/table/overflowHidden-expected.checksum:
  • fast/table/overflowHidden-expected.png:
  • fast/table/percent-heights-expected.checksum:
  • fast/table/percent-heights-expected.png:
  • fast/table/rowindex-expected.checksum:
  • fast/table/rowindex-expected.png:
  • fast/table/rowspan-paint-order-expected.checksum:
  • fast/table/rowspan-paint-order-expected.png:
  • fast/table/spanOverlapRepaint-expected.checksum:
  • fast/table/spanOverlapRepaint-expected.png:
  • fast/text/atsui-kerning-and-ligatures-expected.checksum:
  • fast/text/atsui-kerning-and-ligatures-expected.png:
  • fast/text/atsui-multiple-renderers-expected.checksum:
  • fast/text/atsui-multiple-renderers-expected.png:
  • fast/text/atsui-pointtooffset-calls-cg-expected.checksum:
  • fast/text/atsui-pointtooffset-calls-cg-expected.png:
  • fast/text/atsui-rtl-override-selection-expected.checksum:
  • fast/text/atsui-rtl-override-selection-expected.png:
  • fast/text/atsui-small-caps-punctuation-size-expected.checksum:
  • fast/text/atsui-small-caps-punctuation-size-expected.png:
  • fast/text/atsui-spacing-features-expected.checksum:
  • fast/text/atsui-spacing-features-expected.png:
  • fast/text/basic/001-expected.checksum:
  • fast/text/basic/001-expected.png:
  • fast/text/basic/006-expected.checksum:
  • fast/text/basic/006-expected.png:
  • fast/text/basic/007-expected.checksum:
  • fast/text/basic/007-expected.png:
  • fast/text/basic/015-expected.checksum:
  • fast/text/basic/015-expected.png:
  • fast/text/cg-vs-atsui-expected.checksum:
  • fast/text/cg-vs-atsui-expected.png:
  • fast/text/in-rendered-text-rtl-expected.checksum:
  • fast/text/in-rendered-text-rtl-expected.png:
  • fast/text/international/003-expected.checksum:
  • fast/text/international/003-expected.png:
  • fast/text/international/bidi-LDB-2-CSS-expected.checksum:
  • fast/text/international/bidi-LDB-2-CSS-expected.png:
  • fast/text/international/bidi-LDB-2-HTML-expected.checksum:
  • fast/text/international/bidi-LDB-2-HTML-expected.png:
  • fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum:
  • fast/text/international/bidi-LDB-2-formatting-characters-expected.png:
  • fast/text/international/bidi-european-terminators-expected.checksum:
  • fast/text/international/bidi-european-terminators-expected.png:
  • fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum:
  • fast/text/international/bidi-ignored-for-first-child-inline-expected.png:
  • fast/text/international/bidi-innertext-expected.checksum:
  • fast/text/international/bidi-innertext-expected.png:
  • fast/text/should-use-atsui-expected.checksum:
  • fast/text/should-use-atsui-expected.png:
  • fast/text/whitespace/027-expected.checksum:
  • fast/text/whitespace/027-expected.png:
  • fast/text/whitespace/pre-wrap-overflow-selection-expected.checksum:
  • fast/text/whitespace/pre-wrap-overflow-selection-expected.png:
  • fast/text/whitespace/pre-wrap-spaces-after-newline-expected.checksum:
  • fast/text/whitespace/pre-wrap-spaces-after-newline-expected.png:
  • tables/mozilla/bugs/45621-expected.checksum:
  • tables/mozilla/bugs/45621-expected.png:
  • tables/mozilla/bugs/bug10009-expected.checksum:
  • tables/mozilla/bugs/bug10009-expected.png:
  • tables/mozilla/bugs/bug10036-expected.checksum:
  • tables/mozilla/bugs/bug10036-expected.png:
  • tables/mozilla/bugs/bug10039-expected.checksum:
  • tables/mozilla/bugs/bug10039-expected.png:
  • tables/mozilla/bugs/bug101201-expected.checksum:
  • tables/mozilla/bugs/bug101201-expected.png:
  • tables/mozilla/bugs/bug1055-1-expected.checksum:
  • tables/mozilla/bugs/bug1055-1-expected.png:
  • tables/mozilla/bugs/bug10565-expected.checksum:
  • tables/mozilla/bugs/bug10565-expected.png:
  • tables/mozilla/bugs/bug1067-2-expected.checksum:
  • tables/mozilla/bugs/bug1067-2-expected.png:
  • tables/mozilla/bugs/bug106795-expected.checksum:
  • tables/mozilla/bugs/bug106795-expected.png:
  • tables/mozilla/bugs/bug106816-expected.checksum:
  • tables/mozilla/bugs/bug106816-expected.png:
  • tables/mozilla/bugs/bug108340-expected.checksum:
  • tables/mozilla/bugs/bug108340-expected.png:
  • tables/mozilla/bugs/bug109043-expected.checksum:
  • tables/mozilla/bugs/bug109043-expected.png:
  • tables/mozilla/bugs/bug110566-expected.checksum:
  • tables/mozilla/bugs/bug110566-expected.png:
  • tables/mozilla/bugs/bug113235-1-expected.checksum:
  • tables/mozilla/bugs/bug113235-1-expected.png:
  • tables/mozilla/bugs/bug113235-3-expected.checksum:
  • tables/mozilla/bugs/bug113235-3-expected.png:
  • tables/mozilla/bugs/bug113424-expected.checksum:
  • tables/mozilla/bugs/bug113424-expected.png:
  • tables/mozilla/bugs/bug11384q-expected.checksum:
  • tables/mozilla/bugs/bug11384q-expected.png:
  • tables/mozilla/bugs/bug1188-expected.checksum:
  • tables/mozilla/bugs/bug1188-expected.png:
  • tables/mozilla/bugs/bug11944-expected.checksum:
  • tables/mozilla/bugs/bug11944-expected.png:
  • tables/mozilla/bugs/bug119786-expected.checksum:
  • tables/mozilla/bugs/bug119786-expected.png:
  • tables/mozilla/bugs/bug12008-expected.checksum:
  • tables/mozilla/bugs/bug12008-expected.png:
  • tables/mozilla/bugs/bug1220-expected.checksum:
  • tables/mozilla/bugs/bug1220-expected.png:
  • tables/mozilla/bugs/bug1224-expected.checksum:
  • tables/mozilla/bugs/bug1224-expected.png:
  • tables/mozilla/bugs/bug12268-expected.checksum:
  • tables/mozilla/bugs/bug12268-expected.png:
  • tables/mozilla/bugs/bug12384-expected.checksum:
  • tables/mozilla/bugs/bug12384-expected.png:
  • tables/mozilla/bugs/bug1261-expected.checksum:
  • tables/mozilla/bugs/bug1261-expected.png:
  • tables/mozilla/bugs/bug12709-expected.checksum:
  • tables/mozilla/bugs/bug12709-expected.png:
  • tables/mozilla/bugs/bug128229-expected.checksum:
  • tables/mozilla/bugs/bug128229-expected.png:
  • tables/mozilla/bugs/bug12908-1-expected.checksum:
  • tables/mozilla/bugs/bug12908-1-expected.png:
  • tables/mozilla/bugs/bug12910-expected.checksum:
  • tables/mozilla/bugs/bug12910-expected.png:
  • tables/mozilla/bugs/bug1302-expected.checksum:
  • tables/mozilla/bugs/bug1302-expected.png:
  • tables/mozilla/bugs/bug131020-2-expected.checksum:
  • tables/mozilla/bugs/bug131020-2-expected.png:
  • tables/mozilla/bugs/bug131020-expected.checksum:
  • tables/mozilla/bugs/bug131020-expected.png:
  • tables/mozilla/bugs/bug13118-expected.checksum:
  • tables/mozilla/bugs/bug13118-expected.png:
  • tables/mozilla/bugs/bug13169-expected.checksum:
  • tables/mozilla/bugs/bug13169-expected.png:
  • tables/mozilla/bugs/bug1318-expected.checksum:
  • tables/mozilla/bugs/bug1318-expected.png:
  • tables/mozilla/bugs/bug13196-expected.checksum:
  • tables/mozilla/bugs/bug13196-expected.png:
  • tables/mozilla/bugs/bug133756-2-expected.checksum:
  • tables/mozilla/bugs/bug133756-2-expected.png:
  • tables/mozilla/bugs/bug133948-expected.checksum:
  • tables/mozilla/bugs/bug133948-expected.png:
  • tables/mozilla/bugs/bug13484-expected.checksum:
  • tables/mozilla/bugs/bug13484-expected.png:
  • tables/mozilla/bugs/bug139524-4-expected.checksum:
  • tables/mozilla/bugs/bug139524-4-expected.png:
  • tables/mozilla/bugs/bug1474-expected.checksum:
  • tables/mozilla/bugs/bug1474-expected.png:
  • tables/mozilla/bugs/bug149275-1-expected.checksum:
  • tables/mozilla/bugs/bug149275-1-expected.png:
  • tables/mozilla/bugs/bug149275-2-expected.checksum:
  • tables/mozilla/bugs/bug149275-2-expected.png:
  • tables/mozilla/bugs/bug14929-expected.checksum:
  • tables/mozilla/bugs/bug14929-expected.png:
  • tables/mozilla/bugs/bug15247-expected.checksum:
  • tables/mozilla/bugs/bug15247-expected.png:
  • tables/mozilla/bugs/bug15933-expected.checksum:
  • tables/mozilla/bugs/bug15933-expected.png:
  • tables/mozilla/bugs/bug16012-expected.checksum:
  • tables/mozilla/bugs/bug16012-expected.png:
  • tables/mozilla/bugs/bug16252-expected.checksum:
  • tables/mozilla/bugs/bug16252-expected.png:
  • tables/mozilla/bugs/bug17168-expected.checksum:
  • tables/mozilla/bugs/bug17168-expected.png:
  • tables/mozilla/bugs/bug175455-4-expected.checksum:
  • tables/mozilla/bugs/bug175455-4-expected.png:
  • tables/mozilla/bugs/bug17548-expected.checksum:
  • tables/mozilla/bugs/bug17548-expected.png:
  • tables/mozilla/bugs/bug17587-expected.checksum:
  • tables/mozilla/bugs/bug17587-expected.png:
  • tables/mozilla/bugs/bug1800-expected.checksum:
  • tables/mozilla/bugs/bug1800-expected.png:
  • tables/mozilla/bugs/bug1802-expected.checksum:
  • tables/mozilla/bugs/bug1802-expected.png:
  • tables/mozilla/bugs/bug1802s-expected.checksum:
  • tables/mozilla/bugs/bug1802s-expected.png:
  • tables/mozilla/bugs/bug1809-expected.checksum:
  • tables/mozilla/bugs/bug1809-expected.png:
  • tables/mozilla/bugs/bug1818-1-expected.checksum:
  • tables/mozilla/bugs/bug1818-1-expected.png:
  • tables/mozilla/bugs/bug1818-2-expected.checksum:
  • tables/mozilla/bugs/bug1818-2-expected.png:
  • tables/mozilla/bugs/bug1818-3-expected.checksum:
  • tables/mozilla/bugs/bug1818-3-expected.png:
  • tables/mozilla/bugs/bug1818-4-expected.checksum:
  • tables/mozilla/bugs/bug1818-4-expected.png:
  • tables/mozilla/bugs/bug1828-expected.checksum:
  • tables/mozilla/bugs/bug1828-expected.png:
  • tables/mozilla/bugs/bug18359-expected.checksum:
  • tables/mozilla/bugs/bug18359-expected.png:
  • tables/mozilla/bugs/bug18558-expected.checksum:
  • tables/mozilla/bugs/bug18558-expected.png:
  • tables/mozilla/bugs/bug18955-expected.checksum:
  • tables/mozilla/bugs/bug18955-expected.png:
  • tables/mozilla/bugs/bug19061-1-expected.checksum:
  • tables/mozilla/bugs/bug19061-1-expected.png:
  • tables/mozilla/bugs/bug19061-2-expected.checksum:
  • tables/mozilla/bugs/bug19061-2-expected.png:
  • tables/mozilla/bugs/bug19356-expected.checksum:
  • tables/mozilla/bugs/bug19356-expected.png:
  • tables/mozilla/bugs/bug194024-expected.checksum:
  • tables/mozilla/bugs/bug194024-expected.png:
  • tables/mozilla/bugs/bug19599-expected.checksum:
  • tables/mozilla/bugs/bug19599-expected.png:
  • tables/mozilla/bugs/bug2050-expected.checksum:
  • tables/mozilla/bugs/bug2050-expected.png:
  • tables/mozilla/bugs/bug2065-expected.checksum:
  • tables/mozilla/bugs/bug2065-expected.png:
  • tables/mozilla/bugs/bug20804-expected.checksum:
  • tables/mozilla/bugs/bug20804-expected.png:
  • tables/mozilla/bugs/bug21299-expected.checksum:
  • tables/mozilla/bugs/bug21299-expected.png:
  • tables/mozilla/bugs/bug21918-expected.checksum:
  • tables/mozilla/bugs/bug21918-expected.png:
  • tables/mozilla/bugs/bug219693-1-expected.checksum:
  • tables/mozilla/bugs/bug219693-1-expected.png:
  • tables/mozilla/bugs/bug219693-2-expected.checksum:
  • tables/mozilla/bugs/bug219693-2-expected.png:
  • tables/mozilla/bugs/bug220536-expected.checksum:
  • tables/mozilla/bugs/bug220536-expected.png:
  • tables/mozilla/bugs/bug221784-1-expected.checksum:
  • tables/mozilla/bugs/bug221784-1-expected.png:
  • tables/mozilla/bugs/bug221784-2-expected.checksum:
  • tables/mozilla/bugs/bug221784-2-expected.png:
  • tables/mozilla/bugs/bug2267-expected.checksum:
  • tables/mozilla/bugs/bug2267-expected.png:
  • tables/mozilla/bugs/bug2296-expected.checksum:
  • tables/mozilla/bugs/bug2296-expected.png:
  • tables/mozilla/bugs/bug23235-expected.checksum:
  • tables/mozilla/bugs/bug23235-expected.png:
  • tables/mozilla/bugs/bug24200-expected.checksum:
  • tables/mozilla/bugs/bug24200-expected.png:
  • tables/mozilla/bugs/bug24503-expected.checksum:
  • tables/mozilla/bugs/bug24503-expected.png:
  • tables/mozilla/bugs/bug24627-expected.checksum:
  • tables/mozilla/bugs/bug24627-expected.png:
  • tables/mozilla/bugs/bug24661-expected.checksum:
  • tables/mozilla/bugs/bug24661-expected.png:
  • tables/mozilla/bugs/bug2479-3-expected.checksum:
  • tables/mozilla/bugs/bug2479-3-expected.png:
  • tables/mozilla/bugs/bug24880-expected.checksum:
  • tables/mozilla/bugs/bug24880-expected.png:
  • tables/mozilla/bugs/bug25004-expected.checksum:
  • tables/mozilla/bugs/bug25004-expected.png:
  • tables/mozilla/bugs/bug25086-expected.checksum:
  • tables/mozilla/bugs/bug25086-expected.png:
  • tables/mozilla/bugs/bug2516-expected.checksum:
  • tables/mozilla/bugs/bug2516-expected.png:
  • tables/mozilla/bugs/bug25663-expected.checksum:
  • tables/mozilla/bugs/bug25663-expected.png:
  • tables/mozilla/bugs/bug2585-expected.checksum:
  • tables/mozilla/bugs/bug2585-expected.png:
  • tables/mozilla/bugs/bug26553-expected.checksum:
  • tables/mozilla/bugs/bug26553-expected.png:
  • tables/mozilla/bugs/bug2684-expected.checksum:
  • tables/mozilla/bugs/bug2684-expected.png:
  • tables/mozilla/bugs/bug27038-2-expected.checksum:
  • tables/mozilla/bugs/bug27038-2-expected.png:
  • tables/mozilla/bugs/bug2757-expected.checksum:
  • tables/mozilla/bugs/bug2757-expected.png:
  • tables/mozilla/bugs/bug2773-expected.checksum:
  • tables/mozilla/bugs/bug2773-expected.png:
  • tables/mozilla/bugs/bug278385-expected.checksum:
  • tables/mozilla/bugs/bug278385-expected.png:
  • tables/mozilla/bugs/bug27993-1-expected.checksum:
  • tables/mozilla/bugs/bug27993-1-expected.png:
  • tables/mozilla/bugs/bug2886-expected.checksum:
  • tables/mozilla/bugs/bug2886-expected.png:
  • tables/mozilla/bugs/bug28928-expected.checksum:
  • tables/mozilla/bugs/bug28928-expected.png:
  • tables/mozilla/bugs/bug29058-1-expected.checksum:
  • tables/mozilla/bugs/bug29058-1-expected.png:
  • tables/mozilla/bugs/bug29058-3-expected.checksum:
  • tables/mozilla/bugs/bug29058-3-expected.png:
  • tables/mozilla/bugs/bug29157-expected.checksum:
  • tables/mozilla/bugs/bug29157-expected.png:
  • tables/mozilla/bugs/bug29326-expected.checksum:
  • tables/mozilla/bugs/bug29326-expected.png:
  • tables/mozilla/bugs/bug29429-expected.checksum:
  • tables/mozilla/bugs/bug29429-expected.png:
  • tables/mozilla/bugs/bug2962-expected.checksum:
  • tables/mozilla/bugs/bug2962-expected.png:
  • tables/mozilla/bugs/bug2981-2-expected.checksum:
  • tables/mozilla/bugs/bug2981-2-expected.png:
  • tables/mozilla/bugs/bug30273-expected.checksum:
  • tables/mozilla/bugs/bug30273-expected.png:
  • tables/mozilla/bugs/bug30332-1-expected.checksum:
  • tables/mozilla/bugs/bug30332-1-expected.png:
  • tables/mozilla/bugs/bug30332-2-expected.checksum:
  • tables/mozilla/bugs/bug30332-2-expected.png:
  • tables/mozilla/bugs/bug30418-expected.checksum:
  • tables/mozilla/bugs/bug30418-expected.png:
  • tables/mozilla/bugs/bug30559-expected.checksum:
  • tables/mozilla/bugs/bug30559-expected.png:
  • tables/mozilla/bugs/bug30692-expected.checksum:
  • tables/mozilla/bugs/bug30692-expected.png:
  • tables/mozilla/bugs/bug3103-expected.checksum:
  • tables/mozilla/bugs/bug3103-expected.png:
  • tables/mozilla/bugs/bug3191-expected.checksum:
  • tables/mozilla/bugs/bug3191-expected.png:
  • tables/mozilla/bugs/bug32205-2-expected.checksum:
  • tables/mozilla/bugs/bug32205-2-expected.png:
  • tables/mozilla/bugs/bug32205-3-expected.checksum:
  • tables/mozilla/bugs/bug32205-3-expected.png:
  • tables/mozilla/bugs/bug32205-5-expected.checksum:
  • tables/mozilla/bugs/bug32205-5-expected.png:
  • tables/mozilla/bugs/bug3260-expected.checksum:
  • tables/mozilla/bugs/bug3260-expected.png:
  • tables/mozilla/bugs/bug3263-expected.checksum:
  • tables/mozilla/bugs/bug3263-expected.png:
  • tables/mozilla/bugs/bug32841-expected.checksum:
  • tables/mozilla/bugs/bug32841-expected.png:
  • tables/mozilla/bugs/bug3309-2-expected.checksum:
  • tables/mozilla/bugs/bug3309-2-expected.png:
  • tables/mozilla/bugs/bug33137-expected.checksum:
  • tables/mozilla/bugs/bug33137-expected.png:
  • tables/mozilla/bugs/bug34176-expected.checksum:
  • tables/mozilla/bugs/bug34176-expected.png:
  • tables/mozilla/bugs/bug3454-expected.checksum:
  • tables/mozilla/bugs/bug3454-expected.png:
  • tables/mozilla/bugs/bug35662-expected.checksum:
  • tables/mozilla/bugs/bug35662-expected.png:
  • tables/mozilla/bugs/bug3718-expected.checksum:
  • tables/mozilla/bugs/bug3718-expected.png:
  • tables/mozilla/bugs/bug38916-expected.checksum:
  • tables/mozilla/bugs/bug38916-expected.png:
  • tables/mozilla/bugs/bug39209-expected.checksum:
  • tables/mozilla/bugs/bug39209-expected.png:
  • tables/mozilla/bugs/bug3977-expected.checksum:
  • tables/mozilla/bugs/bug3977-expected.png:
  • tables/mozilla/bugs/bug40828-expected.checksum:
  • tables/mozilla/bugs/bug40828-expected.png:
  • tables/mozilla/bugs/bug4093-expected.checksum:
  • tables/mozilla/bugs/bug4093-expected.png:
  • tables/mozilla/bugs/bug41890-expected.checksum:
  • tables/mozilla/bugs/bug41890-expected.png:
  • tables/mozilla/bugs/bug42187-expected.checksum:
  • tables/mozilla/bugs/bug42187-expected.png:
  • tables/mozilla/bugs/bug42443-expected.checksum:
  • tables/mozilla/bugs/bug42443-expected.png:
  • tables/mozilla/bugs/bug4284-expected.checksum:
  • tables/mozilla/bugs/bug4284-expected.png:
  • tables/mozilla/bugs/bug43204-expected.checksum:
  • tables/mozilla/bugs/bug43204-expected.png:
  • tables/mozilla/bugs/bug4385-expected.checksum:
  • tables/mozilla/bugs/bug4385-expected.png:
  • tables/mozilla/bugs/bug43854-1-expected.checksum:
  • tables/mozilla/bugs/bug43854-1-expected.png:
  • tables/mozilla/bugs/bug4427-expected.checksum:
  • tables/mozilla/bugs/bug4427-expected.png:
  • tables/mozilla/bugs/bug4429-expected.checksum:
  • tables/mozilla/bugs/bug4429-expected.png:
  • tables/mozilla/bugs/bug44505-expected.checksum:
  • tables/mozilla/bugs/bug44505-expected.png:
  • tables/mozilla/bugs/bug44523-expected.checksum:
  • tables/mozilla/bugs/bug44523-expected.png:
  • tables/mozilla/bugs/bug4501-expected.checksum:
  • tables/mozilla/bugs/bug4501-expected.png:
  • tables/mozilla/bugs/bug4520-expected.checksum:
  • tables/mozilla/bugs/bug4520-expected.png:
  • tables/mozilla/bugs/bug4523-expected.checksum:
  • tables/mozilla/bugs/bug4523-expected.png:
  • tables/mozilla/bugs/bug45486-expected.checksum:
  • tables/mozilla/bugs/bug45486-expected.png:
  • tables/mozilla/bugs/bug4576-expected.checksum:
  • tables/mozilla/bugs/bug4576-expected.png:
  • tables/mozilla/bugs/bug46268-1-expected.checksum:
  • tables/mozilla/bugs/bug46268-1-expected.png:
  • tables/mozilla/bugs/bug46268-2-expected.checksum:
  • tables/mozilla/bugs/bug46268-2-expected.png:
  • tables/mozilla/bugs/bug46268-3-expected.checksum:
  • tables/mozilla/bugs/bug46268-3-expected.png:
  • tables/mozilla/bugs/bug46268-5-expected.checksum:
  • tables/mozilla/bugs/bug46268-5-expected.png:
  • tables/mozilla/bugs/bug46268-expected.checksum:
  • tables/mozilla/bugs/bug46268-expected.png:
  • tables/mozilla/bugs/bug46368-1-expected.checksum:
  • tables/mozilla/bugs/bug46368-1-expected.png:
  • tables/mozilla/bugs/bug46368-2-expected.checksum:
  • tables/mozilla/bugs/bug46368-2-expected.png:
  • tables/mozilla/bugs/bug46623-1-expected.checksum:
  • tables/mozilla/bugs/bug46623-1-expected.png:
  • tables/mozilla/bugs/bug46623-2-expected.checksum:
  • tables/mozilla/bugs/bug46623-2-expected.png:
  • tables/mozilla/bugs/bug46924-expected.checksum:
  • tables/mozilla/bugs/bug46924-expected.png:
  • tables/mozilla/bugs/bug46944-expected.checksum:
  • tables/mozilla/bugs/bug46944-expected.png:
  • tables/mozilla/bugs/bug4739-expected.checksum:
  • tables/mozilla/bugs/bug4739-expected.png:
  • tables/mozilla/bugs/bug47432-expected.checksum:
  • tables/mozilla/bugs/bug47432-expected.png:
  • tables/mozilla/bugs/bug48028-1-expected.checksum:
  • tables/mozilla/bugs/bug48028-1-expected.png:
  • tables/mozilla/bugs/bug48028-2-expected.checksum:
  • tables/mozilla/bugs/bug48028-2-expected.png:
  • tables/mozilla/bugs/bug50695-1-expected.checksum:
  • tables/mozilla/bugs/bug50695-1-expected.png:
  • tables/mozilla/bugs/bug51037-expected.checksum:
  • tables/mozilla/bugs/bug51037-expected.png:
  • tables/mozilla/bugs/bug51140-expected.checksum:
  • tables/mozilla/bugs/bug51140-expected.png:
  • tables/mozilla/bugs/bug5188-expected.checksum:
  • tables/mozilla/bugs/bug5188-expected.png:
  • tables/mozilla/bugs/bug53690-1-expected.checksum:
  • tables/mozilla/bugs/bug53690-1-expected.png:
  • tables/mozilla/bugs/bug53690-2-expected.checksum:
  • tables/mozilla/bugs/bug53690-2-expected.png:
  • tables/mozilla/bugs/bug53891-expected.checksum:
  • tables/mozilla/bugs/bug53891-expected.png:
  • tables/mozilla/bugs/bug54450-expected.checksum:
  • tables/mozilla/bugs/bug54450-expected.png:
  • tables/mozilla/bugs/bug55694-expected.checksum:
  • tables/mozilla/bugs/bug55694-expected.png:
  • tables/mozilla/bugs/bug56201-expected.checksum:
  • tables/mozilla/bugs/bug56201-expected.png:
  • tables/mozilla/bugs/bug56563-expected.checksum:
  • tables/mozilla/bugs/bug56563-expected.png:
  • tables/mozilla/bugs/bug57300-expected.checksum:
  • tables/mozilla/bugs/bug57300-expected.png:
  • tables/mozilla/bugs/bug57378-expected.checksum:
  • tables/mozilla/bugs/bug57378-expected.png:
  • tables/mozilla/bugs/bug57828-expected.checksum:
  • tables/mozilla/bugs/bug57828-expected.png:
  • tables/mozilla/bugs/bug5797-expected.checksum:
  • tables/mozilla/bugs/bug5797-expected.png:
  • tables/mozilla/bugs/bug5798-expected.checksum:
  • tables/mozilla/bugs/bug5798-expected.png:
  • tables/mozilla/bugs/bug5799-expected.checksum:
  • tables/mozilla/bugs/bug5799-expected.png:
  • tables/mozilla/bugs/bug5835-expected.checksum:
  • tables/mozilla/bugs/bug5835-expected.png:
  • tables/mozilla/bugs/bug5838-expected.checksum:
  • tables/mozilla/bugs/bug5838-expected.png:
  • tables/mozilla/bugs/bug58402-1-expected.checksum:
  • tables/mozilla/bugs/bug58402-1-expected.png:
  • tables/mozilla/bugs/bug59354-expected.checksum:
  • tables/mozilla/bugs/bug59354-expected.png:
  • tables/mozilla/bugs/bug60013-expected.checksum:
  • tables/mozilla/bugs/bug60013-expected.png:
  • tables/mozilla/bugs/bug60749-expected.checksum:
  • tables/mozilla/bugs/bug60749-expected.png:
  • tables/mozilla/bugs/bug60804-expected.checksum:
  • tables/mozilla/bugs/bug60804-expected.png:
  • tables/mozilla/bugs/bug60807-expected.checksum:
  • tables/mozilla/bugs/bug60807-expected.png:
  • tables/mozilla/bugs/bug60992-expected.checksum:
  • tables/mozilla/bugs/bug60992-expected.png:
  • tables/mozilla/bugs/bug6184-expected.checksum:
  • tables/mozilla/bugs/bug6184-expected.png:
  • tables/mozilla/bugs/bug625-expected.checksum:
  • tables/mozilla/bugs/bug625-expected.png:
  • tables/mozilla/bugs/bug625-expected.txt:
  • tables/mozilla/bugs/bug6304-expected.checksum:
  • tables/mozilla/bugs/bug6304-expected.png:
  • tables/mozilla/bugs/bug647-expected.checksum:
  • tables/mozilla/bugs/bug647-expected.png:
  • tables/mozilla/bugs/bug6674-expected.checksum:
  • tables/mozilla/bugs/bug6674-expected.png:
  • tables/mozilla/bugs/bug67915-1-expected.checksum:
  • tables/mozilla/bugs/bug67915-1-expected.png:
  • tables/mozilla/bugs/bug68998-expected.checksum:
  • tables/mozilla/bugs/bug68998-expected.png:
  • tables/mozilla/bugs/bug69187-expected.checksum:
  • tables/mozilla/bugs/bug69187-expected.png:
  • tables/mozilla/bugs/bug69382-1-expected.checksum:
  • tables/mozilla/bugs/bug69382-1-expected.png:
  • tables/mozilla/bugs/bug69382-2-expected.checksum:
  • tables/mozilla/bugs/bug69382-2-expected.png:
  • tables/mozilla/bugs/bug7112-1-expected.checksum:
  • tables/mozilla/bugs/bug7112-1-expected.png:
  • tables/mozilla/bugs/bug7112-2-expected.checksum:
  • tables/mozilla/bugs/bug7112-2-expected.png:
  • tables/mozilla/bugs/bug7121-1-expected.checksum:
  • tables/mozilla/bugs/bug7121-1-expected.png:
  • tables/mozilla/bugs/bug727-expected.checksum:
  • tables/mozilla/bugs/bug727-expected.png:
  • tables/mozilla/bugs/bug73321-expected.checksum:
  • tables/mozilla/bugs/bug73321-expected.png:
  • tables/mozilla/bugs/bug7342-expected.checksum:
  • tables/mozilla/bugs/bug7342-expected.png:
  • tables/mozilla/bugs/bug7471-expected.checksum:
  • tables/mozilla/bugs/bug7471-expected.png:
  • tables/mozilla/bugs/bug7714-expected.checksum:
  • tables/mozilla/bugs/bug7714-expected.png:
  • tables/mozilla/bugs/bug78162-expected.checksum:
  • tables/mozilla/bugs/bug78162-expected.png:
  • tables/mozilla/bugs/bug81934-expected.checksum:
  • tables/mozilla/bugs/bug81934-expected.png:
  • tables/mozilla/bugs/bug82946-1-expected.checksum:
  • tables/mozilla/bugs/bug82946-1-expected.png:
  • tables/mozilla/bugs/bug8381-expected.checksum:
  • tables/mozilla/bugs/bug8381-expected.png:
  • tables/mozilla/bugs/bug86708-expected.checksum:
  • tables/mozilla/bugs/bug86708-expected.png:
  • tables/mozilla/bugs/bug88035-1-expected.checksum:
  • tables/mozilla/bugs/bug88035-1-expected.png:
  • tables/mozilla/bugs/bug88035-2-expected.checksum:
  • tables/mozilla/bugs/bug88035-2-expected.png:
  • tables/mozilla/bugs/bug8858-expected.checksum:
  • tables/mozilla/bugs/bug8858-expected.png:
  • tables/mozilla/bugs/bug8950-expected.checksum:
  • tables/mozilla/bugs/bug8950-expected.png:
  • tables/mozilla/bugs/bug9123-1-expected.checksum:
  • tables/mozilla/bugs/bug9123-1-expected.png:
  • tables/mozilla/bugs/bug9123-2-expected.checksum:
  • tables/mozilla/bugs/bug9123-2-expected.png:
  • tables/mozilla/bugs/bug92143-expected.checksum:
  • tables/mozilla/bugs/bug92143-expected.png:
  • tables/mozilla/bugs/bug92647-2-expected.checksum:
  • tables/mozilla/bugs/bug92647-2-expected.png:
  • tables/mozilla/bugs/bug9271-1-expected.checksum:
  • tables/mozilla/bugs/bug9271-1-expected.png:
  • tables/mozilla/bugs/bug9271-2-expected.checksum:
  • tables/mozilla/bugs/bug9271-2-expected.png:
  • tables/mozilla/bugs/bug965-expected.checksum:
  • tables/mozilla/bugs/bug965-expected.png:
  • tables/mozilla/bugs/bug97138-expected.checksum:
  • tables/mozilla/bugs/bug97138-expected.png:
  • tables/mozilla/bugs/bug98196-expected.checksum:
  • tables/mozilla/bugs/bug98196-expected.png:
  • tables/mozilla/bugs/bug9879-1-expected.checksum:
  • tables/mozilla/bugs/bug9879-1-expected.png:
  • tables/mozilla/bugs/bug99923-expected.checksum:
  • tables/mozilla/bugs/bug99923-expected.png:
  • tables/mozilla/collapsing_borders/bug41262-4-expected.checksum:
  • tables/mozilla/collapsing_borders/bug41262-4-expected.png:
  • tables/mozilla/core/bloomberg-expected.checksum:
  • tables/mozilla/core/bloomberg-expected.png:
  • tables/mozilla/core/borders-expected.checksum:
  • tables/mozilla/core/borders-expected.png:
  • tables/mozilla/core/captions-expected.checksum:
  • tables/mozilla/core/captions-expected.png:
  • tables/mozilla/core/cell_heights-expected.checksum:
  • tables/mozilla/core/cell_heights-expected.png:
  • tables/mozilla/core/col_span-expected.checksum:
  • tables/mozilla/core/col_span-expected.png:
  • tables/mozilla/core/col_widths_auto_auto-expected.checksum:
  • tables/mozilla/core/col_widths_auto_auto-expected.png:
  • tables/mozilla/core/col_widths_auto_autoFix-expected.checksum:
  • tables/mozilla/core/col_widths_auto_autoFix-expected.png:
  • tables/mozilla/core/col_widths_auto_autoFixPer-expected.checksum:
  • tables/mozilla/core/col_widths_auto_autoFixPer-expected.png:
  • tables/mozilla/core/col_widths_auto_autoPer-expected.checksum:
  • tables/mozilla/core/col_widths_auto_autoPer-expected.png:
  • tables/mozilla/core/col_widths_auto_fix-expected.checksum:
  • tables/mozilla/core/col_widths_auto_fix-expected.png:
  • tables/mozilla/core/col_widths_auto_fixPer-expected.checksum:
  • tables/mozilla/core/col_widths_auto_fixPer-expected.png:
  • tables/mozilla/core/col_widths_auto_per-expected.checksum:
  • tables/mozilla/core/col_widths_auto_per-expected.png:
  • tables/mozilla/core/col_widths_fix_auto-expected.checksum:
  • tables/mozilla/core/col_widths_fix_auto-expected.png:
  • tables/mozilla/core/col_widths_fix_autoFix-expected.checksum:
  • tables/mozilla/core/col_widths_fix_autoFix-expected.png:
  • tables/mozilla/core/col_widths_fix_autoPer-expected.checksum:
  • tables/mozilla/core/col_widths_fix_autoPer-expected.png:
  • tables/mozilla/core/col_widths_fix_fix-expected.checksum:
  • tables/mozilla/core/col_widths_fix_fix-expected.png:
  • tables/mozilla/core/col_widths_fix_fixPer-expected.checksum:
  • tables/mozilla/core/col_widths_fix_fixPer-expected.png:
  • tables/mozilla/core/col_widths_fix_per-expected.checksum:
  • tables/mozilla/core/col_widths_fix_per-expected.png:
  • tables/mozilla/core/margins-expected.checksum:
  • tables/mozilla/core/margins-expected.png:
  • tables/mozilla/core/misc-expected.checksum:
  • tables/mozilla/core/misc-expected.png:
  • tables/mozilla/core/nested1-expected.checksum:
  • tables/mozilla/core/nested1-expected.png:
  • tables/mozilla/core/one_row-expected.checksum:
  • tables/mozilla/core/one_row-expected.png:
  • tables/mozilla/core/row_span-expected.checksum:
  • tables/mozilla/core/row_span-expected.png:
  • tables/mozilla/core/table_frame-expected.checksum:
  • tables/mozilla/core/table_frame-expected.png:
  • tables/mozilla/core/table_heights-expected.checksum:
  • tables/mozilla/core/table_heights-expected.png:
  • tables/mozilla/core/table_widths-expected.checksum:
  • tables/mozilla/core/table_widths-expected.png:
  • tables/mozilla/dom/appendCol2-expected.checksum:
  • tables/mozilla/dom/appendCol2-expected.png:
  • tables/mozilla/dom/appendRowsExpand1-expected.checksum:
  • tables/mozilla/dom/appendRowsExpand1-expected.png:
  • tables/mozilla/dom/appendTbodyExpand1-expected.checksum:
  • tables/mozilla/dom/appendTbodyExpand1-expected.png:
  • tables/mozilla/dom/deleteCellsRebuild1-expected.checksum:
  • tables/mozilla/dom/deleteCellsRebuild1-expected.png:
  • tables/mozilla/dom/deleteCellsShrink1-expected.checksum:
  • tables/mozilla/dom/deleteCellsShrink1-expected.png:
  • tables/mozilla/dom/deleteCellsShrink2-expected.checksum:
  • tables/mozilla/dom/deleteCellsShrink2-expected.png:
  • tables/mozilla/dom/deleteCol1-expected.checksum:
  • tables/mozilla/dom/deleteCol1-expected.png:
  • tables/mozilla/dom/deleteCol2-expected.checksum:
  • tables/mozilla/dom/deleteCol2-expected.png:
  • tables/mozilla/dom/deleteCol3-expected.checksum:
  • tables/mozilla/dom/deleteCol3-expected.png:
  • tables/mozilla/dom/deleteColGroup1-expected.checksum:
  • tables/mozilla/dom/deleteColGroup1-expected.png:
  • tables/mozilla/dom/deleteColGroup2-expected.checksum:
  • tables/mozilla/dom/deleteColGroup2-expected.png:
  • tables/mozilla/dom/deleteRowsRebuild1-expected.checksum:
  • tables/mozilla/dom/deleteRowsRebuild1-expected.png:
  • tables/mozilla/dom/deleteRowsShrink1-expected.checksum:
  • tables/mozilla/dom/deleteRowsShrink1-expected.png:
  • tables/mozilla/dom/deleteTbodyExpand1-expected.checksum:
  • tables/mozilla/dom/deleteTbodyExpand1-expected.png:
  • tables/mozilla/dom/deleteTbodyRebuild1-expected.checksum:
  • tables/mozilla/dom/deleteTbodyRebuild1-expected.png:
  • tables/mozilla/dom/insertCellsExpand1-expected.checksum:
  • tables/mozilla/dom/insertCellsExpand1-expected.png:
  • tables/mozilla/dom/insertCellsExpand2-expected.checksum:
  • tables/mozilla/dom/insertCellsExpand2-expected.png:
  • tables/mozilla/dom/insertCellsRebuild1-expected.checksum:
  • tables/mozilla/dom/insertCellsRebuild1-expected.png:
  • tables/mozilla/dom/insertCellsRebuild2-expected.checksum:
  • tables/mozilla/dom/insertCellsRebuild2-expected.png:
  • tables/mozilla/dom/insertColGroups1-expected.checksum:
  • tables/mozilla/dom/insertColGroups1-expected.png:
  • tables/mozilla/dom/insertColGroups2-expected.checksum:
  • tables/mozilla/dom/insertColGroups2-expected.png:
  • tables/mozilla/dom/insertCols1-expected.checksum:
  • tables/mozilla/dom/insertCols1-expected.png:
  • tables/mozilla/dom/insertCols2-expected.checksum:
  • tables/mozilla/dom/insertCols2-expected.png:
  • tables/mozilla/dom/insertCols3-expected.checksum:
  • tables/mozilla/dom/insertCols3-expected.png:
  • tables/mozilla/dom/insertCols4-expected.checksum:
  • tables/mozilla/dom/insertCols4-expected.png:
  • tables/mozilla/dom/insertCols5-expected.checksum:
  • tables/mozilla/dom/insertCols5-expected.png:
  • tables/mozilla/dom/insertRowsExpand1-expected.checksum:
  • tables/mozilla/dom/insertRowsExpand1-expected.png:
  • tables/mozilla/dom/insertRowsRebuild1-expected.checksum:
  • tables/mozilla/dom/insertRowsRebuild1-expected.png:
  • tables/mozilla/dom/tableDom-expected.checksum:
  • tables/mozilla/dom/tableDom-expected.png:
  • tables/mozilla/marvin/body_col-expected.checksum:
  • tables/mozilla/marvin/body_col-expected.png:
  • tables/mozilla/marvin/col_span-expected.checksum:
  • tables/mozilla/marvin/col_span-expected.png:
  • tables/mozilla/marvin/colgroup_align_center-expected.checksum:
  • tables/mozilla/marvin/colgroup_align_center-expected.png:
  • tables/mozilla/marvin/colgroup_align_justify-expected.checksum:
  • tables/mozilla/marvin/colgroup_align_justify-expected.png:
  • tables/mozilla/marvin/colgroup_align_left-expected.checksum:
  • tables/mozilla/marvin/colgroup_align_left-expected.png:
  • tables/mozilla/marvin/colgroup_align_right-expected.checksum:
  • tables/mozilla/marvin/colgroup_align_right-expected.png:
  • tables/mozilla/marvin/colgroup_span-expected.checksum:
  • tables/mozilla/marvin/colgroup_span-expected.png:
  • tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/colgroup_valign_baseline-expected.png:
  • tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/colgroup_valign_bottom-expected.png:
  • tables/mozilla/marvin/colgroup_valign_middle-expected.checksum:
  • tables/mozilla/marvin/colgroup_valign_middle-expected.png:
  • tables/mozilla/marvin/colgroup_valign_top-expected.checksum:
  • tables/mozilla/marvin/colgroup_valign_top-expected.png:
  • tables/mozilla/marvin/table_frame_border-expected.checksum:
  • tables/mozilla/marvin/table_frame_border-expected.png:
  • tables/mozilla/marvin/table_frame_box-expected.checksum:
  • tables/mozilla/marvin/table_frame_box-expected.png:
  • tables/mozilla/marvin/table_overflow_hidden_td-expected.checksum:
  • tables/mozilla/marvin/table_overflow_hidden_td-expected.png:
  • tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.checksum:
  • tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.png:
  • tables/mozilla/marvin/table_row_align_center-expected.checksum:
  • tables/mozilla/marvin/table_row_align_center-expected.png:
  • tables/mozilla/marvin/table_row_align_left-expected.checksum:
  • tables/mozilla/marvin/table_row_align_left-expected.png:
  • tables/mozilla/marvin/table_row_align_right-expected.checksum:
  • tables/mozilla/marvin/table_row_align_right-expected.png:
  • tables/mozilla/marvin/table_rules_all-expected.checksum:
  • tables/mozilla/marvin/table_rules_all-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_aqua-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_aqua-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_black-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_black-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_blue-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_blue-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_gray-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_gray-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_green-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_green-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_lime-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_lime-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_maroon-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_maroon-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_navy-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_navy-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_olive-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_olive-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_purple-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_purple-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_red-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_red-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_silver-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_silver-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_teal-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_teal-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_white-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_white-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_yellow-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_yellow-expected.png:
  • tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.checksum:
  • tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png:
  • tables/mozilla/marvin/tables_border_1-expected.checksum:
  • tables/mozilla/marvin/tables_border_1-expected.png:
  • tables/mozilla/marvin/tables_border_2-expected.checksum:
  • tables/mozilla/marvin/tables_border_2-expected.png:
  • tables/mozilla/marvin/tables_border_3-expected.checksum:
  • tables/mozilla/marvin/tables_border_3-expected.png:
  • tables/mozilla/marvin/tables_caption_align_bot-expected.checksum:
  • tables/mozilla/marvin/tables_caption_align_bot-expected.png:
  • tables/mozilla/marvin/tables_caption_align_top-expected.checksum:
  • tables/mozilla/marvin/tables_caption_align_top-expected.png:
  • tables/mozilla/marvin/tables_cellpadding-expected.checksum:
  • tables/mozilla/marvin/tables_cellpadding-expected.png:
  • tables/mozilla/marvin/tables_cellpadding_pct-expected.checksum:
  • tables/mozilla/marvin/tables_cellpadding_pct-expected.png:
  • tables/mozilla/marvin/tables_class-expected.checksum:
  • tables/mozilla/marvin/tables_class-expected.png:
  • tables/mozilla/marvin/tables_id-expected.checksum:
  • tables/mozilla/marvin/tables_id-expected.png:
  • tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum:
  • tables/mozilla/marvin/tables_row_th_nowrap-expected.png:
  • tables/mozilla/marvin/tables_style-expected.checksum:
  • tables/mozilla/marvin/tables_style-expected.png:
  • tables/mozilla/marvin/tables_td_align_center-expected.checksum:
  • tables/mozilla/marvin/tables_td_align_center-expected.png:
  • tables/mozilla/marvin/tables_td_align_left-expected.checksum:
  • tables/mozilla/marvin/tables_td_align_left-expected.png:
  • tables/mozilla/marvin/tables_td_align_right-expected.checksum:
  • tables/mozilla/marvin/tables_td_align_right-expected.png:
  • tables/mozilla/marvin/tables_td_colspan-expected.checksum:
  • tables/mozilla/marvin/tables_td_colspan-expected.png:
  • tables/mozilla/marvin/tables_td_height-expected.checksum:
  • tables/mozilla/marvin/tables_td_height-expected.png:
  • tables/mozilla/marvin/tables_td_nowrap-expected.checksum:
  • tables/mozilla/marvin/tables_td_nowrap-expected.png:
  • tables/mozilla/marvin/tables_td_rowspan-expected.checksum:
  • tables/mozilla/marvin/tables_td_rowspan-expected.png:
  • tables/mozilla/marvin/tables_td_width-expected.checksum:
  • tables/mozilla/marvin/tables_td_width-expected.png:
  • tables/mozilla/marvin/tables_th_align_center-expected.checksum:
  • tables/mozilla/marvin/tables_th_align_center-expected.png:
  • tables/mozilla/marvin/tables_th_align_left-expected.checksum:
  • tables/mozilla/marvin/tables_th_align_left-expected.png:
  • tables/mozilla/marvin/tables_th_align_right-expected.checksum:
  • tables/mozilla/marvin/tables_th_align_right-expected.png:
  • tables/mozilla/marvin/tables_th_colspan-expected.checksum:
  • tables/mozilla/marvin/tables_th_colspan-expected.png:
  • tables/mozilla/marvin/tables_th_height-expected.checksum:
  • tables/mozilla/marvin/tables_th_height-expected.png:
  • tables/mozilla/marvin/tables_th_rowspan-expected.checksum:
  • tables/mozilla/marvin/tables_th_rowspan-expected.png:
  • tables/mozilla/marvin/tables_th_width-expected.checksum:
  • tables/mozilla/marvin/tables_th_width-expected.png:
  • tables/mozilla/marvin/tbody_align_center-expected.checksum:
  • tables/mozilla/marvin/tbody_align_center-expected.png:
  • tables/mozilla/marvin/tbody_align_char-expected.checksum:
  • tables/mozilla/marvin/tbody_align_char-expected.png:
  • tables/mozilla/marvin/tbody_align_justify-expected.checksum:
  • tables/mozilla/marvin/tbody_align_justify-expected.png:
  • tables/mozilla/marvin/tbody_align_left-expected.checksum:
  • tables/mozilla/marvin/tbody_align_left-expected.png:
  • tables/mozilla/marvin/tbody_align_right-expected.checksum:
  • tables/mozilla/marvin/tbody_align_right-expected.png:
  • tables/mozilla/marvin/tbody_char-expected.checksum:
  • tables/mozilla/marvin/tbody_char-expected.png:
  • tables/mozilla/marvin/tbody_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/tbody_valign_baseline-expected.png:
  • tables/mozilla/marvin/tbody_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/tbody_valign_bottom-expected.png:
  • tables/mozilla/marvin/tbody_valign_middle-expected.checksum:
  • tables/mozilla/marvin/tbody_valign_middle-expected.png:
  • tables/mozilla/marvin/tbody_valign_top-expected.checksum:
  • tables/mozilla/marvin/tbody_valign_top-expected.png:
  • tables/mozilla/marvin/td_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/td_valign_baseline-expected.png:
  • tables/mozilla/marvin/td_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/td_valign_bottom-expected.png:
  • tables/mozilla/marvin/td_valign_middle-expected.checksum:
  • tables/mozilla/marvin/td_valign_middle-expected.png:
  • tables/mozilla/marvin/td_valign_top-expected.checksum:
  • tables/mozilla/marvin/td_valign_top-expected.png:
  • tables/mozilla/marvin/tfoot_align_center-expected.checksum:
  • tables/mozilla/marvin/tfoot_align_center-expected.png:
  • tables/mozilla/marvin/tfoot_align_char-expected.checksum:
  • tables/mozilla/marvin/tfoot_align_char-expected.png:
  • tables/mozilla/marvin/tfoot_align_justify-expected.checksum:
  • tables/mozilla/marvin/tfoot_align_justify-expected.png:
  • tables/mozilla/marvin/tfoot_align_left-expected.checksum:
  • tables/mozilla/marvin/tfoot_align_left-expected.png:
  • tables/mozilla/marvin/tfoot_align_right-expected.checksum:
  • tables/mozilla/marvin/tfoot_align_right-expected.png:
  • tables/mozilla/marvin/tfoot_char-expected.checksum:
  • tables/mozilla/marvin/tfoot_char-expected.png:
  • tables/mozilla/marvin/tfoot_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
  • tables/mozilla/marvin/tfoot_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
  • tables/mozilla/marvin/tfoot_valign_middle-expected.checksum:
  • tables/mozilla/marvin/tfoot_valign_middle-expected.png:
  • tables/mozilla/marvin/tfoot_valign_top-expected.checksum:
  • tables/mozilla/marvin/tfoot_valign_top-expected.png:
  • tables/mozilla/marvin/th_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/th_valign_baseline-expected.png:
  • tables/mozilla/marvin/th_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/th_valign_bottom-expected.png:
  • tables/mozilla/marvin/th_valign_middle-expected.checksum:
  • tables/mozilla/marvin/th_valign_middle-expected.png:
  • tables/mozilla/marvin/th_valign_top-expected.checksum:
  • tables/mozilla/marvin/th_valign_top-expected.png:
  • tables/mozilla/marvin/thead_align_center-expected.checksum:
  • tables/mozilla/marvin/thead_align_center-expected.png:
  • tables/mozilla/marvin/thead_align_char-expected.checksum:
  • tables/mozilla/marvin/thead_align_char-expected.png:
  • tables/mozilla/marvin/thead_align_justify-expected.checksum:
  • tables/mozilla/marvin/thead_align_justify-expected.png:
  • tables/mozilla/marvin/thead_align_left-expected.checksum:
  • tables/mozilla/marvin/thead_align_left-expected.png:
  • tables/mozilla/marvin/thead_align_right-expected.checksum:
  • tables/mozilla/marvin/thead_align_right-expected.png:
  • tables/mozilla/marvin/thead_char-expected.checksum:
  • tables/mozilla/marvin/thead_char-expected.png:
  • tables/mozilla/marvin/thead_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/thead_valign_baseline-expected.png:
  • tables/mozilla/marvin/thead_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/thead_valign_bottom-expected.png:
  • tables/mozilla/marvin/thead_valign_middle-expected.checksum:
  • tables/mozilla/marvin/thead_valign_middle-expected.png:
  • tables/mozilla/marvin/thead_valign_top-expected.checksum:
  • tables/mozilla/marvin/thead_valign_top-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_black-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_black-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_blue-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_blue-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_gray-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_gray-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_green-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_green-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_lime-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_lime-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_maroon-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_maroon-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_navy-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_navy-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_olive-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_olive-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_purple-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_purple-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_red-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_red-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_silver-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_silver-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_teal-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_teal-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_white-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_white-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_yellow-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_yellow-expected.png:
  • tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.checksum:
  • tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png:
  • tables/mozilla/marvin/tr_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/tr_valign_baseline-expected.png:
  • tables/mozilla/marvin/tr_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/tr_valign_bottom-expected.png:
  • tables/mozilla/marvin/tr_valign_middle-expected.checksum:
  • tables/mozilla/marvin/tr_valign_middle-expected.png:
  • tables/mozilla/marvin/tr_valign_top-expected.checksum:
  • tables/mozilla/marvin/tr_valign_top-expected.png:
  • tables/mozilla/marvin/x_caption_align_bottom-expected.checksum:
  • tables/mozilla/marvin/x_caption_align_bottom-expected.png:
  • tables/mozilla/marvin/x_caption_align_top-expected.checksum:
  • tables/mozilla/marvin/x_caption_align_top-expected.png:
  • tables/mozilla/marvin/x_caption_class-expected.checksum:
  • tables/mozilla/marvin/x_caption_class-expected.png:
  • tables/mozilla/marvin/x_caption_id-expected.checksum:
  • tables/mozilla/marvin/x_caption_id-expected.png:
  • tables/mozilla/marvin/x_caption_style-expected.checksum:
  • tables/mozilla/marvin/x_caption_style-expected.png:
  • tables/mozilla/marvin/x_col_align_center-expected.checksum:
  • tables/mozilla/marvin/x_col_align_center-expected.png:
  • tables/mozilla/marvin/x_col_align_char-expected.checksum:
  • tables/mozilla/marvin/x_col_align_char-expected.png:
  • tables/mozilla/marvin/x_col_align_justify-expected.checksum:
  • tables/mozilla/marvin/x_col_align_justify-expected.png:
  • tables/mozilla/marvin/x_col_align_left-expected.checksum:
  • tables/mozilla/marvin/x_col_align_left-expected.png:
  • tables/mozilla/marvin/x_col_align_right-expected.checksum:
  • tables/mozilla/marvin/x_col_align_right-expected.png:
  • tables/mozilla/marvin/x_col_span-expected.checksum:
  • tables/mozilla/marvin/x_col_span-expected.png:
  • tables/mozilla/marvin/x_col_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/x_col_valign_baseline-expected.png:
  • tables/mozilla/marvin/x_col_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/x_col_valign_bottom-expected.png:
  • tables/mozilla/marvin/x_col_valign_middle-expected.checksum:
  • tables/mozilla/marvin/x_col_valign_middle-expected.png:
  • tables/mozilla/marvin/x_col_valign_top-expected.checksum:
  • tables/mozilla/marvin/x_col_valign_top-expected.png:
  • tables/mozilla/marvin/x_col_width_pct-expected.checksum:
  • tables/mozilla/marvin/x_col_width_pct-expected.png:
  • tables/mozilla/marvin/x_col_width_px-expected.checksum:
  • tables/mozilla/marvin/x_col_width_px-expected.png:
  • tables/mozilla/marvin/x_col_width_rel-expected.checksum:
  • tables/mozilla/marvin/x_col_width_rel-expected.png:
  • tables/mozilla/marvin/x_colgroup_align_center-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_align_center-expected.png:
  • tables/mozilla/marvin/x_colgroup_align_char-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_align_char-expected.png:
  • tables/mozilla/marvin/x_colgroup_align_justify-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_align_justify-expected.png:
  • tables/mozilla/marvin/x_colgroup_align_left-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_align_left-expected.png:
  • tables/mozilla/marvin/x_colgroup_align_right-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_align_right-expected.png:
  • tables/mozilla/marvin/x_colgroup_span-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_span-expected.png:
  • tables/mozilla/marvin/x_colgroup_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png:
  • tables/mozilla/marvin/x_colgroup_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png:
  • tables/mozilla/marvin/x_colgroup_valign_middle-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_valign_middle-expected.png:
  • tables/mozilla/marvin/x_colgroup_valign_top-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_valign_top-expected.png:
  • tables/mozilla/marvin/x_colgroup_width_rel-expected.checksum:
  • tables/mozilla/marvin/x_colgroup_width_rel-expected.png:
  • tables/mozilla/marvin/x_table_align_center-expected.checksum:
  • tables/mozilla/marvin/x_table_align_center-expected.png:
  • tables/mozilla/marvin/x_table_align_left-expected.checksum:
  • tables/mozilla/marvin/x_table_align_left-expected.png:
  • tables/mozilla/marvin/x_table_align_right-expected.checksum:
  • tables/mozilla/marvin/x_table_align_right-expected.png:
  • tables/mozilla/marvin/x_table_bgcolor_name-expected.checksum:
  • tables/mozilla/marvin/x_table_bgcolor_name-expected.png:
  • tables/mozilla/marvin/x_table_bgcolor_rgb-expected.checksum:
  • tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png:
  • tables/mozilla/marvin/x_table_border-expected.checksum:
  • tables/mozilla/marvin/x_table_border-expected.png:
  • tables/mozilla/marvin/x_table_border_px-expected.checksum:
  • tables/mozilla/marvin/x_table_border_px-expected.png:
  • tables/mozilla/marvin/x_table_cellpadding-expected.checksum:
  • tables/mozilla/marvin/x_table_cellpadding-expected.png:
  • tables/mozilla/marvin/x_table_cellpadding_pct-expected.checksum:
  • tables/mozilla/marvin/x_table_cellpadding_pct-expected.png:
  • tables/mozilla/marvin/x_table_cellspacing-expected.checksum:
  • tables/mozilla/marvin/x_table_cellspacing-expected.png:
  • tables/mozilla/marvin/x_table_cellspacing_pct-expected.checksum:
  • tables/mozilla/marvin/x_table_cellspacing_pct-expected.png:
  • tables/mozilla/marvin/x_table_class-expected.checksum:
  • tables/mozilla/marvin/x_table_class-expected.png:
  • tables/mozilla/marvin/x_table_id-expected.checksum:
  • tables/mozilla/marvin/x_table_id-expected.png:
  • tables/mozilla/marvin/x_table_width_pct-expected.checksum:
  • tables/mozilla/marvin/x_table_width_pct-expected.png:
  • tables/mozilla/marvin/x_table_width_px-expected.checksum:
  • tables/mozilla/marvin/x_table_width_px-expected.png:
  • tables/mozilla/marvin/x_tbody_align_center-expected.checksum:
  • tables/mozilla/marvin/x_tbody_align_center-expected.png:
  • tables/mozilla/marvin/x_tbody_align_char-expected.checksum:
  • tables/mozilla/marvin/x_tbody_align_char-expected.png:
  • tables/mozilla/marvin/x_tbody_align_justify-expected.checksum:
  • tables/mozilla/marvin/x_tbody_align_justify-expected.png:
  • tables/mozilla/marvin/x_tbody_align_left-expected.checksum:
  • tables/mozilla/marvin/x_tbody_align_left-expected.png:
  • tables/mozilla/marvin/x_tbody_align_right-expected.checksum:
  • tables/mozilla/marvin/x_tbody_align_right-expected.png:
  • tables/mozilla/marvin/x_tbody_class-expected.checksum:
  • tables/mozilla/marvin/x_tbody_class-expected.png:
  • tables/mozilla/marvin/x_tbody_id-expected.checksum:
  • tables/mozilla/marvin/x_tbody_id-expected.png:
  • tables/mozilla/marvin/x_tbody_style-expected.checksum:
  • tables/mozilla/marvin/x_tbody_style-expected.png:
  • tables/mozilla/marvin/x_tbody_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/x_tbody_valign_baseline-expected.png:
  • tables/mozilla/marvin/x_tbody_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/x_tbody_valign_bottom-expected.png:
  • tables/mozilla/marvin/x_tbody_valign_middle-expected.checksum:
  • tables/mozilla/marvin/x_tbody_valign_middle-expected.png:
  • tables/mozilla/marvin/x_tbody_valign_top-expected.checksum:
  • tables/mozilla/marvin/x_tbody_valign_top-expected.png:
  • tables/mozilla/marvin/x_td_align_center-expected.checksum:
  • tables/mozilla/marvin/x_td_align_center-expected.png:
  • tables/mozilla/marvin/x_td_align_char-expected.checksum:
  • tables/mozilla/marvin/x_td_align_char-expected.png:
  • tables/mozilla/marvin/x_td_align_justify-expected.checksum:
  • tables/mozilla/marvin/x_td_align_justify-expected.png:
  • tables/mozilla/marvin/x_td_align_left-expected.checksum:
  • tables/mozilla/marvin/x_td_align_left-expected.png:
  • tables/mozilla/marvin/x_td_align_right-expected.checksum:
  • tables/mozilla/marvin/x_td_align_right-expected.png:
  • tables/mozilla/marvin/x_td_bgcolor_name-expected.checksum:
  • tables/mozilla/marvin/x_td_bgcolor_name-expected.png:
  • tables/mozilla/marvin/x_td_bgcolor_rgb-expected.checksum:
  • tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png:
  • tables/mozilla/marvin/x_td_class-expected.checksum:
  • tables/mozilla/marvin/x_td_class-expected.png:
  • tables/mozilla/marvin/x_td_colspan-expected.checksum:
  • tables/mozilla/marvin/x_td_colspan-expected.png:
  • tables/mozilla/marvin/x_td_height-expected.checksum:
  • tables/mozilla/marvin/x_td_height-expected.png:
  • tables/mozilla/marvin/x_td_id-expected.checksum:
  • tables/mozilla/marvin/x_td_id-expected.png:
  • tables/mozilla/marvin/x_td_nowrap-expected.checksum:
  • tables/mozilla/marvin/x_td_nowrap-expected.png:
  • tables/mozilla/marvin/x_td_rowspan-expected.checksum:
  • tables/mozilla/marvin/x_td_rowspan-expected.png:
  • tables/mozilla/marvin/x_td_style-expected.checksum:
  • tables/mozilla/marvin/x_td_style-expected.png:
  • tables/mozilla/marvin/x_td_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/x_td_valign_baseline-expected.png:
  • tables/mozilla/marvin/x_td_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/x_td_valign_bottom-expected.png:
  • tables/mozilla/marvin/x_td_valign_middle-expected.checksum:
  • tables/mozilla/marvin/x_td_valign_middle-expected.png:
  • tables/mozilla/marvin/x_td_valign_top-expected.checksum:
  • tables/mozilla/marvin/x_td_valign_top-expected.png:
  • tables/mozilla/marvin/x_td_width-expected.checksum:
  • tables/mozilla/marvin/x_td_width-expected.png:
  • tables/mozilla/marvin/x_tfoot_align_center-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_align_center-expected.png:
  • tables/mozilla/marvin/x_tfoot_align_char-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_align_char-expected.png:
  • tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_align_justify-expected.png:
  • tables/mozilla/marvin/x_tfoot_align_left-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_align_left-expected.png:
  • tables/mozilla/marvin/x_tfoot_align_right-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_align_right-expected.png:
  • tables/mozilla/marvin/x_tfoot_class-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_class-expected.png:
  • tables/mozilla/marvin/x_tfoot_id-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_id-expected.png:
  • tables/mozilla/marvin/x_tfoot_style-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_style-expected.png:
  • tables/mozilla/marvin/x_tfoot_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png:
  • tables/mozilla/marvin/x_tfoot_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png:
  • tables/mozilla/marvin/x_tfoot_valign_middle-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_valign_middle-expected.png:
  • tables/mozilla/marvin/x_tfoot_valign_top-expected.checksum:
  • tables/mozilla/marvin/x_tfoot_valign_top-expected.png:
  • tables/mozilla/marvin/x_th_align_center-expected.checksum:
  • tables/mozilla/marvin/x_th_align_center-expected.png:
  • tables/mozilla/marvin/x_th_align_char-expected.checksum:
  • tables/mozilla/marvin/x_th_align_char-expected.png:
  • tables/mozilla/marvin/x_th_align_justify-expected.checksum:
  • tables/mozilla/marvin/x_th_align_justify-expected.png:
  • tables/mozilla/marvin/x_th_align_left-expected.checksum:
  • tables/mozilla/marvin/x_th_align_left-expected.png:
  • tables/mozilla/marvin/x_th_align_right-expected.checksum:
  • tables/mozilla/marvin/x_th_align_right-expected.png:
  • tables/mozilla/marvin/x_th_bgcolor_name-expected.checksum:
  • tables/mozilla/marvin/x_th_bgcolor_name-expected.png:
  • tables/mozilla/marvin/x_th_bgcolor_rgb-expected.checksum:
  • tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png:
  • tables/mozilla/marvin/x_th_class-expected.checksum:
  • tables/mozilla/marvin/x_th_class-expected.png:
  • tables/mozilla/marvin/x_th_colspan-expected.checksum:
  • tables/mozilla/marvin/x_th_colspan-expected.png:
  • tables/mozilla/marvin/x_th_height-expected.checksum:
  • tables/mozilla/marvin/x_th_height-expected.png:
  • tables/mozilla/marvin/x_th_id-expected.checksum:
  • tables/mozilla/marvin/x_th_id-expected.png:
  • tables/mozilla/marvin/x_th_nowrap-expected.checksum:
  • tables/mozilla/marvin/x_th_nowrap-expected.png:
  • tables/mozilla/marvin/x_th_rowspan-expected.checksum:
  • tables/mozilla/marvin/x_th_rowspan-expected.png:
  • tables/mozilla/marvin/x_th_style-expected.checksum:
  • tables/mozilla/marvin/x_th_style-expected.png:
  • tables/mozilla/marvin/x_th_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/x_th_valign_baseline-expected.png:
  • tables/mozilla/marvin/x_th_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/x_th_valign_bottom-expected.png:
  • tables/mozilla/marvin/x_th_valign_middle-expected.checksum:
  • tables/mozilla/marvin/x_th_valign_middle-expected.png:
  • tables/mozilla/marvin/x_th_valign_top-expected.checksum:
  • tables/mozilla/marvin/x_th_valign_top-expected.png:
  • tables/mozilla/marvin/x_th_width-expected.checksum:
  • tables/mozilla/marvin/x_th_width-expected.png:
  • tables/mozilla/marvin/x_thead_align_center-expected.checksum:
  • tables/mozilla/marvin/x_thead_align_center-expected.png:
  • tables/mozilla/marvin/x_thead_align_char-expected.checksum:
  • tables/mozilla/marvin/x_thead_align_char-expected.png:
  • tables/mozilla/marvin/x_thead_align_justify-expected.checksum:
  • tables/mozilla/marvin/x_thead_align_justify-expected.png:
  • tables/mozilla/marvin/x_thead_align_left-expected.checksum:
  • tables/mozilla/marvin/x_thead_align_left-expected.png:
  • tables/mozilla/marvin/x_thead_align_right-expected.checksum:
  • tables/mozilla/marvin/x_thead_align_right-expected.png:
  • tables/mozilla/marvin/x_thead_class-expected.checksum:
  • tables/mozilla/marvin/x_thead_class-expected.png:
  • tables/mozilla/marvin/x_thead_id-expected.checksum:
  • tables/mozilla/marvin/x_thead_id-expected.png:
  • tables/mozilla/marvin/x_thead_style-expected.checksum:
  • tables/mozilla/marvin/x_thead_style-expected.png:
  • tables/mozilla/marvin/x_thead_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/x_thead_valign_baseline-expected.png:
  • tables/mozilla/marvin/x_thead_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/x_thead_valign_bottom-expected.png:
  • tables/mozilla/marvin/x_thead_valign_middle-expected.checksum:
  • tables/mozilla/marvin/x_thead_valign_middle-expected.png:
  • tables/mozilla/marvin/x_thead_valign_top-expected.checksum:
  • tables/mozilla/marvin/x_thead_valign_top-expected.png:
  • tables/mozilla/marvin/x_tr_align_center-expected.checksum:
  • tables/mozilla/marvin/x_tr_align_center-expected.png:
  • tables/mozilla/marvin/x_tr_align_char-expected.checksum:
  • tables/mozilla/marvin/x_tr_align_char-expected.png:
  • tables/mozilla/marvin/x_tr_align_justify-expected.checksum:
  • tables/mozilla/marvin/x_tr_align_justify-expected.png:
  • tables/mozilla/marvin/x_tr_align_left-expected.checksum:
  • tables/mozilla/marvin/x_tr_align_left-expected.png:
  • tables/mozilla/marvin/x_tr_align_right-expected.checksum:
  • tables/mozilla/marvin/x_tr_align_right-expected.png:
  • tables/mozilla/marvin/x_tr_bgcolor_name-expected.checksum:
  • tables/mozilla/marvin/x_tr_bgcolor_name-expected.png:
  • tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.checksum:
  • tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png:
  • tables/mozilla/marvin/x_tr_class-expected.checksum:
  • tables/mozilla/marvin/x_tr_class-expected.png:
  • tables/mozilla/marvin/x_tr_id-expected.checksum:
  • tables/mozilla/marvin/x_tr_id-expected.png:
  • tables/mozilla/marvin/x_tr_style-expected.checksum:
  • tables/mozilla/marvin/x_tr_style-expected.png:
  • tables/mozilla/marvin/x_tr_valign_baseline-expected.checksum:
  • tables/mozilla/marvin/x_tr_valign_baseline-expected.png:
  • tables/mozilla/marvin/x_tr_valign_bottom-expected.checksum:
  • tables/mozilla/marvin/x_tr_valign_bottom-expected.png:
  • tables/mozilla/marvin/x_tr_valign_middle-expected.checksum:
  • tables/mozilla/marvin/x_tr_valign_middle-expected.png:
  • tables/mozilla/marvin/x_tr_valign_top-expected.checksum:
  • tables/mozilla/marvin/x_tr_valign_top-expected.png:
  • tables/mozilla/other/body_col-expected.checksum:
  • tables/mozilla/other/body_col-expected.png:
  • tables/mozilla/other/cell_widths-expected.checksum:
  • tables/mozilla/other/cell_widths-expected.png:
  • tables/mozilla/other/cellspacing-expected.checksum:
  • tables/mozilla/other/cellspacing-expected.png:
  • tables/mozilla/other/nested2-expected.checksum:
  • tables/mozilla/other/nested2-expected.png:
  • tables/mozilla/other/nestedTables-expected.checksum:
  • tables/mozilla/other/nestedTables-expected.png:
  • tables/mozilla/other/padding-expected.checksum:
  • tables/mozilla/other/padding-expected.png:
  • tables/mozilla/other/test3-expected.checksum:
  • tables/mozilla/other/test3-expected.png:
  • tables/mozilla/other/test6-expected.checksum:
  • tables/mozilla/other/test6-expected.png:
  • tables/mozilla/other/wa_table_thtd_rowspan-expected.checksum:
  • tables/mozilla/other/wa_table_thtd_rowspan-expected.png:
  • tables/mozilla/other/wa_table_tr_align-expected.checksum:
  • tables/mozilla/other/wa_table_tr_align-expected.png:
  • tables/mozilla_expected_failures/bugs/97619-expected.checksum:
  • tables/mozilla_expected_failures/bugs/97619-expected.png:
  • tables/mozilla_expected_failures/bugs/bug1010-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug1010-expected.png:
  • tables/mozilla_expected_failures/bugs/bug101759-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug101759-expected.png:
  • tables/mozilla_expected_failures/bugs/bug10216-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug10216-expected.png:
  • tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug1055-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug106336-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug106336-expected.png:
  • tables/mozilla_expected_failures/bugs/bug1128-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug1128-expected.png:
  • tables/mozilla_expected_failures/bugs/bug11384s-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug11384s-expected.png:
  • tables/mozilla_expected_failures/bugs/bug1164-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug1164-expected.png:
  • tables/mozilla_expected_failures/bugs/bug11945-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug11945-expected.png:
  • tables/mozilla_expected_failures/bugs/bug1262-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug1262-expected.png:
  • tables/mozilla_expected_failures/bugs/bug131020-3-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug131020-3-expected.png:
  • tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug14323-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug14323-expected.png:
  • tables/mozilla_expected_failures/bugs/bug14489-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug14489-expected.png:
  • tables/mozilla_expected_failures/bugs/bug1647-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug1647-expected.png:
  • tables/mozilla_expected_failures/bugs/bug18440-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug18440-expected.png:
  • tables/mozilla_expected_failures/bugs/bug18770-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug18770-expected.png:
  • tables/mozilla_expected_failures/bugs/bug19526-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug19526-expected.png:
  • tables/mozilla_expected_failures/bugs/bug21518-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug21518-expected.png:
  • tables/mozilla_expected_failures/bugs/bug220653-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug220653-expected.png:
  • tables/mozilla_expected_failures/bugs/bug22122-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug22122-expected.png:
  • tables/mozilla_expected_failures/bugs/bug22246-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug22246-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug22246-2a-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug22246-2a-expected.png:
  • tables/mozilla_expected_failures/bugs/bug22246-3-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug22246-3-expected.png:
  • tables/mozilla_expected_failures/bugs/bug22246-3a-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug22246-3a-expected.png:
  • tables/mozilla_expected_failures/bugs/bug222846-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug222846-expected.png:
  • tables/mozilla_expected_failures/bugs/bug23847-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug23847-expected.png:
  • tables/mozilla_expected_failures/bugs/bug24880-1-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug24880-1-expected.png:
  • tables/mozilla_expected_failures/bugs/bug25707-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug25707-expected.png:
  • tables/mozilla_expected_failures/bugs/bug27993-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug27993-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug3105-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug3105-expected.png:
  • tables/mozilla_expected_failures/bugs/bug3166-8-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug3166-8-expected.png:
  • tables/mozilla_expected_failures/bugs/bug32205-1-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug32205-1-expected.png:
  • tables/mozilla_expected_failures/bugs/bug32205-4-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug32205-4-expected.png:
  • tables/mozilla_expected_failures/bugs/bug42043-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug42043-expected.png:
  • tables/mozilla_expected_failures/bugs/bug4294-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug4294-expected.png:
  • tables/mozilla_expected_failures/bugs/bug46268-4-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug46268-4-expected.png:
  • tables/mozilla_expected_failures/bugs/bug51000-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug51000-expected.png:
  • tables/mozilla_expected_failures/bugs/bug56024-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug56024-expected.png:
  • tables/mozilla_expected_failures/bugs/bug58402-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug58402-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug59252-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug59252-expected.png:
  • tables/mozilla_expected_failures/bugs/bug61042-1-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug61042-1-expected.png:
  • tables/mozilla_expected_failures/bugs/bug61042-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug61042-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug65372-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug65372-expected.png:
  • tables/mozilla_expected_failures/bugs/bug67915-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug67915-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug6933-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug6933-expected.png:
  • tables/mozilla_expected_failures/bugs/bug7113-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug7113-expected.png:
  • tables/mozilla_expected_failures/bugs/bug72393-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug72393-expected.png:
  • tables/mozilla_expected_failures/bugs/bug7243-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug7243-expected.png:
  • tables/mozilla_expected_failures/bugs/bug73629-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug73629-expected.png:
  • tables/mozilla_expected_failures/bugs/bug80762-2-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug80762-2-expected.png:
  • tables/mozilla_expected_failures/bugs/bug8499-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug8499-expected.png:
  • tables/mozilla_expected_failures/bugs/bug89315-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug89315-expected.png:
  • tables/mozilla_expected_failures/bugs/bug92647-1-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug92647-1-expected.png:
  • tables/mozilla_expected_failures/bugs/bug9879-1-expected.checksum:
  • tables/mozilla_expected_failures/bugs/bug9879-1-expected.png:
  • tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum:
  • tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png:
  • tables/mozilla_expected_failures/core/backgrounds-expected.checksum:
  • tables/mozilla_expected_failures/core/backgrounds-expected.png:
  • tables/mozilla_expected_failures/core/col_span2-expected.checksum:
  • tables/mozilla_expected_failures/core/col_span2-expected.png:
  • tables/mozilla_expected_failures/core/cols1-expected.checksum:
  • tables/mozilla_expected_failures/core/cols1-expected.png:
  • tables/mozilla_expected_failures/core/columns-expected.checksum:
  • tables/mozilla_expected_failures/core/columns-expected.png:
  • tables/mozilla_expected_failures/core/conflicts-expected.checksum:
  • tables/mozilla_expected_failures/core/conflicts-expected.png:
  • tables/mozilla_expected_failures/core/table_rules-expected.checksum:
  • tables/mozilla_expected_failures/core/table_rules-expected.png:
  • tables/mozilla_expected_failures/dom/appendCells1-expected.checksum:
  • tables/mozilla_expected_failures/dom/appendCells1-expected.png:
  • tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.checksum:
  • tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png:
  • tables/mozilla_expected_failures/dom/appendCol1-expected.checksum:
  • tables/mozilla_expected_failures/dom/appendCol1-expected.png:
  • tables/mozilla_expected_failures/dom/appendColGroup1-expected.checksum:
  • tables/mozilla_expected_failures/dom/appendColGroup1-expected.png:
  • tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.checksum:
  • tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png:
  • tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.checksum:
  • tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png:
  • tables/mozilla_expected_failures/marvin/colgroup_width_pct-expected.checksum:
  • tables/mozilla_expected_failures/marvin/colgroup_width_pct-expected.png:
  • tables/mozilla_expected_failures/marvin/colgroup_width_px-expected.checksum:
  • tables/mozilla_expected_failures/marvin/colgroup_width_px-expected.png:
  • tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_frame_above-expected.png:
  • tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_frame_below-expected.png:
  • tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png:
  • tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
  • tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
  • tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_frame_void-expected.png:
  • tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.png:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.png:
  • tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
  • tables/mozilla_expected_failures/marvin/table_rules_none-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_rules_none-expected.png:
  • tables/mozilla_expected_failures/marvin/table_rules_rows-expected.checksum:
  • tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png:
  • tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.checksum:
  • tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png:
  • tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.checksum:
  • tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png:
  • tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.checksum:
  • tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png:
  • tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
  • tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
  • tables/mozilla_expected_failures/marvin/x_colgroup_width_pct-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_colgroup_width_pct-expected.png:
  • tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png:
  • tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png:
  • tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png:
  • tables/mozilla_expected_failures/marvin/x_table_rules_groups-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_table_rules_groups-expected.png:
  • tables/mozilla_expected_failures/marvin/x_table_rules_none-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_table_rules_none-expected.png:
  • tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.checksum:
  • tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png:
  • tables/mozilla_expected_failures/other/empty_cells-expected.checksum:
  • tables/mozilla_expected_failures/other/empty_cells-expected.png:
  • tables/mozilla_expected_failures/other/test4-expected.checksum:
  • tables/mozilla_expected_failures/other/test4-expected.png:
17:39 Changeset [13911] by hyatt

Fix for bug 8270, text highlights outside of textfield when it shouldn't.

Reviewed by darin

Added fast/forms/input-double-click-selection-gap-bug.html

  • rendering/RenderBlock.cpp: (WebCore::RenderBlock::fillInlineSelectionGaps):
17:37 Changeset [13910] by hyatt

new layout test for input selection bug.

17:12 Changeset [13909] by thatcher

New tag (part 2).

17:11 Changeset [13908] by thatcher

New tag (part 2).

17:10 Changeset [13907] by thatcher

New tag (part 1).

17:09 Changeset [13906] by thatcher

New tag (part 1).

17:08 Changeset [13905] by thatcher

Versioning

17:04 Changeset [13904] by thatcher

JavaScriptCore:

Merged fix from TOT to Safari-1-3-branch

2006-02-16 Tim Omernick <timo@apple.com>

Reviewed by Geoff.

<rdar://problem/4428609> Flash Player 8.0.22 can crash Safari (and WebKit apps) with
javascript disabled (7015)

  • bindings/NP_jsobject.cpp: (_NPN_CreateNoScriptObject): Returns an NPObject which is not bound to a JavaScript object. This kind of NPObject can be given to a plugin as the "window script object" when JavaScript is disabled. The object has a custom NPClass, NPNoScriptObjectClass, which has no defined methods. Because of this, none of the NPN_* functions called by the plugin on this "no script object" will cause entry into JavaScript code. (_NPN_InvokeDefault): Make sure the NPVariant is filled before returning from this function. This never mattered before because we never reached this case, having only created NPObjects of the class NPScriptObjectClass. (_NPN_Invoke): ditto (_NPN_Evaluate): ditto (_NPN_GetProperty): ditto
  • bindings/NP_jsobject.h: Declared _NPN_CreateNoScriptObject().

WebCore:

Merged fix from TOT to Safari-1-3-branch

2006-02-16 Tim Omernick <timo@apple.com>

Reviewed by Geoff.

<rdar://problem/4428609> Flash Player 8.0.22 can crash Safari (and WebKit apps)
with javascript disabled (7015)

Added a test case, manual-tests/NPN_Invoke. This is a skeleton of a Netscape
plugin which uses NPN_Invoke() to call the window.alert() JavaScript function.


  • bridge/mac/MacFrame.mm: (WebCore::MacFrame::windowScriptNPObject): Removed the check Darin added to return 0 when JavaScript is disabled. This method cannot return 0, because plugins are not guaranteed to check for that. Removed my old fix for Radar 4428609 (7015) in favor of a better solution. Instead of creating a "dummy" JSObject to represent the window script object when JavaScript is disabled, we use the new JavaScriptCore bindings API to create a "no script" NPObject. This solution is better because it does not cause entry into any JavaScript interpreter code.
  • manual-tests/NPN_Invoke: Added.
  • manual-tests/NPN_Invoke/English.lproj: Added.
  • manual-tests/NPN_Invoke/English.lproj/Localized.r: Added.
  • manual-tests/NPN_Invoke/Info.plist: Added.
  • manual-tests/NPN_Invoke/NPN_Invoke.xcodeproj: Added.
  • manual-tests/NPN_Invoke/NPN_Invoke.xcodeproj/project.pbxproj: Added.
  • manual-tests/NPN_Invoke/main.c: Added.
  • manual-tests/NPN_Invoke/test.html: Added.
16:11 Changeset [13903] by justing

These pixel results were generated before Hyatt checked in his caret-off-by-one fix.

15:19 Changeset [13902] by hyatt

Fix for bug 8848, caret off by 1 pixel on numerous pixel tests.

Reviewed by darin

  • rendering/InlineTextBox.cpp: (WebCore::InlineTextBox::positionForOffset):
  • rendering/RenderText.cpp: (WebCore::RenderText::caretRect):
15:04 Changeset [13901] by thatcher

Reviewed by Darin.

<rdar://problem/4506601> TOT WebCore fails to build ppc64

Switch many CG calls to use CGFloat for colors and gradients

  • bindings/objc/DOMCSS.mm: (-[DOMRGBColor dealloc]): cast _internal to uintptr_t (-[DOMRGBColor finalize]): cast _internal to uintptr_t (-[DOMRGBColor red]): cast _internal to uintptr_t (-[DOMRGBColor green]): cast _internal to uintptr_t (-[DOMRGBColor blue]): cast _internal to uintptr_t (-[DOMRGBColor alpha]): cast _internal to uintptr_t (-[DOMRGBColor _color]): cast _internal to uintptr_t
  • bridge/mac/FrameMac.mm: (WebCore::regExpForLabels): use CFIndex as the type returned from indexOfObject:
  • bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge baseWritingDirectionForSelectionStart]): workaround for <rdar://problem/4509035>
  • config.h: define CGFloat if it isn't defined already
  • html/CanvasGradient.cpp: (WebCore::CanvasGradient::addColorStop): (WebCore::gradientCallback): (WebCore::CanvasGradient::platformShading):
  • html/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::setShadow): (WebCore::CanvasRenderingContext2D::applyShadow): (WebCore::CanvasRenderingContext2D::applyStrokePattern): (WebCore::CanvasRenderingContext2D::applyFillPattern):
  • html/CanvasStyle.cpp: (WebCore::CanvasStyle::applyStrokeColor): (WebCore::CanvasStyle::applyFillColor):
  • kcanvas/device/quartz/KCanvasFilterQuartz.mm: (WebCore::alphaImageForImage): (WebCore::KCanvasFEColorMatrixQuartz::getCIFilter):
  • kcanvas/device/quartz/KCanvasMaskerQuartz.mm: (WebCore::applyLuminanceToAlphaFilter): (WebCore::applyExpandAlphatoGrayscaleFilter): (WebCore::transformImageIntoGrayscaleMask):
  • kcanvas/device/quartz/KCanvasPathQuartz.mm: (WebCore::scratchContext):
  • kcanvas/device/quartz/KRenderingPaintServerGradientQuartz.mm: (WebCore::cgGradientCallback): (WebCore::CGShadingRefForLinearGradient): (WebCore::CGShadingRefForRadialGradient): (WebCore::KRenderingPaintServerGradientQuartz::updateQuartzGradientStopsCache):
  • kcanvas/device/quartz/KRenderingPaintServerQuartz.h: (WebCore::):
  • kcanvas/device/quartz/KRenderingPaintServerQuartz.mm: (WebCore::KRenderingPaintServerPatternQuartz::setup):
  • kcanvas/device/quartz/QuartzSupport.mm: (WebCore::applyStrokeStyleToContext):
  • kwq/WebCoreAXObject.mm: (CreateCGColorIfDifferent):
  • platform/Color.cpp: (WebCore::Color::getRGBA): new name, was getRgbaF. getRGBA uses float and has a double overload
  • platform/Color.h:
  • platform/mac/ClipboardMac.h: no need to define NSDragOperation
  • platform/mac/ColorMac.mm: (+[WebCoreControlTintObserver WebCore]):
  • platform/mac/GraphicsContextMac.mm: (WebCore::GraphicsContext::drawLine):
  • platform/mac/ImageMac.mm: (WebCore::Image::checkForSolidColor): (WebCore::Image::tileInRect): (WebCore::Image::scaleAndTileInRect):
  • platform/mac/TextEncodingMac.cpp: (WebCore::TextEncoding::fromUnicode):
14:18 Changeset [13900] by mjs
  • fix a comment per Geoff's suggestion
  • kjs/TreeCode.cpp: (KJS::InterpreterImp::runInterpreterLoop):
14:15 Changeset [13899] by jdevalk

Removed passwords and username for blog from SVN and included from elsewhere on server.

14:11 Changeset [13898] by mjs

Reviewed by Geoff.


  • make for..in work again
  • kjs/Opcode.h:
  • kjs/TreeCode.cpp: (KJS::isExecuteOpcode): (KJS::InterpreterImp::runInterpreterLoop):
  • kjs/grammar.y:
  • kjs/nodes.cpp: (ForInNode::ForInNode):
  • kjs/nodes.h: (KJS::VarDeclNode::VarDeclNode::VarDeclNode): (KJS::ForInInitEndNode::ForInInitEndNode): (KJS::ForInUpdateEndNode::ForInUpdateEndNode): (KJS::ForInPropSourceEndNode::ForInPropSourceEndNode): (KJS::SwapNode::SwapNode): (KJS::Rotate3Node::Rotate3Node):
  • kjs/nodes2string.cpp: (ForInNode::streamTo):
13:38 Changeset [13897] by ap

Reviewed by Darin.

  • Scripts/run-iexploder-tests: Added a --get option to save a test into a file.
13:14 Changeset [13896] by justing

LayoutTests:

Reviewed by darin


<http://bugzilla.opendarwin.org/show_bug.cgi?id=8402>
Fix interchange newline handling and avoid use of test rendering info

  • editing/pasteboard/interchange-newline-1-expected.checksum: Added.
  • editing/pasteboard/interchange-newline-1-expected.png: Added.
  • editing/pasteboard/interchange-newline-1-expected.txt: Added.
  • editing/pasteboard/interchange-newline-1.html: Added.
  • editing/pasteboard/interchange-newline-2-expected.checksum: Added.
  • editing/pasteboard/interchange-newline-2-expected.png: Added.
  • editing/pasteboard/interchange-newline-2-expected.txt: Added.
  • editing/pasteboard/interchange-newline-2.html: Added.
  • editing/pasteboard/interchange-newline-3-expected.checksum: Added.
  • editing/pasteboard/interchange-newline-3-expected.png: Added.
  • editing/pasteboard/interchange-newline-3-expected.txt: Added.
  • editing/pasteboard/interchange-newline-3.html: Added.

WebCore:

Reviewed by darin


<http://bugzilla.opendarwin.org/show_bug.cgi?id=8402>
Fix interchange newline handling and avoid use of test rendering info

  • editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::doApply): Fixed bugs in handling of interchange newlines at the end of incoming fragments. Removed the use of !fragment.isBlockFlow since it isn't correct and relies on information gathered during the test insertion, which we're trying to get rid of.
  • editing/VisiblePosition.h: (WebCore::VisiblePosition::rootEditableElement): Added for convenience.
09:29 Changeset [13895] by ap

Corrected bug number in ChangeLog.

09:27 Changeset [13894] by ap

Reviewed by Darin.

This script generates artificially mangled HTML documents, to test that the browser
doesn't crash when handling ill-formed code.


How to use:

run-iexploder-tests Open an interactive test page in Safari+ToT.
run-iexploder-tests nnnnn Open test #nnnnn.

Command line options:

-guard-malloc (-g) Use Guard Malloc.
-port=nnnn Run Apache on port nnnn (default is 8000).

To save a crashing test, you can use curl while the crash reporter dialog is on the screen
(thus, Apache is still running), e.g.:

curl -o iexploder293.html "http://127.0.0.1:8000/iexploder.cgi?lookup=1&test=293"

Additionally, there are some useful scripts in WebKitTools/iExploder/tools directory.

  • Scripts/run-iexploder-tests: Added.
  • iExploder: Added.
  • iExploder/LICENSE.txt: Added.
  • iExploder/README.txt: Added.
  • iExploder/htdocs: Added.
  • iExploder/htdocs/cssproperties.in: Added.
  • iExploder/htdocs/cssvalues.in: Added.
  • iExploder/htdocs/htmlattrs.in: Added.
  • iExploder/htdocs/htmltags.in: Added.
  • iExploder/htdocs/htmlvalues.in: Added.
  • iExploder/htdocs/iexploder.cgi: Added.
  • iExploder/htdocs/index.html: Added.
  • iExploder/tools: Added.
  • iExploder/tools/lasthit.rb: Added.
  • iExploder/tools/osx_last_crash.rb: Added.

04/16/06:

23:50 Changeset [13893] by darin

LayoutTests:

Reviewed by Darin.

  • editing/selection/extend-by-word-002-expected.checksum: Updated.
  • editing/selection/extend-by-word-002-expected.png: Updated.
  • fast/lists/markers-in-selection-expected.checksum: Added.
  • fast/lists/markers-in-selection-expected.png: Added.
  • fast/lists/markers-in-selection-expected.txt: Added.
  • fast/lists/markers-in-selection.html: Added.

WebCore:

Reviewed by Darin.

Test: fast/lists/markers-in-selection.html

  • rendering/RenderObject.h: Added selectionColorImageOverlayAlpha constant - the maximum opacity of the selection color when painted over images.
  • rendering/render_list.cpp: (WebCore::RenderListMarker::RenderListMarker): (WebCore::RenderListMarker::paint): Paint the selection highlight if selected: over the marker for image markers, under the marker for all other markers. (WebCore::RenderListMarker::setSelectionState): Added. (WebCore::RenderListMarker::selectionRect): Added. (WebCore::RenderListMarker::selectionColor): Added. Ensures that the selection color is transparent for image markers.
  • rendering/render_list.h: (WebCore::RenderListMarker::selectionState): (WebCore::RenderListMarker::canBeSelectionLeaf):
  • rendering/render_replaced.cpp (WebCore::RenderReplaced::selectionColor): Changed to use the selectionColorImageOverlayAlpha constant.
23:15 Changeset [13892] by darin

LayoutTests:

Reviewed by Darin.

  • fast/forms/button-inner-block-reuse-expected.checksum: Added.
  • fast/forms/button-inner-block-reuse-expected.png: Added.
  • fast/forms/button-inner-block-reuse-expected.txt: Added.
  • fast/forms/button-inner-block-reuse.html: Added.

WebCore:

Reviewed by Darin.

Test: fast/forms/button-inner-block-reuse.html

Buttons have a distinguished anonymous child that holds all their other
descendants. Descendants ended up in a sibling anonymous block as the
initial anonymous child was being reused to hold the initial part of an
inline that got split.

  • rendering/RenderInline.cpp: (WebCore::RenderInline::splitFlow): Check if the anonymous block's parent allows us to reuse it.
  • rendering/RenderObject.h: (WebCore::RenderObject::allowsReusingAnonymousChild): Added. Returns true.
  • rendering/render_button.h: (WebCore::RenderButton::allowsReusingAnonymousChild): Added. Returns false.
23:01 Changeset [13891] by darin

LayoutTests:

Reviewed by Justin.

  • editing/pasteboard/drop-text-without-selection-expected.checksum: Added.
  • editing/pasteboard/drop-text-without-selection-expected.png: Added.
  • editing/pasteboard/drop-text-without-selection-expected.txt: Added.
  • editing/pasteboard/drop-text-without-selection.html: Added.

WebCore:

Reviewed by Justin.

Test: editing/pasteboard/drop-text-without-selection.html

  • bridge/mac/WebCoreFrameBridge.mm: (-[WebCoreFrameBridge documentFragmentWithText:]): Changed to allow creating a fragment regardless of the selection.
22:46 Changeset [13890] by darin

WebCore:

Reviewed by Darin.

  • bridge/mac/WebCoreFrameBridge.h:
  • kwq/KWQComboBox.mm: (-[KWQPopUpButton becomeFirstResponder]): Added call to formControlIsBecomingFirstResponder:. (-[KWQPopUpButton resignFirstResponder]): Cleaned up.
  • kwq/KWQListBox.mm: Ditto. (-[KWQTableView becomeFirstResponder]): (-[KWQTableView resignFirstResponder]):
  • kwq/KWQSlider.mm: (-[KWQSlider becomeFirstResponder]): Added call to formControlIsBecomingFirstResponder: and cleaned up. (-[KWQSlider resignFirstResponder]): Cleaned up.
  • platform/mac/WebCoreTextArea.mm: (-[WebCoreTextView becomeFirstResponder]): Added call to formControlIsBecomingFirstResponder:. (-[WebCoreTextView resignFirstResponder]): Cleaned up.
  • platform/mac/WebCoreTextField.mm: (-[KWQTextFieldController setHasFocus:]): Added call to formControlIsBecomingFirstResponder:.
  • manual-tests/textarea-focus.html: Added.

WebKit:

Reviewed by Darin.

  • WebCoreSupport/WebFrameBridge.m: (-[WebFrameBridge formControlIsBecomingFirstResponder:]): Added. Calls the ancestor WebHTMLView's _formControlIsBecomingFirstResponder:
  • WebView/WebHTMLView.m: (-[WebHTMLView _updateFocusState:]): If a descendant is becoming first responder, enable focused appearance. (-[WebHTMLView _formControlIsBecomingFirstResponder:]): Added. Calls _updateFocusState, causing the frame to display with focus attributes.
  • WebView/WebHTMLViewInternal.h:
22:34 Changeset [13889] by darin

Reviewed by Adele and Justin.

Calling SelectionController::nodeWillBeRemoved from Document::notifyBeforeNodeRemoval
fixes the crash, which was happening because the call that was removing the text
node, removeChildren, does not send a "node removed" mutation event (it sends a
"subtree modified" mutation event instead). So this change alone fixes the crash.

But I also changed setInnerText to not blow away the text node each time the value
is changed, and that makes the test case behave even better -- you don't even lose
the selection; it works as it did with the NSTextField-based text field.

  • manual-tests/input-empty-on-focus.html: Added.
  • page/Frame.h: Tweaked a few comments and functions related to selection.
  • page/Frame.cpp: (WebCore::Frame::dragCaret): Made non-const.
  • dom/Document.cpp: (WebCore::Document::notifyBeforeNodeRemoval): Call nodeWillBeRemoved on the two selection controllers before removing a node from the document.
  • editing/SelectionController.h: Tweak formatting. Remove MutationListener class and m_mutationListener field.
  • editing/SelectionController.cpp: (WebCore::SelectionController::SelectionController): Remove code to set up the mutation event listener. (WebCore::SelectionController::setSelection): Remove code to maintain the mutation event listener.
  • html/HTMLElement.cpp: (WebCore::HTMLElement::setInnerHTML): In cases where the container has only a single child use replaceChild, and in cases where the HTML being inserted also has only a single child and both are text nodes use setData. It's common to use setInnerHTML to set something that's just text. (WebCore::HTMLElement::setInnerText): Same as above, but simpler since the thing we're replacing with is always text.
20:10 Changeset [13888] by darin

Reviewed by Darin.

  • css/make-css-file-arrays.pl: Remove the "-" parameter from the invocation of cpp, which means "send output to stdout". It's optional on Mac OS X, and is causing a hang on Linux.
  • rendering/RenderArena.cpp: Added a missing include of <assert.h>.
14:36 Changeset [13887] by jdevalk
  • Small textual change to my contact info;
  • Added bugreporting URL for non ADC members.
14:22 Changeset [13886] by jdevalk

Added info on CIA, trac, build bot and webkit-unassigned

02:29 Changeset [13885] by ap

Reviewed by Darin.

  • DumpRenderTree/DumpRenderTree.m: (crashHandler): Added a handler for signals that are raised on a crash. Keeping separate from the existing handler for manual interruption (SIGINT/SIGHUP/SIGTERM), because I'm trying to find a way to prevent the Crash Reporter dialog from appearing on crash, and this code may change significantly.

(main): Install crashHandler.

(setDefaultColorProfileToRGB): Properly convert CFStringRef to a char buffer
(CFStringGetCStringPtr should NEVER EVER be used!).

Note: See TracTimeline for information about the timeline view.