[Webkit-unassigned] [Bug 64378] REGRESSION (r88601): Screen elements don't render in Lord of Ultima
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri Aug 5 07:02:17 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=64378
--- Comment #15 from Abhishek Arya <inferno at chromium.org> 2011-08-05 07:02:17 PST ---
Repro from http://code.google.com/p/chromium/issues/detail?id=91558. I can take a look early next week, right now i am traveling back from a conference.
What steps will reproduce the problem?
1. Run this code and click on the image:
<!DOCTYPE html>
<html>
<body>
</body>
<script>
d = document.body.appendChild(document.createElement("div"))
d.style.width = "100px"
d.style.height = "100px"
d.style.backgroundImage = "url('a.png')"
d.onclick = function ()
{
document.body.removeChild (d);
d.style.backgroundImage = "url('b.png')";
document.body.appendChild(d);
}
</script>
</html>
What is the expected result?
The image change to b.png
What happens instead?
The image is still a.png
Please provide any additional information below. Attach a screenshot if
possible.
The same problem cause display corruptions in the browser game “Lord of Ultima“ and Chrome 13.
--
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