Summary: | 16% of total time loading html5 spec (PerformanceTests/Parser/html5-full-render.html) is spent under updateWidgetIfNecessary | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Eric Seidel (no email) <eric> | ||||
Component: | WebKit Misc. | Assignee: | Eric Seidel (no email) <eric> | ||||
Status: | NEW --- | ||||||
Severity: | Normal | CC: | abarth, ap, dglazkov, esprehn, kling, koivisto, laszlo.gombos, mario.bensi, simon.fraser, tonikitoo, webkit.review.bot | ||||
Priority: | P2 | ||||||
Version: | 528+ (Nightly build) | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Bug Depends on: | 45049 | ||||||
Bug Blocks: | 68944 | ||||||
Attachments: |
|
Description
Eric Seidel (no email)
2011-10-13 01:53:44 PDT
Created attachment 110814 [details]
Patch
Comment on attachment 110814 [details] Patch Attachment 110814 [details] did not pass chromium-ews (chromium-xvfb): Output: http://queues.webkit.org/results/10056165 New failing tests: svg/custom/getsvgdocument.html Comment on attachment 110814 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=110814&action=review > Source/WebCore/html/HTMLPlugInImageElement.cpp:171 > if (!needsWidgetUpdate() || useFallbackContent() || isImageType()) Do any of these require that style has been updated? > Do any of these require that style has been updated?
I asked Eric that last night and he said no.
The test failure on EWS looks related to the change. Must be one of them. I will revert the change. I guess that's why I shouldn't write changes at 2am. :) > I will revert the change.
The change never landed, as far as I can tell.
Comment on attachment 110814 [details]
Patch
This patch can't work it seems. I'm not sure what race the current code is depending on, but removing this style update will cause the load never to get kicked off for an <object> tag, and thus not correctly delay the onload event for the window, causing the getSVGDocument() test to fail.
I spent some time investigating if I could disentangle the load from the renderer to no avail. I'll come back to this, but after I finish NRWT. This is part of the general idea of finally making display: none plugins load properly. |