ClippingNode on Android 2.3.3

Hello, I have a problem with ClippingNode.
Using iOS and Android devices from version 4 works well, but the lower models, like Samsung Galaxy Y with version 2.3.3, the ClippingNode simply is not displayed on the screen.

I’m using this code:

    auto clipper = ClippingNode::create();
    clipper->setContentSize(p_node_scroll->getContentSize());
    p_node_scroll->addChild(clipper, 10, 555);
    
    auto stencil = DrawNode::create();
    Vec2 rectangle[4];
    rectangle[0] = Vec2(0, 0);
    rectangle[1] = Vec2(clipper->getContentSize().width, 0);
    rectangle[2] = Vec2(clipper->getContentSize().width, clipper->getContentSize().height);
    rectangle[3] = Vec2(0, clipper->getContentSize().height);
    
    Color4F white(1, 1, 1, 1);
    stencil->drawPolygon(rectangle, 4, white, 1, white);
    stencil->setContentSize(clipper->getContentSize());
    stencil->setPosition(clipper->getPosition());
    
    clipper->setStencil(stencil);
    clipper->addChild(content);

You can see the error happening in my game in the Leaderbords screen:
Link Speedy Jump

What can be going wrong?