Categories
tecnologia

ie6 css crash

mi hanno fatto notare questo interessante bug di internet explorer 6

Hi,
the following HTML/JS/CSS-Code crashes IE6 immediately through a
combination of:
1. textarea in table in div
2. css:overflow-y:hidden
3. changing the scrollbar-base-color
4. moving the div

I think IE tries to move the native OS-scrollbar-widget, which is not in
place.

If point 3 is removed, the page works fine.

…continua

mi hanno fatto notare questo interessante bug di internet explorer 6

Hi,
the following HTML/JS/CSS-Code crashes IE6 immediately through a
combination of:
1. textarea in table in div
2. css:overflow-y:hidden
3. changing the scrollbar-base-color
4. moving the div

I think IE tries to move the native OS-scrollbar-widget, which is not in
place.

If point 3 is removed, the page works fine.

il codice incriminato è il seguente:

< !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>CRASH-IE</title>
    <style type="text/css">
      html, body {
      overflow-y: hidden;
      scrollbar-base-color: '#330066';
      }
      
      .crash {
      position:absolute;
      left:200px;
      top:200px;
      width:200px;
      }

    </style>
    <script type="text/javascript">
function galgenfrist() {
      window.setTimeout('crashIE();',1000);
    }

function crashIE() {
    var moveNode = document.getElementById("move");
    if(moveNode) {
        moveNode.style.top = "100px";
        moveNode.style.left = "200px";
    }
}
    </script>
  </head>
  <body onload="galgenfrist();">
    <h1>CRASH-IE</h1>
    <div id="move" class="crash">
      <table>
        <tbody>
          <tr>
            <td>
              <textarea></textarea>
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </body>
</html>

3 replies on “ie6 css crash”

Buon giorno,
Ho incontrato lo stesso problema. Lo apprezzerei se mi trasmetteste la soluzione se la trovaste.
Grazie molto

basta aggiornare IE, se non erro dal 2003 ad oggi qualche service pack è uscito :)
alternativamente si può abbandonare IE e passare a firefox

grazie molto, io poteva risolvere il problema. Apprezzo il vostro aiuto.
Grazie ancora. :)

Comments are closed.