blendMode + rotationX/Y/Z

Hi all!
so, I happened to use blendMode )
situation: if you change the sprite blendMode and him parent has rotationY (for example), then the blend is not working (bug? ).

Here’s the code does not work (not see the overlay)
ps: GlobalUtils.createRec, draws a rectangle and returns the sprite

var sp:Sprite = new Sprite();
var sp0:Sprite = GlobalUtils.createRec(20, 20, 300, 40, 0xd70d29, 1);
sp0.blendMode = BlendMode.MULTIPLY;
sp.addChild(sp0);
sp.rotationY = 30; // if you remove this string or rotate sp0, it works
 
var sp1:Sprite = GlobalUtils.createRec(10, 10, 300, 40, 0x0000FF, 1);
 
super.addChild(sp1);
super.addChild(sp);

how to solve the problem given the constraints?
thanks!

Valentin