Hi,

You mention version 35 which doesn't have the Chrome issue.
When you use a version 33 or 34 or Opera version 21 the overflow issues should 
become apparent.
On all controls I create in my own code I applied the following method to solve 
the issues:

  __hideOverflow: function (control) {
      var browserName = qx.core.Environment.get("browser.name");
      var version = parseFloat(qx.core.Environment.get("browser.version"));
      var shouldApplyBrowserHack =
            ((browserName == "chrome" && (version == 33 || version == 34)) || 
(browserName == "opera" && version == 21));
      var overflowValue = shouldApplyBrowserHack ? null : "hidden";
      if (qx.Class.hasProperty(control.constructor, "overflowX")) {
          control.setOverflowX(overflowValue);
      }
      if (qx.Class.hasProperty(control.constructor, "overflowY")) {
          control.setOverflowY(overflowValue);
      }
  },

I do not have a small example to reproduce but I will try and set one up next 
week.

Best regards,
 Jeroen

-----Original Message-----
From: Defero [mailto:[email protected]] 
Sent: vrijdag 20 juni 2014 10:34
To: [email protected]
Subject: Re: [qooxdoo-devel] Rendering issues in Chrome version 33 and 34 due 
to overflow style

I'm having problems trying to replicate the issue on the playground.
@Jeroen Smit - do you know how to replicate it?

We have a bunch of computers here and i tested on all of them. Only one has 
this problems and it has the same version of chrome (35.0.1916.153 m) as the 
rest of them.

So far, yes there is something wrong with overflow but from my test, chrome 
version has no influence here.



Gd,

Defero



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Rendering-issues-in-Chrome-version-33-and-34-due-to-overflow-style-tp7585707p7585897.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find 
What Matters Most in Your Big Data with HPCC Systems Open Source. Fast. 
Scalable. Simple. Ideal for Dirty Data.
Leverages Graph Analysis for Fast Processing & Easy Data Exploration 
http://p.sf.net/sfu/hpccsystems _______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

------------------------------------------------------------------------------
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions
Find What Matters Most in Your Big Data with HPCC Systems
Open Source. Fast. Scalable. Simple. Ideal for Dirty Data.
Leverages Graph Analysis for Fast Processing & Easy Data Exploration
http://p.sf.net/sfu/hpccsystems
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to