在 IE11 兼容模式下禁用 'X mark'

Disabiling 'X mark' in IE11 compatibility mode

我正在研究 GWT,试图禁用出现在 IE11 中的 'x mark'。 通过在 CSS 中添加以下代码。但无法禁用 'x mark'.

::-ms-clear
{
    display: none;
    width : 0;
    height: 0;
}

我还在 html 页面中尝试了以下标记。

 <meta http-equiv="X-UA-Compatible" content="IE=Edge"> 

我收到以下信息消息。 "Your *.gwt.xml module configuration prohibits the use of the current doucment rendering mode (document.compatMode=' CSS1Compat').
Modify your application's host HTML page doctype, or update your custom 'document.compatMode' configuration property settings".

请建议如何禁用此功能'x mark'

P.S: 使用兼容模式IE11浏览器,文档模式为9.

::-ms-clear 在兼容模式下不工作。