| Index: Source/bindings/core/v8/V8GCController.cpp
|
| diff --git a/Source/bindings/core/v8/V8GCController.cpp b/Source/bindings/core/v8/V8GCController.cpp
|
| index 88990beda9ff31562f554e2c77958e7a2408028a..def7b87e395aa75fb6e8494d13e114a126ae40c9 100644
|
| --- a/Source/bindings/core/v8/V8GCController.cpp
|
| +++ b/Source/bindings/core/v8/V8GCController.cpp
|
| @@ -175,7 +175,7 @@ private:
|
| // To make each minor GC time bounded, we might need to give up
|
| // traversing at some point for a large DOM tree. That being said,
|
| // I could not observe the need even in pathological test cases.
|
| - for (Node& node : NodeTraversal::from(rootNode)) {
|
| + for (Node& node : NodeTraversal::startsAt(rootNode)) {
|
| if (node.containsWrapper()) {
|
| if (!node.isV8CollectableDuringMinorGC()) {
|
| // This node is not in the new space of V8. This indicates that
|
|
|