Bug 125280

Summary: Import the layout test style-sharing-type-and-readonly.html from blink
Product: WebKit Reporter: Ryosuke Niwa <rniwa>
Component: CSSAssignee: Benjamin Poulain <benjamin>
Status: RESOLVED FIXED    
Severity: Normal CC: benjamin, kling, koivisto, simon.fraser, webkit-bug-importer
Priority: P2 Keywords: BlinkMergeCandidate, InRadar
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch svillar: review+

Description Ryosuke Niwa 2013-12-04 23:09:49 PST
Merge https://chromium.googlesource.com/chromium/blink/+/b857a7d6c5813dc5d9f10c7eece0ac3d58afeafe
or come up with a better fix

RuleSet has a special case in isCommonAttributeSelectorAttribute for
allowing style sharing on elements that match "type" or "readonly"
attribute selectors as long as they have the same value. This was
added long ago in r96393 and worked based on the assumption that
there was logic in canShareStyleWithElement that actually checked
the value of the type and readonly attributes on the style sharing
candidates.

Later in r123730 the type attribute handling was regressed when it
was moved to only check the value for <input>. The readonly attribute
was later regressed in the same way in r134984.

This patch restores the checks those two patches moved but retains the
switch from getAttribute to fastGetAttribute for HTML which was likely
most of the performance improvement and fixes the bug where elements
would incorrectly share style even if one of them matched an attribute
selector.

Unfortunately this does mean that we need to call the slow geAttribute
in SVG documents which may be a minor regression. We can work to
improve the performance of SVG in the future once we get the
correctness back.
Comment 1 Radar WebKit Bug Importer 2015-01-27 00:49:34 PST
<rdar://problem/19611922>
Comment 2 Benjamin Poulain 2015-01-27 00:53:14 PST
Created attachment 245427 [details]
Patch
Comment 3 Sergio Villar Senin 2015-01-27 01:00:47 PST
Comment on attachment 245427 [details]
Patch

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

> LayoutTests/fast/css/style-sharing-type-and-readonly-expected.txt:1
> +Make sure special case style sharing for readonly and type attributes works

Nit: a full stop after "works"

> LayoutTests/fast/css/style-sharing-type-and-readonly.html:19
> +description("Make sure special case style sharing for readonly and type attributes works");

Ditto.
Comment 4 Benjamin Poulain 2015-01-27 12:50:36 PST
Committed r179205: <http://trac.webkit.org/changeset/179205>