[Webkit-unassigned] [Bug 27296] [Qt] Some changes to webpage by javascript triggered by signals don't take effect immediately

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 16 08:54:33 PDT 2009


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


Ori Avtalion (salty-horse) <ori at avtalion.name> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|[Qt] Style changes to       |[Qt] Some changes to
                   |webpage by javascript       |webpage by javascript
                   |triggered by signals don't  |triggered by signals don't
                   |take effect immediately     |take effect immediately




--- Comment #2 from Ori Avtalion (salty-horse) <ori at avtalion.name>  2009-07-16 08:54:33 PDT ---
On further examination, this is not isolated to style changes.

For example, having the handler add several <p> elements exhibits the same
problem:

var items= [1,2,3];
for (i = 0; i < items.length; i++) {
    p = document.createElement('p');
    t = document.createTextNode(String(i));
    p.appendChild(t);
    document.getElementsByTagName('body')[0].appendChild(p);
}

-- 
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