problem
Mobileweb does not respect matrix properties ([MatrixCreationDict](
http://docs.appcelerator.com/titanium/latest/#!/api/MatrixCreationDict)) set in the constructor of [Ti.UI.create2DMatrix()](
http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.UI.2DMatrix), despite the documentation at docs.appcelerator.com indicating that it should. It works on Android and iOS.
expected
Mobileweb, like Android and iOS, should appropriately apply a [MatrixCreationDict](
http://docs.appcelerator.com/titanium/latest/#!/api/MatrixCreationDict) passed into the Ti.UI.create2DMatrix() function.
test case
The label will be tilted 45 degrees on Android and iOS. It will not be on Mobileweb.
var win = Ti.UI.createWindow({
backgroundColor: '#fff',
modal: false,
exitOnClose: true
});
var label = Ti.UI.createLabel({
text: 'just a test label',
// Ti.UI.create2DMatrix().rotate(45) would work on all platforms
transform: Ti.UI.create2DMatrix({rotate:45})
});
win.add(label);
win.open();
Resolving as "Won't Fix" as MobileWeb has been deprecated.
Closing as will not fix.