Bug 63373 - REGRESSION (r77740): Shadow DOM pseudo elements aren't matching when combined with descendant selectors
Summary: REGRESSION (r77740): Shadow DOM pseudo elements aren't matching when combined...
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Dimitri Glazkov (Google)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-06-24 19:30 PDT by Dimitri Glazkov (Google)
Modified: 2011-06-25 10:04 PDT (History)
6 users (show)

See Also:


Attachments
Patch (8.62 KB, patch)
2011-06-24 20:14 PDT, Dimitri Glazkov (Google)
darin: review+
webkit.review.bot: commit-queue-
Details | Formatted Diff | Diff
Archive of layout-test-results from ec2-cr-linux-01 (1.32 MB, application/zip)
2011-06-24 20:56 PDT, WebKit Review Bot
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Dimitri Glazkov (Google) 2011-06-24 19:30:44 PDT
Originally reported here: http://crbug.com/86595

Turns out, when building a parent stack frame in CSSStyleSelector, we inadvertently empty out the identifier list for all shadow DOM elements. The fix is to employ shadow DOM-aware traversal, rather than using parentElement.
Comment 1 Dimitri Glazkov (Google) 2011-06-24 20:14:12 PDT
Created attachment 98572 [details]
Patch
Comment 2 WebKit Review Bot 2011-06-24 20:56:31 PDT
Comment on attachment 98572 [details]
Patch

Attachment 98572 [details] did not pass chromium-ews (chromium-xvfb):
Output: http://queues.webkit.org/results/8936642

New failing tests:
fast/css/pseudo-cache-stale.html
Comment 3 WebKit Review Bot 2011-06-24 20:56:36 PDT
Created attachment 98574 [details]
Archive of layout-test-results from ec2-cr-linux-01

The attached test failures were seen while running run-webkit-tests on the chromium-ews.
Bot: ec2-cr-linux-01  Port: Chromium  Platform: Linux-2.6.35-28-virtual-x86_64-with-Ubuntu-10.10-maverick
Comment 4 Dimitri Glazkov (Google) 2011-06-25 10:04:30 PDT
Comment on attachment 98572 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=98572&action=review

> Source/WebCore/css/CSSStyleSelector.cpp:669
> +    } else if (!parent->parentOrHostNode()) {

This should've been parentOrHostElement. Fixed on landing.
Comment 5 Dimitri Glazkov (Google) 2011-06-25 10:04:48 PDT
Committed r89742: <http://trac.webkit.org/changeset/89742>