- 06 Dec, 2020 1 commit
-
-
Emilio Cobos Álvarez authored
The changes should be trivial. The third_party changes are up for review in https://github.com/servo/rust-cssparser/pull/277 (and of course I'll land with a bump to 0.28 rather than the override after that gets r+'d). The basic idea is that with this we have the actual start offset of the rule, so we wouldn't include html comments or other invalid stuff we discard during sanitization in bug 1680084. But that's a separate change. Differential Revision: https://phabricator.services.mozilla.com/D98677
-
- 05 Dec, 2019 1 commit
-
-
Emilio Cobos Álvarez authored
We're vendoring it already so no reason not to. Only a couple dependencies left after these to get rid of 0.6. Differential Revision: https://phabricator.services.mozilla.com/D56044 --HG-- extra : moz-landing-system : lando
-
- 04 Dec, 2019 1 commit
-
-
Emilio Cobos Álvarez authored
This aligns us with Servo. It pulls a new `rand` crate version, but I'm removing one in https://phabricator.services.mozilla.com/D55351, so hopefully adds up :) Differential Revision: https://phabricator.services.mozilla.com/D55359 --HG-- rename : third_party/rust/cssparser-macros/Cargo.toml => third_party/rust/phf_macros/Cargo.toml rename : third_party/rust/cssparser-macros/Cargo.toml => third_party/rust/proc-macro-hack/Cargo.toml rename : third_party/rust/rand/.cargo-checksum.json => third_party/rust/rand-0.6.5/.cargo-checksum.json rename : third_party/rust/rand/CHANGELOG.md => third_party/rust/rand-0.6.5/CHANGELOG.md rename : third_party/rust/rand/Cargo.toml => third_party/rust/rand-0.6.5/Cargo.toml rename : third_party/rust/rand/README.md => third_party/rust/rand-0.6.5/README.md rename : third_party/rust/rand/benches/distributions.rs => third_party/rust/rand-0.6.5/benches/distributions.rs rename : third_party/rust/rand/benches/generators.rs => third_party/rust/rand-0.6.5/benches/generators.rs rename : third_party/rust/rand/benches/misc.rs => third_party/rust/rand-0.6.5/benches/misc.rs rename : third_party/rust/rand/benches/seq.rs => third_party/rust/rand-0.6.5/benches/seq.rs rename : third_party/rust/rand/build.rs => third_party/rust/rand-0.6.5/build.rs rename : third_party/rust/rand/examples/monte-carlo.rs => third_party/rust/rand-0.6.5/examples/monte-carlo.rs rename : third_party/rust/rand/examples/monty-hall.rs => third_party/rust/rand-0.6.5/examples/monty-hall.rs rename : third_party/rust/rand/src/deprecated.rs => third_party/rust/rand-0.6.5/src/deprecated.rs rename : third_party/rust/rand/src/distributions/bernoulli.rs => third_party/rust/rand-0.6.5/src/distributions/bernoulli.rs rename : third_party/rust/rand/src/distributions/binomial.rs => third_party/rust/rand-0.6.5/src/distributions/binomial.rs rename : third_party/rust/rand/src/distributions/cauchy.rs => third_party/rust/rand-0.6.5/src/distributions/cauchy.rs rename : third_party/rust/rand/src/distributions/dirichlet.rs => third_party/rust/rand-0.6.5/src/distributions/dirichlet.rs rename : third_party/rust/rand/src/distributions/exponential.rs => third_party/rust/rand-0.6.5/src/distributions/exponential.rs rename : third_party/rust/rand/src/distributions/float.rs => third_party/rust/rand-0.6.5/src/distributions/float.rs rename : third_party/rust/rand/src/distributions/gamma.rs => third_party/rust/rand-0.6.5/src/distributions/gamma.rs rename : third_party/rust/rand/src/distributions/integer.rs => third_party/rust/rand-0.6.5/src/distributions/integer.rs rename : third_party/rust/rand/src/distributions/mod.rs => third_party/rust/rand-0.6.5/src/distributions/mod.rs rename : third_party/rust/rand/src/distributions/normal.rs => third_party/rust/rand-0.6.5/src/distributions/normal.rs rename : third_party/rust/rand/src/distributions/other.rs => third_party/rust/rand-0.6.5/src/distributions/other.rs rename : third_party/rust/rand/src/distributions/pareto.rs => third_party/rust/rand-0.6.5/src/distributions/pareto.rs rename : third_party/rust/rand/src/distributions/poisson.rs => third_party/rust/rand-0.6.5/src/distributions/poisson.rs rename : third_party/rust/rand/src/distributions/triangular.rs => third_party/rust/rand-0.6.5/src/distributions/triangular.rs rename : third_party/rust/rand/src/distributions/uniform.rs => third_party/rust/rand-0.6.5/src/distributions/uniform.rs rename : third_party/rust/rand/src/distributions/unit_circle.rs => third_party/rust/rand-0.6.5/src/distributions/unit_circle.rs rename : third_party/rust/rand/src/distributions/unit_sphere.rs => third_party/rust/rand-0.6.5/src/distributions/unit_sphere.rs rename : third_party/rust/rand/src/distributions/utils.rs => third_party/rust/rand-0.6.5/src/distributions/utils.rs rename : third_party/rust/rand/src/distributions/weibull.rs => third_party/rust/rand-0.6.5/src/distributions/weibull.rs rename : third_party/rust/rand/src/distributions/weighted.rs => third_party/rust/rand-0.6.5/src/distributions/weighted.rs rename : third_party/rust/rand/src/lib.rs => third_party/rust/rand-0.6.5/src/lib.rs rename : third_party/rust/rand/src/prelude.rs => third_party/rust/rand-0.6.5/src/prelude.rs rename : third_party/rust/rand/src/prng/mod.rs => third_party/rust/rand-0.6.5/src/prng/mod.rs rename : third_party/rust/rand/src/rngs/adapter/mod.rs => third_party/rust/rand-0.6.5/src/rngs/adapter/mod.rs rename : third_party/rust/rand/src/rngs/adapter/read.rs => third_party/rust/rand-0.6.5/src/rngs/adapter/read.rs rename : third_party/rust/rand/src/rngs/adapter/reseeding.rs => third_party/rust/rand-0.6.5/src/rngs/adapter/reseeding.rs rename : third_party/rust/rand/src/rngs/entropy.rs => third_party/rust/rand-0.6.5/src/rngs/entropy.rs rename : third_party/rust/rand/src/rngs/mock.rs => third_party/rust/rand-0.6.5/src/rngs/mock.rs rename : third_party/rust/rand/src/rngs/mod.rs => third_party/rust/rand-0.6.5/src/rngs/mod.rs rename : third_party/rust/rand/src/rngs/small.rs => third_party/rust/rand-0.6.5/src/rngs/small.rs rename : third_party/rust/rand/src/rngs/std.rs => third_party/rust/rand-0.6.5/src/rngs/std.rs rename : third_party/rust/rand/src/rngs/thread.rs => third_party/rust/rand-0.6.5/src/rngs/thread.rs rename : third_party/rust/rand/src/seq/index.rs => third_party/rust/rand-0.6.5/src/seq/index.rs rename : third_party/rust/rand/src/seq/mod.rs => third_party/rust/rand-0.6.5/src/seq/mod.rs rename : third_party/rust/rand/tests/uniformity.rs => third_party/rust/rand-0.6.5/tests/uniformity.rs rename : third_party/rust/rand/src/distributions/weighted.rs => third_party/rust/rand/src/distributions/weighted/mod.rs rename : third_party/rust/rand_chacha/.cargo-checksum.json => third_party/rust/rand_chacha-0.1.1/.cargo-checksum.json rename : third_party/rust/rand_chacha/CHANGELOG.md => third_party/rust/rand_chacha-0.1.1/CHANGELOG.md rename : third_party/rust/rand_chacha/Cargo.toml => third_party/rust/rand_chacha-0.1.1/Cargo.toml rename : third_party/rust/rand_chacha/README.md => third_party/rust/rand_chacha-0.1.1/README.md rename : third_party/rust/rand_chacha/build.rs => third_party/rust/rand_chacha-0.1.1/build.rs rename : third_party/rust/rand_chacha/src/chacha.rs => third_party/rust/rand_chacha-0.1.1/src/chacha.rs rename : third_party/rust/rand_chacha/src/lib.rs => third_party/rust/rand_chacha-0.1.1/src/lib.rs rename : third_party/rust/rand_core/.cargo-checksum.json => third_party/rust/rand_core-0.4.0/.cargo-checksum.json rename : third_party/rust/rand_core/CHANGELOG.md => third_party/rust/rand_core-0.4.0/CHANGELOG.md rename : third_party/rust/rand_core/Cargo.toml => third_party/rust/rand_core-0.4.0/Cargo.toml rename : third_party/rust/rand_core/README.md => third_party/rust/rand_core-0.4.0/README.md rename : third_party/rust/rand_core/src/block.rs => third_party/rust/rand_core-0.4.0/src/block.rs rename : third_party/rust/rand_core/src/error.rs => third_party/rust/rand_core-0.4.0/src/error.rs rename : third_party/rust/rand_core/src/impls.rs => third_party/rust/rand_core-0.4.0/src/impls.rs rename : third_party/rust/rand_core/src/lib.rs => third_party/rust/rand_core-0.4.0/src/lib.rs rename : third_party/rust/rand_hc/.cargo-checksum.json => third_party/rust/rand_hc-0.1.0/.cargo-checksum.json rename : third_party/rust/rand_hc/CHANGELOG.md => third_party/rust/rand_hc-0.1.0/CHANGELOG.md rename : third_party/rust/rand_hc/Cargo.toml => third_party/rust/rand_hc-0.1.0/Cargo.toml rename : third_party/rust/rand_hc/README.md => third_party/rust/rand_hc-0.1.0/README.md rename : third_party/rust/rand_hc/src/hc128.rs => third_party/rust/rand_hc-0.1.0/src/hc128.rs rename : third_party/rust/rand_hc/src/lib.rs => third_party/rust/rand_hc-0.1.0/src/lib.rs rename : third_party/rust/rand_pcg/.cargo-checksum.json => third_party/rust/rand_pcg-0.1.2/.cargo-checksum.json rename : third_party/rust/rand_pcg/CHANGELOG.md => third_party/rust/rand_pcg-0.1.2/CHANGELOG.md rename : third_party/rust/rand_pcg/Cargo.toml => third_party/rust/rand_pcg-0.1.2/Cargo.toml rename : third_party/rust/rand_pcg/README.md => third_party/rust/rand_pcg-0.1.2/README.md rename : third_party/rust/rand_chacha/build.rs => third_party/rust/rand_pcg-0.1.2/build.rs rename : third_party/rust/rand_pcg/src/lib.rs => third_party/rust/rand_pcg-0.1.2/src/lib.rs rename : third_party/rust/rand_pcg/src/pcg128.rs => third_party/rust/rand_pcg-0.1.2/src/pcg128.rs rename : third_party/rust/rand_pcg/src/pcg64.rs => third_party/rust/rand_pcg-0.1.2/src/pcg64.rs rename : third_party/rust/rand_pcg/tests/lcg64xsh32.rs => third_party/rust/rand_pcg-0.1.2/tests/lcg64xsh32.rs rename : third_party/rust/rand_pcg/tests/mcg128xsl64.rs => third_party/rust/rand_pcg-0.1.2/tests/mcg128xsl64.rs extra : moz-landing-system : lando
-
- 09 Oct, 2019 1 commit
-
-
Emilio Cobos Álvarez authored
Differential Revision: https://phabricator.services.mozilla.com/D48727 --HG-- extra : moz-landing-system : lando
-
- 08 Jul, 2019 1 commit
-
-
Emilio Cobos Álvarez authored
This issue was also exposed via CSS variables, and I've added a test for that since it's how it was originally found in bug 1498188. See https://github.com/w3c/csswg-drafts/issues/4088 and https://github.com/servo/rust-cssparser/pull/251 Differential Revision: https://phabricator.services.mozilla.com/D37148 --HG-- extra : moz-landing-system : lando
-
- 20 May, 2019 1 commit
-
-
Bastien Orivel authored
Depends on D31737 Differential Revision: https://phabricator.services.mozilla.com/D31738 --HG-- extra : moz-landing-system : lando
-
- 03 Dec, 2018 2 commits
-
-
shindli authored
Backed out changeset d71cde918f43 (bug 1511811) Backed out changeset 0ae2634de8e1 (bug 1511811) Backed out changeset 53d1f5ca4099 (bug 1511811) Backed out changeset 5a08148928ef (bug 1511811) Backed out changeset da7816ec50ef (bug 1511811) Backed out changeset 5fe23889cccc (bug 1511811) Backed out changeset 800bc60c75a7 (bug 1511811) Backed out changeset 2392d8199cd0 (bug 1511811) Backed out changeset 7bc486fbd195 (bug 1511811) Backed out changeset d2c997426108 (bug 1511811) Backed out changeset ddd573878432 (bug 1511811) Backed out changeset 29c8ec1559a4 (bug 1511811) Backed out changeset f5851346109d (bug 1511811) --HG-- rename : third_party/rust/darling_core/src/macros_private.rs => third_party/rust/darling_core/src/macros.rs
-
Emilio Cobos Álvarez authored
--HG-- rename : third_party/rust/darling_core/src/macros.rs => third_party/rust/darling_core/src/macros_private.rs
-
- 05 Nov, 2018 1 commit
-
-
Emilio Cobos Álvarez authored
Bug 1462233 - Implement the env() function with hardcoded zeros for safe-area-inset. r=heycam,firefox-style-system-reviewers Intent to Implement and Ship: https://groups.google.com/d/msg/mozilla.dev.platform/EVKyR1B87T0/_l-_qK8SAAAJ Differential Revision: https://phabricator.services.mozilla.com/D9609 --HG-- extra : moz-landing-system : lando
-
- 04 Oct, 2018 1 commit
-
-
Emilio Cobos Álvarez authored
This just makes an struct repr(C) which will help me to remove most of nsCSSValue.
-
- 27 Jun, 2018 1 commit
-
-
Xidorn Quan authored
MozReview-Commit-ID: 74rBgkJEcYd --HG-- extra : rebase_source : a30d17b3d7e24f1a61c01d1dc442d6ce60c1dde3 extra : source : 8ff268ee87b7392391a6b6aa981f9180c45b27b6
-
- 05 Jun, 2018 2 commits
-
-
Emilio Cobos Álvarez authored
To pick https://github.com/servo/rust-cssparser/pull/222, whoops. MozReview-Commit-ID: EPwQ5VPVj49
-
Emilio Cobos Álvarez authored
MozReview-Commit-ID: 39oowMlDBon
-
- 02 Nov, 2018 3 commits
-
-
Nathan Froyd authored
-
Margareta Eliza Balazs authored
Backed out changeset 12bca041cda6 (bug 1502964) Backed out changeset 225f2ad3cf2f (bug 1502964)
-
Nathan Froyd authored
-
- 03 Apr, 2018 1 commit
-
-
Xidorn Quan authored
MozReview-Commit-ID: IJ2OqSjn1NM --HG-- rename : third_party/rust/itoa/performance.png => third_party/rust/itoa-0.3.1/performance.png extra : rebase_source : 8d8107fed692d8e8be1933cc2e993a389ce4d595 extra : source : 8be60db7102b905572b80aab931631153023d532
-
- 03 Apr, 2019 1 commit
-
-
Emilio Cobos Álvarez authored
-
- 24 Oct, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 10 Oct, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 01 Oct, 2017 2 commits
-
-
Servo VCS Sync authored
-
Xidorn Quan authored
MozReview-Commit-ID: 8i1tms8zFHe --HG-- extra : rebase_source : 3a934f3ad1941faeca2919da419847b3f61c6a6e
-
- 27 Sep, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 26 Sep, 2017 1 commit
-
-
Matthew Gregan authored
--HG-- extra : rebase_source : a9765e844b818a84cfa2ce69b525a7a2ed72c6de
-
- 15 Sep, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 19 Sep, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 12 Sep, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 02 Sep, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 05 Sep, 2017 1 commit
-
-
Simon Sapin authored
… and update cssparser to 0.20.1 MozReview-Commit-ID: 8SiFIGk1jtb --HG-- extra : rebase_source : 9d817fba90c38a7148166392e3412cfaf1538785
-
- 23 Aug, 2017 3 commits
-
-
Xidorn Quan authored
MozReview-Commit-ID: 3lf30ZvMvWm
-
Xidorn Quan authored
MozReview-Commit-ID: 7QwkNTUkCDl
-
Xidorn Quan authored
MozReview-Commit-ID: Atb37wr8iMA
-
- 25 Aug, 2017 1 commit
-
-
Simon Sapin authored
MozReview-Commit-ID: GOxKFvP3Y9x --HG-- extra : rebase_source : 082e3b951fe41427192a308f694453521f8e3c23
-
- 17 Aug, 2017 1 commit
-
-
Emilio Cobos Álvarez authored
MozReview-Commit-ID: 6ChbWFfPHGS --HG-- rename : third_party/rust/cssparser/.cargo-checksum.json => third_party/rust/cssparser-0.19.0/.cargo-checksum.json rename : third_party/rust/cssparser/Cargo.toml => third_party/rust/cssparser-0.19.0/Cargo.toml rename : third_party/rust/cssparser/src/parser.rs => third_party/rust/cssparser-0.19.0/src/parser.rs rename : third_party/rust/cssparser/src/size_of_tests.rs => third_party/rust/cssparser-0.19.0/src/size_of_tests.rs rename : third_party/rust/cssparser/src/tests.rs => third_party/rust/cssparser-0.19.0/src/tests.rs rename : third_party/rust/cssparser/src/tokenizer.rs => third_party/rust/cssparser-0.19.0/src/tokenizer.rs
-
- 09 Aug, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 25 Jul, 2017 1 commit
-
-
Simon Sapin authored
MozReview-Commit-ID: K96vTaaUdPi --HG-- extra : rebase_source : 6ccda565b912a3756156d1081b5ba2a21501273b
-
- 11 Jul, 2017 1 commit
-
-
Servo VCS Sync authored
-
- 06 Jul, 2017 2 commits
-
-
Servo VCS Sync authored
-
Servo VCS Sync authored
-
- 16 Jun, 2017 1 commit
-
-
Servo VCS Sync authored
-