Title: [137227] trunk/Source/WebCore
- Revision
- 137227
- Author
- [email protected]
- Date
- 2012-12-10 17:03:08 -0800 (Mon, 10 Dec 2012)
Log Message
Not reviewed.
Build fix.
* html/HTMLPropertiesCollection.cpp:
(WebCore::nextNodeWithProperty):
* page/TouchDisambiguation.cpp:
(WebCore::boundingBoxForEventNodes):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (137226 => 137227)
--- trunk/Source/WebCore/ChangeLog 2012-12-11 01:02:42 UTC (rev 137226)
+++ trunk/Source/WebCore/ChangeLog 2012-12-11 01:03:08 UTC (rev 137227)
@@ -1,3 +1,14 @@
+2012-12-10 Antti Koivisto <[email protected]>
+
+ Not reviewed.
+
+ Build fix.
+
+ * html/HTMLPropertiesCollection.cpp:
+ (WebCore::nextNodeWithProperty):
+ * page/TouchDisambiguation.cpp:
+ (WebCore::boundingBoxForEventNodes):
+
2012-12-10 Beth Dakin <[email protected]>
https://bugs.webkit.org/show_bug.cgi?id=104602
Modified: trunk/Source/WebCore/html/HTMLPropertiesCollection.cpp (137226 => 137227)
--- trunk/Source/WebCore/html/HTMLPropertiesCollection.cpp 2012-12-11 01:02:42 UTC (rev 137226)
+++ trunk/Source/WebCore/html/HTMLPropertiesCollection.cpp 2012-12-11 01:03:08 UTC (rev 137227)
@@ -39,6 +39,7 @@
#include "HTMLElement.h"
#include "HTMLNames.h"
#include "Node.h"
+#include "NodeTraversal.h"
#include "PropertyNodeList.h"
namespace WebCore {
@@ -77,7 +78,7 @@
// to traverse the next sibling.
return previous == ownerNode || (previous->isHTMLElement() && !toHTMLElement(previous)->fastHasAttribute(itemscopeAttr))
? previous->NodeTraversal::next(rootNode)
- : previous->NodeTraversal::nextSibling(rootNode);
+ : previous->NodeTraversal::nextSkippingChildren(rootNode);
}
Element* HTMLPropertiesCollection::virtualItemAfter(unsigned& offsetInArray, Element* previousItem) const
Modified: trunk/Source/WebCore/page/TouchDisambiguation.cpp (137226 => 137227)
--- trunk/Source/WebCore/page/TouchDisambiguation.cpp 2012-12-11 01:02:42 UTC (rev 137226)
+++ trunk/Source/WebCore/page/TouchDisambiguation.cpp 2012-12-11 01:03:08 UTC (rev 137227)
@@ -56,7 +56,7 @@
while (node) {
// Skip the whole sub-tree if the node doesn't propagate events.
if (node != eventNode && node->willRespondToMouseClickEvents()) {
- node = NodeTraversal::nextSibling(node, eventNode);
+ node = NodeTraversal::nextSkippingChildren(node, eventNode);
continue;
}
result.unite(node->pixelSnappedBoundingBox());
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes