Title: [210839] trunk/Source/WebCore
Revision
210839
Author
[email protected]
Date
2017-01-17 17:35:46 -0800 (Tue, 17 Jan 2017)

Log Message

Unreviewed, fix nits found after landing r210833.
https://bugs.webkit.org/show_bug.cgi?id=167065


* dom/ContainerNode.cpp:
(WebCore::ContainerNode::replaceAllChildren):
* dom/ContainerNode.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (210838 => 210839)


--- trunk/Source/WebCore/ChangeLog	2017-01-18 01:32:27 UTC (rev 210838)
+++ trunk/Source/WebCore/ChangeLog	2017-01-18 01:35:46 UTC (rev 210839)
@@ -1,3 +1,12 @@
+2017-01-17  Chris Dumez  <[email protected]>
+
+        Unreviewed, fix nits found after landing r210833.
+        https://bugs.webkit.org/show_bug.cgi?id=167065
+
+        * dom/ContainerNode.cpp:
+        (WebCore::ContainerNode::replaceAllChildren):
+        * dom/ContainerNode.h:
+
 2017-01-17  Andreas Kling  <[email protected]>
 
         WidthCache should be off while under memory pressure.

Modified: trunk/Source/WebCore/dom/ContainerNode.cpp (210838 => 210839)


--- trunk/Source/WebCore/dom/ContainerNode.cpp	2017-01-18 01:32:27 UTC (rev 210838)
+++ trunk/Source/WebCore/dom/ContainerNode.cpp	2017-01-18 01:35:46 UTC (rev 210839)
@@ -624,7 +624,7 @@
     Ref<ContainerNode> protectedThis(*this);
     ChildListMutationScope mutation(*this);
 
-    // If node is not null, adopt node into parent’s node document.
+    // If node is not null, adopt node into parent's node document.
     treeScope().adoptIfNeeded(node);
 
     // Remove all parent's children, in tree order.

Modified: trunk/Source/WebCore/dom/ContainerNode.h (210838 => 210839)


--- trunk/Source/WebCore/dom/ContainerNode.h	2017-01-18 01:32:27 UTC (rev 210838)
+++ trunk/Source/WebCore/dom/ContainerNode.h	2017-01-18 01:35:46 UTC (rev 210839)
@@ -128,7 +128,7 @@
 
     enum class ReplacedAllChildren { No, Yes };
     void updateTreeAfterInsertion(Node& child, ReplacedAllChildren = ReplacedAllChildren::No);
-    static ChildChange changeForChildInsertion(Node&, ChildChangeSource, ReplacedAllChildren = ReplacedAllChildren::No);
+    static ChildChange changeForChildInsertion(Node& child, ChildChangeSource, ReplacedAllChildren = ReplacedAllChildren::No);
     void rebuildSVGExtensionsElementsIfNecessary();
 
     bool isContainerNode() const = delete;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to