From 6efc3e8da833723e2d494642ff0f839789b687af Mon Sep 17 00:00:00 2001 From: Alexander Komarov Date: Mon, 10 Sep 2018 17:03:12 +0300 Subject: [PATCH] Ignore "column with width 0 should be applied" test in Safari and IE 11 (#5350) --- .../tests/DevExpress.ui.widgets.dataGrid/dataGrid.tests.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/testing/tests/DevExpress.ui.widgets.dataGrid/dataGrid.tests.js b/testing/tests/DevExpress.ui.widgets.dataGrid/dataGrid.tests.js index c079c2130256..4411041de213 100644 --- a/testing/tests/DevExpress.ui.widgets.dataGrid/dataGrid.tests.js +++ b/testing/tests/DevExpress.ui.widgets.dataGrid/dataGrid.tests.js @@ -10893,6 +10893,10 @@ QUnit.test("column with width auto should have minimum size by content", functio }); QUnit.test("column with width 0 should be applied", function(assert) { + if(browser.safari || (browser.msie && parseInt(browser.version) <= 11)) { + assert.ok(true, "IE 11 and Safari works wrong with width 0"); + return; + } var dataGrid = $("#dataGrid").dxDataGrid({ width: 200, loadingTimeout: undefined,