InputTextInspector secondInput = inputText("formID:second");
firstInput.assertStyle("background: yellow; border: 3px solid pink; color: brown; font-weight: lighter");
firstInput.assertWidth(160, 6); // width: 160px in strict mode results in adding 3*2 border width to the resulting element width
secondInput.assertStyle("background: beige; border: 3px solid pink; color: brown; font-weight: bold");
secondInput.assertWidth(160, 6); // width: 160px in strict mode results in adding 3*2 border width to the resulting element width
// focus elements
// first input
firstInput.fireEvent("onfocus");