Attachment 226467[details] did not pass style-queue:
ERROR: Source/WebCore/svg/SVGUseElement.cpp:545: Multi line control clauses should use braces. [whitespace/braces] [4]
Total errors found: 1 in 49 files
If any of these errors are false positives, please file a bug against check-webkit-style.
Comment on attachment 226467[details]
Patch
View in context: https://bugs.webkit.org/attachment.cgi?id=226467&action=review
Nice! I don't think this is overengineered at all.
Looks like there are some bad hasLocalName calls left at least in TextIterator.cpp.
> Source/WebCore/accessibility/AccessibilityRenderObject.cpp:2429
> + for (RenderElement* parent = m_renderer->parent(); parent; parent = parent->parent()) {
This could use
for (auto& ancestor : ancestorsOfType<RenderElement>(*m_renderer))
> Source/WebCore/xml/parser/XMLDocumentParser.cpp:278
> - if (contextElement && (contextElement->hasLocalName(HTMLNames::scriptTag) || contextElement->hasLocalName(HTMLNames::styleTag))) {
> + if (contextElement && (contextElement->hasLocalName(HTMLNames::scriptTag.localName()) || contextElement->hasLocalName(HTMLNames::styleTag.localName()))) {
Wonder if this is a bug or if the "hack" requires ignoring the namespace.
Created attachment 226699[details]
Archive of layout-test-results from webkit-ews-12 for mac-mountainlion-wk2
The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews.
Bot: webkit-ews-12 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Created attachment 226707[details]
Archive of layout-test-results from webkit-ews-06 for mac-mountainlion
The attached test failures were seen while running run-webkit-tests on the mac-ews.
Bot: webkit-ews-06 Port: mac-mountainlion Platform: Mac OS X 10.8.5
Created attachment 226709[details]
Archive of layout-test-results from webkit-ews-09 for mac-mountainlion-wk2
The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews.
Bot: webkit-ews-09 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Created attachment 226714[details]
Archive of layout-test-results from webkit-ews-01 for mac-mountainlion
The attached test failures were seen while running run-webkit-tests on the mac-ews.
Bot: webkit-ews-01 Port: mac-mountainlion Platform: Mac OS X 10.8.5
Created attachment 226715[details]
Archive of layout-test-results from webkit-ews-15 for mac-mountainlion-wk2
The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews.
Bot: webkit-ews-15 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Created attachment 226719[details]
Archive of layout-test-results from webkit-ews-02 for mac-mountainlion
The attached test failures were seen while running run-webkit-tests on the mac-ews.
Bot: webkit-ews-02 Port: mac-mountainlion Platform: Mac OS X 10.8.5
Created attachment 226720[details]
Archive of layout-test-results from webkit-ews-14 for mac-mountainlion-wk2
The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews.
Bot: webkit-ews-14 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Created attachment 226725[details]
Archive of layout-test-results from webkit-ews-03 for mac-mountainlion
The attached test failures were seen while running run-webkit-tests on the mac-ews.
Bot: webkit-ews-03 Port: mac-mountainlion Platform: Mac OS X 10.8.5
OK, I’ve made fixes for the Windows and GTK compilation failures in my local tree. I am not sure those are the same changes that Ossy and Frédéric made -- I didn’t see their patches yet. Now I am looking into the test failures.
2014-03-11 19:57 PDT, Darin Adler
2014-03-14 05:03 PDT, Csaba Osztrogonác
2014-03-14 06:25 PDT, Build Bot
2014-03-14 06:40 PDT, Frédéric Wang (:fredw)
2014-03-14 07:01 PDT, Build Bot
2014-03-14 07:13 PDT, Build Bot
2014-03-14 07:51 PDT, Build Bot
2014-03-14 07:58 PDT, Build Bot
2014-03-14 08:38 PDT, Build Bot
2014-03-14 08:49 PDT, Build Bot
2014-03-14 09:47 PDT, Build Bot
2014-03-15 18:26 PDT, Darin Adler
2014-03-15 23:01 PDT, Darin Adler
2014-03-16 08:36 PDT, Darin Adler