WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
106856
Support variables inside -webkit-box-reflect CSS property.
https://bugs.webkit.org/show_bug.cgi?id=106856
Summary
Support variables inside -webkit-box-reflect CSS property.
Luke Macpherson
Reported
2013-01-14 19:17:37 PST
Support variables inside -webkit-box-reflect CSS property.
Attachments
Patch
(14.97 KB, patch)
2013-01-14 19:22 PST
,
Luke Macpherson
no flags
Details
Formatted Diff
Diff
Patch
(14.95 KB, patch)
2013-01-15 16:35 PST
,
Luke Macpherson
no flags
Details
Formatted Diff
Diff
Patch for landing
(15.01 KB, patch)
2013-01-23 19:13 PST
,
Luke Macpherson
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Luke Macpherson
Comment 1
2013-01-14 19:22:15 PST
Created
attachment 182683
[details]
Patch
Build Bot
Comment 2
2013-01-14 21:40:46 PST
Comment on
attachment 182683
[details]
Patch
Attachment 182683
[details]
did not pass win-ews (win): Output:
http://queues.webkit.org/results/15841798
Luke Macpherson
Comment 3
2013-01-15 16:35:04 PST
Created
attachment 182872
[details]
Patch
Luke Macpherson
Comment 4
2013-01-23 15:01:47 PST
Can anyone review this?
Tony Chang
Comment 5
2013-01-23 15:48:48 PST
Comment on
attachment 182872
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=182872&action=review
> Source/WebCore/css/CSSComputedStyleDeclaration.cpp:612 > + default: > + ASSERT_NOT_REACHED();
Remove the default: case so the compiler will ensure we're testing all cases.
> Source/WebCore/css/CSSReflectValue.cpp:41 > + if (m_mask) > + return m_direction->cssText() + ' ' + m_offset->cssText() + ' ' + m_mask->cssText(); > + return m_direction->cssText() + ' ' + m_offset->cssText();
I would mention in the ChangeLog that you no longer use StringBuilder but this is just as fast because of StringOperators.h and StringConcatenate.h.
> Source/WebCore/css/CSSReflectValue.cpp:49 > + return m_direction->customSerializeResolvingVariables(variables) + ' ' + m_offset->customSerializeResolvingVariables(variables) + ' ' + m_mask->serializeResolvingVariables(variables); > + return m_direction->customSerializeResolvingVariables(variables) + ' ' + m_offset->customSerializeResolvingVariables(variables);
You could mention this in the ChangeLog too.
Luke Macpherson
Comment 6
2013-01-23 19:13:48 PST
Created
attachment 184380
[details]
Patch for landing
WebKit Review Bot
Comment 7
2013-01-23 20:45:39 PST
Comment on
attachment 184380
[details]
Patch for landing Clearing flags on attachment: 184380 Committed
r140642
: <
http://trac.webkit.org/changeset/140642
>
WebKit Review Bot
Comment 8
2013-01-23 20:45:44 PST
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug