<?xml version="1.0"?>
<statsTarget><link>http://cia.vc/stats/author/zherczeg%40webkit.org</link><counters><counter name="forever" lastEventTime="1328872483" firstEventTime="1265700736">86</counter><counter name="lastMonth" lastEventTime="1327934214" firstEventTime="1325772669">7</counter><counter name="lastWeek" lastEventTime="1328872483" firstEventTime="1328872483">1</counter><counter name="thisMonth" lastEventTime="1328872483" firstEventTime="1328872483">1</counter></counters><metadata></metadata><recentMessages><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project></source><body><commit><revision>107369</revision><author>zherczeg@webkit.org</author><log>Heap-buffer-overflow in WebCore::CSSParser::lex
https://bugs.webkit.org/show_bug.cgi?id=77402

Reviewed by Antti Koivisto.

Source/WebCore: 

Comments should check only a single \0 terminator.

Test: fast/css/parsing-css-comment.html

* css/CSSParser.cpp:
(WebCore::CSSParser::lex):

LayoutTests: 

Test various comment types.

* fast/css/parsing-css-comment-expected.txt: Added.
* fast/css/parsing-css-comment.html: Added.   </log><diffLines>168</diffLines><files><file action="modify">trunk/LayoutTests/ChangeLog</file><file action="add">trunk/LayoutTests/fast/css/parsing-css-comment-expected.txt</file><file action="add">trunk/LayoutTests/fast/css/parsing-css-comment.html</file><file action="modify">trunk/Source/WebCore/ChangeLog</file><file action="modify">trunk/Source/WebCore/css/CSSParser.cpp</file></files></commit></body><timestamp>1328872482</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>Source</module></source><body><commit><revision>106227</revision><author>zherczeg@webkit.org</author><log>Custom written CSS lexer
https://bugs.webkit.org/show_bug.cgi?id=70107

Rubber Stamped by Csaba Osztrogonác.

Do not advance pointer at the end of input, just
keep returning with END_TOKEN.

* css/CSSParser.cpp:
(WebCore::CSSParser::lex):   </log><diffLines>57</diffLines><files><file action="modify">WebCore/ChangeLog</file><file action="modify">WebCore/css/CSSParser.cpp</file></files></commit></body><timestamp>1327934214</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project></source><body><commit><revision>106217</revision><author>zherczeg@webkit.org</author><log>Custom written CSS lexer
https://bugs.webkit.org/show_bug.cgi?id=70107

Reviewed by Antti Koivisto and Oliver Hunt.

.: 

Remove tokenizer.cpp from intermediate sources.

* wscript:

Source/JavaScriptCore: 

Add new helper functions for the custom written CSS lexer.

* wtf/ASCIICType.h:
(WTF::toASCIILowerUnchecked):
(WTF):
(WTF::isASCIIAlphaCaselessEqual):

Source/WebCore: 

This patch replaces the flex based CSS lexer to a
new, custom written one. The new code is more
than 2 times faster according to oprofile and CPU
cycle counters.

The code structure is quite straightforward: it choose
the possible token group based on the first character
and employ utility functions to parse the longer than
one character long ones. Most of the utilities are inline
to make the lexer fast.

All build systems updated. Including removing the flex support.

Existing tests cover this feature.

* CMakeLists.txt:
* DerivedSources.make:
* DerivedSources.pri:
* GNUmakefile.am:
* GNUmakefile.list.am:
* WebCore.gyp/WebCore.gyp:
* WebCore.gyp/scripts/action_maketokenizer.py: Removed.
* WebCore.gypi:
* WebCore.vcproj/WebCore.vcproj:
* WebCore.xcodeproj/project.pbxproj:
* css/CSSParser.cpp:
(WebCore::CSSParser::CSSParser):
(WebCore::CSSParser::setupParser):
(WebCore::parseSimpleLengthValue):
(WebCore::mightBeRGBA):
(WebCore::mightBeRGB):
():
(WebCore::isCSSLetter):
(WebCore):
(WebCore::isCSSEscape):
(WebCore::isURILetter):
(WebCore::isIdentifierStartAfterDash):
(WebCore::isEqualToCSSIdentifier):
(WebCore::checkAndSkipEscape):
(WebCore::skipWhiteSpace):
(WebCore::CSSParser::isIdentifierStart):
(WebCore::CSSParser::checkAndSkipString):
(WebCore::CSSParser::parseEscape):
(WebCore::CSSParser::parseIdentifier):
(WebCore::CSSParser::parseString):
(WebCore::CSSParser::parseURI):
(WebCore::CSSParser::parseUnicodeRange):
(WebCore::CSSParser::parseNthChild):
(WebCore::CSSParser::parseNthChildExtra):
(WebCore::CSSParser::detectFunctionTypeToken):
(WebCore::CSSParser::detectMediaQueryToken):
(WebCore::CSSParser::detectNumberToken):
(WebCore::CSSParser::detectDashToken):
(WebCore::CSSParser::detectAtToken):
(WebCore::CSSParser::lex):
(WebCore::CSSParser::markSelectorListStart):
(WebCore::CSSParser::markSelectorListEnd):
(WebCore::CSSParser::markRuleBodyStart):
(WebCore::CSSParser::markRuleBodyEnd):
(WebCore::CSSParser::markPropertyStart):
(WebCore::CSSParser::markPropertyEnd):
* css/CSSParser.h:
(WebCore::CSSParser::token):
(CSSParser):
():
* css/tokenizer.flex: Removed.   </log><diffLines>2294</diffLines><files><file action="modify">trunk/ChangeLog</file><file action="modify">trunk/Source/JavaScriptCore/ChangeLog</file><file action="modify">trunk/Source/JavaScriptCore/wtf/ASCIICType.h</file><file action="modify">trunk/Source/WebCore/CMakeLists.txt</file><file action="modify">trunk/Source/WebCore/ChangeLog</file><file action="modify">trunk/Source/WebCore/DerivedSources.make</file><file action="modify">trunk/Source/WebCore/DerivedSources.pri</file><file action="modify">trunk/Source/WebCore/GNUmakefile.am</file><file action="modify">trunk/Source/WebCore/GNUmakefile.list.am</file><file action="modify">trunk/Source/WebCore/WebCore.gyp/WebCore.gyp</file><file action="remove">trunk/Source/WebCore/WebCore.gyp/scripts/action_maketokenizer.py</file><file action="modify">trunk/Source/WebCore/WebCore.gypi</file><file action="modify">trunk/Source/WebCore/WebCore.vcproj/WebCore.vcproj</file><file action="modify">trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj</file><file action="modify">trunk/Source/WebCore/css/CSSParser.cpp</file><file action="modify">trunk/Source/WebCore/css/CSSParser.h</file><file action="remove">trunk/Source/WebCore/css/tokenizer.flex</file><file action="modify">trunk/wscript</file></files></commit></body><timestamp>1327920545</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project></source><body><commit><revision>104824</revision><author>zherczeg@webkit.org</author><log>Fix turbulence bug when stitch tiles enabled and rendered in parallel
https://bugs.webkit.org/show_bug.cgi?id=76042

Reviewed by Nikolas Zimmermann.

Source/WebCore: 

The width / height / wrap members are used by all threads
in the same time. The patch makes them local for all threads.

Fixes the layout fails in svg/dynamic-updates/SVGFETurbulence*

* platform/graphics/filters/FETurbulence.cpp:
(WebCore::FETurbulence::noise2D):
(WebCore::Noise::if):
(WebCore::FETurbulence::calculateTurbulenceValueForPoint):
(WebCore::FETurbulence::fillRegion):
* platform/graphics/filters/FETurbulence.h:
(WebCore::FETurbulence::PaintingData::PaintingData):
(WebCore::FETurbulence::StitchData::StitchData):

LayoutTests: 

Update mac expected files.

* platform/mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png:
* platform/mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png:
* platform/mac/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png:
* platform/mac/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png:   </log><diffLines>271</diffLines><files><file action="modify">trunk/LayoutTests/ChangeLog</file><file action="modify">trunk/LayoutTests/platform/mac/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png</file><file action="modify">trunk/LayoutTests/platform/mac/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png</file><file action="modify">trunk/LayoutTests/platform/mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-dom-stitchTiles-attr-expected.png</file><file action="modify">trunk/LayoutTests/platform/mac-snowleopard/svg/dynamic-updates/SVGFETurbulenceElement-svgdom-stitchTiles-prop-expected.png</file><file action="modify">trunk/Source/WebCore/ChangeLog</file><file action="modify">trunk/Source/WebCore/platform/graphics/filters/FETurbulence.cpp</file><file action="modify">trunk/Source/WebCore/platform/graphics/filters/FETurbulence.h</file></files></commit></body><timestamp>1326391566</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>Source</module></source><body><commit><revision>104688</revision><author>zherczeg@webkit.org</author><log>Fix more style errors in CSSParser.cpp (followup patch)
https://bugs.webkit.org/show_bug.cgi?id=76038

Reviewed by Nikolas Zimmermann.

The previous was: http://trac.webkit.org/changeset/104576
This patch mostly contains C cast to static_cast rewrites.

* css/CSSParser.cpp:
(WebCore::CSSParser::parseValue):
(WebCore::CSSParser::parseBackgroundColor):
(WebCore::ShadowParseContext::commitLength):
(WebCore::BorderImageSliceParseContext::commitNumber):
(WebCore::BorderImageSliceParseContext::commitBorderImageSlice):
(WebCore::BorderImageQuadParseContext::commitNumber):
(WebCore::BorderImageQuadParseContext::commitBorderImageQuad):
(WebCore::parseDeprecatedGradientPoint):   </log><diffLines>135</diffLines><files><file action="modify">WebCore/ChangeLog</file><file action="modify">WebCore/css/CSSParser.cpp</file></files></commit></body><timestamp>1326287992</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>Source</module></source><body><commit><revision>104576</revision><author>zherczeg@webkit.org</author><log>Fix style errors in CSSParser.cpp
https://bugs.webkit.org/show_bug.cgi?id=75854

Reviewed by Nikolas Zimmermann.

Minor style fixes.

* css/CSSParser.cpp:
(WebCore::CSSParser::parseValue):
(WebCore::CSSParser::parseShadow):
(WebCore::isBorderImageRepeatKeyword):
(WebCore::BorderImageSliceParseContext::commitBorderImageSlice):
(WebCore::BorderImageQuadParseContext::commitBorderImageQuad):
(WebCore::filterInfoForName):  </log><diffLines>183</diffLines><files><file action="modify">WebCore/ChangeLog</file><file action="modify">WebCore/css/CSSParser.cpp</file></files></commit></body><timestamp>1326222366</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>Source</module></source><body><commit><revision>104135</revision><author>zherczeg@webkit.org</author><log>Unreviewed gardening after r104134.

* wtf/Assertions.cpp:   </log><diffLines>41</diffLines><files><file action="modify">JavaScriptCore/ChangeLog</file><file action="modify">JavaScriptCore/wtf/Assertions.cpp</file></files></commit></body><timestamp>1325773736</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>Source</module></source><body><commit><revision>104134</revision><author>zherczeg@webkit.org</author><log>Unreviewed gardening after r75605.

Rubber stamped by NOBODY Csaba Osztrogonác.

* wtf/Assertions.cpp:   </log><diffLines>41</diffLines><files><file action="modify">JavaScriptCore/ChangeLog</file><file action="modify">JavaScriptCore/wtf/Assertions.cpp</file></files></commit></body><timestamp>1325772669</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>LayoutTests</module></source><body><commit><revision>102904</revision><author>zherczeg@webkit.org</author><log>Unreviewed, Qt rebaseline after r102149 and r102846.

* platform/qt/editing/pasteboard/paste-text-013-expected.txt:
* platform/qt/editing/pasteboard/paste-text-014-expected.txt:
* platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Added.   </log><diffLines>341</diffLines><files><file action="modify">ChangeLog</file><file action="modify">platform/qt/editing/pasteboard/paste-text-013-expected.txt</file><file action="modify">platform/qt/editing/pasteboard/paste-text-014-expected.txt</file><file action="add">platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt</file></files></commit></body><timestamp>1323951753</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project></source><body><commit><revision>102560</revision><author>zherczeg@webkit.org</author><log>Add new CSS nth-children parsing tests
https://bugs.webkit.org/show_bug.cgi?id=74178

Source/WebCore: 

Reviewed by Darin Adler.

Test: fast/css/parsing-css-nth-child.html

* css/CSSParser.cpp:
(WebCore::isValidNthToken): Add &quot;-n&quot; to the possible identifiers.

LayoutTests: 

The test covers several valid and invalid nth-child tokens.

Reviewed by Darin Adler.

* fast/css/parsing-css-nth-child-expected.txt: Added.
* fast/css/parsing-css-nth-child.html: Added.   </log><diffLines>225</diffLines><files><file action="modify">trunk/LayoutTests/ChangeLog</file><file action="add">trunk/LayoutTests/fast/css/parsing-css-nth-child-expected.txt</file><file action="add">trunk/LayoutTests/fast/css/parsing-css-nth-child.html</file><file action="modify">trunk/Source/WebCore/ChangeLog</file><file action="modify">trunk/Source/WebCore/css/CSSParser.cpp</file></files></commit></body><timestamp>1323686097</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>LayoutTests</module></source><body><commit><revision>99828</revision><author>zherczeg@webkit.org</author><log>Unreviewed gardening.

* fast/harness/results-expected.txt: Update after r99818.   </log><diffLines>144</diffLines><files><file action="modify">ChangeLog</file><file action="modify">fast/harness/results-expected.txt</file></files></commit></body><timestamp>1320928603</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>Source</module></source><body><commit><revision>99183</revision><author>zherczeg@webkit.org</author><log>Optimizing arithmetic composite filter to ARM-neon SIMD instruction set
https://bugs.webkit.org/show_bug.cgi?id=65522

Reviewed by Dirk Schulze.

This patch continues the work of Felician Marton.

The arithmetic operation of feComposite SVG filter can be greatly enhanced
by the ARM-NEON instruction set since we are able to calculate the pixel data
for all four RGBA channels at the same time.

It won't affect the general behavior and existing tests will cover the changes.

* CMakeLists.txt:
* GNUmakefile.list.am:
* WebCore.gypi:
* WebCore.pro:
* WebCore.vcproj/WebCore.vcproj:
* platform/graphics/filters/FEComposite.cpp:
(WebCore::computeArithmeticPixels):
(WebCore::arithmeticSoftware):
(WebCore::FEComposite::platformArithmeticSoftware):
(WebCore::FEComposite::platformApplySoftware):
* platform/graphics/filters/FEComposite.h:
* platform/graphics/filters/arm/FECompositeArithmeticNEON.cpp: Added.
* platform/graphics/filters/arm/FECompositeArithmeticNEON.h: Added.
(WebCore::FEComposite::platformArithmeticNeon):   </log><diffLines>434</diffLines><files><file action="modify">WebCore/CMakeLists.txt</file><file action="modify">WebCore/ChangeLog</file><file action="modify">WebCore/GNUmakefile.list.am</file><file action="modify">WebCore/WebCore.gypi</file><file action="modify">WebCore/WebCore.pro</file><file action="modify">WebCore/WebCore.vcproj/WebCore.vcproj</file><file action="modify">WebCore/platform/graphics/filters/FEComposite.cpp</file><file action="modify">WebCore/platform/graphics/filters/FEComposite.h</file><file action="add">WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.cpp</file><file action="add">WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.h</file></files></commit></body><timestamp>1320337023</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project></source><body><commit><revision>99086</revision><author>zherczeg@webkit.org</author><log>Match allowed CSS string characters to Firefox and Opera browsers
https://bugs.webkit.org/show_bug.cgi?id=71000

Reviewed by Darin Adler.

Source/WebCore:

Firefox and Opera accepts any character inside a string except
newline and starting quote character. This behaviour matches to
the CSS 2.1 grammar: http://www.w3.org/TR/CSS2/grammar.html
WebKit should follow them.

Test: fast/css/parsing-css-allowed-string-characters.html

* css/tokenizer.flex:

LayoutTests:

Add a new test case which contains various uncommon characters.

* fast/css/parsing-css-allowed-string-characters-expected.txt: Added.
* fast/css/parsing-css-allowed-string-characters.html: Added.  </log><diffLines>204</diffLines><files><file action="modify">trunk/LayoutTests/ChangeLog</file><file action="add">trunk/LayoutTests/fast/css/parsing-css-allowed-string-characters-expected.txt</file><file action="add">trunk/LayoutTests/fast/css/parsing-css-allowed-string-characters.html</file><file action="modify">trunk/Source/WebCore/ChangeLog</file><file action="modify">trunk/Source/WebCore/css/tokenizer.flex</file></files></commit></body><timestamp>1320268894</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>LayoutTests</module></source><body><commit><revision>98744</revision><author>zherczeg@webkit.org</author><log>Testing allowed identifier chars which are greater than 126
https://bugs.webkit.org/show_bug.cgi?id=71097

Reviewed by Darin Adler.

* fast/css/parsing-css-nonascii-expected.txt: Added.
* fast/css/parsing-css-nonascii.html: Added.  </log><diffLines>140</diffLines><files><file action="modify">ChangeLog</file><file action="add">fast/css/parsing-css-nonascii-expected.txt</file><file action="add">fast/css/parsing-css-nonascii.html</file></files></commit></body><timestamp>1319835949</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>LayoutTests</module></source><body><commit><revision>98504</revision><author>zherczeg@webkit.org</author><log>Add new CSS escape sequence parsing tests
https://bugs.webkit.org/show_bug.cgi?id=70909

Reviewed by Darin Adler.

Test escape various sequences terminated by \n \f \r and \r\n.

* fast/css/parsing-css-escapes-expected.txt: Added.
* fast/css/parsing-css-escapes.html: Added.  </log><diffLines>121</diffLines><files><file action="modify">ChangeLog</file><file action="add">fast/css/parsing-css-escapes-expected.txt</file><file action="add">fast/css/parsing-css-escapes.html</file></files></commit></body><timestamp>1319662466</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>LayoutTests</module></source><body><commit><revision>98366</revision><author>zherczeg@webkit.org</author><log>Add new uri tokenizer tests
https://bugs.webkit.org/show_bug.cgi?id=70807

Reviewed by Darin Adler.

Test more cases!

* fast/css/uri-token-parsing-expected.txt:
* fast/css/uri-token-parsing.html:  </log><diffLines>71</diffLines><files><file action="modify">ChangeLog</file><file action="modify">fast/css/uri-token-parsing-expected.txt</file><file action="modify">fast/css/uri-token-parsing.html</file></files></commit></body><timestamp>1319575611</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>Source</module></source><body><commit><revision>97970</revision><author>zherczeg@webkit.org</author><log>Improve NEON based GaussianBlur
https://bugs.webkit.org/show_bug.cgi?id=70493

Reviewed by Csaba Osztrogonác.

vmov instruction is less complex than vtbl.

* platform/graphics/filters/arm/FEGaussianBlurNEON.cpp:  </log><diffLines>88</diffLines><files><file action="modify">WebCore/ChangeLog</file><file action="modify">WebCore/platform/graphics/filters/arm/FEGaussianBlurNEON.cpp</file></files></commit></body><timestamp>1319124303</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>LayoutTests</module></source><body><commit><revision>96795</revision><author>zherczeg@webkit.org</author><log>Unreviewed, Qt rebaseline after r96789.

* platform/qt/http/tests/navigation/postredirect-basic-expected.txt:
* platform/qt/http/tests/navigation/postredirect-frames-expected.txt: Added.
* platform/qt/http/tests/navigation/postredirect-goback1-expected.txt:
* platform/qt/http/tests/navigation/postredirect-goback2-expected.txt: Added.   </log><diffLines>123</diffLines><files><file action="modify">ChangeLog</file><file action="modify">platform/qt/http/tests/navigation/postredirect-basic-expected.txt</file><file action="add">platform/qt/http/tests/navigation/postredirect-frames-expected.txt</file><file action="modify">platform/qt/http/tests/navigation/postredirect-goback1-expected.txt</file><file action="add">platform/qt/http/tests/navigation/postredirect-goback2-expected.txt</file></files></commit></body><timestamp>1317901328</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>Source</module></source><body><commit><revision>96483</revision><author>zherczeg@webkit.org</author><log>[Qt]REGRESSION(r95912): It made sputnik tests flakey
https://bugs.webkit.org/show_bug.cgi?id=68990

Reviewed by Geoffrey Garen.

Changing signed char to int in r96354 solved the
problem. However transitionCount still returns
with a signed char and should be changed to int.

* runtime/Structure.h:
(JSC::Structure::transitionCount):   </log><diffLines>38</diffLines><files><file action="modify">JavaScriptCore/ChangeLog</file><file action="modify">JavaScriptCore/runtime/Structure.h</file></files></commit></body><timestamp>1317632390</timestamp></message><message><generator><name>Python Subversion client for CIA</name><version>1.18</version></generator><source><project>WebKit</project><module>LayoutTests</module></source><body><commit><revision>95179</revision><author>zherczeg@webkit.org</author><log>[Qt] Unreviewed gardening. Adding new test expectations.

* platform/qt/fast/borders/border-image-massive-scale-expected.txt: Added.
* platform/qt/fast/borders/border-image-scaled-gradient-expected.txt: Added.
* platform/qt/fast/borders/border-image-scrambled-expected.txt: Added.
* platform/qt/fast/parser/innerhtml-with-prefixed-elements-expected.txt: Added.   </log><diffLines>94</diffLines><files><file action="modify">ChangeLog</file><file action="add">platform/qt/fast/borders/border-image-massive-scale-expected.txt</file><file action="add">platform/qt/fast/borders/border-image-scaled-gradient-expected.txt</file><file action="add">platform/qt/fast/borders/border-image-scrambled-expected.txt</file><file action="add">platform/qt/fast/parser/innerhtml-with-prefixed-elements-expected.txt</file></files></commit></body><timestamp>1316083059</timestamp></message></recentMessages></statsTarget>
