L. David Baron
|
344df4887f
|
Simplify storage of computed calc() as a result of removing min() and max(). (Bug 363249) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-11 09:27:13 -07:00 |
|
L. David Baron
|
5859a14a99
|
Rename -moz-box-shadow to box-shadow: mechanical changes. (Bug 590039) r=bzbarsky a2.0=blocking2.0:beta6
Generated with:
find * -type f -exec sed -i -e 's/\<MozBoxShadow\>/boxShadow/g;s/-moz-box-shadow/box-shadow/gi' {} \;
|
2010-09-11 09:27:12 -07:00 |
|
L. David Baron
|
fa356d0a17
|
Remove support for min() and max() in calc(): remove support for parsing and storage. (Bug 363249) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-11 09:27:12 -07:00 |
|
Zack Weinberg ext:(%2C%20L.%20David%20Baron%20%3Cdbaron%40dbaron.org%3E)
|
e4c76eccb0
|
Bug 451134 (1/2): switch to the official border-radius property names: purely mechanical changes. r=dbaron a2.0=blocking2.0:beta6
This was generated with the command:
LC_ALL=C grep -irlEZe '[-_]moz[-_]border[-_]radius([-_](top|bottom)(right|left))?' * | xargs -0 perl -pi -e \
's/-moz-border-radius-(top|bottom)(left|right)/border-${1}-${2}-radius/gi;
s/_moz_border_radius_(top|bottom)Right/border_${1}_right_radius/g;
s/_moz_border_radius_(top|bottom)Left/border_${1}_left_radius/g;
s/-moz-border-radius/border-radius/gi;
s/_moz_border_radius/border_radius/g;'
|
2010-09-09 08:21:47 -07:00 |
|
L. David Baron
|
7d8d7e59ed
|
Fix missing computation half of calc() for border-*-width. (Bug 363249) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-09 08:21:46 -07:00 |
|
L. David Baron
|
e06e2d58f5
|
Add calc() support for two properties I missed: outline-width and column-gap. (Bug 363249) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-09 08:21:46 -07:00 |
|
L. David Baron
|
8aaf22a0f4
|
Add support for calc() on -moz-border-radius and -moz-outline-radius. (Bug 585715) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-09 08:21:45 -07:00 |
|
Bobby Holley
|
dbade7f8ac
|
Bug 592493 - Register border-images with the document image tracker.r=dbaron
|
2010-09-07 17:30:40 -07:00 |
|
L. David Baron
|
26ed2a5639
|
Add support for calc() to 'vertical-align' and 'text-indent'. (Bug 585715) r=bzbarsky a2.0=blocking:beta6+
|
2010-08-31 12:05:12 -04:00 |
|
L. David Baron
|
ed01917887
|
Add support for calc() to the '{margin,padding}-{top,right,bottom,left}' and '-moz-margin-{start,end}' properties. (Bug 585715) r=bzbarsky a2.0=blocking:beta6+
|
2010-08-31 12:05:12 -04:00 |
|
L. David Baron
|
065207f2c7
|
Add support for calc() to the 'top', 'right', 'bottom', and 'left' properties. (Bug 585715) r=bzbarsky a2.0=blocking+
|
2010-08-25 12:17:56 +02:00 |
|
L. David Baron
|
b99a005c4c
|
Add support for calc() to the 'min-width' and 'max-width' properties. (Bug 585715) r=bzbarsky a2.0=blocking+
|
2010-08-25 12:17:56 +02:00 |
|
L. David Baron
|
091d6b7837
|
Add support for calc() to the 'height', 'min-height', and 'max-height' properties. (Bug 585715) r=bzbarsky a2.0=blocking+
|
2010-08-25 12:17:55 +02:00 |
|
L. David Baron
|
698bb0f927
|
Add support for calc() to ComputeWidthDependentValue and ComputeHeightDependentValue. Also change calc() handling of percents from using round to using floor, which changes our handling of percents on 'width' back to using floor, reverting an earlier change in this bug. (Bug 585715) r=bzbarsky a2.0=blocking+
|
2010-08-25 12:17:55 +02:00 |
|
Zack Weinberg
|
bc4afbe28a
|
Bug 576044 (6/12): remove vestiges of nsCSSType. r=dbaron a2.0=dbaron
|
2010-08-19 15:33:44 -04:00 |
|
Zack Weinberg
|
a5a3802007
|
Bug 576044 (5/12): eliminate ValueList as a storage type. r=dbaron a2.0=dbaron
|
2010-08-19 15:33:44 -04:00 |
|
Zack Weinberg
|
0251ba5a66
|
Bug 576044 (4/12): eliminate ValuePairList as a storage type. r=dbaron a2.0=dbaron
|
2010-08-19 15:33:44 -04:00 |
|
Zack Weinberg
|
e0203804f9
|
Bug 576044 (3/12): eliminate Rect as a storage type. r=dbaron a2.0=dbaron
|
2010-08-19 15:33:44 -04:00 |
|
Zack Weinberg
|
5922bd1bb5
|
Bug 576044 (2/12): eliminate ValuePair as a storage type. r=dbaron a2.0=dbaron
|
2010-08-19 15:33:44 -04:00 |
|
Zack Weinberg
|
e93186d2e7
|
Bug 576044 (1/12): Move all the CSS 'storage types' (rect, value pair, etc) to nsCSSValue.h and their code to nsCSSValue.cpp. r=dbaron a2.0=dbaron
|
2010-08-19 15:33:43 -04:00 |
|
Bobby Holley
|
20c25243b6
|
bug 512260 - part 5 - make nsCursorImage::mImage private, add getter/setter, and lock images in the setter.r=dbaron,a=blocker
|
2010-08-16 12:19:26 -04:00 |
|
Bobby Holley
|
b3f5a9dc56
|
bug 512260 - part 4 - call nsDocument::AddImage and RemoveImage on images stored in nsStyleContentData.r=dbaron,a=blocker
|
2010-08-06 13:27:01 -04:00 |
|
Bobby Holley
|
250fbc04bd
|
bug 512260 - part 3 - call nsDocument::AddImage and RemoveImage on images stored in nsStyleBackground.r=dbaron,a=blocker
|
2010-08-05 17:57:18 -04:00 |
|
Robert O'Callahan
|
20c2a19d6a
|
Bug 537890. Part 10: Fix nsPresContext and nsIDeviceContext unit-conversion methods to be explicit about using CSS logical units instead of physical units. r=dbaron
|
2010-08-13 21:58:04 +12:00 |
|
Robert O'Callahan
|
b7df1787ef
|
Bug 537890. Part 4: Make points be a fixed number of CSS pixels. r=dbaron
|
2010-08-13 21:58:01 +12:00 |
|
Robert O'Callahan
|
f8dc984ede
|
Backing out bug 584282 and bug 537890
|
2010-08-14 02:35:06 +12:00 |
|
Markus Stange
|
3df2a2ce8e
|
Bug 506826 - Parsing for background-image: -moz-element(#elementID). r=dbaron
|
2010-08-13 15:33:37 +02:00 |
|
L. David Baron
|
ee89e22866
|
Add support for calc() to the 'width' property. (Bug 585715) r=bzbarsky a2.0=blocking2.0+
|
2010-08-11 12:32:53 -07:00 |
|
L. David Baron
|
d45401cfa4
|
Distinguish between 50% and calc(50%), etc., in computed style calc expressions. (Bug 585715) r=bzbarsky a2.0=blocking2.0+
|
2010-08-11 12:32:52 -07:00 |
|
L. David Baron
|
bc1a47c26f
|
Make a common base class for calc ops that use nsStyleCoord as input. (Bug 585715) r=bzbarsky a2.0=blocking2.0+
|
2010-08-11 12:32:52 -07:00 |
|
L. David Baron
|
5e2de175f2
|
There's no need for a separate CoordPercentCalc implementation; ComputeCalc can handle that. (Bug 585715) r=bzbarsky a2.0=blocking2.0+
|
2010-08-11 12:32:52 -07:00 |
|
Kyle Huey
|
2a2801990e
|
Bug 578714: Stop doing Unicode-aware case-folding inside layout/style. r=zwol sr=bz
|
2010-08-02 15:19:04 -07:00 |
|
Robert O'Callahan
|
f3efde653e
|
Bug 537890. Part 10: Fix nsPresContext and nsIDeviceContext unit-conversion methods to be explicit about using CSS logical units instead of physical units. r=dbaron
|
2010-08-13 21:58:04 +12:00 |
|
Robert O'Callahan
|
973ebcc0ad
|
Bug 537890. Part 4: Make points be a fixed number of CSS pixels. r=dbaron
|
2010-08-13 21:58:01 +12:00 |
|
Kyle Huey
|
9c0bd4c0a5
|
Backed out changeset 9e87c3efc33b
|
2010-07-29 16:01:41 -07:00 |
|
Kyle Huey
|
17533df9bd
|
Bug 578714: Stop doing Unicode-aware case-folding inside layout/style. r=zwol sr=bz
--HG--
extra : rebase_source : 7d5f43bf8d7d109c9669db68589e26554df9a250
|
2010-07-29 12:41:04 -07:00 |
|
Boris Zbarsky
|
e52f354298
|
Bug 580685. We might not have a root element to resolve 'rem' against. r=dbaron
|
2010-07-22 17:33:37 -04:00 |
|
Jonathan Kew
|
1341e3f276
|
bug 511339 - part 1 - implement -moz-font-feature-settings and -moz-font-language-override in CSS. r=dbaron
|
2010-07-13 21:30:42 +01:00 |
|
L. David Baron
|
6876cdaeaa
|
Move ReadTransforms from nsRuleNode to nsStyleTransformMatrix. (Bug 531344) r=dholbert
|
2010-07-02 21:18:56 -07:00 |
|
L. David Baron
|
8e80eed347
|
Make the style struct store the specified transform list so that we can animate matching lists without matrix decomposition. (Bug 531344) r=dholbert
|
2010-07-02 21:18:56 -07:00 |
|
L. David Baron
|
dd9be1dd41
|
Add API to compute length, percentage or calc() style coords. (Bug 363249) r=bzbarsky
|
2010-07-02 21:18:55 -07:00 |
|
L. David Baron
|
e3ff14ef8b
|
Add API to compute computed-value calc() expressions to lengths. (Bug 363249) r=bzbarsky
|
2010-07-02 21:18:55 -07:00 |
|
L. David Baron
|
a4378282b6
|
Add code to compute a computed-value calc() expression from a specified-value calc() expression, and make it reachable from SetCoord in nsRuleNode. (Bug 363249) r=bzbarsky
|
2010-07-02 21:18:55 -07:00 |
|
L. David Baron
|
e218c29644
|
Fix namespace usage in nsRuleNode. (Bug 363249) r=bzbarsky
|
2010-07-02 21:18:55 -07:00 |
|
L. David Baron
|
55ff47de79
|
Avoid wrapping to negative font sizes. (Bug 565248) r=roc
|
2010-05-13 19:36:48 -07:00 |
|
L. David Baron
|
85e2b41165
|
Instantiate the calc ops struct rather than a nested data struct inside of it. (Bug 363249) r=bzbarsky
|
2010-05-11 08:49:44 -07:00 |
|
L. David Baron
|
0f80044b20
|
Add calc() support for 'font-size' property, which is the only property for which percents are computed to lengths in nsRuleNode. (Bug 363249) r=bzbarsky
|
2010-05-11 08:49:44 -07:00 |
|
L. David Baron
|
88044130de
|
Add calc() support for lengths in text-shadow and -moz-box-shadow. (Bug 363249) r=bzbarsky
|
2010-05-11 08:49:43 -07:00 |
|
L. David Baron
|
7af761111d
|
Add calc() support for the easiest cases: properties that take lengths but not percentages and take simple values only (-moz-column-rule-width, -moz-column-width, letter-spacing, word-spacing, marker-offset, outline-offset, border-spacing). (Bug 363249) r=bzbarsky
|
2010-05-11 08:49:43 -07:00 |
|
L. David Baron
|
792ee1ad5e
|
Add mechanism for clamping computation of calc() to nonnegative values. (Bug 363249) r=bzbarsky
|
2010-05-11 08:49:43 -07:00 |
|