Timeline
Aug 19, 2005:
- 6:13 PM Changeset in webkit [10273] by
-
- 5 edits in trunk/WebKit
Reviewed by rjw
The boolean justOpenedForTargetedLink is never used to determine a course of action.
It was added long ago for findOrCreateFramedNamed, which has since been removed.
- WebView.subproj/WebDataSource.m:
- WebView.subproj/WebDataSourcePrivate.h:
- WebView.subproj/WebFrame.m: (-[WebFrame _loadDataSource:withLoadType:formState:]):
- WebView.subproj/WebFramePrivate.h:
- 4:58 PM Changeset in webkit [10272] by
-
- 13 edits2 adds in trunk
Reviewed by Darin.
Landed by David Harrison.
- fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=4475 <noscript>, <noframes>, <nolayer> and <noembed> elements should be in the DOM
Test cases added:
- layout-tests/fast/dom/no-elements-expected.txt: Added.
- layout-tests/fast/dom/no-elements.html: Added.
- khtml/html/html_elementimpl.cpp: (blockTagList): Add noembed and nolayer to the list of block tags.
- khtml/html/htmlparser.cpp: (HTMLParser::noembedCreateErrorCheck): (HTMLParser::noframesCreateErrorCheck): (HTMLParser::noscriptCreateErrorCheck): (HTMLParser::nolayerCreateErrorCheck): Make sure these elements are created, but that they won't have any children. (Except for <noscript> when JavaScript is turned off).
- layout-tests/dom/html/level2/html/HTMLElement113-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement114-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement142-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement143-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement26-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement27-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement55-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement56-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement84-expected.txt:
- layout-tests/dom/html/level2/html/HTMLElement85-expected.txt: These tests pass now.
- 4:38 PM Changeset in webkit [10271] by
-
- 2 edits1 add in trunk/WebCore
Reviewed by Maciej.
Landed by David Harrison.
Test cases added: Manual test because Darin saw no way to exercise the hit testing code from JavaScript.
manual-tests/onclick_in_noncontent.html: Added.
- fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=3662 onClick event for TD element doesn't fire unless its contents are clicked
- khtml/rendering/render_block.cpp: (khtml::RenderBlock::nodeAtPoint): Take the border extra into account when hit testing just as we do when painting the background of a table cell. OK for other renderers because they have a border extra of 0.
- 4:09 PM Changeset in webkit [10270] by
-
- 27 edits in trunk
Reviewed by Darin.
Landed by David Harrison.
Test cases added: None. Fixes existing tests.
- khtml/ecma/kjs_dom.cpp: Attribute values are writable
- khtml/xml/dom_docimpl.cpp: (DocumentImpl::createAttributeNS): Update for new AttrImpl constructor.
- khtml/xml/dom_elementimpl.cpp: (AttributeImpl::allocateImpl): Update for new AttrImpl constructor.
(AttrImpl::AttrImpl):
Initialize m_ignoreChildCount to 0. If createTextChild.
is true, create a child text node with the contents
of the attribute value.
(AttrImpl::setValue):
Remove all children and create a new text node with the contents
of the attribute value.
(AttrImpl::cloneNode):
Make sure to clone any children.
(AttrImpl::childrenChanged):
If m_ignoreChildrenChanged is 0, update the attribute value.
- khtml/xml/dom_elementimpl.h: Add childrenChanged, update AttrImpl constructor and add m_ignoreChildrenChanged to AttrImpl.
- khtml/xml/dom_nodeimpl.cpp: (DOM::NodeImpl::normalize): If an element has attributes, make sure to normalize them.
- layout-tests/dom/html/level1/core/hc_attrappendchild1-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrappendchild3-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrappendchild6-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrchildnodes1-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrchildnodes2-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrclonenode1-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrcreatetextnode-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrfirstchild-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrhaschildnodes-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrinsertbefore1-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrinsertbefore2-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrinsertbefore3-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrinsertbefore4-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrlastchild-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrnormalize-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrremovechild1-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrreplacechild1-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrreplacechild2-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrsetvalue1-expected.txt:
- layout-tests/dom/html/level1/core/hc_attrsetvalue2-expected.txt:
- layout-tests/dom/html/level1/core/hc_elementnormalize2-expected.txt: These tests pass now.
- 3:29 PM Changeset in webkit [10269] by
-
- 3 edits in trunk/WebCore
Reviewed by Darin.
Landed by David Harrison
- Fixes <http://bugzilla.opendarwin.org/show_bug.cgi?id=4523> REGRESSION assertion failure in Window::getValueProperty accessing window.konqueror
Test cases added: N/A for this code removal
Remove all traces of the konqueror property
- khtml/ecma/kjs_window.cpp: (KJS::Window::getValueProperty):
- khtml/ecma/kjs_window.h: (KJS::Window::):
- 3:07 PM Changeset in webkit [10268] by
-
- 2 edits2 adds in trunk
Reviewed by Darin
Landed by David Harrison
- Fixes <http://bugzilla.opendarwin.org/show_bug.cgi?id=4379> negative margins allowed where they should not
Test cases added:
layout-tests/fast/block/margin-collapse/104.html: Added.
layout-tests/fast/block/margin-collapse/104-expected.txt: Added.
- khtml/rendering/render_box.cpp: (RenderBox::calcHorizontalMargins):
- 3:06 PM Changeset in webkit [10267] by
-
- 4 edits in trunk
Bug #: 4459
Submitted by: Tobias Lidskog <tobiaslidskog@mac.com>
Reviewed by: eseidel
- kcanvas/KCanvasContainer.cpp: (KCanvasContainer::bbox): avoid unnecessary computation. (KCanvasContainer::collisions):
- kcanvas/device/quartz/KCanvasItemQuartz.mm: (KCanvasItemQuartz::draw): (KCanvasItemQuartz::hitsPath): use untranslated point
- svg-tests/W3C-SVG-1.1/metadata-example-01-b-expected.txt: Performance improvements to bbox and hit-testing fix. http://bugzilla.opendarwin.org/show_bug.cgi?id=4459
- 2:37 PM Changeset in webkit [10266] by
-
- 2 edits in trunk/WebCore
Bug #: 4529
Submitted by: eseidel
Reviewed by: darin
- kcanvas/device/quartz/KRenderingPaintServerGradientQuartz.mm: (cgGradientCallback): Fixes forgotten memcopy. http://bugzilla.opendarwin.org/show_bug.cgi?id=4529
- 1:24 PM Changeset in webkit [10265] by
-
- 5 edits in trunk/JavaScriptCore
Reviewed by Maciej.
- fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=4435 speed up JavaScript by tweaking the Identifier class
- kjs/identifier.h: Add a new global nullIdentifier and make Identifier::null a function that returns it.
- kjs/identifier.cpp: (KJS::Identifier::init): Initialize a global for the null identifier as well as all the other globals for special identifiers.
- kjs/ustring.h: (KJS::UString::UString): Make this empty constructor inline.
- kjs/ustring.cpp: Remove the old non-inline version.
- 10:58 AM Changeset in webkit [10264] by
-
- 3 edits in trunk/WebKit
Reviewed by John.
- English.lproj/Localizable.strings: Updated to include a new localizable string that was added a long while back. Apprently no one has run into the code using this string, because if they had, they'd have seen an assert.
- English.lproj/StringsNotToBeLocalized.txt: Updated for various recent changes.
- 10:15 AM Changeset in webkit [10263] by
-
- 2 edits in trunk/WebKitTools
Reviewed by Darin.
- Scripts/cvs-create-patch: Add an --include-unknowns option that will cause new files to be included in the patch even without "cvs add".
- 10:10 AM Changeset in webkit [10262] by
-
- 1 edit1 delete in trunk
- remove this test, I disabled it in my last checkin
- layout-tests/dom/html/level2/html/HTMLFormElement10.html: Removed.
- 10:01 AM Changeset in webkit [10261] by
-
- 22 edits1 add in trunk
Reviewed by Geoff.
- fixed <rdar://problem/4223107> frame tests in layout-tests/dom/html/level2/html have empty expected results
- layout-tests/dom/html/level2/html/selfhtml.js: wait until done before dumping the render tree
- layout-tests/dom/html/level2/html/HTMLFormElement10.html-disabled: Disable this test for now - its causing all tests after it to dump the render tree, even though dumpAsText is enabled
Update expected results for these tests:
- layout-tests/dom/html/level2/html/HTMLFrameElement01-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameElement02-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameElement03-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameElement04-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameElement05-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameElement06-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameElement07-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameElement08-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameSetElement01-expected.txt:
- layout-tests/dom/html/level2/html/HTMLFrameSetElement02-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement01-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement02-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement03-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement04-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement05-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement06-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement07-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement08-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement09-expected.txt:
- layout-tests/dom/html/level2/html/HTMLIFrameElement10-expected.txt:
- 9:27 AM Changeset in webkit [10260] by
-
- 4 edits2 adds in trunk
Reviewed by Maciej.
Landed by Darin.
- Fixes <http://bugzilla.opendarwin.org/show_bug.cgi?id=3301> innerHTML does not work for xhtml documents.
Test cases added:
layout-tests/fast/dom/set-innerHTML.xhtml: Added.
layout-tests/fast/dom/set-innerHTML-expected.txt: Added.
- khtml/html/html_elementimpl.cpp: (HTMLElementImpl::createContextualFragment): Call parseXMLDocumentFragment if we're an xml document.
- khtml/xml/xml_tokenizer.cpp: (khtml::XMLTokenizer::pushNamespaces): New function that takes an element.
(khtml::XMLTokenizer::XMLTokenizer):
New constructor that takes a DocumentFragmentImpl and fills it.
(khtml::parseXMLDocumentFragment):
New function that parses a document fragment.
(khtml::XMLNamespaceStack::pushNamespaces):
New function that takes an element and pushes namespaces based on its
xmlns attributes.
- khtml/xml/xml_tokenizer.h: Add parseXMLDocumentFragment declaration.
- 9:09 AM Changeset in webkit [10259] by
-
- 3 edits in trunk/WebKitTools
- Scripts/cvs-apply: Fix to not garble patches that are mix of cvs-style and non-cvs-generated patches. Anders has been creating these, so it's bad that the script can't handle them.
- Scripts/cvs-unapply: Ditto.
- 9:01 AM Changeset in webkit [10258] by
-
- 3 edits in trunk/JavaScriptCore
Reviewed by Maciej.
Revised and landed by Darin.
- fixed http://bugzilla.opendarwin.org/show_bug.cgi?id=4474 REGRESSION: Crash when using in-place operator on uninitialized array element
- kjs/nodes.cpp: (AssignResolveNode::evaluate): Remove unneeded "isSet" assertion. (AssignBracketNode::evaluate): Replace code that tested "isSet" with code that tests the return value of getPropertySlot.
- kjs/property_slot.h: Removed unneeded "isSet" function. Property slots are either uninitialized or set. There's no "initialized and not set" state.
Aug 18, 2005:
- 6:39 PM Changeset in webkit [10257] by
-
- 2 edits in trunk/JavaScriptCore
Checked "Inline Functions Hidden" box
- JavaScriptCore.xcodeproj/project.pbxproj:
- 6:18 PM Changeset in webkit [10256]
-
- 334 copies3 deletes in tags/Safari-416~2
This commit was manufactured by cvs2svn to create tag 'Safari-416~2'.
- 6:18 PM Changeset in webkit [10255] by
-
- 2 edits in branches/Safari-2-0-branch/JavaScriptCore
Checked "Inline Functions Hidden" box.
- JavaScriptCore.xcodeproj/project.pbxproj:
- 12:24 PM Changeset in webkit [10254] by
-
- 6 edits in branches/Safari-2-0-branch
Versioning for Safari-2-0-branch - Safari-416.2
- 10:45 AM Changeset in webkit [10253] by
-
- 2 edits in trunk/WebKitTools
- Scripts/webkitdirs.pm: Fix version checking to work on Xcode versions with "." in them -- based on complaint by someone here at Apple.
- 1:33 AM Changeset in webkit [10252] by
-
- 2 edits in trunk/WebKitTools
Bug #: none
Submitted by: eseidel
Reviewed by: mjs
- Scripts/run-webkit-tests: Made --svg imply --pixel-tests (pixel tests on-by-default for svg).
- 1:33 AM Changeset in webkit [10251] by
-
- 1 edit436 adds in trunk
Bug #: none
Submitted by: eseidel
Reviewed by: none (mjs acknowledged change)
No review needed, affects only SVGSupport.
Test cases added:
- svg-tests/W3C-SVG-1.1/Resources/animation-add-BE-09-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/animation-add-BE-09-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/animation-extRef-image1-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/animation-extRef-image1-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/animation-extRef-image2-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/animation-extRef-image2-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/animation-extRef-image3-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/animation-extRef-image3-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/coords-units-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/coords-units-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/ext-TestComic-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/ext-TestComic-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-blend-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-blend-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-color-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-color-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-composite-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-composite-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-conv-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-conv-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-diffuse-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-diffuse-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-example-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/filters-example-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/interact-dom-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/interact-dom-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/interact-order-02-b-targ-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/interact-order-02-b-targ-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/interact-order-03-b-targ-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/interact-order-03-b-targ-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/linking-uri-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/linking-uri-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/linkingCircle-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/linkingCircle-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/linkingToc-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/linkingToc-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/paths-data-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/paths-data-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/paths-data-02-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/paths-data-02-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/paths-data-03-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/paths-data-03-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/paths-data-04-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/paths-data-04-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/rects-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/rects-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/rects_b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/rects_b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/shapes-ellipse-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/shapes-ellipse-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/shapes-ellipse-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/shapes-ellipse-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/shapes-rect-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/shapes-rect-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/shapes-rect-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/shapes-rect-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/struct-frag-01-B-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/struct-frag-01-B-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-align-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-align-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-align-02-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-align-02-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-align-03-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-align-03-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-altglyph-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-altglyph-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-extTref-BE-18-targ-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-extTref-BE-18-targ-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-intro-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-intro-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-tref-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-tref-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-ws-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/text-ws-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/toc-sv-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/toc-sv-expected.png: Added.
- svg-tests/W3C-SVG-1.1/Resources/toc-svcmp-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/Resources/toc-svcmp-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-04-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-04-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-05-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-05-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-06-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-06-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-07-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-07-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-08-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-08-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-09-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-09-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-10-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-10-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-11-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-11-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-12-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-12-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-13-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-13-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-14-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-14-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-15-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-15-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-16-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-16-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-17-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-17-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-18-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-18-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-19-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-19-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-20-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-20-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-21-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-21-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-22-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-22-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-23-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-23-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-24-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-24-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-25-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-25-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-26-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-26-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-27-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-27-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-28-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-28-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-29-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/animate-elem-29-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/color-prof-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/color-prof-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/color-prop-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/color-prop-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/color-prop-02-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/color-prop-02-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/color-prop-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/color-prop-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-04-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-04-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-05-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-05-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-06-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-trans-06-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-units-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-units-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-units-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-units-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-units-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-units-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-viewattr-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-viewattr-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/coords-viewattr-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/coords-viewattr-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/extend-namespace-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/extend-namespace-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-blend-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-blend-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-color-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-color-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-composite-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-composite-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-conv-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-conv-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-diffuse-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-diffuse-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-displace-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-displace-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-example-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-example-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-gauss-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-gauss-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-image-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-image-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-light-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-light-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-morph-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-morph-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-offset-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-offset-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-specular-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-specular-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/filters-tile-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/filters-tile-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/fonts-elem-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/fonts-elem-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/fonts-elem-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/fonts-elem-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/fonts-elem-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/fonts-elem-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/fonts-elem-04-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/fonts-elem-04-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/interact-cursor-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/interact-cursor-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/interact-dom-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/interact-dom-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/interact-events-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/interact-events-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/interact-order-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/interact-order-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/interact-order-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/interact-order-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/interact-order-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/interact-order-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/interact-zoom-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/interact-zoom-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/linking-a-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/linking-a-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/linking-a-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/linking-a-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/linking-a-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/linking-a-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/linking-a-04-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/linking-a-04-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/linking-uri-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/linking-uri-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/linking-uri-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/linking-uri-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/linking-uri-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/linking-uri-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/masking-mask-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/masking-mask-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/masking-opacity-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/masking-opacity-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/masking-path-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/masking-path-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/masking-path-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/masking-path-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/masking-path-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/masking-path-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/masking-path-04-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/masking-path-04-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/masking-path-05-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/masking-path-05-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/metadata-example-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/metadata-example-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-fill-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-fill-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-fill-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-fill-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-fill-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-fill-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-fill-04-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-fill-04-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-marker-01-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-marker-01-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-marker-02-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-marker-02-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-render-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-render-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-stroke-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-stroke-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-stroke-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-stroke-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-stroke-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-stroke-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/painting-stroke-04-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/painting-stroke-04-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/paths-data-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/paths-data-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/paths-data-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/paths-data-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/paths-data-03-f-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/paths-data-03-f-expected.png: Added.
- svg-tests/W3C-SVG-1.1/paths-data-04-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/paths-data-04-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/paths-data-05-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/paths-data-05-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/paths-data-06-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/paths-data-06-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/paths-data-07-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/paths-data-07-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-04-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-04-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-05-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-05-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-06-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-06-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-07-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-07-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-08-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-09-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-09-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-10-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-10-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-11-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-11-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-12-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-grad-12-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/pservers-pattern-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/pservers-pattern-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/render-elems-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/render-elems-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/render-elems-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/render-elems-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/render-elems-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/render-elems-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/render-elems-06-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/render-elems-06-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/render-elems-07-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/render-elems-07-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/render-elems-08-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/render-elems-08-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/render-groups-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/render-groups-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/render-groups-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/render-groups-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/script-handle-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/script-handle-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/script-handle-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/script-handle-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/script-handle-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/script-handle-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/script-handle-04-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/script-handle-04-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/shapes-circle-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/shapes-circle-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/shapes-ellipse-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/shapes-ellipse-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/shapes-line-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/shapes-line-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/shapes-polygon-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/shapes-polygon-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/shapes-polyline-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/shapes-polyline-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/shapes-rect-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/shapes-rect-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-cond-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-cond-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-cond-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-cond-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-defs-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-defs-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-04-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-04-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-05-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-05-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-06-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-dom-06-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-frag-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-frag-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-group-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-group-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-group-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-group-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-image-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-image-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-image-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-image-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-image-03-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-image-03-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-image-04-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-image-04-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-image-05-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-image-05-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/struct-symbol-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/struct-symbol-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/styling-css-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/styling-css-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/styling-css-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/styling-css-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/styling-css-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/styling-css-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/styling-inherit-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/styling-inherit-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/styling-pres-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/styling-pres-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-align-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-align-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-align-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-align-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-align-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-align-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-align-04-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-align-04-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-align-05-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-align-05-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-align-06-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-align-06-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-altglyph-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-altglyph-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-deco-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-deco-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-fonts-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-fonts-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-fonts-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-fonts-02-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-intro-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-intro-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-intro-02-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-intro-02-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-intro-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-intro-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-intro-04-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-intro-04-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-path-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-path-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-spacing-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-spacing-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-text-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-text-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-text-03-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-text-03-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-tref-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-tref-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-tselect-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-tselect-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-tspan-01-b-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-tspan-01-b-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-ws-01-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-ws-01-t-expected.png: Added.
- svg-tests/W3C-SVG-1.1/text-ws-02-t-expected.checksum: Added.
- svg-tests/W3C-SVG-1.1/text-ws-02-t-expected.png: Added. Add pixel test results for SVG.