Currently working with GWT and attempting to remove the 'x mark' that appears in IE11. I tried using the CSS code below, but was unsuccessful in disabling the 'x mark':
::-ms-clear
{
display: none;
width : 0;
height: 0;
}
I also experimented with adding the following tag to the HTML page:
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
After implementing this change, I received an information message stating:
"Your *.gwt.xml module configuration prohibits the use of the current document rendering mode (document.compatMode='CSS1Compat'). Modify your application's host HTML page doctype, or update your custom 'document.compatMode' configuration property settings".
If you have any suggestions for how to successfully disable the 'x mark', please let me know.
P.S: Currently using IE11 browser in compatibility mode with document mode set to 9.