From a183432ba3742a540164a971daac6f8014cb0649 Mon Sep 17 00:00:00 2001 From: Andrey Belym Date: Fri, 20 Jan 2017 13:54:20 +0300 Subject: [PATCH] Revert overflow:hidden for ShadowUI root (closes #1156) --- package.json | 2 +- src/client/ui/styles.less | 2 +- test/functional/fixtures/regression/gh-1138/test.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 1a67e88bf96..a3a4e50af39 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "testcafe", "description": "Automated browser testing for the modern web development stack.", "license": "MIT", - "version": "0.12.0", + "version": "0.12.1", "author": { "name": "Developer Express Inc.", "url": "https://www.devexpress.com/" diff --git a/src/client/ui/styles.less b/src/client/ui/styles.less index 7d6cc47b37b..47b14d4885c 100644 --- a/src/client/ui/styles.less +++ b/src/client/ui/styles.less @@ -16,7 +16,7 @@ left: 0px; top: 0px; margin: 0 !important; - overflow: hidden; + overflow: visible; .layout-default(); diff --git a/test/functional/fixtures/regression/gh-1138/test.js b/test/functional/fixtures/regression/gh-1138/test.js index e457307b63f..7baea181361 100644 --- a/test/functional/fixtures/regression/gh-1138/test.js +++ b/test/functional/fixtures/regression/gh-1138/test.js @@ -1,4 +1,4 @@ -describe('[Regression](GH-1138)', function () { +describe.skip('[Regression](GH-1138)', function () { it('Test should click on target that has moved during the action', function () { return runTests('testcafe-fixtures/index.test.js', 'Click on element bound to the right bottom corner'); });