RESOLVED FIXED 128616
position:-webkit-sticky is not preserved across a copy
https://bugs.webkit.org/show_bug.cgi?id=128616
Summary position:-webkit-sticky is not preserved across a copy
Myles C. Maxfield
Reported 2014-02-11 12:27:56 PST
Right now we don't copy position:-webkit-sticky. This is because: 1. When copying styled elements, we parse the style properties again 2. CSSParserContext has a flag which can disable parsing -webkit-sticky 3. There are two constructors to CSSParserContext: one that takes a document and sets up the aforementioned flag, and a simple one that doesn't take a document and sets all the enableFoo flags to false 4. At the relevant place within copy code, we are far removed from the Document object, so we instead call the second constructor, thereby disabling parsing of -webkit-sticky
Attachments
Radar WebKit Bug Importer
Comment 1 2014-02-11 12:31:21 PST
Myles C. Maxfield
Comment 2 2014-02-11 12:32:19 PST
CSSParser::parseValue(MutableStyleProperties* declaration, CSSPropertyID propertyID, const String& string, bool important, CSSParserMode cssParserMode, StyleSheetContents* contextStyleSheet)
Myles C. Maxfield
Comment 3 2014-02-11 16:08:04 PST
It would be a good idea to simply get rid of this runtime flag altogether.
Myles C. Maxfield
Comment 4 2014-02-17 16:04:59 PST
The flag is gone. This is solved.
Note You need to log in before you can comment on or make changes to this bug.