L. David Baron
|
dd38c3a514
|
Make 'bolder' and 'lighter' values of 'font-weight' be computed in the style system, per recent edits to CSS 2.1. (Bug 93725) r=jdaggett a2.0=joedrew
|
2010-11-10 07:49:52 -08:00 |
L. David Baron
|
a31dcce1eb
|
Remove support (style system only) for 'wider' and 'narrower' values of 'font-stretch'. (Bug 604816) r=jdaggett a2.0=joedrew
|
2010-11-10 07:49:52 -08:00 |
L. David Baron
|
3b8d68ee17
|
Add test for nsStyleAnimation::ComputeDistance. (Bug 598099) r=bzbarsky a2.0=blocking-betaN
|
2010-10-23 16:31:55 -07:00 |
Timothy Nikkel
|
9bbd68b2e6
|
Bug 593491. Change the initial iframe URI to try to distinguish what is going on. a=test-only
|
2010-10-21 19:58:11 -05:00 |
Jim Mathies
|
b42001e547
|
Bug 543910 - tests. r=dbaron, a=final.
|
2010-10-09 15:53:45 -05:00 |
L. David Baron
|
18ee5baba1
|
Fix border-radius computed style code to reflect clamping adjustments that we make to border radius. (Bug 595651) r=bzbarsky a2.0=blocking2.0:betaN
|
2010-10-06 21:25:47 -07:00 |
L. David Baron
|
a3bce24717
|
Fix border-radius computed style code to reflect that percentage Y values are percentages of the box height. (Bug 595650) r=bzbarsky a2.0=blocking2.0:betaN
|
2010-10-06 21:25:47 -07:00 |
L. David Baron
|
54958ef33a
|
Add a selector hack so that we can implement table border styles compatibly in CSS. (Bug 539880) Test by Geoff Lankow <geoff@darktrojan.net>. r=bzbarsky a2.0=blocking2.0:betaN
|
2010-10-06 21:25:47 -07:00 |
L. David Baron
|
8db138d3f4
|
Make NBSP an identifier character per resolution of CSS 2.1 issue 196. (Bug 591589) r=bzbarsky a2.0=roc
|
2010-09-18 11:43:17 -07:00 |
L. David Baron
|
6bd0dee24f
|
Add test for animation of calc() values of background-position and background-size. (Bug 520234, bug 594934) a=tests
|
2010-09-15 08:11:27 -07:00 |
L. David Baron
|
15e8f8b737
|
Allow calc() as an intermediate common animation unit for background-position and background-size. (Bug 520234) r=bzbarsky a=blocking2.0:beta7
|
2010-09-15 08:11:26 -07:00 |
L. David Baron
|
5d09552b98
|
Allow calc() as an intermediate common animation unit between lengths, percentages, and calc(). (Bug 520234) r=bzbarsky a=blocking2.0:beta7
|
2010-09-15 08:11:26 -07:00 |
L. David Baron
|
d4d2946639
|
Support calc() on background-position, background-size, -moz-transform-origin, and background-image gradient stop positions. (Bug 594934) r=bzbarsky a=blocking2.0:betaN
(Note: this also depends on the change to nsStyleAnimation.cpp's StyleCoordToValue in bug 520234 and on other changes in that bug.)
|
2010-09-15 08:11:26 -07:00 |
Josh Matthews
|
cbd5e1317d
|
Bug 474356 - Add -moz-device-pixel-ratio media query. r=dbaron a=approval2.0
--HG--
extra : rebase_source : 3a477fe6eab09f693538008aafa9c8bf880597b1
|
2010-09-10 16:27:52 -04:00 |
Josh Matthews
|
dcd679e6db
|
Backed out changeset ec2ffd935bd9 a=test-bustage
|
2010-09-11 21:04:09 -04:00 |
Josh Matthews
|
03f3add9c1
|
Bug 474356 - Add -moz-device-pixel-ratio media query. r=dbaron a=approval2.0
--HG--
extra : rebase_source : 1455dfbf13b66ac58cd2a66514c88adc76ff1a6c
|
2010-09-11 19:21:48 -04:00 |
L. David Baron
|
e031591955
|
Rename -moz-box-shadow to box-shadow: manual changes. (Bug 590039) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-11 09:27:13 -07:00 |
L. David Baron
|
f4c51b73b2
|
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
|
8e923adf2c
|
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 |
Joel Maher
|
8c31c92e64
|
Bug 592859 Update browser chrome tests to only use chrome paths for mochitest to prep for android support r=ctalbert a=NPOTB
|
2010-09-10 10:20:38 -07:00 |
Zack Weinberg
|
51f4d1b92d
|
Bug 451134 (2/2): switch to the official border-radius property names: by-hand changes. r=dbaron a2.0=blocking2.0:beta6
|
2010-09-09 08:21:48 -07:00 |
Zack Weinberg ext:(%2C%20L.%20David%20Baron%20%3Cdbaron%40dbaron.org%3E)
|
8537cb241d
|
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
|
9ca64d5905
|
Add an invalid-value test for text-shadow that we already have for -moz-box-shadow. a2.0=tests
|
2010-09-09 08:21:46 -07:00 |
L. David Baron
|
e82fb6cb2f
|
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
|
d282153a9d
|
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
|
7a0e99bcfb
|
Negative values for stroke-dasharray should be rejected. (Bug 585715) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-09 08:21:46 -07:00 |
L. David Baron
|
99e16ca9a9
|
Fix places where I missed clamping negative calc() to 0. (Bug 585715) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-09 08:21:46 -07:00 |
L. David Baron
|
2842b50861
|
Fix missing frame in style system mochitests. (Bug 585715) r=bzbarsky a2.0=blocking2.0:beta6
|
2010-09-09 08:21:46 -07:00 |
L. David Baron
|
b157c42495
|
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 |
Timothy Nikkel
|
559a6b92cf
|
Bug 593262. The stop/reload button is chasing me. Keep running from it. r=roc a=fix a test
--HG--
rename : layout/style/test/hover_helper.html => layout/style/test/chrome/hover_helper.html
rename : layout/style/test/test_hover.html => layout/style/test/chrome/test_hover.html
|
2010-09-03 00:43:26 -05:00 |
L. David Baron
|
b221c0b0c0
|
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
|
374fca8e4f
|
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 |
Timothy Nikkel
|
1fb49cac3b
|
Bug 549799. Open the hover test in a new window so things in the chrome don't trigger reflows during the test. r=roc
--HG--
rename : layout/style/test/test_hover.html => layout/style/test/hover_helper.html
|
2010-08-27 18:15:08 -05:00 |
L. David Baron
|
999bb0be9f
|
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
|
89545b0362
|
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
|
fce97072e6
|
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
|
c4f2785b8e
|
Fix computed style for percents for offset properties when the element doesn't have a frame. (Bug 585715) r=bzbarsky a2.0=blocking+
|
2010-08-25 12:17:55 +02:00 |
L. David Baron
|
b4d36c5999
|
Add prerequisites for better testing of 'top', 'right', 'bottom', and 'left'. (Bug 585715) r=bzbarsky a2.0=blocking+
|
2010-08-25 12:17:55 +02:00 |
L. David Baron
|
bcff8accea
|
Add prerequisites for better testing of min/max-width/height properties. (Bug 585715) r=bzbarsky a2.0=blocking+
|
2010-08-25 12:17:55 +02:00 |
L. David Baron
|
7fac9e2940
|
Add prerequisites for better testing of 'height'. (Bug 585715) r=bzbarsky a2.0=blocking+
|
2010-08-25 12:17:55 +02:00 |
Jonathan Kew
|
860e5d69bb
|
bug 585718 - support -moz-font-feature-settings and -moz-font-language-override in nsCSSFontFaceStyleDecl::GetPropertyValue. r+a=dbaron
|
2010-08-23 11:32:03 +01:00 |
Zack Weinberg
|
f892a0765b
|
Bug 576044 (6/12): remove vestiges of nsCSSType. r=dbaron a2.0=dbaron
|
2010-08-19 15:33:44 -04:00 |
Zack Weinberg
|
ca47f883ec
|
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
|
c95db1a5f9
|
Bug 576044 (2/12): eliminate ValuePair as a storage type. r=dbaron a2.0=dbaron
|
2010-08-19 15:33:44 -04:00 |
Robert O'Callahan
|
505cc05575
|
Bug 537890. Part 7: Tests for pt/pc/mm/cm/in not being physical units, and for mozmm being physical units. r=dbaron
|
2010-08-13 21:58:02 +12:00 |
L. David Baron
|
bdab2e0934
|
Correct parenthesis-matching inside of :not(). (Bug 586070) r=bzbarsky a2.0=bsmedberg
|
2010-08-15 08:42:29 -04:00 |
Robert O'Callahan
|
25324c072d
|
Backing out bug 584282 and bug 537890
|
2010-08-14 02:35:06 +12:00 |
Markus Stange
|
fae48f3bbd
|
Bug 506826 - Parsing for background-image: -moz-element(#elementID). r=dbaron
|
2010-08-13 15:33:37 +02:00 |
L. David Baron
|
2a023744e6
|
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
|
b27e44d513
|
Add a 'display:block' prerequisite for 'width' property tests so that calc() tests will actually have a percentage basis and thus actually test the code. (Bug 585715) r=bzbarsky a2.0=blocking2.0+
|
2010-08-11 12:32:52 -07:00 |
L. David Baron
|
f88364d08c
|
Fix places where we should skip to a closing parenthesis during errors parsing functions. (Bug 575672) r=bzbarsky a2.0=blocking2.0+
|
2010-08-11 12:32:52 -07:00 |
L. David Baron
|
a286bcfd04
|
CSS transition timing functions should not allow X arguments to cubic-bezier() outside of 0-1. (Bug 575672) r=bzbarsky a2.0=blocking2.0+
|
2010-08-11 12:32:52 -07:00 |
Mark Banner
|
2cd6513bc1
|
Bug 585734 Disable some c++ unit tests (TestCSSPropertyLookup, TestWinDND) in static builds due to compilation failures. r=khuey,a=test-only fix
|
2010-08-10 10:44:25 +01:00 |
Robert O'Callahan
|
d61b93538d
|
Bug 537890. Part 7: Tests for pt/pc/mm/cm/in not being physical units, and for mozmm being physical units. r=dbaron
|
2010-08-13 21:58:02 +12:00 |
Joe Drew
|
f494520abe
|
Bug 572520: step 2.0, fix the visited image loading tests to poll for the images to load; just waiting for a draw isn't enough. r=dbaron
|
2010-07-28 14:51:37 -07:00 |
Boris Zbarsky
|
69d8c3830b
|
Bug 580685. We might not have a root element to resolve 'rem' against. r=dbaron
|
2010-07-22 17:33:37 -04:00 |
Zack Weinberg
|
2f4426c2f1
|
Bug 569719 part 2: Move headers for the former nsCSSLoader and nsCSSDeclaration into mozilla/css/. r=dbaron
--HG--
rename : layout/style/nsCSSDeclaration.cpp => layout/style/Declaration.cpp
rename : layout/style/nsCSSDeclaration.h => layout/style/Declaration.h
rename : layout/style/nsCSSLoader.cpp => layout/style/Loader.cpp
rename : layout/style/nsCSSLoader.h => layout/style/Loader.h
|
2010-06-28 15:49:35 -07:00 |
Jonathan Kew
|
d34dd05fe1
|
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 |
Boris Zbarsky
|
3cb72a7516
|
Bug 575467. Improve the detection of whether we're in the transition's initial state. r=dbaron
|
2010-07-08 09:50:33 -07:00 |
Neil Deakin
|
fb50a52ce3
|
Bug 553576, change -moz-resize to resize, r=dbaron
|
2010-07-05 10:41:04 -04:00 |
L. David Baron
|
a5966c5522
|
Implement animation of -moz-transform property. (Bug 531344) r=dholbert
|
2010-07-02 21:18:56 -07:00 |
L. David Baron
|
30d39f10f2
|
Add support for calc() expressions in translate functions of -moz-transform. (Bug 531344) r=bzbarsky
|
2010-07-02 21:18:56 -07:00 |
L. David Baron
|
9737f5e893
|
Fire transitionend events only for transitions on elements (not pseudo-elements). (Bug 537140) r=bzbarsky
|
2010-07-02 21:18:55 -07:00 |
Boris Zbarsky
|
7be35161f4
|
Bug 555627. Make transitions actually work correctly on :before and :after. r=dbaron
|
2010-06-30 18:54:29 -07:00 |
L. David Baron
|
1dc52aecc3
|
Switch test_transitions_per_property to testing interpolation 1/4 of the way through instead of 1/2, so it will catch getting the halves backwards.
|
2010-06-26 11:58:06 -07:00 |
Boris Zbarsky
|
753e4b833b
|
Bug 573241. When reparenting a style context, don't include any transition rules the old context might have had in the new one, since that can confuse transitions. r=dbaron
|
2010-06-23 00:46:27 -04:00 |
L. David Baron
|
e48dbb1afd
|
Add test for bug 573255.
--HG--
extra : transplant_source : Y%E3o%C5%F1H8t%AF%3E%1Cu%5B%EA%E0%2B%27%08%EA%C2
|
2010-06-19 14:11:20 -07:00 |
Justin Wood
|
55183ae219
|
Bug 568733 - patch for mobile specific browser-chrome tests breaks seamonkey. r=ted
pending-feedback=jmaher
Also RE-enables browser-mochitests for docshell.
|
2010-06-09 19:29:44 -04:00 |
L. David Baron
|
5b0dfeed0f
|
Fix alphabetization of renamed properties in property_database.js. (Bug 549809)
|
2010-06-08 18:44:33 -07:00 |
L. David Baron
|
534169bd6e
|
Rename -moz-background-size to background-size. (Bug 549809) r=roc
|
2010-06-08 18:44:33 -07:00 |
L. David Baron
|
7a021d9262
|
Support for background-clip and background-origin in the background shorthand. (Bug 549809) r=roc
|
2010-06-08 18:44:33 -07:00 |
L. David Baron
|
1118f60946
|
Rename properties and values of background-clip and background-origin to match css3-background. (Bug 549809) r=roc
|
2010-06-08 18:44:33 -07:00 |
L. David Baron
|
13edc8e9a6
|
Add -moz-background-clip: content. (Bug 549809) r=roc
|
2010-06-08 18:44:32 -07:00 |
Joel Maher
|
7bb6fe4f0e
|
Bug 535922 - Genereate mobile specific browser chrome test package files r=ted
|
2010-05-27 13:01:37 -07:00 |
L. David Baron
|
76df418748
|
Additional restyling is needed for :empty + E and :empty ~ E selectors. (Bug 534804) r=bzbarsky
|
2010-05-14 22:01:45 -07:00 |
Craig Topper
|
b08d6c5ef5
|
Remove nsICSSStyleSheet and replace all uses with nsCSSStyleSheet. (Bug 239008) r=dbaron
|
2010-05-11 13:41:47 -07:00 |
L. David Baron
|
97f744099a
|
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
|
a834b40a01
|
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
|
454d6dd6d0
|
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
|
36456511ee
|
Fix property alphabetization errors in property_database.js.
|
2010-05-11 08:49:43 -07:00 |
Henri Sivonen
|
baf480f1c5
|
Make test_acid3_test46.html wait for onload. (orange fix)
|
2010-04-28 16:21:07 +03:00 |
L. David Baron
|
cd07aa2832
|
Make the test not fail when the transition has completed already but the event hasn't fired yet. (Bug 537573) a=philor for APPROVAL REQUIRED
|
2010-04-23 19:59:48 -07:00 |
L. David Baron
|
b9449d47f3
|
Implement :-moz-any() selector to allow simplification of user-agent style sheets. (Bug 544834) r=bzbarsky
|
2010-04-23 19:59:47 -07:00 |
L. David Baron
|
6eb74eb12e
|
Make test_selectors continue when a parsing test fails.
|
2010-04-23 19:59:47 -07:00 |
L. David Baron
|
0b6c0a8e57
|
Clean up SkipUntil handling in parsing of pseudo-classes with arguments. (I haven't found any cases where this actually changes behavior, but it's needed for the next patch.) (Bug 544834) r=bzbarsky
|
2010-04-23 19:59:47 -07:00 |
L. David Baron
|
c7f2c20b20
|
Make the reset test in test_transitions.html deal with the possibility of massive skew between setTimeout and the clock. (Bug 539904)
|
2010-04-07 12:06:15 -07:00 |
L. David Baron
|
1dd09b2485
|
When setTimeout fires much later than it should, which happens on unit test boxes a good bit, make test_transitions_events.html report a todo rather than a fail. (Bug 537573)
|
2010-04-06 22:50:06 -07:00 |
L. David Baron
|
44fc00f5f0
|
Use the appropriate color based on visitedness for '-moz-column-rule-color'. (Bug 557580) r=roc
|
2010-04-06 19:03:12 -07:00 |
L. David Baron
|
34a3f166a8
|
Make nsStyleAnimation extract -moz-column-rule-color correctly. (Bug 557580) r=dholbert
|
2010-04-06 19:03:12 -07:00 |
Zack Weinberg
|
b571940f32
|
Bug 556661 bustage fix: test_priority_preservation.html updated to new semantics, augmented with further tests
|
2010-04-06 17:55:57 -07:00 |
L. David Baron
|
ea2113c668
|
Avoid showing black when the if-visited style is transparent and the unvisited style is a color. (Bug 557584) r=bzbarsky
|
2010-04-06 15:32:52 -07:00 |
L. David Baron
|
48a0a6c550
|
Add test for background image loading behavior for :visited links. (Bug 557287)
|
2010-04-06 12:42:41 -07:00 |
L. David Baron
|
4448b4ee8a
|
Make pseudo-classes-02 run using test_visited_reftests.html instead of the normal reftest harness. (Bug 147777) r=jwatt
|
2010-04-02 18:58:27 -07:00 |
L. David Baron
|
0c9f4d1933
|
Add mochitests for getComputedStyle and querySelector(All) lying about :visited selectors. (Bug 147777)
|
2010-04-02 18:58:27 -07:00 |
L. David Baron
|
13e72332b4
|
Add reftests for :visited handling in layout/reftests/css-visited/ and make them run through the mochitest harness (via layout/style/test/test_visited_reftests.html) rather than the reftest harness. (Bug 147777)
|
2010-04-02 18:58:27 -07:00 |
L. David Baron
|
7a857e9b5a
|
Fix existing tests to deal with getComputedStyle lying about :link vs. :visited. (Bug 147777) r=sdwilsh
|
2010-04-02 18:58:25 -07:00 |
Daniel Glazman
|
e00e8f9100
|
:not() selector with no argument should be a parse error. (Bug 553805) r=dbaron
--HG--
extra : transplant_source : J%23a%3C%1EQ%13%F5%DBx%8E%83%A8%09%3A%E1%93t%AF%D2
|
2010-03-21 15:25:18 -04:00 |
Markus Stange
|
00fbecd8b0
|
Bug 508482 - Window activation status should be a pseudoclass (:-moz-window-inactive) instead of an attribute. r=dbaron, r+sr=jst
|
2010-03-17 18:10:57 +01:00 |
Neil Deakin
|
27dcf91d68
|
Bug 442228, add -moz-resize property to indicate that elements are resizable, r=dbaron
|
2010-03-19 07:49:33 -04:00 |
Markus Stange
|
d0207d99c6
|
Backed out changeset e17c076aceea, bug 508482 (:-moz-window-inactive pseudoclass) because of test_righttoleft.xul test failures.
|
2010-03-17 20:03:53 +01:00 |