We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b0f22 commit 827c6fbCopy full SHA for 827c6fb
src/WinWebDiffLib/WebWindow.hpp
@@ -775,7 +775,8 @@ class CWebWindow
775
uint32_t count = 0;
776
if (frameTree.HasMember(L"childFrames") && frameTree[L"childFrames"].IsArray())
777
{
778
- count += frameTree[L"childFrames"].GetArray().Size();
+ for (const auto& frame : frameTree[L"childFrames"].GetArray())
779
+ count += GetResourceTreeItemCount(frame);
780
}
781
if (frameTree.HasMember(L"frame"))
782
0 commit comments