[Webkit-unassigned] [Bug 71703] REGRESSION(r98542): Chromium: CSS text is rendered on page

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Nov 11 04:01:25 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=71703


cbentzel at chromium.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cbentzel at chromium.org




--- Comment #22 from cbentzel at chromium.org  2011-11-11 04:01:25 PST ---
I was able to reduce this down to two small static files on Chrome Canary 17.0.935.0 for Win7. I'll try to repro with a webkit nightly.

Any of the following changes make the problem go away:
  - Removing the <!DOCTYPE HTML>
  - Inlining the local_strings.js script
  - Moving the <script src> out of the head and into the body.
  - Having a body which doesn't include an anchor element
  - Removing the script which changes the <html>'s element dir attribute.

downloads.html
--------------

<!DOCTYPE HTML>
<html>
  <head>
    <style>
      .header {
        overflow: auto;
        clear: both;
      }
    </style>
    <script src="local_strings.js">
    </script>
  </head>
<body>
  <a href=""></a>
  <script>
    document.childNodes[1].setAttribute("dir", "ltr");
  </script>
</body>
</html>

local_strings.js
-----------------
function Foo() {
}

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list