Delan Azabani
aabae55407
Fix filtered test counts in WPT summaries ( #30591 )
2023-10-20 07:20:19 +00:00
Martin Robinson
582943a19e
Migrate scroll_root.html to WPT ( #30478 )
2023-10-19 19:39:47 +00:00
dependabot[bot]
486b743f13
build(deps): bump tracing from 0.1.39 to 0.1.40 ( #30588 )
...
Bumps [tracing](https://github.com/tokio-rs/tracing ) from 0.1.39 to 0.1.40.
- [Release notes](https://github.com/tokio-rs/tracing/releases )
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.39...tracing-0.1.40 )
---
updated-dependencies:
- dependency-name: tracing
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-19 17:02:12 +00:00
Martin Robinson
d7207122c0
Don't panic when no font is found for a TextRun ( #30581 )
...
Instead of panicking when no found is found for a TextRun, instead print
a warning. This prevents panics on pages with very large font sizes.
2023-10-19 16:59:54 +00:00
Martin Robinson
fd31da9102
Anonymous boxes that wrap inlines should not inherit overflow ( #30579 )
...
In legacy layout, anonymous text wrappers were inheriting the `overflow`
and `text-overflow` properties. This results in the creation of extra
clipping for these anonymous wrappers which could clip away floats. We
will likely implement `text-overflow` differently in non-legacy layout.
This change marks all legacy layout pseudo elements as "legacy" and also
adds a new pseudo element for non-legacy layout that does not inherit
`overflow`.
Fixes #30562 .
Co-authored-by: Oriol Brufau <obrufau@igalia.com>
2023-10-19 13:43:55 +00:00
dependabot[bot]
634a5d9cf5
build(deps): bump parking_lot_core from 0.9.8 to 0.9.9 ( #30583 )
...
Bumps [parking_lot_core](https://github.com/Amanieu/parking_lot ) from 0.9.8 to 0.9.9.
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Amanieu/parking_lot/compare/core-0.9.8...core-0.9.9 )
---
updated-dependencies:
- dependency-name: parking_lot_core
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-19 03:28:58 +00:00
dependabot[bot]
48a6a476fc
build(deps): bump windows-core from 0.50.0 to 0.51.1 ( #30584 )
...
Bumps [windows-core](https://github.com/microsoft/windows-rs ) from 0.50.0 to 0.51.1.
- [Release notes](https://github.com/microsoft/windows-rs/releases )
- [Commits](https://github.com/microsoft/windows-rs/compare/0.50.0...0.51.1 )
---
updated-dependencies:
- dependency-name: windows-core
dependency-type: indirect
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-19 03:27:46 +00:00
dependabot[bot]
aee7436cbc
build(deps): bump uuid from 1.4.1 to 1.5.0 ( #30582 )
...
Bumps [uuid](https://github.com/uuid-rs/uuid ) from 1.4.1 to 1.5.0.
- [Release notes](https://github.com/uuid-rs/uuid/releases )
- [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0 )
---
updated-dependencies:
- dependency-name: uuid
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-19 03:26:58 +00:00
dependabot[bot]
420219bb60
build(deps): bump lock_api from 0.4.10 to 0.4.11 ( #30585 )
...
Bumps [lock_api](https://github.com/Amanieu/parking_lot ) from 0.4.10 to 0.4.11.
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Amanieu/parking_lot/compare/lock_api-0.4.10...lock_api-0.4.11 )
---
updated-dependencies:
- dependency-name: lock_api
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-18 17:21:40 +00:00
Ennui Langeweile
2d7dfb06c0
Use IpcSharedMemory
for Canvas2dMsg::DrawImage
( #30544 )
...
* Use `IpcSharedMemory` for `Canvas2DMsg::DrawImage`
* Fix `Canvas2dMsg::DrawEmptyImage` crashes
* Do not premultiply canvas image data
* Move `image_data` back to its original position
2023-10-18 13:39:58 +00:00
Delan Azabani
66258bfbbd
Temporarily convert existing cfg(debug_assertions) crashes to warnings ( #30578 )
2023-10-18 13:16:11 +00:00
Delan Azabani
351b5036bf
Fix running servoshell and unit tests through a symlink ( #30537 )
...
* Fix running servoshell and unit tests through a symlink
* make filename an inherent method of Resource
* fix mach test-unit behaviour through symlink
* unit tests only need current_dir and ancestors
* fix macOS package smoketest breakage
2023-10-18 10:33:51 +00:00
Martin Robinson
8a12b4c957
Improve line box block size calculation ( #30519 )
...
Improve the calculation of the block size of line boxes and all their
component elements. Even empty spans can increase the size of the line
based on their font-size. Elements that have a line-height should
increase the block size of the line, but that setting should not effect
their own size.
In addition to the new passes there are some new failures
Failing because a progression exposes the real issue these tests are
testing:
- css/css-color/t32-opacity-offscreen-multiple-boxes-1-c.xht
- css/css-color/t32-opacity-offscreen-multiple-boxes-2-c.xht
Likely failing because of vertical-align and another sizing issue:
- css/css-transforms/perspective-untransformable-no-stacking-context.html
Failing because a progression reveals another failure:
- html/rendering/non-replaced-elements/hidden-elements.html
Co-authored-by: Mukilan Thiyagarajan <mukilan@igalia.com>
2023-10-18 09:35:19 +00:00
dependabot[bot]
b21952b6c4
build(deps): bump iana-time-zone from 0.1.57 to 0.1.58 ( #30560 )
...
Bumps [iana-time-zone](https://github.com/strawlab/iana-time-zone ) from 0.1.57 to 0.1.58.
- [Changelog](https://github.com/strawlab/iana-time-zone/blob/main/CHANGELOG.md )
- [Commits](https://github.com/strawlab/iana-time-zone/compare/v0.1.57...v0.1.58 )
---
updated-dependencies:
- dependency-name: iana-time-zone
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-17 16:53:39 +00:00
dependabot[bot]
ba814e15c9
build(deps): bump os_str_bytes from 6.5.1 to 6.6.1 ( #30557 )
...
Bumps [os_str_bytes](https://github.com/dylni/os_str_bytes ) from 6.5.1 to 6.6.1.
- [Release notes](https://github.com/dylni/os_str_bytes/releases )
- [Commits](https://github.com/dylni/os_str_bytes/compare/6.5.1...6.6.1 )
---
updated-dependencies:
- dependency-name: os_str_bytes
dependency-type: indirect
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-17 08:07:15 +00:00
Martin Robinson
2c341d9e69
Allow raising FloatContext ceiling after processing box with overflow ( #30539 )
...
When a box has overflow, any floats placed in that box will lower the
float ceiling into the overflow. If no float is placed in the box
though, the ceiling should be the block position where the overflow
starts. We already know where this is, because we might be passing a
negative value for the new block position after processing a box
(content_size - actual_size would be negative). This negative value
never raises the ceiling though since a maximum is used.
In the case that there is overflow, this change allows raising the
ceiling, but never passed the lowest float. This necessitates keeping
two values for the ceiling: one for floats and one for non-floats.
Fixes #30304 .
2023-10-17 07:53:57 +00:00
dependabot[bot]
59ea908294
build(deps): bump bitflags from 2.4.0 to 2.4.1 ( #30549 )
...
Bumps [bitflags](https://github.com/bitflags/bitflags ) from 2.4.0 to 2.4.1.
- [Release notes](https://github.com/bitflags/bitflags/releases )
- [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md )
- [Commits](https://github.com/bitflags/bitflags/compare/2.4.0...2.4.1 )
---
updated-dependencies:
- dependency-name: bitflags
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-16 20:23:31 +00:00
dependabot[bot]
c7979abd0c
build(deps): bump regex from 1.10.0 to 1.10.2 ( #30556 )
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.10.0 to 1.10.2.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.10.0...1.10.2 )
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-16 18:13:55 +00:00
dependabot[bot]
ffaaafbecb
build(deps): bump rustix from 0.38.18 to 0.38.19 ( #30552 )
...
Bumps [rustix](https://github.com/bytecodealliance/rustix ) from 0.38.18 to 0.38.19.
- [Release notes](https://github.com/bytecodealliance/rustix/releases )
- [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.18...v0.38.19 )
---
updated-dependencies:
- dependency-name: rustix
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-16 17:39:59 +00:00
dependabot[bot]
146f9a7b1e
build(deps): bump regex-syntax from 0.8.1 to 0.8.2 ( #30553 )
...
Bumps [regex-syntax](https://github.com/rust-lang/regex ) from 0.8.1 to 0.8.2.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/regex-syntax-0.8.1...regex-syntax-0.8.2 )
---
updated-dependencies:
- dependency-name: regex-syntax
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-16 17:36:08 +00:00
dependabot[bot]
80db9998d9
build(deps): bump serde from 1.0.188 to 1.0.189 ( #30550 )
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.188 to 1.0.189.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.188...v1.0.189 )
---
updated-dependencies:
- dependency-name: serde
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-16 17:30:21 +00:00
dependabot[bot]
4b53ae35c4
build(deps): bump tracing from 0.1.37 to 0.1.39 ( #30551 )
...
Bumps [tracing](https://github.com/tokio-rs/tracing ) from 0.1.37 to 0.1.39.
- [Release notes](https://github.com/tokio-rs/tracing/releases )
- [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.37...tracing-0.1.39 )
---
updated-dependencies:
- dependency-name: tracing
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-16 17:27:31 +00:00
Ngo Iok Ui (Wu Yu Wei)
a2f8dcfb8a
Add documentation to a few pref configs ( #30548 )
...
* Add documentation to a few pref configs
* Update components/config/prefs.rs
---------
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
2023-10-16 13:07:41 +00:00
Alex Touchet
a81a1cf794
Update rustls-webpki ( #30547 )
2023-10-15 22:05:45 +00:00
dependabot[bot]
f16a33922d
build(deps): bump flate2 from 1.0.27 to 1.0.28 ( #30543 )
...
Bumps [flate2](https://github.com/rust-lang/flate2-rs ) from 1.0.27 to 1.0.28.
- [Release notes](https://github.com/rust-lang/flate2-rs/releases )
- [Commits](https://github.com/rust-lang/flate2-rs/compare/1.0.27...1.0.28 )
---
updated-dependencies:
- dependency-name: flate2
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-13 17:37:39 +00:00
Samson
09075402a0
Update mozangle to 0.4 ( #30416 )
2023-10-13 07:47:57 +00:00
dependabot[bot]
df2c9141b5
build(deps): bump regex-syntax from 0.8.0 to 0.8.1 ( #30542 )
...
Bumps [regex-syntax](https://github.com/rust-lang/regex ) from 0.8.0 to 0.8.1.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/commits/regex-syntax-0.8.1 )
---
updated-dependencies:
- dependency-name: regex-syntax
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-12 17:22:23 +00:00
dependabot[bot]
6ab8d46740
build(deps): bump atomic_refcell from 0.1.12 to 0.1.13 ( #30540 )
...
Bumps [atomic_refcell](https://github.com/bholley/atomic_refcell ) from 0.1.12 to 0.1.13.
- [Commits](https://github.com/bholley/atomic_refcell/commits )
---
updated-dependencies:
- dependency-name: atomic_refcell
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-11 16:53:18 +00:00
dependabot[bot]
4a095016a4
build(deps): bump semver from 1.0.19 to 1.0.20 ( #30532 )
...
Bumps [semver](https://github.com/dtolnay/semver ) from 1.0.19 to 1.0.20.
- [Release notes](https://github.com/dtolnay/semver/releases )
- [Commits](https://github.com/dtolnay/semver/compare/1.0.19...1.0.20 )
---
updated-dependencies:
- dependency-name: semver
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-11 10:10:22 +00:00
dependabot[bot]
e1deae4199
build(deps): bump regex from 1.9.6 to 1.10.0 ( #30533 )
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.9.6 to 1.10.0.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.9.6...1.10.0 )
---
updated-dependencies:
- dependency-name: regex
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 17:47:45 +00:00
dependabot[bot]
4403438b62
build(deps): bump jobserver from 0.1.26 to 0.1.27 ( #30534 )
...
Bumps [jobserver](https://github.com/alexcrichton/jobserver-rs ) from 0.1.26 to 0.1.27.
- [Commits](https://github.com/alexcrichton/jobserver-rs/commits )
---
updated-dependencies:
- dependency-name: jobserver
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 17:29:21 +00:00
dependabot[bot]
67771d59c5
build(deps): bump rustix from 0.38.17 to 0.38.18 ( #30525 )
...
Bumps [rustix](https://github.com/bytecodealliance/rustix ) from 0.38.17 to 0.38.18.
- [Release notes](https://github.com/bytecodealliance/rustix/releases )
- [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.17...v0.38.18 )
---
updated-dependencies:
- dependency-name: rustix
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 07:41:57 +00:00
dependabot[bot]
a28432fecc
build(deps): bump linux-raw-sys from 0.4.8 to 0.4.10 ( #30520 )
...
Bumps [linux-raw-sys](https://github.com/sunfishcode/linux-raw-sys ) from 0.4.8 to 0.4.10.
- [Commits](https://github.com/sunfishcode/linux-raw-sys/compare/v0.4.8...v0.4.10 )
---
updated-dependencies:
- dependency-name: linux-raw-sys
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 07:37:24 +00:00
dependabot[bot]
9f2273e909
build(deps): bump tokio from 1.32.0 to 1.33.0 ( #30527 )
...
Bumps [tokio](https://github.com/tokio-rs/tokio ) from 1.32.0 to 1.33.0.
- [Release notes](https://github.com/tokio-rs/tokio/releases )
- [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.32.0...tokio-1.33.0 )
---
updated-dependencies:
- dependency-name: tokio
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 07:27:50 +00:00
dependabot[bot]
914ab35263
build(deps): bump errno from 0.3.4 to 0.3.5 ( #30521 )
...
Bumps [errno](https://github.com/lambda-fairy/rust-errno ) from 0.3.4 to 0.3.5.
- [Changelog](https://github.com/lambda-fairy/rust-errno/blob/main/CHANGELOG.md )
- [Commits](https://github.com/lambda-fairy/rust-errno/commits )
---
updated-dependencies:
- dependency-name: errno
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-10 07:25:53 +00:00
dependabot[bot]
3644938d74
build(deps): bump aho-corasick from 1.1.1 to 1.1.2 ( #30529 )
...
Bumps [aho-corasick](https://github.com/BurntSushi/aho-corasick ) from 1.1.1 to 1.1.2.
- [Commits](https://github.com/BurntSushi/aho-corasick/compare/1.1.1...1.1.2 )
---
updated-dependencies:
- dependency-name: aho-corasick
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-09 17:43:31 +00:00
dependabot[bot]
2f39875b48
build(deps): bump libc from 0.2.148 to 0.2.149 ( #30528 )
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.148 to 0.2.149.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.148...0.2.149 )
---
updated-dependencies:
- dependency-name: libc
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-09 17:37:17 +00:00
dependabot[bot]
4fcc81f7c1
build(deps): bump num-traits from 0.2.16 to 0.2.17 ( #30522 )
...
Bumps [num-traits](https://github.com/rust-num/num-traits ) from 0.2.16 to 0.2.17.
- [Changelog](https://github.com/rust-num/num-traits/blob/master/RELEASES.md )
- [Commits](https://github.com/rust-num/num-traits/compare/num-traits-0.2.16...num-traits-0.2.17 )
---
updated-dependencies:
- dependency-name: num-traits
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-09 17:15:23 +00:00
dependabot[bot]
44385330cb
build(deps): bump proc-macro2 from 1.0.67 to 1.0.69 ( #30523 )
...
Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2 ) from 1.0.67 to 1.0.69.
- [Release notes](https://github.com/dtolnay/proc-macro2/releases )
- [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.67...1.0.69 )
---
updated-dependencies:
- dependency-name: proc-macro2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-09 17:12:55 +00:00
dependabot[bot]
26132c2616
build(deps): bump core-foundation-sys from 0.8.3 to 0.8.4 ( #30524 )
...
Bumps [core-foundation-sys](https://github.com/servo/core-foundation-rs ) from 0.8.3 to 0.8.4.
- [Commits](https://github.com/servo/core-foundation-rs/compare/core-foundation-sys-v0.8.3...core-foundation-sys-v0.8.4 )
---
updated-dependencies:
- dependency-name: core-foundation-sys
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-09 17:09:53 +00:00
dependabot[bot]
68c69daac8
build(deps): bump rustix from 0.38.15 to 0.38.17 ( #30506 )
...
Bumps [rustix](https://github.com/bytecodealliance/rustix ) from 0.38.15 to 0.38.17.
- [Release notes](https://github.com/bytecodealliance/rustix/releases )
- [Commits](https://github.com/bytecodealliance/rustix/compare/v0.38.15...v0.38.17 )
---
updated-dependencies:
- dependency-name: rustix
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-09 13:13:40 +00:00
Ennui Langeweile
84dd447d9d
Fix filter clipping caused by overflow: hidden
( #30517 )
...
* Partially fix filter clipping
* Clean up the logic
* Update components/layout_2020/display_list/stacking_context.rs
---------
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
2023-10-09 12:51:51 +00:00
Servo WPT Sync
5eed4e978c
Sync WPT with upstream (08-10-2023) ( #30516 )
...
* Update web-platform-tests to revision b'3d46548c5fbeb3c1b5f6bc5ae0854e0a1a0462ff'
* Revert expectation for column-count-crash.https.html
Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
---------
Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
Co-authored-by: Mukilan Thiyagarajan <mukilan@igalia.com>
2023-10-08 16:57:16 +00:00
Alex Touchet
5c9258895e
Update some dependencies to syn 2 ( #30515 )
2023-10-08 00:41:39 +00:00
Martin Robinson
c4ba2970b5
Update core-foundation in simpleservo ( #30477 )
2023-10-07 05:59:57 +00:00
dependabot[bot]
583bbbabfd
build(deps): bump byteorder from 1.4.3 to 1.5.0 ( #30511 )
...
Bumps [byteorder](https://github.com/BurntSushi/byteorder ) from 1.4.3 to 1.5.0.
- [Changelog](https://github.com/BurntSushi/byteorder/blob/master/CHANGELOG.md )
- [Commits](https://github.com/BurntSushi/byteorder/compare/1.4.3...1.5.0 )
---
updated-dependencies:
- dependency-name: byteorder
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-07 04:48:15 +00:00
bc-universe
9d10d230ac
Add support for EndeavourOS ( #30513 )
2023-10-06 20:58:06 +00:00
dependabot[bot]
7719c4c41d
build(deps): bump libm from 0.2.7 to 0.2.8 ( #30512 )
...
Bumps [libm](https://github.com/rust-lang/libm ) from 0.2.7 to 0.2.8.
- [Changelog](https://github.com/rust-lang/libm/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/libm/compare/0.2.7...0.2.8 )
---
updated-dependencies:
- dependency-name: libm
dependency-type: indirect
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-06 18:23:51 +00:00
dependabot[bot]
d9e2f54fc7
build(deps): bump syn from 2.0.37 to 2.0.38 ( #30510 )
...
Bumps [syn](https://github.com/dtolnay/syn ) from 2.0.37 to 2.0.38.
- [Release notes](https://github.com/dtolnay/syn/releases )
- [Commits](https://github.com/dtolnay/syn/compare/2.0.37...2.0.38 )
---
updated-dependencies:
- dependency-name: syn
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-06 17:49:46 +00:00
Delan Azabani
afe4faa09a
Fix painting order of atomic inline stacking containers ( #30458 )
...
* Sort stacking contexts and stacking containers by painting order
* fix stealing of stacking containers; fix interleaving with fragments
* actually positioned stacking containers should be stolen too
* update expectations and clean up panic changes
* rework naming and docs
* rename s_c_a_p_s_c to real_s_c_a_p_s_c; fix docs
* rename InlineStackingContainer to AtomicInlineStackingContainer
* rework debug logging to use PrintTree
* clean up docs and PrintTree output
* don't panic unless cfg!(debug_assertions) is true
* update expectations
2023-10-06 16:00:00 +00:00