Can you define hasLayout in the IE8 Developer Toolbar?

There was a lot of talk that IE8 had to fix / remove hasLayout. It does not seem to have happened , although this is usually not a problem.

The problem is that when it appears , there seems to be no way for the IE8 developer toolbar to say that hasLayout is being applied, as it is used to do in the IE7 developer toolbar.

Does anyone have a workaround? Am I missing something?

+4
source share
1 answer

If the developer toolbar doesn't tell you this, have you tried using the console to explicitly request a property? That is, using console.log (or something like the IE Developer Toolbar equivalent). So: console.log(whateverObject.hasLayout) ? I understand that this has more to do with Javascript, but I think it might qualify as a workaround;)

+5
source

Source: https://habr.com/ru/post/1304003/


All Articles