Move DL items from gfx to layout and implement corner clipping Implement corner clipping. Remove PixelFormat from WebrenderImageInfo. Use WebRender text shadow. Remove MallocSizeOf and Deserialize for DL items. Closes #19649, closes #19680, closes #19802 <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [x] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/20420) <!-- Reviewable:end --> |
||
---|---|---|
.. | ||
compositing | ||
css-align | ||
css-animations | ||
css-backgrounds | ||
css-break | ||
css-cascade | ||
css-color | ||
css-conditional | ||
css-contain | ||
css-content | ||
css-counter-styles | ||
css-display | ||
css-exclusions | ||
css-fill-stroke | ||
css-flexbox | ||
css-font-loading | ||
css-fonts | ||
css-gcpm | ||
css-grid | ||
css-images | ||
css-layout-api | ||
css-lists | ||
css-logical | ||
css-masking | ||
css-multicol | ||
css-namespaces | ||
css-overflow | ||
css-page | ||
css-paint-api | ||
css-position | ||
css-properties-values-api | ||
css-pseudo | ||
css-regions | ||
css-rhythm | ||
css-round-display | ||
css-ruby | ||
css-scoping | ||
css-scroll-anchoring | ||
css-scroll-snap | ||
css-shadow-parts | ||
css-shapes | ||
css-sizing | ||
css-speech | ||
css-style-attr | ||
css-syntax | ||
css-tables | ||
css-text | ||
css-text-decor | ||
css-timing | ||
css-transforms | ||
css-transitions | ||
css-typed-om | ||
css-ui | ||
css-values | ||
css-variables | ||
css-writing-modes | ||
CSS1 | ||
CSS2 | ||
cssom | ||
cssom-view | ||
filter-effects | ||
geometry | ||
mediaqueries | ||
motion | ||
reference | ||
selectors | ||
support | ||
tools | ||
vendor-imports/mozilla | ||
WOFF2 | ||
.gitignore | ||
.htaccess | ||
build-css-testsuites.sh | ||
README.md | ||
requirements.txt |
Introduction
This directory contains testsuites for CSS WG specifications, including ones that do not strictly speaking define CSS features, e.g., Geometry Interfaces.
The directories should be named like the specification's shortname, but without any level suffix.
As the test harness relies on the largely undocumented old CSS build system, this directory has a number of test requirements specific to it:
-
support files for a given test must live in an adjacent
support
directory; -
tests must have a
<link rel=help>
pointing to what they are testing; -
for each spec so linked, test filenames must be unique; and
-
support and reference files must have unique filenames within the entire
css
directory.
vendor-imports/ Directory
vendor-imports/ is a legacy directory where third parties historically imported their tests that originate and are maintained in an external repo. Files in this directory should never be modified in this repo, but should go through the vendor's process to be imported here.
Importing Old Branches
Given an old branch in git based against the old csswg-test repository, it can be moved over to the merged repo in one of two ways:
-
(Recommended:) Rebasing on top of web-platform-tests: with the old branch checked out, run
git rebase -Xsubtree=css/ origin/master
(or similar, depending on the name of the upstream remote). -
Merging to web-platform-tests: with web-platform-tests' master branch checked out, run
git merge -Xsubtree=css/ my_shiny_branch
(or similar, depending on the name of your branch).
If you have a branch/bookmark in Mercurial, the process is more complicated:
-
From the Mercurial repo, run
hg export --git -r 'outgoing()' > foo.patch
. This will export all the changeset shown inhg log -r 'outgoing()'
; it's recommended you check this is the right set of changesets before continuing! -
Move to the git repo, and create a new branch based on web-platform-tests' master; e.g.,
git checkout -b hg-import origin/master
(or similar, depending on the name of the upstream remote). -
Download hg-patch-to-git-patch and run
python2 hg-patch-to-git-patch < foo.patch > bar.patch
(wherefoo.patch
is the path to thefoo.patch
you exported above). -
Run
git am --directory=css/ < bar.patch
.